rabbyWallet
A wallet configurator for Coin98 Wallet which allows integrating the wallet with React.
import { rabbyWallet } from "@thirdweb-dev/react";
const coin98WalletConfig = rabbyWallet(options);
options
recommended (optional)
Show this wallet as "recommended" in the ConnectWallet Modal.
rabbyWallet({
recommended: true,
});
Usage with ConnectWallet
To allow users to connect to this wallet using the ConnectWallet component, you can add it to ThirdwebProvider's supportedWallets prop.
<ThirdwebProvider supportedWallets={[rabbyWallet()]} clientId="your-client-id">
<YourApp />
</ThirdwebProvider>
Usage with useConnect
you can use the useConnect
hook to programmatically connect to the wallet without using the ConnectWallet component.
The wallet also needs to be added in ThirdwebProvider's supportedWallets if you want the wallet to auto-connect on next page load.
const coin98WalletConfig = rabbyWallet();
function App() {
const connect = useConnect();
const handleConnect = async () => {
await connect(coin98WalletConfig, connectOptions);
};
return <div> ... </div>;
}