@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
21 lines • 673 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAccountBlockIds = void 0;
/**
* Use with {@link ApiComposer} and belongs to {@link AccountApi}.
*
* See details at {@link AccountApi.getAccountBlockIds}
*
* @category factories
*/
const getAccountBlockIds = (service) => (args) => {
const params = {
account: args.accountId,
firstIndex: args.firstIndex,
lastIndex: args.lastIndex,
includeTransactions: args.includeTransactions || false
};
return service.query('getAccountBlockIds', params);
};
exports.getAccountBlockIds = getAccountBlockIds;
//# sourceMappingURL=getAccountBlockIds.js.map