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