MsgDeleteCollection
Deleting a collection is self-explanatory. The manager can delete the collection with MsgDeleteCollection as long as they have the permission to do so (the canDeleteCollection permission).
Deleting a collection will wipe it from the blockchain entirely.
export interface MsgDeleteCollection<T extends NumberType> {
creator: string;
collectionId: T;
}
Last updated