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

19 lines 644 B
import type { Address } from 'viem'; import { NodeOperatorShortInfo, Proof } from '../common/index.js'; import { CommonTransactionProps } from '../tx-sdk/types.js'; export type { AddressesTreeLeaf, AddressProof } from '../ics-gate-sdk/types.js'; export type CreateNodeOperatorProps = CommonTransactionProps<NodeOperatorShortInfo> & { name: string; description: string; managerAddress: Address; rewardAddress: Address; proof: Proof; }; export type GateEligibility = { isPaused: boolean; curveId: bigint; proof: Proof | null; isConsumed: boolean; isEligible: boolean; }; //# sourceMappingURL=types.d.ts.map