@@ -180,47 +180,28 @@ declare module '@polkadot/api/types/events' {
180180 contracts : {
181181 /**
182182 * A code with the specified hash was removed.
183- * \[code_hash\]
184183 *
185184 * This happens when the last contract that uses this code hash was removed.
186185 **/
187186 CodeRemoved : AugmentedEvent < ApiType , [ H256 ] > ;
188187 /**
189- * Code with the specified hash has been stored. \[code_hash\]
188+ * Code with the specified hash has been stored.
190189 **/
191190 CodeStored : AugmentedEvent < ApiType , [ H256 ] > ;
192191 /**
193192 * A custom event emitted by the contract.
194- * \[contract, data\]
195- *
196- * # Params
197- *
198- * - `contract`: The contract that emitted the event.
199- * - `data`: Data supplied by the contract. Metadata generated during contract compilation
200- * is needed to decode it.
201193 **/
202194 ContractEmitted : AugmentedEvent < ApiType , [ AccountId32 , Bytes ] > ;
203195 /**
204- * Contract deployed by address at the specified address. \[deployer, contract\]
196+ * Contract deployed by address at the specified address.
205197 **/
206198 Instantiated : AugmentedEvent < ApiType , [ AccountId32 , AccountId32 ] > ;
207199 /**
208200 * Triggered when the current schedule is updated.
209- * \[version\]
210- *
211- * # Params
212- *
213- * - `version`: The version of the newly set schedule.
214201 **/
215202 ScheduleUpdated : AugmentedEvent < ApiType , [ u32 ] > ;
216203 /**
217204 * Contract has been removed.
218- * \[contract, beneficiary\]
219- *
220- * # Params
221- *
222- * - `contract`: The contract that was terminated.
223- * - `beneficiary`: The account that received the contracts remaining balance.
224205 *
225206 * # Note
226207 *
0 commit comments