UNPKG

@lidofinance/lido-ethereum-sdk

Version:

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

14 lines 840 B
import type { Address, GetContractReturnType, WalletClient } from 'viem'; import { WithdrawalQueueAbi } from './abi/withdrawalQueue.js'; import { PartStethAbi } from './abi/partStETH.js'; import { PartWstethAbi } from './abi/partWstETH.js'; import { BusModule } from './bus-module.js'; export declare class LidoSDKWithdrawContract extends BusModule { contractAddressWithdrawalQueue(): Promise<Address>; getContractWithdrawalQueue(): Promise<GetContractReturnType<typeof WithdrawalQueueAbi, WalletClient>>; contractAddressStETH(): Promise<Address>; getContractStETH(): Promise<GetContractReturnType<typeof PartStethAbi, WalletClient>>; contractAddressWstETH(): Promise<Address>; getContractWstETH(): Promise<GetContractReturnType<typeof PartWstethAbi, WalletClient>>; } //# sourceMappingURL=withdraw-contract.d.ts.map