import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common"; export interface WETHInterface extends Interface { getFunction(nameOrSignature: "name" | "approve" | "totalSupply" | "transferFrom" | "withdraw" | "decimals" | "balanceOf" | "symbol" | "transfer" | "deposit" | "allowance"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "Approval" | "Transfer" | "Deposit" | "Withdrawal"): EventFragment; encodeFunctionData(functionFragment: "name", values?: undefined): string; encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string; encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string; encodeFunctionData(functionFragment: "decimals", values?: undefined): string; encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string; encodeFunctionData(functionFragment: "symbol", values?: undefined): string; encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "deposit", values?: undefined): string; encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string; decodeFunctionResult(functionFragment: "name", data: BytesLike): Result; decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result; decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result; decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result; decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result; decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result; decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result; decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result; decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result; } export declare namespace ApprovalEvent { type InputTuple = [ src: AddressLike, guy: AddressLike, wad: BigNumberish ]; type OutputTuple = [src: string, guy: string, wad: bigint]; interface OutputObject { src: string; guy: string; wad: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace TransferEvent { type InputTuple = [ src: AddressLike, dst: AddressLike, wad: BigNumberish ]; type OutputTuple = [src: string, dst: string, wad: bigint]; interface OutputObject { src: string; dst: string; wad: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace DepositEvent { type InputTuple = [dst: AddressLike, wad: BigNumberish]; type OutputTuple = [dst: string, wad: bigint]; interface OutputObject { dst: string; wad: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace WithdrawalEvent { type InputTuple = [src: AddressLike, wad: BigNumberish]; type OutputTuple = [src: string, wad: bigint]; interface OutputObject { src: string; wad: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface WETH extends BaseContract { connect(runner?: ContractRunner | null): WETH; waitForDeployment(): Promise; interface: WETHInterface; queryFilter(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; queryFilter(filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; on(event: TCEvent, listener: TypedListener): Promise; on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; once(event: TCEvent, listener: TypedListener): Promise; once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; listeners(event: TCEvent): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners(event?: TCEvent): Promise; name: TypedContractMethod<[], [string], "view">; approve: TypedContractMethod<[ guy: AddressLike, wad: BigNumberish ], [ boolean ], "nonpayable">; totalSupply: TypedContractMethod<[], [bigint], "view">; transferFrom: TypedContractMethod<[ src: AddressLike, dst: AddressLike, wad: BigNumberish ], [ boolean ], "nonpayable">; withdraw: TypedContractMethod<[wad: BigNumberish], [void], "nonpayable">; decimals: TypedContractMethod<[], [bigint], "view">; balanceOf: TypedContractMethod<[arg0: AddressLike], [bigint], "view">; symbol: TypedContractMethod<[], [string], "view">; transfer: TypedContractMethod<[ dst: AddressLike, wad: BigNumberish ], [ boolean ], "nonpayable">; deposit: TypedContractMethod<[], [void], "payable">; allowance: TypedContractMethod<[ arg0: AddressLike, arg1: AddressLike ], [ bigint ], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "name"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "approve"): TypedContractMethod<[ guy: AddressLike, wad: BigNumberish ], [ boolean ], "nonpayable">; getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[ src: AddressLike, dst: AddressLike, wad: BigNumberish ], [ boolean ], "nonpayable">; getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[wad: BigNumberish], [void], "nonpayable">; getFunction(nameOrSignature: "decimals"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">; getFunction(nameOrSignature: "symbol"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "transfer"): TypedContractMethod<[ dst: AddressLike, wad: BigNumberish ], [ boolean ], "nonpayable">; getFunction(nameOrSignature: "deposit"): TypedContractMethod<[], [void], "payable">; getFunction(nameOrSignature: "allowance"): TypedContractMethod<[ arg0: AddressLike, arg1: AddressLike ], [ bigint ], "view">; getEvent(key: "Approval"): TypedContractEvent; getEvent(key: "Transfer"): TypedContractEvent; getEvent(key: "Deposit"): TypedContractEvent; getEvent(key: "Withdrawal"): TypedContractEvent; filters: { "Approval(address,address,uint256)": TypedContractEvent; Approval: TypedContractEvent; "Transfer(address,address,uint256)": TypedContractEvent; Transfer: TypedContractEvent; "Deposit(address,uint256)": TypedContractEvent; Deposit: TypedContractEvent; "Withdrawal(address,uint256)": TypedContractEvent; Withdrawal: TypedContractEvent; }; }