git.delta.rocks / unique-network / refs/commits / c3cc2bb5c4b4

difftreelog

refactor remove outdated events

Yaroslav Bolyukin2022-05-27parent: #34dcce2.patch.diff
in: master

1 file changed

modifiedpallets/unique/src/lib.rsdiffbeforeafterboth
115 /// * owner: New sponsor address.115 /// * owner: New sponsor address.
116 CollectionSponsorSet(CollectionId, AccountId),116 CollectionSponsorSet(CollectionId, AccountId),
117
118 /// const on chain schema was set
119 ///
120 /// # Arguments
121 ///
122 /// * collection_id: Globally unique collection identifier.
123 ConstOnChainSchemaSet(CollectionId),
124117
125 /// New sponsor was confirm118 /// New sponsor was confirm
126 ///119 ///
165 /// * collection_id: Globally unique collection identifier.158 /// * collection_id: Globally unique collection identifier.
166 CollectionLimitSet(CollectionId),159 CollectionLimitSet(CollectionId),
167160
168 CollectionPermissionSet(CollectionId),161 CollectionPermissionSet(CollectionId),
169
170 /// Mint permission was set
171 ///
172 /// # Arguments
173 ///
174 /// * collection_id: Globally unique collection identifier.
175 MintPermissionSet(CollectionId),
176
177 /// Offchain schema was set
178 ///
179 /// # Arguments
180 ///
181 /// * collection_id: Globally unique collection identifier.
182 OffchainSchemaSet(CollectionId),
183
184 /// Public access mode was set
185 ///
186 /// # Arguments
187 ///
188 /// * collection_id: Globally unique collection identifier.
189 ///
190 /// * mode: New access state.
191 PublicAccessModeSet(CollectionId, AccessMode),
192
193 /// Schema version was set
194 ///
195 /// # Arguments
196 ///
197 /// * collection_id: Globally unique collection identifier.
198 SchemaVersionSet(CollectionId),
199 }162 }
200}163}
201164