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 useCdpSolanaStandardWallet(config?: Config): { ready: boolean; wallet: | null | CdpSolanaWallet; };
config?
Config
{ ready: boolean; wallet: | null | CdpSolanaWallet; }
ready
boolean
wallet
null
CdpSolanaWallet
// Within CDPHooksProvider (SDK already initialized) function MyComponent() { const { ready, wallet } = useCdpSolanaStandardWallet(); // ... } // Standalone usage (initialize SDK) function MyComponent() { const { ready, wallet } = useCdpSolanaStandardWallet({ projectId: "your-project-id" }); // ... }
Was this page helpful?