createVerifiedCollection
Create a new Verified Collection.
_18const collection = await mirrorworld.createVerifiedCollection({_18 name: "COLLECTION_NAME",_18 symbol: "COLLECTION_SYMBOL",_18 metadataUri: "https://my-collection-metadata-uri/metadata.json"_18})_18_18// Returns `IVerifiedCollection`_18export interface IVerifiedCollection {_18 mint_address: string;_18 url: string;_18 update_authority: string;_18 creator_address: string;_18 name: string;_18 symbol: string;_18 collection?: null;_18 signature: string;_18 status: string;_18}
Edit this page on GitHub