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;
}