Rainbow logo
RainbowKit
2.2.1

ウォレットボタン

ウォレットボタン

注: ウォレットボタン は現在 EIP-1193 ウォレット標準に依存していますが、近い将来 EIP-6963 をサポート予定です。

新しい ウォレットボタン コンポーネントは、カスタムウォレットリストの実装を持つ dApps が、RainbowKit とその維持管理の利点を採用するのに役立ちます。

import { WalletButton } from '@rainbow-me/rainbowkit';
<WalletButton wallet="rainbow" />
<WalletButton wallet="metamask" />
<WalletButton wallet="coinbase" />

ConnectButton と同様に、 ウォレットボタン.Custom コンポーネントもカスタム実装およびスタイリングのために使用できます。

<WalletButton.Custom wallet="rainbow">
{({ ready, connect }) => {
return (
<button type="button" disabled={!ready} onClick={connect} >
Connect Rainbow
</button>
);
}}
</WalletButton.Custom>

ほとんどの dApp では、ConnectButton が最適です。 ウォレットボタン の採用と使用例についての詳細は、ドキュメント here を参照してください。 ウォレットボタン の採用と使用例についての詳細は、ドキュメント here を参照してください。

以下のボタンを押して、この RainbowKit エントリポイントがどのように見えるかをご確認ください。