@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
12 lines • 474 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getLatestAccountBlock = void 0;
const getLatestAccountBlock = (service) => (args) => {
const params = {
account: args.accountId,
includeTransactions: args.includeTransactions || false
};
return service.query('getLatestAccountBlocks', params);
};
exports.getLatestAccountBlock = getLatestAccountBlock;
//# sourceMappingURL=getLatestAccountBlock.js.map