UNPKG

@lidofinance/lido-ethereum-sdk

Version:

<div style="display: flex;" align="center"> <h1 align="center">Lido Ethereum SDK</h1> </div>

16 lines 461 B
import type { Address } from 'viem'; import type { CommonTransactionProps } from '../../core/index.js'; export type ClaimRequestsProps = CommonTransactionProps & { requestsIds: readonly bigint[]; hints?: readonly bigint[]; }; export type ClaimResultEvent = { requestId: bigint; owner: Address; receiver: Address; amountOfETH: bigint; }; export type ClaimResult = { requests: ClaimResultEvent[]; }; //# sourceMappingURL=types.d.ts.map