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.
connectAccount(account: string | any, chainId?: SupportedChainId): Promise<Address>
account
string
any
chainId
SupportedChainId
type Address = `0x${string}`;
// With private key const address = await sdk.connectAccount('0x...'); // With wallet provider (e.g., from wagmi, web3-react) const provider = await connector.getProvider(); const address = await sdk.connectAccount(provider, 8453);