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 IAspenERC1155DropFactoryEventsV0Interface extends utils.Interface { functions: {}; events: { "AspenERC1155DropV2Deployment(address,uint256,uint256,uint256)": EventFragment; "AspenImplementationDeployed(address,uint256,uint256,uint256,string)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "AspenERC1155DropV2Deployment"): EventFragment; getEvent(nameOrSignatureOrTopic: "AspenImplementationDeployed"): EventFragment; } export interface AspenERC1155DropV2DeploymentEventObject { contractAddress: string; majorVersion: BigNumber; minorVersion: BigNumber; patchVersion: BigNumber; } export type AspenERC1155DropV2DeploymentEvent = TypedEvent<[ string, BigNumber, BigNumber, BigNumber ], AspenERC1155DropV2DeploymentEventObject>; export type AspenERC1155DropV2DeploymentEventFilter = TypedEventFilter; export interface AspenImplementationDeployedEventObject { implementationAddress: string; majorVersion: BigNumber; minorVersion: BigNumber; patchVersion: BigNumber; contractName: string; } export type AspenImplementationDeployedEvent = TypedEvent<[ string, BigNumber, BigNumber, BigNumber, string ], AspenImplementationDeployedEventObject>; export type AspenImplementationDeployedEventFilter = TypedEventFilter; export interface IAspenERC1155DropFactoryEventsV0 extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: IAspenERC1155DropFactoryEventsV0Interface; 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: { "AspenERC1155DropV2Deployment(address,uint256,uint256,uint256)"(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null): AspenERC1155DropV2DeploymentEventFilter; AspenERC1155DropV2Deployment(contractAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null): AspenERC1155DropV2DeploymentEventFilter; "AspenImplementationDeployed(address,uint256,uint256,uint256,string)"(implementationAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, contractName?: null): AspenImplementationDeployedEventFilter; AspenImplementationDeployed(implementationAddress?: PromiseOrValue | null, majorVersion?: PromiseOrValue | null, minorVersion?: PromiseOrValue | null, patchVersion?: null, contractName?: null): AspenImplementationDeployedEventFilter; }; estimateGas: {}; populateTransaction: {}; }