UNPKG

@fruitsjs/core

Version:

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

13 lines (12 loc) 243 B
/** * The argument object for [[AssetApi.getTrades]] * * @module core */ export interface GetTradesArgs { assetId: string; accountId: string; firstIndex: number; lastIndex: number; includeAssetInfo?: any; }