UNPKG

@signumjs/core

Version:

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

23 lines 718 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAssetsByIssuer = void 0; /** * Use with {@link ApiComposer} and belongs to {@link AssetApi}. * * See details at {@link AssetApi.getAssetsByIssuer} * * @category factories */ const getAssetsByIssuer = (service) => (args) => { const params = { account: args.accountId, firstIndex: args.firstIndex, lastIndex: args.lastIndex, heightStart: args.heightStart, heightEnd: args.heightEnd, skipZeroVolume: args.skipZeroVolume, }; return service.query('getAssetsByIssuer', params); }; exports.getAssetsByIssuer = getAssetsByIssuer; //# sourceMappingURL=getAssetsByIssuer.js.map