UNPKG

everpay-esm

Version:

everPay client JS-SDK, supports web and nodeJS to make everPay payments

31 lines 718 B
export interface GetEverpayTransactionsParams { account?: string; tokenTag?: string; action?: string; withoutAction?: string; page?: number; } export interface BalanceItemFromServer { tag: string; amount: string; decimals: number; } export interface GetEverpayBalanceParams { account: string; tokenTag: string; } export interface GetEverpayBalanceResult { accid: string; balance: BalanceItemFromServer; } export interface GetEverpayBalancesParams { account: string; } export interface GetEverpayBalancesResult { accid: string; balances: BalanceItemFromServer[]; } export interface PostEverpayTxResult { status: string; } //# sourceMappingURL=api.d.ts.map