import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common"; export interface ArbOwnerPublicInterface extends Interface { getFunction(nameOrSignature: "getAllChainOwners" | "getBrotliCompressionLevel" | "getInfraFeeAccount" | "getNetworkFeeAccount" | "getScheduledUpgrade" | "isChainOwner" | "rectifyChainOwner"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "ChainOwnerRectified"): EventFragment; encodeFunctionData(functionFragment: "getAllChainOwners", values?: undefined): string; encodeFunctionData(functionFragment: "getBrotliCompressionLevel", values?: undefined): string; encodeFunctionData(functionFragment: "getInfraFeeAccount", values?: undefined): string; encodeFunctionData(functionFragment: "getNetworkFeeAccount", values?: undefined): string; encodeFunctionData(functionFragment: "getScheduledUpgrade", values?: undefined): string; encodeFunctionData(functionFragment: "isChainOwner", values: [AddressLike]): string; encodeFunctionData(functionFragment: "rectifyChainOwner", values: [AddressLike]): string; decodeFunctionResult(functionFragment: "getAllChainOwners", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getBrotliCompressionLevel", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getInfraFeeAccount", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getNetworkFeeAccount", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getScheduledUpgrade", data: BytesLike): Result; decodeFunctionResult(functionFragment: "isChainOwner", data: BytesLike): Result; decodeFunctionResult(functionFragment: "rectifyChainOwner", data: BytesLike): Result; } export declare namespace ChainOwnerRectifiedEvent { type InputTuple = [rectifiedOwner: AddressLike]; type OutputTuple = [rectifiedOwner: string]; interface OutputObject { rectifiedOwner: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface ArbOwnerPublic extends BaseContract { connect(runner?: ContractRunner | null): ArbOwnerPublic; waitForDeployment(): Promise; interface: ArbOwnerPublicInterface; 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; getAllChainOwners: TypedContractMethod<[], [string[]], "view">; getBrotliCompressionLevel: TypedContractMethod<[], [bigint], "view">; getInfraFeeAccount: TypedContractMethod<[], [string], "view">; getNetworkFeeAccount: TypedContractMethod<[], [string], "view">; getScheduledUpgrade: TypedContractMethod<[ ], [ [ bigint, bigint ] & { arbosVersion: bigint; scheduledForTimestamp: bigint; } ], "view">; isChainOwner: TypedContractMethod<[addr: AddressLike], [boolean], "view">; rectifyChainOwner: TypedContractMethod<[ ownerToRectify: AddressLike ], [ void ], "nonpayable">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "getAllChainOwners"): TypedContractMethod<[], [string[]], "view">; getFunction(nameOrSignature: "getBrotliCompressionLevel"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "getInfraFeeAccount"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "getNetworkFeeAccount"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "getScheduledUpgrade"): TypedContractMethod<[ ], [ [ bigint, bigint ] & { arbosVersion: bigint; scheduledForTimestamp: bigint; } ], "view">; getFunction(nameOrSignature: "isChainOwner"): TypedContractMethod<[addr: AddressLike], [boolean], "view">; getFunction(nameOrSignature: "rectifyChainOwner"): TypedContractMethod<[ownerToRectify: AddressLike], [void], "nonpayable">; getEvent(key: "ChainOwnerRectified"): TypedContractEvent; filters: { "ChainOwnerRectified(address)": TypedContractEvent; ChainOwnerRectified: TypedContractEvent; }; } //# sourceMappingURL=ArbOwnerPublic.d.ts.map