@exromany/lido-csm-sdk
Version:
[](https://github.com/lidofinance/lido-csm-sdk/blob/main/LICENSE.txt) [](h
10 lines • 362 B
TypeScript
import type { Hex } from 'viem';
import { StandardMerkleTreeData } from '../common/index.js';
export type StrikesTreeLeaf = [bigint, Hex, bigint[]];
export type StrikesTree = StandardMerkleTreeData<StrikesTreeLeaf>;
export type KeyStrikes = number[];
export type KeyWithStrikes = {
pubkey: Hex;
strikes: KeyStrikes;
};
//# sourceMappingURL=types.d.ts.map