MsgSetCollectionMetadata
MsgSetCollectionMetadata
Overview
Authorization & Permissions
Proto Definition
message MsgSetCollectionMetadata {
option (cosmos.msg.v1.signer) = "creator";
option (amino.name) = "badges/SetCollectionMetadata";
// Address of the creator.
string creator = 1;
// ID of the collection.
string collectionId = 2 [(gogoproto.customtype) = "Uint", (gogoproto.nullable) = false];
// New collection metadata to set.
CollectionMetadata collectionMetadata = 3;
// Permission to update collection metadata
repeated ActionPermission canUpdateCollectionMetadata = 4;
}
message MsgSetCollectionMetadataResponse {
// ID of the collection.
string collectionId = 1 [(gogoproto.customtype) = "Uint", (gogoproto.nullable) = false];
}Usage Example
JSON Example
Related Messages
Last updated