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