@exromany/lido-csm-sdk
Version:
[](https://github.com/lidofinance/lido-csm-sdk/blob/main/LICENSE.txt) [](h
12 lines • 387 B
JavaScript
export const parseBatch = (rawBatch, batchIndex) => {
const nextBatchIndex = rawBatch & 0xffffffffffffffffffffffffffffffffn;
const keysCount = (rawBatch >> 128n) & 0xffffffffffffffffn;
const nodeOperatorId = rawBatch >> 192n;
return {
batchIndex,
nodeOperatorId,
keysCount,
nextBatchIndex,
};
};
//# sourceMappingURL=parse-batch.js.map