Wallets
useSwitchWallet
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 Stablecoin Accounts are live! Learn more
| Method | Type | Description |
|---|---|---|
| switchWallet | (walletId: string) => Promise<void> | Function to switch the primary wallet by wallet ID |
import React from "react";
import { useSwitchWallet, useUserWallets } from "@dynamic-labs/sdk-react-core";
const WalletSwitcher = () => {
const switchWallet = useSwitchWallet();
const userWallets = useUserWallets();
return (
<div>
{userWallets.map((wallet) => (
<button key={wallet.id} onClick={() => switchWallet(wallet.id)}>
{wallet.address}
</button>
))}
</div>
);
};
Was this page helpful?