@dedot/chaintypes 0.149.0 → 0.151.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,9 +6,9 @@ import type {
6
6
  AccountId32,
7
7
  H256,
8
8
  FixedBytes,
9
+ Bytes,
9
10
  FixedU128,
10
11
  Result,
11
- Bytes,
12
12
  Permill,
13
13
  H160,
14
14
  } from 'dedot/codecs';
@@ -16,9 +16,9 @@ import type {
16
16
  FrameSystemDispatchEventInfo,
17
17
  SpWeightsWeightV2Weight,
18
18
  FrameSupportTokensMiscBalanceStatus,
19
- StagingXcmV4Location,
20
- StagingXcmV5TraitsOutcome,
19
+ PalletBalancesUnexpectedKind,
21
20
  StagingXcmV5Location,
21
+ StagingXcmV5TraitsOutcome,
22
22
  StagingXcmV5Xcm,
23
23
  XcmV3TraitsSendError,
24
24
  XcmV5TraitsError,
@@ -157,6 +157,141 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
157
157
  **/
158
158
  [prop: string]: GenericPalletEvent<Rv>;
159
159
  };
160
+ /**
161
+ * Pallet `MultiBlockMigrations`'s events
162
+ **/
163
+ multiBlockMigrations: {
164
+ /**
165
+ * A Runtime upgrade started.
166
+ *
167
+ * Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`.
168
+ **/
169
+ UpgradeStarted: GenericPalletEvent<
170
+ Rv,
171
+ 'MultiBlockMigrations',
172
+ 'UpgradeStarted',
173
+ {
174
+ /**
175
+ * The number of migrations that this upgrade contains.
176
+ *
177
+ * This can be used to design a progress indicator in combination with counting the
178
+ * `MigrationCompleted` and `MigrationSkipped` events.
179
+ **/
180
+ migrations: number;
181
+ }
182
+ >;
183
+
184
+ /**
185
+ * The current runtime upgrade completed.
186
+ *
187
+ * This implies that all of its migrations completed successfully as well.
188
+ **/
189
+ UpgradeCompleted: GenericPalletEvent<Rv, 'MultiBlockMigrations', 'UpgradeCompleted', null>;
190
+
191
+ /**
192
+ * Runtime upgrade failed.
193
+ *
194
+ * This is very bad and will require governance intervention.
195
+ **/
196
+ UpgradeFailed: GenericPalletEvent<Rv, 'MultiBlockMigrations', 'UpgradeFailed', null>;
197
+
198
+ /**
199
+ * A migration was skipped since it was already executed in the past.
200
+ **/
201
+ MigrationSkipped: GenericPalletEvent<
202
+ Rv,
203
+ 'MultiBlockMigrations',
204
+ 'MigrationSkipped',
205
+ {
206
+ /**
207
+ * The index of the skipped migration within the [`Config::Migrations`] list.
208
+ **/
209
+ index: number;
210
+ }
211
+ >;
212
+
213
+ /**
214
+ * A migration progressed.
215
+ **/
216
+ MigrationAdvanced: GenericPalletEvent<
217
+ Rv,
218
+ 'MultiBlockMigrations',
219
+ 'MigrationAdvanced',
220
+ {
221
+ /**
222
+ * The index of the migration within the [`Config::Migrations`] list.
223
+ **/
224
+ index: number;
225
+
226
+ /**
227
+ * The number of blocks that this migration took so far.
228
+ **/
229
+ took: number;
230
+ }
231
+ >;
232
+
233
+ /**
234
+ * A Migration completed.
235
+ **/
236
+ MigrationCompleted: GenericPalletEvent<
237
+ Rv,
238
+ 'MultiBlockMigrations',
239
+ 'MigrationCompleted',
240
+ {
241
+ /**
242
+ * The index of the migration within the [`Config::Migrations`] list.
243
+ **/
244
+ index: number;
245
+
246
+ /**
247
+ * The number of blocks that this migration took so far.
248
+ **/
249
+ took: number;
250
+ }
251
+ >;
252
+
253
+ /**
254
+ * A Migration failed.
255
+ *
256
+ * This implies that the whole upgrade failed and governance intervention is required.
257
+ **/
258
+ MigrationFailed: GenericPalletEvent<
259
+ Rv,
260
+ 'MultiBlockMigrations',
261
+ 'MigrationFailed',
262
+ {
263
+ /**
264
+ * The index of the migration within the [`Config::Migrations`] list.
265
+ **/
266
+ index: number;
267
+
268
+ /**
269
+ * The number of blocks that this migration took so far.
270
+ **/
271
+ took: number;
272
+ }
273
+ >;
274
+
275
+ /**
276
+ * The set of historical migrations has been cleared.
277
+ **/
278
+ HistoricCleared: GenericPalletEvent<
279
+ Rv,
280
+ 'MultiBlockMigrations',
281
+ 'HistoricCleared',
282
+ {
283
+ /**
284
+ * Should be passed to `clear_historic` in a successive call.
285
+ **/
286
+ nextCursor?: Bytes | undefined;
287
+ }
288
+ >;
289
+
290
+ /**
291
+ * Generic pallet event
292
+ **/
293
+ [prop: string]: GenericPalletEvent<Rv>;
294
+ };
160
295
  /**
161
296
  * Pallet `Balances`'s events
162
297
  **/
@@ -278,6 +413,11 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
278
413
  **/
279
414
  TotalIssuanceForced: GenericPalletEvent<Rv, 'Balances', 'TotalIssuanceForced', { old: bigint; new: bigint }>;
280
415
 
416
+ /**
417
+ * An unexpected/defensive event was triggered.
418
+ **/
419
+ Unexpected: GenericPalletEvent<Rv, 'Balances', 'Unexpected', PalletBalancesUnexpectedKind>;
420
+
281
421
  /**
282
422
  * Generic pallet event
283
423
  **/
@@ -315,7 +455,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
315
455
  Rv,
316
456
  'AssetTxPayment',
317
457
  'AssetTxFeePaid',
318
- { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV4Location }
458
+ { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV5Location }
319
459
  >;
320
460
 
321
461
  /**
@@ -332,6 +472,16 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
332
472
  * Pallet `Vesting`'s events
333
473
  **/
334
474
  vesting: {
475
+ /**
476
+ * A vesting schedule has been created.
477
+ **/
478
+ VestingCreated: GenericPalletEvent<
479
+ Rv,
480
+ 'Vesting',
481
+ 'VestingCreated',
482
+ { account: AccountId32; scheduleIndex: number }
483
+ >;
484
+
335
485
  /**
336
486
  * The amount vested has been updated. This could indicate a change in funds available.
337
487
  * The balance given is the amount which is left unvested (and thus locked).
@@ -448,6 +598,12 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
448
598
  **/
449
599
  NewSession: GenericPalletEvent<Rv, 'Session', 'NewSession', { sessionIndex: number }>;
450
600
 
601
+ /**
602
+ * The `NewSession` event in the current block also implies a new validator set to be
603
+ * queued.
604
+ **/
605
+ NewQueued: GenericPalletEvent<Rv, 'Session', 'NewQueued', null>;
606
+
451
607
  /**
452
608
  * Validator has been disabled.
453
609
  **/
@@ -1143,6 +1299,21 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1143
1299
  { pure: AccountId32; who: AccountId32; proxyType: AssetHubKusamaRuntimeProxyType; disambiguationIndex: number }
1144
1300
  >;
1145
1301
 
1302
+ /**
1303
+ * A pure proxy was killed by its spawner.
1304
+ **/
1305
+ PureKilled: GenericPalletEvent<
1306
+ Rv,
1307
+ 'Proxy',
1308
+ 'PureKilled',
1309
+ {
1310
+ pure: AccountId32;
1311
+ spawner: AccountId32;
1312
+ proxyType: AssetHubKusamaRuntimeProxyType;
1313
+ disambiguationIndex: number;
1314
+ }
1315
+ >;
1316
+
1146
1317
  /**
1147
1318
  * An announcement was placed to make a call in the future.
1148
1319
  **/
@@ -1951,7 +2122,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1951
2122
  Rv,
1952
2123
  'ForeignAssets',
1953
2124
  'Created',
1954
- { assetId: StagingXcmV4Location; creator: AccountId32; owner: AccountId32 }
2125
+ { assetId: StagingXcmV5Location; creator: AccountId32; owner: AccountId32 }
1955
2126
  >;
1956
2127
 
1957
2128
  /**
@@ -1961,7 +2132,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1961
2132
  Rv,
1962
2133
  'ForeignAssets',
1963
2134
  'Issued',
1964
- { assetId: StagingXcmV4Location; owner: AccountId32; amount: bigint }
2135
+ { assetId: StagingXcmV5Location; owner: AccountId32; amount: bigint }
1965
2136
  >;
1966
2137
 
1967
2138
  /**
@@ -1971,7 +2142,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1971
2142
  Rv,
1972
2143
  'ForeignAssets',
1973
2144
  'Transferred',
1974
- { assetId: StagingXcmV4Location; from: AccountId32; to: AccountId32; amount: bigint }
2145
+ { assetId: StagingXcmV5Location; from: AccountId32; to: AccountId32; amount: bigint }
1975
2146
  >;
1976
2147
 
1977
2148
  /**
@@ -1981,7 +2152,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1981
2152
  Rv,
1982
2153
  'ForeignAssets',
1983
2154
  'Burned',
1984
- { assetId: StagingXcmV4Location; owner: AccountId32; balance: bigint }
2155
+ { assetId: StagingXcmV5Location; owner: AccountId32; balance: bigint }
1985
2156
  >;
1986
2157
 
1987
2158
  /**
@@ -1991,7 +2162,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1991
2162
  Rv,
1992
2163
  'ForeignAssets',
1993
2164
  'TeamChanged',
1994
- { assetId: StagingXcmV4Location; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 }
2165
+ { assetId: StagingXcmV5Location; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 }
1995
2166
  >;
1996
2167
 
1997
2168
  /**
@@ -2001,28 +2172,28 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2001
2172
  Rv,
2002
2173
  'ForeignAssets',
2003
2174
  'OwnerChanged',
2004
- { assetId: StagingXcmV4Location; owner: AccountId32 }
2175
+ { assetId: StagingXcmV5Location; owner: AccountId32 }
2005
2176
  >;
2006
2177
 
2007
2178
  /**
2008
2179
  * Some account `who` was frozen.
2009
2180
  **/
2010
- Frozen: GenericPalletEvent<Rv, 'ForeignAssets', 'Frozen', { assetId: StagingXcmV4Location; who: AccountId32 }>;
2181
+ Frozen: GenericPalletEvent<Rv, 'ForeignAssets', 'Frozen', { assetId: StagingXcmV5Location; who: AccountId32 }>;
2011
2182
 
2012
2183
  /**
2013
2184
  * Some account `who` was thawed.
2014
2185
  **/
2015
- Thawed: GenericPalletEvent<Rv, 'ForeignAssets', 'Thawed', { assetId: StagingXcmV4Location; who: AccountId32 }>;
2186
+ Thawed: GenericPalletEvent<Rv, 'ForeignAssets', 'Thawed', { assetId: StagingXcmV5Location; who: AccountId32 }>;
2016
2187
 
2017
2188
  /**
2018
2189
  * Some asset `asset_id` was frozen.
2019
2190
  **/
2020
- AssetFrozen: GenericPalletEvent<Rv, 'ForeignAssets', 'AssetFrozen', { assetId: StagingXcmV4Location }>;
2191
+ AssetFrozen: GenericPalletEvent<Rv, 'ForeignAssets', 'AssetFrozen', { assetId: StagingXcmV5Location }>;
2021
2192
 
2022
2193
  /**
2023
2194
  * Some asset `asset_id` was thawed.
2024
2195
  **/
2025
- AssetThawed: GenericPalletEvent<Rv, 'ForeignAssets', 'AssetThawed', { assetId: StagingXcmV4Location }>;
2196
+ AssetThawed: GenericPalletEvent<Rv, 'ForeignAssets', 'AssetThawed', { assetId: StagingXcmV5Location }>;
2026
2197
 
2027
2198
  /**
2028
2199
  * Accounts were destroyed for given asset.
@@ -2031,7 +2202,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2031
2202
  Rv,
2032
2203
  'ForeignAssets',
2033
2204
  'AccountsDestroyed',
2034
- { assetId: StagingXcmV4Location; accountsDestroyed: number; accountsRemaining: number }
2205
+ { assetId: StagingXcmV5Location; accountsDestroyed: number; accountsRemaining: number }
2035
2206
  >;
2036
2207
 
2037
2208
  /**
@@ -2041,7 +2212,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2041
2212
  Rv,
2042
2213
  'ForeignAssets',
2043
2214
  'ApprovalsDestroyed',
2044
- { assetId: StagingXcmV4Location; approvalsDestroyed: number; approvalsRemaining: number }
2215
+ { assetId: StagingXcmV5Location; approvalsDestroyed: number; approvalsRemaining: number }
2045
2216
  >;
2046
2217
 
2047
2218
  /**
@@ -2051,13 +2222,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2051
2222
  Rv,
2052
2223
  'ForeignAssets',
2053
2224
  'DestructionStarted',
2054
- { assetId: StagingXcmV4Location }
2225
+ { assetId: StagingXcmV5Location }
2055
2226
  >;
2056
2227
 
2057
2228
  /**
2058
2229
  * An asset class was destroyed.
2059
2230
  **/
2060
- Destroyed: GenericPalletEvent<Rv, 'ForeignAssets', 'Destroyed', { assetId: StagingXcmV4Location }>;
2231
+ Destroyed: GenericPalletEvent<Rv, 'ForeignAssets', 'Destroyed', { assetId: StagingXcmV5Location }>;
2061
2232
 
2062
2233
  /**
2063
2234
  * Some asset class was force-created.
@@ -2066,7 +2237,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2066
2237
  Rv,
2067
2238
  'ForeignAssets',
2068
2239
  'ForceCreated',
2069
- { assetId: StagingXcmV4Location; owner: AccountId32 }
2240
+ { assetId: StagingXcmV5Location; owner: AccountId32 }
2070
2241
  >;
2071
2242
 
2072
2243
  /**
@@ -2076,13 +2247,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2076
2247
  Rv,
2077
2248
  'ForeignAssets',
2078
2249
  'MetadataSet',
2079
- { assetId: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean }
2250
+ { assetId: StagingXcmV5Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean }
2080
2251
  >;
2081
2252
 
2082
2253
  /**
2083
2254
  * Metadata has been cleared for an asset.
2084
2255
  **/
2085
- MetadataCleared: GenericPalletEvent<Rv, 'ForeignAssets', 'MetadataCleared', { assetId: StagingXcmV4Location }>;
2256
+ MetadataCleared: GenericPalletEvent<Rv, 'ForeignAssets', 'MetadataCleared', { assetId: StagingXcmV5Location }>;
2086
2257
 
2087
2258
  /**
2088
2259
  * (Additional) funds have been approved for transfer to a destination account.
@@ -2091,7 +2262,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2091
2262
  Rv,
2092
2263
  'ForeignAssets',
2093
2264
  'ApprovedTransfer',
2094
- { assetId: StagingXcmV4Location; source: AccountId32; delegate: AccountId32; amount: bigint }
2265
+ { assetId: StagingXcmV5Location; source: AccountId32; delegate: AccountId32; amount: bigint }
2095
2266
  >;
2096
2267
 
2097
2268
  /**
@@ -2101,7 +2272,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2101
2272
  Rv,
2102
2273
  'ForeignAssets',
2103
2274
  'ApprovalCancelled',
2104
- { assetId: StagingXcmV4Location; owner: AccountId32; delegate: AccountId32 }
2275
+ { assetId: StagingXcmV5Location; owner: AccountId32; delegate: AccountId32 }
2105
2276
  >;
2106
2277
 
2107
2278
  /**
@@ -2113,7 +2284,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2113
2284
  'ForeignAssets',
2114
2285
  'TransferredApproved',
2115
2286
  {
2116
- assetId: StagingXcmV4Location;
2287
+ assetId: StagingXcmV5Location;
2117
2288
  owner: AccountId32;
2118
2289
  delegate: AccountId32;
2119
2290
  destination: AccountId32;
@@ -2128,7 +2299,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2128
2299
  Rv,
2129
2300
  'ForeignAssets',
2130
2301
  'AssetStatusChanged',
2131
- { assetId: StagingXcmV4Location }
2302
+ { assetId: StagingXcmV5Location }
2132
2303
  >;
2133
2304
 
2134
2305
  /**
@@ -2138,7 +2309,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2138
2309
  Rv,
2139
2310
  'ForeignAssets',
2140
2311
  'AssetMinBalanceChanged',
2141
- { assetId: StagingXcmV4Location; newMinBalance: bigint }
2312
+ { assetId: StagingXcmV5Location; newMinBalance: bigint }
2142
2313
  >;
2143
2314
 
2144
2315
  /**
@@ -2148,13 +2319,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2148
2319
  Rv,
2149
2320
  'ForeignAssets',
2150
2321
  'Touched',
2151
- { assetId: StagingXcmV4Location; who: AccountId32; depositor: AccountId32 }
2322
+ { assetId: StagingXcmV5Location; who: AccountId32; depositor: AccountId32 }
2152
2323
  >;
2153
2324
 
2154
2325
  /**
2155
2326
  * Some account `who` was blocked.
2156
2327
  **/
2157
- Blocked: GenericPalletEvent<Rv, 'ForeignAssets', 'Blocked', { assetId: StagingXcmV4Location; who: AccountId32 }>;
2328
+ Blocked: GenericPalletEvent<Rv, 'ForeignAssets', 'Blocked', { assetId: StagingXcmV5Location; who: AccountId32 }>;
2158
2329
 
2159
2330
  /**
2160
2331
  * Some assets were deposited (e.g. for transaction fees).
@@ -2163,7 +2334,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2163
2334
  Rv,
2164
2335
  'ForeignAssets',
2165
2336
  'Deposited',
2166
- { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint }
2337
+ { assetId: StagingXcmV5Location; who: AccountId32; amount: bigint }
2167
2338
  >;
2168
2339
 
2169
2340
  /**
@@ -2173,7 +2344,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2173
2344
  Rv,
2174
2345
  'ForeignAssets',
2175
2346
  'Withdrawn',
2176
- { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint }
2347
+ { assetId: StagingXcmV5Location; who: AccountId32; amount: bigint }
2177
2348
  >;
2178
2349
 
2179
2350
  /**
@@ -2426,7 +2597,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2426
2597
  * The pool id associated with the pool. Note that the order of the assets may not be
2427
2598
  * the same as the order specified in the create pool extrinsic.
2428
2599
  **/
2429
- poolId: [StagingXcmV4Location, StagingXcmV4Location];
2600
+ poolId: [StagingXcmV5Location, StagingXcmV5Location];
2430
2601
 
2431
2602
  /**
2432
2603
  * The account ID of the pool.
@@ -2462,7 +2633,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2462
2633
  /**
2463
2634
  * The pool id of the pool that the liquidity was added to.
2464
2635
  **/
2465
- poolId: [StagingXcmV4Location, StagingXcmV4Location];
2636
+ poolId: [StagingXcmV5Location, StagingXcmV5Location];
2466
2637
 
2467
2638
  /**
2468
2639
  * The amount of the first asset that was added to the pool.
@@ -2507,7 +2678,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2507
2678
  /**
2508
2679
  * The pool id that the liquidity was removed from.
2509
2680
  **/
2510
- poolId: [StagingXcmV4Location, StagingXcmV4Location];
2681
+ poolId: [StagingXcmV5Location, StagingXcmV5Location];
2511
2682
 
2512
2683
  /**
2513
2684
  * The amount of the first asset that was removed from the pool.
@@ -2569,7 +2740,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2569
2740
  * The route of asset IDs with amounts that the swap went through.
2570
2741
  * E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
2571
2742
  **/
2572
- path: Array<[StagingXcmV4Location, bigint]>;
2743
+ path: Array<[StagingXcmV5Location, bigint]>;
2573
2744
  }
2574
2745
  >;
2575
2746
 
@@ -2595,7 +2766,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2595
2766
  * The route of asset IDs with amounts that the swap went through.
2596
2767
  * E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
2597
2768
  **/
2598
- path: Array<[StagingXcmV4Location, bigint]>;
2769
+ path: Array<[StagingXcmV5Location, bigint]>;
2599
2770
  }
2600
2771
  >;
2601
2772
 
@@ -2610,7 +2781,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2610
2781
  /**
2611
2782
  * The ID of the pool.
2612
2783
  **/
2613
- poolId: [StagingXcmV4Location, StagingXcmV4Location];
2784
+ poolId: [StagingXcmV5Location, StagingXcmV5Location];
2614
2785
 
2615
2786
  /**
2616
2787
  * The account initiating the touch.
@@ -2655,6 +2826,11 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2655
2826
  }
2656
2827
  >;
2657
2828
 
2829
+ /**
2830
+ * Contract deployed by deployer at the specified address.
2831
+ **/
2832
+ Instantiated: GenericPalletEvent<Rv, 'Revive', 'Instantiated', { deployer: H160; contract: H160 }>;
2833
+
2658
2834
  /**
2659
2835
  * Generic pallet event
2660
2836
  **/
@@ -25,7 +25,7 @@ export interface VersionedKusamaAssetHubApi<Rv extends RpcVersion> extends Gener
25
25
 
26
26
  /**
27
27
  * @name: KusamaAssetHubApi
28
- * @specVersion: 1006001
28
+ * @specVersion: 1007001
29
29
  **/
30
30
  export interface KusamaAssetHubApi {
31
31
  legacy: VersionedKusamaAssetHubApi<RpcLegacy>;