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