MsgDeleteCollection
Authorization
Proto Definition
message MsgDeleteCollection {
string creator = 1; // Address requesting deletion (must be manager)
string collectionId = 2; // ID of collection to delete
}
message MsgDeleteCollectionResponse {}Usage Example
# CLI command
bitbadgeschaind tx badges delete-collection [collection-id] --from manager-keyJSON Example
{
"creator": "bb1...",
"collectionId": "1"
}Last updated