/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener, } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod, } from "../common"; export interface DeliverOwnableInterface extends Interface { getFunction( nameOrSignature: "core" | "guardian" | "owner" | "paused" ): FunctionFragment; encodeFunctionData(functionFragment: "core", values?: undefined): string; encodeFunctionData(functionFragment: "guardian", values?: undefined): string; encodeFunctionData(functionFragment: "owner", values?: undefined): string; encodeFunctionData(functionFragment: "paused", values?: undefined): string; decodeFunctionResult(functionFragment: "core", data: BytesLike): Result; decodeFunctionResult(functionFragment: "guardian", data: BytesLike): Result; decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result; decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result; } export interface DeliverOwnable extends BaseContract { connect(runner?: ContractRunner | null): DeliverOwnable; waitForDeployment(): Promise; interface: DeliverOwnableInterface; 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; core: TypedContractMethod<[], [string], "view">; guardian: TypedContractMethod<[], [string], "view">; owner: TypedContractMethod<[], [string], "view">; paused: TypedContractMethod<[], [boolean], "view">; getFunction( key: string | FunctionFragment ): T; getFunction( nameOrSignature: "core" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "guardian" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "owner" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "paused" ): TypedContractMethod<[], [boolean], "view">; filters: {}; }