difftreelog
refactor remove outdated events
in: master
1 file changed
pallets/unique/src/lib.rsdiffbeforeafterboth115 /// * owner: New sponsor address.115 /// * owner: New sponsor address.116 CollectionSponsorSet(CollectionId, AccountId),116 CollectionSponsorSet(CollectionId, AccountId),117118 /// const on chain schema was set119 ///120 /// # Arguments121 ///122 /// * collection_id: Globally unique collection identifier.123 ConstOnChainSchemaSet(CollectionId),124117125 /// New sponsor was confirm118 /// New sponsor was confirm126 ///119 ///165 /// * collection_id: Globally unique collection identifier.158 /// * collection_id: Globally unique collection identifier.166 CollectionLimitSet(CollectionId),159 CollectionLimitSet(CollectionId),167160168 CollectionPermissionSet(CollectionId),161 CollectionPermissionSet(CollectionId),169170 /// Mint permission was set171 ///172 /// # Arguments173 ///174 /// * collection_id: Globally unique collection identifier.175 MintPermissionSet(CollectionId),176177 /// Offchain schema was set178 ///179 /// # Arguments180 ///181 /// * collection_id: Globally unique collection identifier.182 OffchainSchemaSet(CollectionId),183184 /// Public access mode was set185 ///186 /// # Arguments187 ///188 /// * collection_id: Globally unique collection identifier.189 ///190 /// * mode: New access state.191 PublicAccessModeSet(CollectionId, AccessMode),192193 /// Schema version was set194 ///195 /// # Arguments196 ///197 /// * collection_id: Globally unique collection identifier.198 SchemaVersionSet(CollectionId),199 }162 }200}163}201164