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 ICedarERC721PremintFactoryEventsV1Interface extends utils.Interface { functions: {}; events: { "CedarERC721PremintDeployment(address,uint256,uint256,uint256,address,string,string,uint256,string,string)": EventFragment; "CedarImplementationDeployed(address,uint256,uint256,uint256,string)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "CedarERC721PremintDeployment"): EventFragment; getEvent(nameOrSignatureOrTopic: "CedarImplementationDeployed"): EventFragment; } export interface CedarERC721PremintDeploymentEventObject { contractAddress: string; majorVersion: BigNumber; minorVersion: BigNumber; patchVersion: BigNumber; adminAddress: string; name: string; symbol: string; maxLimit: BigNumber; userAgreement: string; baseURI: string; } export type CedarERC721PremintDeploymentEvent = TypedEvent<[ string, BigNumber, BigNumber, BigNumber, string, string, string, BigNumber, string, string ], CedarERC721PremintDeploymentEventObject>; export type CedarERC721PremintDeploymentEventFilter = TypedEventFilter; export interface CedarImplementationDeployedEventObject { implementationAddress: string; majorVersion: BigNumber; minorVersion: BigNumber; patchVersion: BigNumber; contractName: string; } export type CedarImplementationDeployedEvent = TypedEvent<[ string, BigNumber, BigNumber, BigNumber, string ], CedarImplementationDeployedEventObject>; export type CedarImplementationDeployedEventFilter = TypedEventFilter; export interface ICedarERC721PremintFactoryEventsV1 extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ICedarERC721PremintFactoryEventsV1Interface; 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: { "CedarERC721PremintDeployment(address,uint256,uint256,uint256,address,string,string,uint256,string,string)"(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, adminAddress?: null, name?: null, symbol?: null, maxLimit?: null, userAgreement?: null, baseURI?: null): CedarERC721PremintDeploymentEventFilter; CedarERC721PremintDeployment(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, adminAddress?: null, name?: null, symbol?: null, maxLimit?: null, userAgreement?: null, baseURI?: null): CedarERC721PremintDeploymentEventFilter; "CedarImplementationDeployed(address,uint256,uint256,uint256,string)"(implementationAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, contractName?: null): CedarImplementationDeployedEventFilter; CedarImplementationDeployed(implementationAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, contractName?: null): CedarImplementationDeployedEventFilter; }; estimateGas: {}; populateTransaction: {}; }