WalletProfilesAPI — List wallet profiles for your organization
client.walletProfiles
async list(): Promise<WalletProfileListResponse>
interface WalletProfileListResponse { walletProfiles: WalletProfile[]; }
interface WalletProfile { /** Profile identifier */ id: number; /** Profile name */ name: string; /** Whether the profile is enabled */ isEnabled: boolean; /** Enabled blockchain networks */ enabledChains: string[]; /** Number of wallets in this profile */ walletCount: number; }
const { walletProfiles } = await client.walletProfiles.list(); for (const profile of walletProfiles) { console.log(`${profile.name}: ${profile.walletCount} wallets`); }