MsgSetValidTokenIds
MsgSetValidTokenIds
Overview
Authorization & Permissions
Proto Definition
message MsgSetValidTokenIds {
option (cosmos.msg.v1.signer) = "creator";
option (amino.name) = "badges/SetValidTokenIds";
// Address of the creator.
string creator = 1;
// ID of the collection.
string collectionId = 2 [(gogoproto.customtype) = "Uint", (gogoproto.nullable) = false];
// New token IDs to add to this collection
repeated UintRange validTokenIds = 3;
// Permission to update valid token IDs
repeated TokenIdsActionPermission canUpdateValidTokenIds = 4;
}
message MsgSetValidTokenIdsResponse {
// ID of the collection.
string collectionId = 1 [(gogoproto.customtype) = "Uint", (gogoproto.nullable) = false];
}Usage Example
JSON Example
Related Messages
Last updated