Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function useSolanaStandardWallets(): { wallets: readonly Wallet[]; };
{ wallets: readonly Wallet[]; }
wallets
Wallet
function WalletList() { const { wallets } = useSolanaStandardWallets(); return ( <div> <h3>Available Wallets:</h3> {wallets.map((wallet) => ( <div key={wallet.name}> {wallet.name} {wallet.features['cdp:'] ? '(CDP)' : ''} </div> ))} </div> ); }
Was this page helpful?