import type { BaseContract, BigNumber, BigNumberish, Signer, utils } from "ethers"; import type { EventFragment } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "../../common"; export interface ICedarDeployerOwnEventsV1Interface extends utils.Interface { functions: {}; events: { "CedarInterfaceDeployed(address,uint256,uint256,uint256,string)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "CedarInterfaceDeployed"): EventFragment; } export interface CedarInterfaceDeployedEventObject { contractAddress: string; majorVersion: BigNumber; minorVersion: BigNumber; patchVersion: BigNumber; implementationInterfaceId: string; } export type CedarInterfaceDeployedEvent = TypedEvent<[ string, BigNumber, BigNumber, BigNumber, string ], CedarInterfaceDeployedEventObject>; export type CedarInterfaceDeployedEventFilter = TypedEventFilter; export interface ICedarDeployerOwnEventsV1 extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ICedarDeployerOwnEventsV1Interface; 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: {}; callStatic: {}; filters: { "CedarInterfaceDeployed(address,uint256,uint256,uint256,string)"(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, implementationInterfaceId?: null): CedarInterfaceDeployedEventFilter; CedarInterfaceDeployed(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, implementationInterfaceId?: null): CedarInterfaceDeployedEventFilter; }; estimateGas: {}; populateTransaction: {}; }