UNPKG

@signumjs/core

Version:

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

23 lines 711 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAssetsByOwner = void 0; /** * Use with {@link ApiComposer} and belongs to {@link AssetApi}. * * See details at {@link AssetApi.getAssetsByOwner} * * @category factories */ const getAssetsByOwner = (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('getAssetsByOwner', params); }; exports.getAssetsByOwner = getAssetsByOwner; //# sourceMappingURL=getAssetsByOwner.js.map