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.
getActiveWallets(chainId: number): Promise<ActiveWalletsResponse>
chainId
number
interface ActiveWalletsResponse { success: boolean; chainId: number; wallets: ActiveWallet[]; count: number; }
const wallets = await sdk.getActiveWallets(8453); // Base console.log("Active wallets:", wallets.count); wallets.wallets.forEach(w => console.log(w.smartWallet));