@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
19 lines • 629 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getContractMapValuesByFirstKey = void 0;
/**
* Use with {@link ApiComposer} and belongs to {@link ContractApi}.
*
* See details at {@link ContractApi.getContractMapValuesByFirstKey}
*
* @category factories
*/
const getContractMapValuesByFirstKey = (service) => (args) => {
const params = {
at: args.contractId,
key1: args.key1,
};
return service.query('getATMapValues', params);
};
exports.getContractMapValuesByFirstKey = getContractMapValuesByFirstKey;
//# sourceMappingURL=getContractMapValuesByFirstKey.js.map