@upv/ushi-shared
Version:
Shared DTOs, types, and utilities for the USHI platform (LMS, Trials, Social, Wallet).
20 lines (19 loc) • 469 B
TypeScript
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;
}