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