opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
13 lines • 549 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getRawBlockTransactions = void 0;
const camelCaseKeys_js_1 = require("../utils/camelCaseKeys.js");
async function getRawBlockTransactions(client, parameters) {
const result = await client.request({
method: 'zks_getRawBlockTransactions',
params: [parameters.number],
});
return (0, camelCaseKeys_js_1.camelCaseKeys)(result);
}
exports.getRawBlockTransactions = getRawBlockTransactions;
//# sourceMappingURL=getRawBlockTransactions.js.map
;