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 MockNotificationTrackerInterface extends Interface { getFunction(nameOrSignature: "beforeIssuanceAllocationChange" | "lastNotificationBlock" | "notificationCount" | "resetNotificationCount" | "setIssuanceAllocator" | "supportsInterface"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "BeforeIssuanceAllocationChange" | "IssuanceAllocatorSet" | "NotificationReceived"): EventFragment; encodeFunctionData(functionFragment: "beforeIssuanceAllocationChange", values?: undefined): string; encodeFunctionData(functionFragment: "lastNotificationBlock", values?: undefined): string; encodeFunctionData(functionFragment: "notificationCount", values?: undefined): string; encodeFunctionData(functionFragment: "resetNotificationCount", values?: undefined): string; encodeFunctionData(functionFragment: "setIssuanceAllocator", values: [AddressLike]): string; encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string; decodeFunctionResult(functionFragment: "beforeIssuanceAllocationChange", data: BytesLike): Result; decodeFunctionResult(functionFragment: "lastNotificationBlock", data: BytesLike): Result; decodeFunctionResult(functionFragment: "notificationCount", data: BytesLike): Result; decodeFunctionResult(functionFragment: "resetNotificationCount", data: BytesLike): Result; decodeFunctionResult(functionFragment: "setIssuanceAllocator", data: BytesLike): Result; decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result; } export declare namespace BeforeIssuanceAllocationChangeEvent { type InputTuple = []; type OutputTuple = []; interface OutputObject { } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace IssuanceAllocatorSetEvent { type InputTuple = [ oldIssuanceAllocator: AddressLike, newIssuanceAllocator: AddressLike ]; type OutputTuple = [ oldIssuanceAllocator: string, newIssuanceAllocator: string ]; interface OutputObject { oldIssuanceAllocator: string; newIssuanceAllocator: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace NotificationReceivedEvent { type InputTuple = [blockNumber: BigNumberish, count: BigNumberish]; type OutputTuple = [blockNumber: bigint, count: bigint]; interface OutputObject { blockNumber: bigint; count: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface MockNotificationTracker extends BaseContract { connect(runner?: ContractRunner | null): MockNotificationTracker; waitForDeployment(): Promise; interface: MockNotificationTrackerInterface; 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; beforeIssuanceAllocationChange: TypedContractMethod<[], [void], "nonpayable">; lastNotificationBlock: TypedContractMethod<[], [bigint], "view">; notificationCount: TypedContractMethod<[], [bigint], "view">; resetNotificationCount: TypedContractMethod<[], [void], "nonpayable">; setIssuanceAllocator: TypedContractMethod<[ _issuanceAllocator: AddressLike ], [ void ], "view">; supportsInterface: TypedContractMethod<[ interfaceId: BytesLike ], [ boolean ], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "beforeIssuanceAllocationChange"): TypedContractMethod<[], [void], "nonpayable">; getFunction(nameOrSignature: "lastNotificationBlock"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "notificationCount"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "resetNotificationCount"): TypedContractMethod<[], [void], "nonpayable">; getFunction(nameOrSignature: "setIssuanceAllocator"): TypedContractMethod<[_issuanceAllocator: AddressLike], [void], "view">; getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">; getEvent(key: "BeforeIssuanceAllocationChange"): TypedContractEvent; getEvent(key: "IssuanceAllocatorSet"): TypedContractEvent; getEvent(key: "NotificationReceived"): TypedContractEvent; filters: { "BeforeIssuanceAllocationChange()": TypedContractEvent; BeforeIssuanceAllocationChange: TypedContractEvent; "IssuanceAllocatorSet(address,address)": TypedContractEvent; IssuanceAllocatorSet: TypedContractEvent; "NotificationReceived(uint256,uint256)": TypedContractEvent; NotificationReceived: TypedContractEvent; }; }