UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

14 lines (13 loc) 352 B
/** * Account Balance * * @module core */ export interface Balance { readonly unconfirmedBalanceNQT: string; readonly guaranteedBalanceNQT: string; readonly effectiveBalanceNXT: string; // is really NXT!! readonly forgedBalanceNQT: string; readonly balanceNQT: string; readonly requestProcessingTime: number; }