@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
14 lines • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAccountBlockIds = void 0;
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