interface Account {
    assignedTxs: string[];
    balance: string;
    createdAt: string;
    flagged: boolean;
    flaggedReason: string;
    identities: AccountIdentities;
    nonce: number;
    points: AccountPoints;
    pubkey: string;
    referralInfo: ReferralInfo;
    reviewed: boolean;
    updatedAt: string;
}

Properties

assignedTxs: string[]
balance: string
createdAt: string
flagged: boolean
flaggedReason: string
identities: AccountIdentities
nonce: number
pubkey: string
referralInfo: ReferralInfo
reviewed: boolean
updatedAt: string