MsgCreateCollection
Creation Only Properties
Proto Definition
message MsgCreateCollection {
string creator = 1; // Address creating the collection
UserBalanceStore defaultBalances = 2;
repeated UintRange validTokenIds = 3; // Token ID ranges to include
CollectionPermissions collectionPermissions = 4;
string manager = 5;
CollectionMetadata collectionMetadata = 6;
repeated TokenMetadata tokenMetadata = 7;
string customData = 8;
repeated CollectionApproval collectionApprovals = 9;
repeated string standards = 10;
bool isArchived = 11;
repeated cosmos.base.v1beta1.Coin mintEscrowCoinsToTransfer = 12;
repeated CosmosCoinWrapperPathAddObject cosmosCoinWrapperPathsToAdd = 13;
repeated AliasPathAddObject aliasPathsToAdd = 14; // NEW: Separate array for alias paths
CollectionInvariants invariants = 15;
}
message MsgCreateCollectionResponse {
string collectionId = 1; // ID of the created collection
}Usage Example
JSON Example
Last updated