import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common"; export interface EIP1271VerifierInterface extends Interface { getFunction(nameOrSignature: "eip712Domain" | "getAttestTypeHash" | "getDomainSeparator" | "getName" | "getNonce" | "getRevokeTypeHash" | "increaseNonce"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "EIP712DomainChanged" | "NonceIncreased"): EventFragment; encodeFunctionData(functionFragment: "eip712Domain", values?: undefined): string; encodeFunctionData(functionFragment: "getAttestTypeHash", values?: undefined): string; encodeFunctionData(functionFragment: "getDomainSeparator", values?: undefined): string; encodeFunctionData(functionFragment: "getName", values?: undefined): string; encodeFunctionData(functionFragment: "getNonce", values: [AddressLike]): string; encodeFunctionData(functionFragment: "getRevokeTypeHash", values?: undefined): string; encodeFunctionData(functionFragment: "increaseNonce", values: [BigNumberish]): string; decodeFunctionResult(functionFragment: "eip712Domain", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getAttestTypeHash", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getDomainSeparator", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getName", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getNonce", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getRevokeTypeHash", data: BytesLike): Result; decodeFunctionResult(functionFragment: "increaseNonce", data: BytesLike): Result; } export declare namespace EIP712DomainChangedEvent { type InputTuple = []; type OutputTuple = []; interface OutputObject { } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace NonceIncreasedEvent { type InputTuple = [oldNonce: BigNumberish, newNonce: BigNumberish]; type OutputTuple = [oldNonce: bigint, newNonce: bigint]; interface OutputObject { oldNonce: bigint; newNonce: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface EIP1271Verifier extends BaseContract { connect(runner?: ContractRunner | null): EIP1271Verifier; waitForDeployment(): Promise; interface: EIP1271VerifierInterface; 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; eip712Domain: TypedContractMethod<[ ], [ [ string, string, string, bigint, string, string, bigint[] ] & { fields: string; name: string; version: string; chainId: bigint; verifyingContract: string; salt: string; extensions: bigint[]; } ], "view">; getAttestTypeHash: TypedContractMethod<[], [string], "view">; getDomainSeparator: TypedContractMethod<[], [string], "view">; getName: TypedContractMethod<[], [string], "view">; getNonce: TypedContractMethod<[account: AddressLike], [bigint], "view">; getRevokeTypeHash: TypedContractMethod<[], [string], "view">; increaseNonce: TypedContractMethod<[ newNonce: BigNumberish ], [ void ], "nonpayable">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "eip712Domain"): TypedContractMethod<[ ], [ [ string, string, string, bigint, string, string, bigint[] ] & { fields: string; name: string; version: string; chainId: bigint; verifyingContract: string; salt: string; extensions: bigint[]; } ], "view">; getFunction(nameOrSignature: "getAttestTypeHash"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "getDomainSeparator"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "getName"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "getNonce"): TypedContractMethod<[account: AddressLike], [bigint], "view">; getFunction(nameOrSignature: "getRevokeTypeHash"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "increaseNonce"): TypedContractMethod<[newNonce: BigNumberish], [void], "nonpayable">; getEvent(key: "EIP712DomainChanged"): TypedContractEvent; getEvent(key: "NonceIncreased"): TypedContractEvent; filters: { "EIP712DomainChanged()": TypedContractEvent; EIP712DomainChanged: TypedContractEvent; "NonceIncreased(uint256,uint256)": TypedContractEvent; NonceIncreased: TypedContractEvent; }; } //# sourceMappingURL=EIP1271Verifier.d.ts.map