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 IDropFactoryEventsV0Interface extends utils.Interface { functions: {}; events: { "CedarImplementationDeployed(address,uint256,uint256,uint256,string)": EventFragment; "DropContractDeployment(address,uint256,uint256,uint256,address,string,string,address,address,uint128,string,uint128,address)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "CedarImplementationDeployed"): EventFragment; getEvent(nameOrSignatureOrTopic: "DropContractDeployment"): EventFragment; } 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 DropContractDeploymentEventObject { contractAddress: string; majorVersion: BigNumber; minorVersion: BigNumber; patchVersion: BigNumber; adminAddress: string; name: string; symbol: string; saleRecipient: string; defaultRoyaltyRecipient: string; defaultRoyaltyBps: BigNumber; userAgreement: string; platformFeeBps: BigNumber; platformFeeRecipient: string; } export type DropContractDeploymentEvent = TypedEvent<[ string, BigNumber, BigNumber, BigNumber, string, string, string, string, string, BigNumber, string, BigNumber, string ], DropContractDeploymentEventObject>; export type DropContractDeploymentEventFilter = TypedEventFilter; export interface IDropFactoryEventsV0 extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: IDropFactoryEventsV0Interface; 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: { "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; "DropContractDeployment(address,uint256,uint256,uint256,address,string,string,address,address,uint128,string,uint128,address)"(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, adminAddress?: null, name?: null, symbol?: null, saleRecipient?: null, defaultRoyaltyRecipient?: null, defaultRoyaltyBps?: null, userAgreement?: null, platformFeeBps?: null, platformFeeRecipient?: null): DropContractDeploymentEventFilter; DropContractDeployment(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, adminAddress?: null, name?: null, symbol?: null, saleRecipient?: null, defaultRoyaltyRecipient?: null, defaultRoyaltyBps?: null, userAgreement?: null, platformFeeBps?: null, platformFeeRecipient?: null): DropContractDeploymentEventFilter; }; estimateGas: {}; populateTransaction: {}; }