UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

9 lines (8 loc) 265 B
import { IAirGapTransaction } from '../../interfaces/IAirGapTransaction'; export interface EthereumTransactionCursor { page: number; } export interface EthereumTransactionResult { transactions: IAirGapTransaction[]; cursor: EthereumTransactionCursor; }