/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { ethers, EventFilter, Signer, BigNumber, BigNumberish, PopulatedTransaction, BaseContract, ContractTransaction, Overrides, CallOverrides, } from "ethers"; import { BytesLike } from "@ethersproject/bytes"; import { Listener, Provider } from "@ethersproject/providers"; import { FunctionFragment, EventFragment, Result } from "@ethersproject/abi"; import type { TypedEventFilter, TypedEvent, TypedListener } from "./common"; interface VDelegatorInterfaceInterface extends ethers.utils.Interface { functions: { "_setImplementation(address,bool,bytes)": FunctionFragment; }; encodeFunctionData( functionFragment: "_setImplementation", values: [string, boolean, BytesLike] ): string; decodeFunctionResult( functionFragment: "_setImplementation", data: BytesLike ): Result; events: { "NewImplementation(address,address)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "NewImplementation"): EventFragment; } export type NewImplementationEvent = TypedEvent< [string, string] & { oldImplementation: string; newImplementation: string } >; export class VDelegatorInterface extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; listeners, EventArgsObject>( eventFilter?: TypedEventFilter ): Array>; off, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; on, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; once, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; removeListener, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; removeAllListeners, EventArgsObject>( eventFilter: TypedEventFilter ): this; listeners(eventName?: string): Array; off(eventName: string, listener: Listener): this; on(eventName: string, listener: Listener): this; once(eventName: string, listener: Listener): this; removeListener(eventName: string, listener: Listener): this; removeAllListeners(eventName?: string): this; queryFilter, EventArgsObject>( event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>>; interface: VDelegatorInterfaceInterface; functions: { _setImplementation( implementation_: string, allowResign: boolean, becomeImplementationData: BytesLike, overrides?: Overrides & { from?: string | Promise } ): Promise; }; _setImplementation( implementation_: string, allowResign: boolean, becomeImplementationData: BytesLike, overrides?: Overrides & { from?: string | Promise } ): Promise; callStatic: { _setImplementation( implementation_: string, allowResign: boolean, becomeImplementationData: BytesLike, overrides?: CallOverrides ): Promise; }; filters: { "NewImplementation(address,address)"( oldImplementation?: null, newImplementation?: null ): TypedEventFilter< [string, string], { oldImplementation: string; newImplementation: string } >; NewImplementation( oldImplementation?: null, newImplementation?: null ): TypedEventFilter< [string, string], { oldImplementation: string; newImplementation: string } >; }; estimateGas: { _setImplementation( implementation_: string, allowResign: boolean, becomeImplementationData: BytesLike, overrides?: Overrides & { from?: string | Promise } ): Promise; }; populateTransaction: { _setImplementation( implementation_: string, allowResign: boolean, becomeImplementationData: BytesLike, overrides?: Overrides & { from?: string | Promise } ): Promise; }; }