UNPKG

@machinemode/cryptopia

Version:

Node wrapper for Cryptopia's CLient API

25 lines (24 loc) 603 B
declare class Transaction { private Id; private Currency; private TxId; private Type; private Amount; private Fee; private Status; private Confirmations; private TimeStamp; private Address; constructor(transaction: any); readonly id: number; readonly currency: string; readonly txId: string; readonly type: 'Deposit' | 'Withdraw'; readonly amount: number; readonly fee: number; readonly status: string; readonly confirmations: number; readonly timeStamp: number; readonly address: string; } export default Transaction;