/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type BN from "bn.js"; import type { ContractOptions } from "web3-eth-contract"; import type { EventLog } from "web3-core"; import type { EventEmitter } from "events"; import type { Callback, PayableTransactionObject, NonPayableTransactionObject, BlockType, ContractEventLog, BaseContract, } from "./types"; export interface EventOptions { filter?: object; fromBlock?: BlockType; topics?: string[]; } export type CollectionCreated = ContractEventLog<{ owner: string; collectionId: string; 0: string; 1: string; }>; export interface CollectionHelpers extends BaseContract { constructor( jsonInterface: any[], address?: string, options?: ContractOptions ): CollectionHelpers; clone(): CollectionHelpers; methods: { collectionCreationFee(): NonPayableTransactionObject; createNFTCollection( name: string, description: string, tokenPrefix: string ): PayableTransactionObject; createRFTCollection( name: string, description: string, tokenPrefix: string ): PayableTransactionObject; isCollectionExist( collectionAddress: string ): NonPayableTransactionObject; makeCollectionERC721MetadataCompatible( collection: string, baseUri: string ): NonPayableTransactionObject; supportsInterface( interfaceID: string | number[] ): NonPayableTransactionObject; }; events: { CollectionCreated(cb?: Callback): EventEmitter; CollectionCreated( options?: EventOptions, cb?: Callback ): EventEmitter; allEvents(options?: EventOptions, cb?: Callback): EventEmitter; }; once(event: "CollectionCreated", cb: Callback): void; once( event: "CollectionCreated", options: EventOptions, cb: Callback ): void; }