UNPKG

@signumjs/core

Version:

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

19 lines 513 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAllTrades = void 0; /** * Use with {@link ApiComposer} and belongs to {@link AssetApi}. * * See details at {@link AssetApi.getAllTrades} * * @category factories */ const getAllTrades = (service) => async (args) => { const params = { ...args, includeAssetInfo: true }; return service.query('getAllTrades', params); }; exports.getAllTrades = getAllTrades; //# sourceMappingURL=getAllTrades.js.map