import { IBaseDtoInput, IBaseDtoOutput } from './base';
/**
 * IWalletProfileDto - Raw input for wallet info
 */
export interface IWalletProfileDto extends IBaseDtoInput {
    userId: string;
    walletAddress: string;
    network: string;
    verified: boolean;
}
/**
 * IWalletProfile - Serialized wallet profile
 */
export interface IWalletProfile extends IBaseDtoOutput {
    userId: string;
    walletAddress: string;
    network: string;
    verified: boolean;
}
