/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils, } from "ethers"; import type { FunctionFragment, Result } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue, } from "../../../common"; export interface EchidnaFuzzAddressAliasingInterface extends utils.Interface { functions: { "echidna_round_trip_aliasing()": FunctionFragment; "testRoundTrip(address)": FunctionFragment; }; getFunction( nameOrSignatureOrTopic: "echidna_round_trip_aliasing" | "testRoundTrip" ): FunctionFragment; encodeFunctionData( functionFragment: "echidna_round_trip_aliasing", values?: undefined ): string; encodeFunctionData( functionFragment: "testRoundTrip", values: [PromiseOrValue] ): string; decodeFunctionResult( functionFragment: "echidna_round_trip_aliasing", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "testRoundTrip", data: BytesLike ): Result; events: {}; } export interface EchidnaFuzzAddressAliasing extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: EchidnaFuzzAddressAliasingInterface; queryFilter( event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>; listeners( eventFilter?: TypedEventFilter ): Array>; listeners(eventName?: string): Array; removeAllListeners( eventFilter: TypedEventFilter ): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { echidna_round_trip_aliasing(overrides?: CallOverrides): Promise<[boolean]>; testRoundTrip( addr: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; }; echidna_round_trip_aliasing(overrides?: CallOverrides): Promise; testRoundTrip( addr: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; callStatic: { echidna_round_trip_aliasing(overrides?: CallOverrides): Promise; testRoundTrip( addr: PromiseOrValue, overrides?: CallOverrides ): Promise; }; filters: {}; estimateGas: { echidna_round_trip_aliasing(overrides?: CallOverrides): Promise; testRoundTrip( addr: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; }; populateTransaction: { echidna_round_trip_aliasing( overrides?: CallOverrides ): Promise; testRoundTrip( addr: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; }; }