API documentation
interface
IWallet
export interface IWallet {
accountId: number;
accountName: string;
accountNameWithoutBalance: string;
accountNameClean: string;
amount: IMoney;
amountInBaseCurrency: IMoney;
fees: ITxFees[];
maxValue: number;
minValue: number;
userType: UserType;
isSelected: boolean;
lastPrice?: LastPrice;
instrumentType?: InstrumentType;
instrumentSymbol?: string;
isAmountNotAvailable: boolean;
provider?: number;
networks: ICurrencyNetwork[];
}