UNPKG

@lidofinance/lido-ethereum-sdk

Version:

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

12 lines 648 B
import type { Address } from 'viem'; import { BusModule } from './bus-module.js'; import { PartialWstethContractType, PartialStethContractType, WithdrawalQueueContractType } from './types.js'; export declare class LidoSDKWithdrawContract extends BusModule { contractAddressWithdrawalQueue(): Promise<Address>; getContractWithdrawalQueue(): Promise<WithdrawalQueueContractType>; contractAddressStETH(): Promise<Address>; getContractStETH(): Promise<PartialStethContractType>; contractAddressWstETH(): Promise<Address>; getContractWstETH(): Promise<PartialWstethContractType>; } //# sourceMappingURL=withdraw-contract.d.ts.map