UNPKG

@exromany/lido-csm-sdk

Version:

[![GitHub license](https://img.shields.io/github/license/lidofinance/lido-csm-sdk?color=limegreen)](https://github.com/lidofinance/lido-csm-sdk/blob/main/LICENSE.txt) [![Version npm](https://img.shields.io/npm/v/@lidofinance/lido-csm-sdk?label=version)](h

29 lines 697 B
export type DepositQueuePointer = { head: bigint; tail: bigint; }; export type RawDepositQueueBatch = { nodeOperatorId: bigint; keysCount: number; nextBatchIndex: bigint; }; export type RawDepositQueueBatchWithIndex = { batchIndex: bigint; } & RawDepositQueueBatch; export type DepositQueueBatch = { nodeOperatorId: bigint; keysCount: number; }; export type DepositQueueBatchInfo = { queuePriority: number; batches: DepositQueueBatch[]; }; export type CleanDepositQueueResult = { removed: bigint; lastRemovedAtDepth: bigint; }; export type QueueBatchesPagination = { cursorIndex: bigint; limit: bigint; }; //# sourceMappingURL=types.d.ts.map