UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

16 lines (15 loc) 300 B
/** * The argument object for {@link AssetApi.getAllTrades} * * * @category args */ export interface GetAllTradesArgs { /** * The timestamp in seconds since genesis block * @see {@link util.ChainTime} */ timestamp?: number; firstIndex?: number; lastIndex?: number; }