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 ViexProofVerifierInterface extends Interface { getFunction(nameOrSignature: "accountAddress" | "accountHash" | "addWhitelistAddress" | "isAuthorizeVerify" | "owner" | "removeAccountAddress" | "removeAccountHash" | "removeWhitelistAddress" | "renounceOwnership" | "setAccountAddress" | "setAccountHash" | "transferOwnership" | "verifyProof" | "whitelistAddress"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment; encodeFunctionData(functionFragment: "accountAddress", values: [string]): string; encodeFunctionData(functionFragment: "accountHash", values: [AddressLike]): string; encodeFunctionData(functionFragment: "addWhitelistAddress", values: [AddressLike]): string; encodeFunctionData(functionFragment: "isAuthorizeVerify", values?: undefined): string; encodeFunctionData(functionFragment: "owner", values?: undefined): string; encodeFunctionData(functionFragment: "removeAccountAddress", values: [string]): string; encodeFunctionData(functionFragment: "removeAccountHash", values: [AddressLike]): string; encodeFunctionData(functionFragment: "removeWhitelistAddress", values: [AddressLike]): string; encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string; encodeFunctionData(functionFragment: "setAccountAddress", values: [string, AddressLike]): string; encodeFunctionData(functionFragment: "setAccountHash", values: [AddressLike, string]): string; encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string; encodeFunctionData(functionFragment: "verifyProof", values: [ [ BigNumberish, BigNumberish ], [ [BigNumberish, BigNumberish], [BigNumberish, BigNumberish] ], [ BigNumberish, BigNumberish ], [ BigNumberish, BigNumberish ] ]): string; encodeFunctionData(functionFragment: "whitelistAddress", values: [AddressLike]): string; decodeFunctionResult(functionFragment: "accountAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "accountHash", data: BytesLike): Result; decodeFunctionResult(functionFragment: "addWhitelistAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "isAuthorizeVerify", data: BytesLike): Result; decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result; decodeFunctionResult(functionFragment: "removeAccountAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "removeAccountHash", data: BytesLike): Result; decodeFunctionResult(functionFragment: "removeWhitelistAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result; decodeFunctionResult(functionFragment: "setAccountAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "setAccountHash", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result; decodeFunctionResult(functionFragment: "verifyProof", data: BytesLike): Result; decodeFunctionResult(functionFragment: "whitelistAddress", data: BytesLike): Result; } export declare namespace OwnershipTransferredEvent { type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; type OutputTuple = [previousOwner: string, newOwner: string]; interface OutputObject { previousOwner: string; newOwner: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface ViexProofVerifier extends BaseContract { connect(runner?: ContractRunner | null): ViexProofVerifier; waitForDeployment(): Promise; interface: ViexProofVerifierInterface; 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; accountAddress: TypedContractMethod<[arg0: string], [string], "view">; accountHash: TypedContractMethod<[arg0: AddressLike], [string], "view">; addWhitelistAddress: TypedContractMethod<[ _address: AddressLike ], [ void ], "nonpayable">; isAuthorizeVerify: TypedContractMethod<[], [boolean], "view">; owner: TypedContractMethod<[], [string], "view">; removeAccountAddress: TypedContractMethod<[ _hashId: string ], [ void ], "nonpayable">; removeAccountHash: TypedContractMethod<[ _account: AddressLike ], [ void ], "nonpayable">; removeWhitelistAddress: TypedContractMethod<[ _address: AddressLike ], [ void ], "nonpayable">; renounceOwnership: TypedContractMethod<[], [void], "nonpayable">; setAccountAddress: TypedContractMethod<[ _hashId: string, _account: AddressLike ], [ void ], "nonpayable">; setAccountHash: TypedContractMethod<[ _account: AddressLike, _accountHash: string ], [ void ], "nonpayable">; transferOwnership: TypedContractMethod<[ newOwner: AddressLike ], [ void ], "nonpayable">; verifyProof: TypedContractMethod<[ _pA: [BigNumberish, BigNumberish], _pB: [[BigNumberish, BigNumberish], [BigNumberish, BigNumberish]], _pC: [BigNumberish, BigNumberish], _pubSignals: [BigNumberish, BigNumberish] ], [ boolean ], "view">; whitelistAddress: TypedContractMethod<[arg0: AddressLike], [boolean], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "accountAddress"): TypedContractMethod<[arg0: string], [string], "view">; getFunction(nameOrSignature: "accountHash"): TypedContractMethod<[arg0: AddressLike], [string], "view">; getFunction(nameOrSignature: "addWhitelistAddress"): TypedContractMethod<[_address: AddressLike], [void], "nonpayable">; getFunction(nameOrSignature: "isAuthorizeVerify"): TypedContractMethod<[], [boolean], "view">; getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "removeAccountAddress"): TypedContractMethod<[_hashId: string], [void], "nonpayable">; getFunction(nameOrSignature: "removeAccountHash"): TypedContractMethod<[_account: AddressLike], [void], "nonpayable">; getFunction(nameOrSignature: "removeWhitelistAddress"): TypedContractMethod<[_address: AddressLike], [void], "nonpayable">; getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">; getFunction(nameOrSignature: "setAccountAddress"): TypedContractMethod<[ _hashId: string, _account: AddressLike ], [ void ], "nonpayable">; getFunction(nameOrSignature: "setAccountHash"): TypedContractMethod<[ _account: AddressLike, _accountHash: string ], [ void ], "nonpayable">; getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">; getFunction(nameOrSignature: "verifyProof"): TypedContractMethod<[ _pA: [BigNumberish, BigNumberish], _pB: [[BigNumberish, BigNumberish], [BigNumberish, BigNumberish]], _pC: [BigNumberish, BigNumberish], _pubSignals: [BigNumberish, BigNumberish] ], [ boolean ], "view">; getFunction(nameOrSignature: "whitelistAddress"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">; getEvent(key: "OwnershipTransferred"): TypedContractEvent; filters: { "OwnershipTransferred(address,address)": TypedContractEvent; OwnershipTransferred: TypedContractEvent; }; }