import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../common"; export interface StdError0820Interface extends Interface { getFunction(nameOrSignature: "arithmeticError" | "assertionError" | "divisionError" | "encodeStorageError" | "enumConversionError" | "indexOOBError" | "lowLevelError" | "memOverflowError" | "popError" | "zeroVarError"): FunctionFragment; encodeFunctionData(functionFragment: "arithmeticError", values?: undefined): string; encodeFunctionData(functionFragment: "assertionError", values?: undefined): string; encodeFunctionData(functionFragment: "divisionError", values?: undefined): string; encodeFunctionData(functionFragment: "encodeStorageError", values?: undefined): string; encodeFunctionData(functionFragment: "enumConversionError", values?: undefined): string; encodeFunctionData(functionFragment: "indexOOBError", values?: undefined): string; encodeFunctionData(functionFragment: "lowLevelError", values?: undefined): string; encodeFunctionData(functionFragment: "memOverflowError", values?: undefined): string; encodeFunctionData(functionFragment: "popError", values?: undefined): string; encodeFunctionData(functionFragment: "zeroVarError", values?: undefined): string; decodeFunctionResult(functionFragment: "arithmeticError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "assertionError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "divisionError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "encodeStorageError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "enumConversionError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "indexOOBError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "lowLevelError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "memOverflowError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "popError", data: BytesLike): Result; decodeFunctionResult(functionFragment: "zeroVarError", data: BytesLike): Result; } export interface StdError0820 extends BaseContract { connect(runner?: ContractRunner | null): StdError0820; waitForDeployment(): Promise; interface: StdError0820Interface; 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; arithmeticError: TypedContractMethod<[], [string], "view">; assertionError: TypedContractMethod<[], [string], "view">; divisionError: TypedContractMethod<[], [string], "view">; encodeStorageError: TypedContractMethod<[], [string], "view">; enumConversionError: TypedContractMethod<[], [string], "view">; indexOOBError: TypedContractMethod<[], [string], "view">; lowLevelError: TypedContractMethod<[], [string], "view">; memOverflowError: TypedContractMethod<[], [string], "view">; popError: TypedContractMethod<[], [string], "view">; zeroVarError: TypedContractMethod<[], [string], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "arithmeticError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "assertionError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "divisionError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "encodeStorageError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "enumConversionError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "indexOOBError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "lowLevelError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "memOverflowError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "popError"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "zeroVarError"): TypedContractMethod<[], [string], "view">; filters: {}; }