import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "./common"; export interface IERC1271Interface extends Interface { getFunction(nameOrSignature: "isValidSignature"): FunctionFragment; encodeFunctionData(functionFragment: "isValidSignature", values: [BytesLike, BytesLike]): string; decodeFunctionResult(functionFragment: "isValidSignature", data: BytesLike): Result; } export interface IERC1271 extends BaseContract { connect(runner?: ContractRunner | null): IERC1271; waitForDeployment(): Promise; interface: IERC1271Interface; 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; isValidSignature: TypedContractMethod<[ hash: BytesLike, signature: BytesLike ], [ string ], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "isValidSignature"): TypedContractMethod<[ hash: BytesLike, signature: BytesLike ], [ string ], "view">; filters: {}; }