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.
getSmartWalletByEOA(eoaAddress: string): Promise<SmartWalletByEOAResponse>
eoaAddress
string
interface SmartWalletByEOAResponse { success: boolean; eoa: string; smartWallet: Address | null; chains: number[]; }
const result = await sdk.getSmartWalletByEOA("0x..."); console.log("Smart wallet:", result.smartWallet); console.log("Chains:", result.chains);