WalletButton
WalletButton
참고: 현재 WalletButton
은 EIP-1193 지갑 표준을 사용하고 있으며, 가까운 미래에는 EIP-6963을 지원할 예정입니다.
새로운 WalletButton
컴포넌트는 맞춤형 지갑 목록 구현을 가진 dApps가 RainbowKit과 유지 관리 없는 모든 이점을 채택하는 데 도움을 줍니다.
import { WalletButton } from '@rainbow-me/rainbowkit';
<WalletButton wallet="rainbow" />
<WalletButton wallet="metamask" />
<WalletButton wallet="coinbase" />
ConnectButton
과 마찬가지로, WalletButton.Custom
컴포넌트는 사용자 정의 구현과 스타일링을 위해 사용할 수 있습니다.
<WalletButton.Custom wallet="rainbow">
{({ ready, connect }) => {
return (
<button
type="button"
disabled={!ready}
onClick={connect}
>
Connect Rainbow
</button>
);
}}
</WalletButton.Custom>
대부분의 dApps는 ConnectButton이 가장 적합합니다. WalletButton
채택 및 사용 사례에 대한 자세한 내용은 여기를 참조하십시오.
아래 버튼을 눌러 이 RainbowKit 진입점이 어떻게 보이는지 확인하세요.