@dedot/chaintypes 0.0.1-next.f5bf4fc2.1 → 0.1.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.
Files changed (144) hide show
  1. package/README.md +3 -1
  2. package/aleph/consts.d.ts +94 -13
  3. package/aleph/errors.d.ts +251 -182
  4. package/aleph/events.d.ts +319 -102
  5. package/aleph/index.d.ts +16 -11
  6. package/aleph/json-rpc.d.ts +76 -0
  7. package/aleph/query.d.ts +261 -168
  8. package/aleph/runtime.d.ts +90 -39
  9. package/aleph/tx.d.ts +1822 -1052
  10. package/aleph/types.d.ts +458 -138
  11. package/astar/consts.d.ts +112 -116
  12. package/astar/errors.d.ts +342 -409
  13. package/astar/events.d.ts +449 -358
  14. package/astar/index.d.ts +16 -11
  15. package/astar/json-rpc.d.ts +131 -0
  16. package/astar/query.d.ts +459 -367
  17. package/astar/runtime.d.ts +591 -98
  18. package/astar/tx.d.ts +2485 -3430
  19. package/astar/types.d.ts +1530 -4436
  20. package/index.d.ts +3 -0
  21. package/index.ts +3 -0
  22. package/kusama/consts.d.ts +54 -115
  23. package/kusama/errors.d.ts +696 -682
  24. package/kusama/events.d.ts +592 -407
  25. package/kusama/index.d.ts +16 -11
  26. package/kusama/json-rpc.d.ts +103 -0
  27. package/kusama/query.d.ts +840 -538
  28. package/kusama/runtime.d.ts +136 -65
  29. package/kusama/tx.d.ts +4557 -3051
  30. package/kusama/types.d.ts +1437 -1161
  31. package/kusamaAssetHub/consts.d.ts +66 -20
  32. package/kusamaAssetHub/errors.d.ts +428 -308
  33. package/kusamaAssetHub/events.d.ts +497 -305
  34. package/kusamaAssetHub/index.d.ts +16 -11
  35. package/kusamaAssetHub/json-rpc.d.ts +89 -0
  36. package/kusamaAssetHub/query.d.ts +376 -253
  37. package/kusamaAssetHub/runtime.d.ts +82 -41
  38. package/kusamaAssetHub/tx.d.ts +3264 -1955
  39. package/kusamaAssetHub/types.d.ts +1262 -726
  40. package/moonbeam/consts.d.ts +115 -170
  41. package/moonbeam/errors.d.ts +564 -787
  42. package/moonbeam/events.d.ts +583 -746
  43. package/moonbeam/index.d.ts +16 -11
  44. package/moonbeam/json-rpc.d.ts +137 -0
  45. package/moonbeam/query.d.ts +507 -607
  46. package/moonbeam/runtime.d.ts +132 -47
  47. package/moonbeam/tx.d.ts +3309 -3268
  48. package/moonbeam/types.d.ts +1484 -1375
  49. package/package.json +4 -14
  50. package/paseo/consts.d.ts +1331 -0
  51. package/paseo/errors.d.ts +2644 -0
  52. package/paseo/events.d.ts +2821 -0
  53. package/paseo/index.d.ts +27 -0
  54. package/paseo/json-rpc.d.ts +103 -0
  55. package/paseo/query.d.ts +3709 -0
  56. package/paseo/runtime.d.ts +1205 -0
  57. package/paseo/tx.d.ts +8024 -0
  58. package/paseo/types.d.ts +10194 -0
  59. package/polkadot/consts.d.ts +95 -50
  60. package/polkadot/errors.d.ts +619 -468
  61. package/polkadot/events.d.ts +582 -257
  62. package/polkadot/index.d.ts +16 -11
  63. package/polkadot/json-rpc.d.ts +103 -0
  64. package/polkadot/query.d.ts +770 -399
  65. package/polkadot/runtime.d.ts +136 -65
  66. package/polkadot/tx.d.ts +4268 -2368
  67. package/polkadot/types.d.ts +1570 -745
  68. package/polkadotAssetHub/consts.d.ts +154 -15
  69. package/polkadotAssetHub/errors.d.ts +615 -234
  70. package/polkadotAssetHub/events.d.ts +829 -270
  71. package/polkadotAssetHub/index.d.ts +16 -11
  72. package/polkadotAssetHub/json-rpc.d.ts +89 -0
  73. package/polkadotAssetHub/query.d.ts +438 -243
  74. package/polkadotAssetHub/runtime.d.ts +147 -40
  75. package/polkadotAssetHub/tx.d.ts +3747 -1643
  76. package/polkadotAssetHub/types.d.ts +2096 -806
  77. package/rococo/consts.d.ts +51 -32
  78. package/rococo/errors.d.ts +549 -605
  79. package/rococo/events.d.ts +447 -238
  80. package/rococo/index.d.ts +16 -11
  81. package/rococo/json-rpc.d.ts +103 -0
  82. package/rococo/query.d.ts +724 -426
  83. package/rococo/runtime.d.ts +366 -144
  84. package/rococo/tx.d.ts +6850 -3079
  85. package/rococo/types.d.ts +5959 -1619
  86. package/rococoAssetHub/consts.d.ts +92 -7
  87. package/rococoAssetHub/errors.d.ts +381 -285
  88. package/rococoAssetHub/events.d.ts +461 -140
  89. package/rococoAssetHub/index.d.ts +16 -11
  90. package/rococoAssetHub/json-rpc.d.ts +89 -0
  91. package/rococoAssetHub/query.d.ts +487 -174
  92. package/rococoAssetHub/runtime.d.ts +235 -51
  93. package/rococoAssetHub/tx.d.ts +6005 -2163
  94. package/rococoAssetHub/types.d.ts +6683 -1003
  95. package/substrate/consts.d.ts +233 -52
  96. package/substrate/errors.d.ts +966 -781
  97. package/substrate/events.d.ts +1226 -381
  98. package/substrate/index.d.ts +16 -11
  99. package/substrate/json-rpc.d.ts +103 -0
  100. package/substrate/query.d.ts +1090 -460
  101. package/substrate/runtime.d.ts +274 -71
  102. package/substrate/tx.d.ts +12313 -4510
  103. package/substrate/types.d.ts +11036 -1432
  104. package/westend/consts.d.ts +1349 -0
  105. package/westend/errors.d.ts +2736 -0
  106. package/westend/events.d.ts +2906 -0
  107. package/westend/index.d.ts +27 -0
  108. package/westend/json-rpc.d.ts +103 -0
  109. package/westend/query.d.ts +3855 -0
  110. package/westend/runtime.d.ts +1437 -0
  111. package/westend/tx.d.ts +10248 -0
  112. package/westend/types.d.ts +14769 -0
  113. package/westendAssetHub/consts.d.ts +126 -7
  114. package/westendAssetHub/errors.d.ts +426 -285
  115. package/westendAssetHub/events.d.ts +498 -140
  116. package/westendAssetHub/index.d.ts +16 -11
  117. package/westendAssetHub/json-rpc.d.ts +89 -0
  118. package/westendAssetHub/query.d.ts +526 -174
  119. package/westendAssetHub/runtime.d.ts +245 -56
  120. package/westendAssetHub/tx.d.ts +6196 -2166
  121. package/westendAssetHub/types.d.ts +6913 -1002
  122. package/westendPeople/consts.d.ts +434 -0
  123. package/westendPeople/errors.d.ts +769 -0
  124. package/westendPeople/events.d.ts +1082 -0
  125. package/westendPeople/index.d.ts +27 -0
  126. package/westendPeople/json-rpc.d.ts +89 -0
  127. package/westendPeople/query.d.ts +1209 -0
  128. package/westendPeople/runtime.d.ts +636 -0
  129. package/westendPeople/tx.d.ts +2891 -0
  130. package/westendPeople/types.d.ts +4984 -0
  131. package/aleph/rpc.d.ts +0 -727
  132. package/astar/rpc.d.ts +0 -974
  133. package/kusama/rpc.d.ts +0 -904
  134. package/kusamaAssetHub/rpc.d.ts +0 -746
  135. package/moonbeam/rpc.d.ts +0 -1015
  136. package/packageInfo.d.ts +0 -4
  137. package/packageInfo.js +0 -2
  138. package/packageInfo.ts +0 -3
  139. package/polkadot/rpc.d.ts +0 -904
  140. package/polkadotAssetHub/rpc.d.ts +0 -746
  141. package/rococo/rpc.d.ts +0 -904
  142. package/rococoAssetHub/rpc.d.ts +0 -746
  143. package/substrate/rpc.d.ts +0 -894
  144. package/westendAssetHub/rpc.d.ts +0 -746
package/kusama/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Generated by @dedot/codegen
1
+ // Generated by dedot cli
2
2
 
3
3
  import type {
4
4
  Phase,
@@ -9,6 +9,7 @@ import type {
9
9
  Perbill,
10
10
  FixedBytes,
11
11
  Bytes,
12
+ FixedArray,
12
13
  BytesLike,
13
14
  Header,
14
15
  MultiAddress,
@@ -17,9 +18,7 @@ import type {
17
18
  Percent,
18
19
  EthereumAddress,
19
20
  EthereumAddressLike,
20
- Data,
21
21
  PerU16,
22
- FixedArray,
23
22
  Perquintill,
24
23
  BitSequence,
25
24
  FixedU128,
@@ -27,7 +26,7 @@ import type {
27
26
  FixedI64,
28
27
  Era,
29
28
  UncheckedExtrinsic,
30
- } from '@dedot/codecs';
29
+ } from 'dedot/codecs';
31
30
 
32
31
  export type FrameSystemAccountInfo = {
33
32
  nonce: number;
@@ -65,7 +64,7 @@ export type StagingKusamaRuntimeRuntimeEvent =
65
64
  | { pallet: 'Offences'; palletEvent: PalletOffencesEvent }
66
65
  | { pallet: 'Session'; palletEvent: PalletSessionEvent }
67
66
  | { pallet: 'Grandpa'; palletEvent: PalletGrandpaEvent }
68
- | { pallet: 'ImOnline'; palletEvent: PalletImOnlineEvent }
67
+ | { pallet: 'ImOnline'; palletEvent: StagingKusamaRuntimePalletImOnlinePalletEvent }
69
68
  | { pallet: 'Treasury'; palletEvent: PalletTreasuryEvent }
70
69
  | { pallet: 'ConvictionVoting'; palletEvent: PalletConvictionVotingEvent }
71
70
  | { pallet: 'Referenda'; palletEvent: PalletReferendaEvent }
@@ -74,7 +73,6 @@ export type StagingKusamaRuntimeRuntimeEvent =
74
73
  | { pallet: 'Whitelist'; palletEvent: PalletWhitelistEvent }
75
74
  | { pallet: 'Claims'; palletEvent: PolkadotRuntimeCommonClaimsPalletEvent }
76
75
  | { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
77
- | { pallet: 'Identity'; palletEvent: PalletIdentityEvent }
78
76
  | { pallet: 'Society'; palletEvent: PalletSocietyEvent }
79
77
  | { pallet: 'Recovery'; palletEvent: PalletRecoveryEvent }
80
78
  | { pallet: 'Vesting'; palletEvent: PalletVestingEvent }
@@ -94,11 +92,12 @@ export type StagingKusamaRuntimeRuntimeEvent =
94
92
  | { pallet: 'Paras'; palletEvent: PolkadotRuntimeParachainsParasPalletEvent }
95
93
  | { pallet: 'Hrmp'; palletEvent: PolkadotRuntimeParachainsHrmpPalletEvent }
96
94
  | { pallet: 'ParasDisputes'; palletEvent: PolkadotRuntimeParachainsDisputesPalletEvent }
95
+ | { pallet: 'OnDemandAssignmentProvider'; palletEvent: PolkadotRuntimeParachainsAssignerOnDemandPalletEvent }
97
96
  | { pallet: 'Registrar'; palletEvent: PolkadotRuntimeCommonParasRegistrarPalletEvent }
98
97
  | { pallet: 'Slots'; palletEvent: PolkadotRuntimeCommonSlotsPalletEvent }
99
98
  | { pallet: 'Auctions'; palletEvent: PolkadotRuntimeCommonAuctionsPalletEvent }
100
99
  | { pallet: 'Crowdloan'; palletEvent: PolkadotRuntimeCommonCrowdloanPalletEvent }
101
- | { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
100
+ | { pallet: 'Coretime'; palletEvent: PolkadotRuntimeParachainsCoretimePalletEvent }
102
101
  | { pallet: 'XcmPallet'; palletEvent: PalletXcmEvent }
103
102
  | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
104
103
  | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent };
@@ -130,7 +129,11 @@ export type FrameSystemEvent =
130
129
  /**
131
130
  * On on-chain remark happened.
132
131
  **/
133
- | { name: 'Remarked'; data: { sender: AccountId32; hash: H256 } };
132
+ | { name: 'Remarked'; data: { sender: AccountId32; hash: H256 } }
133
+ /**
134
+ * An upgrade was authorized.
135
+ **/
136
+ | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } };
134
137
 
135
138
  export type FrameSupportDispatchDispatchClass = 'Normal' | 'Operational' | 'Mandatory';
136
139
 
@@ -250,7 +253,11 @@ export type PalletBalancesEvent =
250
253
  /**
251
254
  * Some balance was thawed.
252
255
  **/
253
- | { name: 'Thawed'; data: { who: AccountId32; amount: bigint } };
256
+ | { name: 'Thawed'; data: { who: AccountId32; amount: bigint } }
257
+ /**
258
+ * The `TotalIssuance` was forcefully changed.
259
+ **/
260
+ | { name: 'TotalIssuanceForced'; data: { old: bigint; new: bigint } };
254
261
 
255
262
  export type FrameSupportTokensMiscBalanceStatus = 'Free' | 'Reserved';
256
263
 
@@ -342,14 +349,18 @@ export type PalletStakingPalletEvent =
342
349
  /**
343
350
  * A new force era mode was set.
344
351
  **/
345
- | { name: 'ForceEra'; data: { mode: PalletStakingForcing } };
352
+ | { name: 'ForceEra'; data: { mode: PalletStakingForcing } }
353
+ /**
354
+ * Report of a controller batch deprecation.
355
+ **/
356
+ | { name: 'ControllerBatchDeprecated'; data: { failures: number } };
346
357
 
347
358
  export type PalletStakingRewardDestination =
348
- | { tag: 'Staked' }
349
- | { tag: 'Stash' }
350
- | { tag: 'Controller' }
351
- | { tag: 'Account'; value: AccountId32 }
352
- | { tag: 'None' };
359
+ | { type: 'Staked' }
360
+ | { type: 'Stash' }
361
+ | { type: 'Controller' }
362
+ | { type: 'Account'; value: AccountId32 }
363
+ | { type: 'None' };
353
364
 
354
365
  export type PalletStakingValidatorPrefs = { commission: Perbill; blocked: boolean };
355
366
 
@@ -400,27 +411,18 @@ export type SpCoreEd25519Public = FixedBytes<32>;
400
411
  /**
401
412
  * The `Event` enum of this pallet
402
413
  **/
403
- export type PalletImOnlineEvent =
404
- /**
405
- * A new heartbeat was received from `AuthorityId`.
406
- **/
407
- | { name: 'HeartbeatReceived'; data: { authorityId: PalletImOnlineSr25519AppSr25519Public } }
408
- /**
409
- * At the end of the session, no offence was committed.
410
- **/
414
+ export type StagingKusamaRuntimePalletImOnlinePalletEvent =
415
+ | { name: 'HeartbeatReceived'; data: { authorityId: StagingKusamaRuntimePalletImOnlineSr25519AppSr25519Public } }
411
416
  | { name: 'AllGood' }
412
- /**
413
- * At the end of the session, at least one validator was found to be offline.
414
- **/
415
- | { name: 'SomeOffline'; data: { offline: Array<[AccountId32, PalletStakingExposure]> } };
417
+ | { name: 'SomeOffline'; data: { offline: Array<[AccountId32, SpStakingExposure]> } };
416
418
 
417
- export type PalletImOnlineSr25519AppSr25519Public = SpCoreSr25519Public;
419
+ export type StagingKusamaRuntimePalletImOnlineSr25519AppSr25519Public = SpCoreSr25519Public;
418
420
 
419
421
  export type SpCoreSr25519Public = FixedBytes<32>;
420
422
 
421
- export type PalletStakingExposure = { total: bigint; own: bigint; others: Array<PalletStakingIndividualExposure> };
423
+ export type SpStakingExposure = { total: bigint; own: bigint; others: Array<SpStakingIndividualExposure> };
422
424
 
423
- export type PalletStakingIndividualExposure = { who: AccountId32; value: bigint };
425
+ export type SpStakingIndividualExposure = { who: AccountId32; value: bigint };
424
426
 
425
427
  /**
426
428
  * The `Event` enum of this pallet
@@ -471,7 +473,7 @@ export type PalletTreasuryEvent =
471
473
  index: number;
472
474
  assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
473
475
  amount: bigint;
474
- beneficiary: XcmVersionedMultiLocation;
476
+ beneficiary: XcmVersionedLocation;
475
477
  validFrom: number;
476
478
  expireAt: number;
477
479
  };
@@ -494,27 +496,26 @@ export type PalletTreasuryEvent =
494
496
  **/
495
497
  | { name: 'SpendProcessed'; data: { index: number } };
496
498
 
497
- export type PolkadotRuntimeCommonImplsVersionedLocatableAsset = {
498
- tag: 'V3';
499
- value: { location: StagingXcmV3MultilocationMultiLocation; assetId: XcmV3MultiassetAssetId };
500
- };
499
+ export type PolkadotRuntimeCommonImplsVersionedLocatableAsset =
500
+ | { type: 'V3'; value: { location: StagingXcmV3MultilocationMultiLocation; assetId: XcmV3MultiassetAssetId } }
501
+ | { type: 'V4'; value: { location: StagingXcmV4Location; assetId: StagingXcmV4AssetAssetId } };
501
502
 
502
503
  export type StagingXcmV3MultilocationMultiLocation = { parents: number; interior: XcmV3Junctions };
503
504
 
504
505
  export type XcmV3Junctions =
505
- | { tag: 'Here' }
506
- | { tag: 'X1'; value: XcmV3Junction }
507
- | { tag: 'X2'; value: [XcmV3Junction, XcmV3Junction] }
508
- | { tag: 'X3'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction] }
509
- | { tag: 'X4'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
510
- | { tag: 'X5'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
511
- | { tag: 'X6'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
512
- | {
513
- tag: 'X7';
506
+ | { type: 'Here' }
507
+ | { type: 'X1'; value: XcmV3Junction }
508
+ | { type: 'X2'; value: [XcmV3Junction, XcmV3Junction] }
509
+ | { type: 'X3'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction] }
510
+ | { type: 'X4'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
511
+ | { type: 'X5'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
512
+ | { type: 'X6'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
513
+ | {
514
+ type: 'X7';
514
515
  value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction];
515
516
  }
516
517
  | {
517
- tag: 'X8';
518
+ type: 'X8';
518
519
  value: [
519
520
  XcmV3Junction,
520
521
  XcmV3Junction,
@@ -528,72 +529,114 @@ export type XcmV3Junctions =
528
529
  };
529
530
 
530
531
  export type XcmV3Junction =
531
- | { tag: 'Parachain'; value: number }
532
- | { tag: 'AccountId32'; value: { network?: XcmV3JunctionNetworkId | undefined; id: FixedBytes<32> } }
533
- | { tag: 'AccountIndex64'; value: { network?: XcmV3JunctionNetworkId | undefined; index: bigint } }
534
- | { tag: 'AccountKey20'; value: { network?: XcmV3JunctionNetworkId | undefined; key: FixedBytes<20> } }
535
- | { tag: 'PalletInstance'; value: number }
536
- | { tag: 'GeneralIndex'; value: bigint }
537
- | { tag: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
538
- | { tag: 'OnlyChild' }
539
- | { tag: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
540
- | { tag: 'GlobalConsensus'; value: XcmV3JunctionNetworkId };
532
+ | { type: 'Parachain'; value: number }
533
+ | { type: 'AccountId32'; value: { network?: XcmV3JunctionNetworkId | undefined; id: FixedBytes<32> } }
534
+ | { type: 'AccountIndex64'; value: { network?: XcmV3JunctionNetworkId | undefined; index: bigint } }
535
+ | { type: 'AccountKey20'; value: { network?: XcmV3JunctionNetworkId | undefined; key: FixedBytes<20> } }
536
+ | { type: 'PalletInstance'; value: number }
537
+ | { type: 'GeneralIndex'; value: bigint }
538
+ | { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
539
+ | { type: 'OnlyChild' }
540
+ | { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
541
+ | { type: 'GlobalConsensus'; value: XcmV3JunctionNetworkId };
541
542
 
542
543
  export type XcmV3JunctionNetworkId =
543
- | { tag: 'ByGenesis'; value: FixedBytes<32> }
544
- | { tag: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
545
- | { tag: 'Polkadot' }
546
- | { tag: 'Kusama' }
547
- | { tag: 'Westend' }
548
- | { tag: 'Rococo' }
549
- | { tag: 'Wococo' }
550
- | { tag: 'Ethereum'; value: { chainId: bigint } }
551
- | { tag: 'BitcoinCore' }
552
- | { tag: 'BitcoinCash' };
544
+ | { type: 'ByGenesis'; value: FixedBytes<32> }
545
+ | { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
546
+ | { type: 'Polkadot' }
547
+ | { type: 'Kusama' }
548
+ | { type: 'Westend' }
549
+ | { type: 'Rococo' }
550
+ | { type: 'Wococo' }
551
+ | { type: 'Ethereum'; value: { chainId: bigint } }
552
+ | { type: 'BitcoinCore' }
553
+ | { type: 'BitcoinCash' }
554
+ | { type: 'PolkadotBulletin' };
553
555
 
554
556
  export type XcmV3JunctionBodyId =
555
- | { tag: 'Unit' }
556
- | { tag: 'Moniker'; value: FixedBytes<4> }
557
- | { tag: 'Index'; value: number }
558
- | { tag: 'Executive' }
559
- | { tag: 'Technical' }
560
- | { tag: 'Legislative' }
561
- | { tag: 'Judicial' }
562
- | { tag: 'Defense' }
563
- | { tag: 'Administration' }
564
- | { tag: 'Treasury' };
557
+ | { type: 'Unit' }
558
+ | { type: 'Moniker'; value: FixedBytes<4> }
559
+ | { type: 'Index'; value: number }
560
+ | { type: 'Executive' }
561
+ | { type: 'Technical' }
562
+ | { type: 'Legislative' }
563
+ | { type: 'Judicial' }
564
+ | { type: 'Defense' }
565
+ | { type: 'Administration' }
566
+ | { type: 'Treasury' };
565
567
 
566
568
  export type XcmV3JunctionBodyPart =
567
- | { tag: 'Voice' }
568
- | { tag: 'Members'; value: { count: number } }
569
- | { tag: 'Fraction'; value: { nom: number; denom: number } }
570
- | { tag: 'AtLeastProportion'; value: { nom: number; denom: number } }
571
- | { tag: 'MoreThanProportion'; value: { nom: number; denom: number } };
569
+ | { type: 'Voice' }
570
+ | { type: 'Members'; value: { count: number } }
571
+ | { type: 'Fraction'; value: { nom: number; denom: number } }
572
+ | { type: 'AtLeastProportion'; value: { nom: number; denom: number } }
573
+ | { type: 'MoreThanProportion'; value: { nom: number; denom: number } };
572
574
 
573
575
  export type XcmV3MultiassetAssetId =
574
- | { tag: 'Concrete'; value: StagingXcmV3MultilocationMultiLocation }
575
- | { tag: 'Abstract'; value: FixedBytes<32> };
576
-
577
- export type XcmVersionedMultiLocation =
578
- | { tag: 'V2'; value: XcmV2MultilocationMultiLocation }
579
- | { tag: 'V3'; value: StagingXcmV3MultilocationMultiLocation };
576
+ | { type: 'Concrete'; value: StagingXcmV3MultilocationMultiLocation }
577
+ | { type: 'Abstract'; value: FixedBytes<32> };
578
+
579
+ export type StagingXcmV4Location = { parents: number; interior: StagingXcmV4Junctions };
580
+
581
+ export type StagingXcmV4Junctions =
582
+ | { type: 'Here' }
583
+ | { type: 'X1'; value: FixedArray<StagingXcmV4Junction, 1> }
584
+ | { type: 'X2'; value: FixedArray<StagingXcmV4Junction, 2> }
585
+ | { type: 'X3'; value: FixedArray<StagingXcmV4Junction, 3> }
586
+ | { type: 'X4'; value: FixedArray<StagingXcmV4Junction, 4> }
587
+ | { type: 'X5'; value: FixedArray<StagingXcmV4Junction, 5> }
588
+ | { type: 'X6'; value: FixedArray<StagingXcmV4Junction, 6> }
589
+ | { type: 'X7'; value: FixedArray<StagingXcmV4Junction, 7> }
590
+ | { type: 'X8'; value: FixedArray<StagingXcmV4Junction, 8> };
591
+
592
+ export type StagingXcmV4Junction =
593
+ | { type: 'Parachain'; value: number }
594
+ | { type: 'AccountId32'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; id: FixedBytes<32> } }
595
+ | { type: 'AccountIndex64'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; index: bigint } }
596
+ | { type: 'AccountKey20'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; key: FixedBytes<20> } }
597
+ | { type: 'PalletInstance'; value: number }
598
+ | { type: 'GeneralIndex'; value: bigint }
599
+ | { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
600
+ | { type: 'OnlyChild' }
601
+ | { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
602
+ | { type: 'GlobalConsensus'; value: StagingXcmV4JunctionNetworkId };
603
+
604
+ export type StagingXcmV4JunctionNetworkId =
605
+ | { type: 'ByGenesis'; value: FixedBytes<32> }
606
+ | { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
607
+ | { type: 'Polkadot' }
608
+ | { type: 'Kusama' }
609
+ | { type: 'Westend' }
610
+ | { type: 'Rococo' }
611
+ | { type: 'Wococo' }
612
+ | { type: 'Ethereum'; value: { chainId: bigint } }
613
+ | { type: 'BitcoinCore' }
614
+ | { type: 'BitcoinCash' }
615
+ | { type: 'PolkadotBulletin' };
616
+
617
+ export type StagingXcmV4AssetAssetId = StagingXcmV4Location;
618
+
619
+ export type XcmVersionedLocation =
620
+ | { type: 'V2'; value: XcmV2MultilocationMultiLocation }
621
+ | { type: 'V3'; value: StagingXcmV3MultilocationMultiLocation }
622
+ | { type: 'V4'; value: StagingXcmV4Location };
580
623
 
581
624
  export type XcmV2MultilocationMultiLocation = { parents: number; interior: XcmV2MultilocationJunctions };
582
625
 
583
626
  export type XcmV2MultilocationJunctions =
584
- | { tag: 'Here' }
585
- | { tag: 'X1'; value: XcmV2Junction }
586
- | { tag: 'X2'; value: [XcmV2Junction, XcmV2Junction] }
587
- | { tag: 'X3'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction] }
588
- | { tag: 'X4'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction] }
589
- | { tag: 'X5'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction] }
590
- | { tag: 'X6'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction] }
591
- | {
592
- tag: 'X7';
627
+ | { type: 'Here' }
628
+ | { type: 'X1'; value: XcmV2Junction }
629
+ | { type: 'X2'; value: [XcmV2Junction, XcmV2Junction] }
630
+ | { type: 'X3'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction] }
631
+ | { type: 'X4'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction] }
632
+ | { type: 'X5'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction] }
633
+ | { type: 'X6'; value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction] }
634
+ | {
635
+ type: 'X7';
593
636
  value: [XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction];
594
637
  }
595
638
  | {
596
- tag: 'X8';
639
+ type: 'X8';
597
640
  value: [
598
641
  XcmV2Junction,
599
642
  XcmV2Junction,
@@ -607,36 +650,40 @@ export type XcmV2MultilocationJunctions =
607
650
  };
608
651
 
609
652
  export type XcmV2Junction =
610
- | { tag: 'Parachain'; value: number }
611
- | { tag: 'AccountId32'; value: { network: XcmV2NetworkId; id: FixedBytes<32> } }
612
- | { tag: 'AccountIndex64'; value: { network: XcmV2NetworkId; index: bigint } }
613
- | { tag: 'AccountKey20'; value: { network: XcmV2NetworkId; key: FixedBytes<20> } }
614
- | { tag: 'PalletInstance'; value: number }
615
- | { tag: 'GeneralIndex'; value: bigint }
616
- | { tag: 'GeneralKey'; value: Bytes }
617
- | { tag: 'OnlyChild' }
618
- | { tag: 'Plurality'; value: { id: XcmV2BodyId; part: XcmV2BodyPart } };
619
-
620
- export type XcmV2NetworkId = { tag: 'Any' } | { tag: 'Named'; value: Bytes } | { tag: 'Polkadot' } | { tag: 'Kusama' };
653
+ | { type: 'Parachain'; value: number }
654
+ | { type: 'AccountId32'; value: { network: XcmV2NetworkId; id: FixedBytes<32> } }
655
+ | { type: 'AccountIndex64'; value: { network: XcmV2NetworkId; index: bigint } }
656
+ | { type: 'AccountKey20'; value: { network: XcmV2NetworkId; key: FixedBytes<20> } }
657
+ | { type: 'PalletInstance'; value: number }
658
+ | { type: 'GeneralIndex'; value: bigint }
659
+ | { type: 'GeneralKey'; value: Bytes }
660
+ | { type: 'OnlyChild' }
661
+ | { type: 'Plurality'; value: { id: XcmV2BodyId; part: XcmV2BodyPart } };
662
+
663
+ export type XcmV2NetworkId =
664
+ | { type: 'Any' }
665
+ | { type: 'Named'; value: Bytes }
666
+ | { type: 'Polkadot' }
667
+ | { type: 'Kusama' };
621
668
 
622
669
  export type XcmV2BodyId =
623
- | { tag: 'Unit' }
624
- | { tag: 'Named'; value: Bytes }
625
- | { tag: 'Index'; value: number }
626
- | { tag: 'Executive' }
627
- | { tag: 'Technical' }
628
- | { tag: 'Legislative' }
629
- | { tag: 'Judicial' }
630
- | { tag: 'Defense' }
631
- | { tag: 'Administration' }
632
- | { tag: 'Treasury' };
670
+ | { type: 'Unit' }
671
+ | { type: 'Named'; value: Bytes }
672
+ | { type: 'Index'; value: number }
673
+ | { type: 'Executive' }
674
+ | { type: 'Technical' }
675
+ | { type: 'Legislative' }
676
+ | { type: 'Judicial' }
677
+ | { type: 'Defense' }
678
+ | { type: 'Administration' }
679
+ | { type: 'Treasury' };
633
680
 
634
681
  export type XcmV2BodyPart =
635
- | { tag: 'Voice' }
636
- | { tag: 'Members'; value: { count: number } }
637
- | { tag: 'Fraction'; value: { nom: number; denom: number } }
638
- | { tag: 'AtLeastProportion'; value: { nom: number; denom: number } }
639
- | { tag: 'MoreThanProportion'; value: { nom: number; denom: number } };
682
+ | { type: 'Voice' }
683
+ | { type: 'Members'; value: { count: number } }
684
+ | { type: 'Fraction'; value: { nom: number; denom: number } }
685
+ | { type: 'AtLeastProportion'; value: { nom: number; denom: number } }
686
+ | { type: 'MoreThanProportion'; value: { nom: number; denom: number } };
640
687
 
641
688
  /**
642
689
  * The `Event` enum of this pallet
@@ -722,7 +769,7 @@ export type PalletReferendaEvent =
722
769
  };
723
770
  }
724
771
  /**
725
- * A deposit has been slashaed.
772
+ * A deposit has been slashed.
726
773
  **/
727
774
  | {
728
775
  name: 'DepositSlashed';
@@ -938,9 +985,9 @@ export type PalletReferendaEvent =
938
985
  };
939
986
 
940
987
  export type FrameSupportPreimagesBounded =
941
- | { tag: 'Legacy'; value: { hash: H256 } }
942
- | { tag: 'Inline'; value: Bytes }
943
- | { tag: 'Lookup'; value: { hash: H256; len: number } };
988
+ | { type: 'Legacy'; value: { hash: H256 } }
989
+ | { type: 'Inline'; value: Bytes }
990
+ | { type: 'Lookup'; value: { hash: H256; len: number } };
944
991
 
945
992
  export type StagingKusamaRuntimeRuntimeCall =
946
993
  | { pallet: 'System'; palletCall: FrameSystemCall }
@@ -951,7 +998,6 @@ export type StagingKusamaRuntimeRuntimeCall =
951
998
  | { pallet: 'Staking'; palletCall: PalletStakingPalletCall }
952
999
  | { pallet: 'Session'; palletCall: PalletSessionCall }
953
1000
  | { pallet: 'Grandpa'; palletCall: PalletGrandpaCall }
954
- | { pallet: 'ImOnline'; palletCall: PalletImOnlineCall }
955
1001
  | { pallet: 'Treasury'; palletCall: PalletTreasuryCall }
956
1002
  | { pallet: 'ConvictionVoting'; palletCall: PalletConvictionVotingCall }
957
1003
  | { pallet: 'Referenda'; palletCall: PalletReferendaCall }
@@ -960,7 +1006,6 @@ export type StagingKusamaRuntimeRuntimeCall =
960
1006
  | { pallet: 'Whitelist'; palletCall: PalletWhitelistCall }
961
1007
  | { pallet: 'Claims'; palletCall: PolkadotRuntimeCommonClaimsPalletCall }
962
1008
  | { pallet: 'Utility'; palletCall: PalletUtilityCall }
963
- | { pallet: 'Identity'; palletCall: PalletIdentityCall }
964
1009
  | { pallet: 'Society'; palletCall: PalletSocietyCall }
965
1010
  | { pallet: 'Recovery'; palletCall: PalletRecoveryCall }
966
1011
  | { pallet: 'Vesting'; palletCall: PalletVestingCall }
@@ -985,11 +1030,12 @@ export type StagingKusamaRuntimeRuntimeCall =
985
1030
  | { pallet: 'Hrmp'; palletCall: PolkadotRuntimeParachainsHrmpPalletCall }
986
1031
  | { pallet: 'ParasDisputes'; palletCall: PolkadotRuntimeParachainsDisputesPalletCall }
987
1032
  | { pallet: 'ParasSlashing'; palletCall: PolkadotRuntimeParachainsDisputesSlashingPalletCall }
1033
+ | { pallet: 'OnDemandAssignmentProvider'; palletCall: PolkadotRuntimeParachainsAssignerOnDemandPalletCall }
988
1034
  | { pallet: 'Registrar'; palletCall: PolkadotRuntimeCommonParasRegistrarPalletCall }
989
1035
  | { pallet: 'Slots'; palletCall: PolkadotRuntimeCommonSlotsPalletCall }
990
1036
  | { pallet: 'Auctions'; palletCall: PolkadotRuntimeCommonAuctionsPalletCall }
991
1037
  | { pallet: 'Crowdloan'; palletCall: PolkadotRuntimeCommonCrowdloanPalletCall }
992
- | { pallet: 'StateTrieMigration'; palletCall: PalletStateTrieMigrationCall }
1038
+ | { pallet: 'Coretime'; palletCall: PolkadotRuntimeParachainsCoretimePalletCall }
993
1039
  | { pallet: 'XcmPallet'; palletCall: PalletXcmCall }
994
1040
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCall }
995
1041
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCall }
@@ -1004,7 +1050,6 @@ export type StagingKusamaRuntimeRuntimeCallLike =
1004
1050
  | { pallet: 'Staking'; palletCall: PalletStakingPalletCallLike }
1005
1051
  | { pallet: 'Session'; palletCall: PalletSessionCallLike }
1006
1052
  | { pallet: 'Grandpa'; palletCall: PalletGrandpaCallLike }
1007
- | { pallet: 'ImOnline'; palletCall: PalletImOnlineCallLike }
1008
1053
  | { pallet: 'Treasury'; palletCall: PalletTreasuryCallLike }
1009
1054
  | { pallet: 'ConvictionVoting'; palletCall: PalletConvictionVotingCallLike }
1010
1055
  | { pallet: 'Referenda'; palletCall: PalletReferendaCallLike }
@@ -1013,7 +1058,6 @@ export type StagingKusamaRuntimeRuntimeCallLike =
1013
1058
  | { pallet: 'Whitelist'; palletCall: PalletWhitelistCallLike }
1014
1059
  | { pallet: 'Claims'; palletCall: PolkadotRuntimeCommonClaimsPalletCallLike }
1015
1060
  | { pallet: 'Utility'; palletCall: PalletUtilityCallLike }
1016
- | { pallet: 'Identity'; palletCall: PalletIdentityCallLike }
1017
1061
  | { pallet: 'Society'; palletCall: PalletSocietyCallLike }
1018
1062
  | { pallet: 'Recovery'; palletCall: PalletRecoveryCallLike }
1019
1063
  | { pallet: 'Vesting'; palletCall: PalletVestingCallLike }
@@ -1038,11 +1082,12 @@ export type StagingKusamaRuntimeRuntimeCallLike =
1038
1082
  | { pallet: 'Hrmp'; palletCall: PolkadotRuntimeParachainsHrmpPalletCallLike }
1039
1083
  | { pallet: 'ParasDisputes'; palletCall: PolkadotRuntimeParachainsDisputesPalletCallLike }
1040
1084
  | { pallet: 'ParasSlashing'; palletCall: PolkadotRuntimeParachainsDisputesSlashingPalletCallLike }
1085
+ | { pallet: 'OnDemandAssignmentProvider'; palletCall: PolkadotRuntimeParachainsAssignerOnDemandPalletCallLike }
1041
1086
  | { pallet: 'Registrar'; palletCall: PolkadotRuntimeCommonParasRegistrarPalletCallLike }
1042
1087
  | { pallet: 'Slots'; palletCall: PolkadotRuntimeCommonSlotsPalletCallLike }
1043
1088
  | { pallet: 'Auctions'; palletCall: PolkadotRuntimeCommonAuctionsPalletCallLike }
1044
1089
  | { pallet: 'Crowdloan'; palletCall: PolkadotRuntimeCommonCrowdloanPalletCallLike }
1045
- | { pallet: 'StateTrieMigration'; palletCall: PalletStateTrieMigrationCallLike }
1090
+ | { pallet: 'Coretime'; palletCall: PolkadotRuntimeParachainsCoretimePalletCallLike }
1046
1091
  | { pallet: 'XcmPallet'; palletCall: PalletXcmCallLike }
1047
1092
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCallLike }
1048
1093
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCallLike }
@@ -1083,7 +1128,19 @@ export type FrameSystemCall =
1083
1128
  /**
1084
1129
  * See [`Pallet::remark_with_event`].
1085
1130
  **/
1086
- | { name: 'RemarkWithEvent'; params: { remark: Bytes } };
1131
+ | { name: 'RemarkWithEvent'; params: { remark: Bytes } }
1132
+ /**
1133
+ * See [`Pallet::authorize_upgrade`].
1134
+ **/
1135
+ | { name: 'AuthorizeUpgrade'; params: { codeHash: H256 } }
1136
+ /**
1137
+ * See [`Pallet::authorize_upgrade_without_checks`].
1138
+ **/
1139
+ | { name: 'AuthorizeUpgradeWithoutChecks'; params: { codeHash: H256 } }
1140
+ /**
1141
+ * See [`Pallet::apply_authorized_upgrade`].
1142
+ **/
1143
+ | { name: 'ApplyAuthorizedUpgrade'; params: { code: Bytes } };
1087
1144
 
1088
1145
  export type FrameSystemCallLike =
1089
1146
  /**
@@ -1117,7 +1174,19 @@ export type FrameSystemCallLike =
1117
1174
  /**
1118
1175
  * See [`Pallet::remark_with_event`].
1119
1176
  **/
1120
- | { name: 'RemarkWithEvent'; params: { remark: BytesLike } };
1177
+ | { name: 'RemarkWithEvent'; params: { remark: BytesLike } }
1178
+ /**
1179
+ * See [`Pallet::authorize_upgrade`].
1180
+ **/
1181
+ | { name: 'AuthorizeUpgrade'; params: { codeHash: H256 } }
1182
+ /**
1183
+ * See [`Pallet::authorize_upgrade_without_checks`].
1184
+ **/
1185
+ | { name: 'AuthorizeUpgradeWithoutChecks'; params: { codeHash: H256 } }
1186
+ /**
1187
+ * See [`Pallet::apply_authorized_upgrade`].
1188
+ **/
1189
+ | { name: 'ApplyAuthorizedUpgrade'; params: { code: BytesLike } };
1121
1190
 
1122
1191
  /**
1123
1192
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -1176,7 +1245,7 @@ export type SpConsensusSlotsSlot = bigint;
1176
1245
  export type SpSessionMembershipProof = { session: number; trieNodes: Array<Bytes>; validatorCount: number };
1177
1246
 
1178
1247
  export type SpConsensusBabeDigestsNextConfigDescriptor = {
1179
- tag: 'V1';
1248
+ type: 'V1';
1180
1249
  value: { c: [bigint, bigint]; allowedSlots: SpConsensusBabeAllowedSlots };
1181
1250
  };
1182
1251
 
@@ -1278,7 +1347,11 @@ export type PalletBalancesCall =
1278
1347
  /**
1279
1348
  * See [`Pallet::force_set_balance`].
1280
1349
  **/
1281
- | { name: 'ForceSetBalance'; params: { who: MultiAddress; newFree: bigint } };
1350
+ | { name: 'ForceSetBalance'; params: { who: MultiAddress; newFree: bigint } }
1351
+ /**
1352
+ * See [`Pallet::force_adjust_total_issuance`].
1353
+ **/
1354
+ | { name: 'ForceAdjustTotalIssuance'; params: { direction: PalletBalancesAdjustmentDirection; delta: bigint } };
1282
1355
 
1283
1356
  export type PalletBalancesCallLike =
1284
1357
  /**
@@ -1308,7 +1381,13 @@ export type PalletBalancesCallLike =
1308
1381
  /**
1309
1382
  * See [`Pallet::force_set_balance`].
1310
1383
  **/
1311
- | { name: 'ForceSetBalance'; params: { who: MultiAddressLike; newFree: bigint } };
1384
+ | { name: 'ForceSetBalance'; params: { who: MultiAddressLike; newFree: bigint } }
1385
+ /**
1386
+ * See [`Pallet::force_adjust_total_issuance`].
1387
+ **/
1388
+ | { name: 'ForceAdjustTotalIssuance'; params: { direction: PalletBalancesAdjustmentDirection; delta: bigint } };
1389
+
1390
+ export type PalletBalancesAdjustmentDirection = 'Increase' | 'Decrease';
1312
1391
 
1313
1392
  /**
1314
1393
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -1419,7 +1498,7 @@ export type PalletStakingPalletCall =
1419
1498
  /**
1420
1499
  * See [`Pallet::chill_other`].
1421
1500
  **/
1422
- | { name: 'ChillOther'; params: { controller: AccountId32 } }
1501
+ | { name: 'ChillOther'; params: { stash: AccountId32 } }
1423
1502
  /**
1424
1503
  * See [`Pallet::force_apply_min_commission`].
1425
1504
  **/
@@ -1427,7 +1506,31 @@ export type PalletStakingPalletCall =
1427
1506
  /**
1428
1507
  * See [`Pallet::set_min_commission`].
1429
1508
  **/
1430
- | { name: 'SetMinCommission'; params: { new: Perbill } };
1509
+ | { name: 'SetMinCommission'; params: { new: Perbill } }
1510
+ /**
1511
+ * See [`Pallet::payout_stakers_by_page`].
1512
+ **/
1513
+ | { name: 'PayoutStakersByPage'; params: { validatorStash: AccountId32; era: number; page: number } }
1514
+ /**
1515
+ * See [`Pallet::update_payee`].
1516
+ **/
1517
+ | { name: 'UpdatePayee'; params: { controller: AccountId32 } }
1518
+ /**
1519
+ * See [`Pallet::deprecate_controller_batch`].
1520
+ **/
1521
+ | { name: 'DeprecateControllerBatch'; params: { controllers: Array<AccountId32> } }
1522
+ /**
1523
+ * See [`Pallet::restore_ledger`].
1524
+ **/
1525
+ | {
1526
+ name: 'RestoreLedger';
1527
+ params: {
1528
+ stash: AccountId32;
1529
+ maybeController?: AccountId32 | undefined;
1530
+ maybeTotal?: bigint | undefined;
1531
+ maybeUnlocking?: Array<PalletStakingUnlockChunk> | undefined;
1532
+ };
1533
+ };
1431
1534
 
1432
1535
  export type PalletStakingPalletCallLike =
1433
1536
  /**
@@ -1535,7 +1638,7 @@ export type PalletStakingPalletCallLike =
1535
1638
  /**
1536
1639
  * See [`Pallet::chill_other`].
1537
1640
  **/
1538
- | { name: 'ChillOther'; params: { controller: AccountId32Like } }
1641
+ | { name: 'ChillOther'; params: { stash: AccountId32Like } }
1539
1642
  /**
1540
1643
  * See [`Pallet::force_apply_min_commission`].
1541
1644
  **/
@@ -1543,15 +1646,47 @@ export type PalletStakingPalletCallLike =
1543
1646
  /**
1544
1647
  * See [`Pallet::set_min_commission`].
1545
1648
  **/
1546
- | { name: 'SetMinCommission'; params: { new: Perbill } };
1649
+ | { name: 'SetMinCommission'; params: { new: Perbill } }
1650
+ /**
1651
+ * See [`Pallet::payout_stakers_by_page`].
1652
+ **/
1653
+ | { name: 'PayoutStakersByPage'; params: { validatorStash: AccountId32Like; era: number; page: number } }
1654
+ /**
1655
+ * See [`Pallet::update_payee`].
1656
+ **/
1657
+ | { name: 'UpdatePayee'; params: { controller: AccountId32Like } }
1658
+ /**
1659
+ * See [`Pallet::deprecate_controller_batch`].
1660
+ **/
1661
+ | { name: 'DeprecateControllerBatch'; params: { controllers: Array<AccountId32Like> } }
1662
+ /**
1663
+ * See [`Pallet::restore_ledger`].
1664
+ **/
1665
+ | {
1666
+ name: 'RestoreLedger';
1667
+ params: {
1668
+ stash: AccountId32Like;
1669
+ maybeController?: AccountId32Like | undefined;
1670
+ maybeTotal?: bigint | undefined;
1671
+ maybeUnlocking?: Array<PalletStakingUnlockChunk> | undefined;
1672
+ };
1673
+ };
1674
+
1675
+ export type PalletStakingPalletConfigOp = { type: 'Noop' } | { type: 'Set'; value: bigint } | { type: 'Remove' };
1547
1676
 
1548
- export type PalletStakingPalletConfigOp = { tag: 'Noop' } | { tag: 'Set'; value: bigint } | { tag: 'Remove' };
1677
+ export type PalletStakingPalletConfigOpU32 = { type: 'Noop' } | { type: 'Set'; value: number } | { type: 'Remove' };
1549
1678
 
1550
- export type PalletStakingPalletConfigOpU32 = { tag: 'Noop' } | { tag: 'Set'; value: number } | { tag: 'Remove' };
1679
+ export type PalletStakingPalletConfigOpPercent =
1680
+ | { type: 'Noop' }
1681
+ | { type: 'Set'; value: Percent }
1682
+ | { type: 'Remove' };
1551
1683
 
1552
- export type PalletStakingPalletConfigOpPercent = { tag: 'Noop' } | { tag: 'Set'; value: Percent } | { tag: 'Remove' };
1684
+ export type PalletStakingPalletConfigOpPerbill =
1685
+ | { type: 'Noop' }
1686
+ | { type: 'Set'; value: Perbill }
1687
+ | { type: 'Remove' };
1553
1688
 
1554
- export type PalletStakingPalletConfigOpPerbill = { tag: 'Noop' } | { tag: 'Set'; value: Perbill } | { tag: 'Remove' };
1689
+ export type PalletStakingUnlockChunk = { value: bigint; era: number };
1555
1690
 
1556
1691
  /**
1557
1692
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -1579,7 +1714,6 @@ export type PalletSessionCallLike =
1579
1714
  export type StagingKusamaRuntimeSessionKeys = {
1580
1715
  grandpa: SpConsensusGrandpaAppPublic;
1581
1716
  babe: SpConsensusBabeAppPublic;
1582
- imOnline: PalletImOnlineSr25519AppSr25519Public;
1583
1717
  paraValidator: PolkadotPrimitivesV6ValidatorAppPublic;
1584
1718
  paraAssignment: PolkadotPrimitivesV6AssignmentAppPublic;
1585
1719
  authorityDiscovery: SpAuthorityDiscoveryAppPublic;
@@ -1642,8 +1776,8 @@ export type PalletGrandpaCallLike =
1642
1776
  export type SpConsensusGrandpaEquivocationProof = { setId: bigint; equivocation: SpConsensusGrandpaEquivocation };
1643
1777
 
1644
1778
  export type SpConsensusGrandpaEquivocation =
1645
- | { tag: 'Prevote'; value: FinalityGrandpaEquivocation }
1646
- | { tag: 'Precommit'; value: FinalityGrandpaEquivocationPrecommit };
1779
+ | { type: 'Prevote'; value: FinalityGrandpaEquivocation }
1780
+ | { type: 'Precommit'; value: FinalityGrandpaEquivocationPrecommit };
1647
1781
 
1648
1782
  export type FinalityGrandpaEquivocation = {
1649
1783
  roundNumber: bigint;
@@ -1667,38 +1801,6 @@ export type FinalityGrandpaEquivocationPrecommit = {
1667
1801
 
1668
1802
  export type FinalityGrandpaPrecommit = { targetHash: H256; targetNumber: number };
1669
1803
 
1670
- /**
1671
- * Contains a variant per dispatchable extrinsic that this pallet has.
1672
- **/
1673
- export type PalletImOnlineCall =
1674
- /**
1675
- * See [`Pallet::heartbeat`].
1676
- **/
1677
- {
1678
- name: 'Heartbeat';
1679
- params: { heartbeat: PalletImOnlineHeartbeat; signature: PalletImOnlineSr25519AppSr25519Signature };
1680
- };
1681
-
1682
- export type PalletImOnlineCallLike =
1683
- /**
1684
- * See [`Pallet::heartbeat`].
1685
- **/
1686
- {
1687
- name: 'Heartbeat';
1688
- params: { heartbeat: PalletImOnlineHeartbeat; signature: PalletImOnlineSr25519AppSr25519Signature };
1689
- };
1690
-
1691
- export type PalletImOnlineHeartbeat = {
1692
- blockNumber: number;
1693
- sessionIndex: number;
1694
- authorityIndex: number;
1695
- validatorsLen: number;
1696
- };
1697
-
1698
- export type PalletImOnlineSr25519AppSr25519Signature = SpCoreSr25519Signature;
1699
-
1700
- export type SpCoreSr25519Signature = FixedBytes<64>;
1701
-
1702
1804
  /**
1703
1805
  * Contains a variant per dispatchable extrinsic that this pallet has.
1704
1806
  **/
@@ -1731,7 +1833,7 @@ export type PalletTreasuryCall =
1731
1833
  params: {
1732
1834
  assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
1733
1835
  amount: bigint;
1734
- beneficiary: XcmVersionedMultiLocation;
1836
+ beneficiary: XcmVersionedLocation;
1735
1837
  validFrom?: number | undefined;
1736
1838
  };
1737
1839
  }
@@ -1777,7 +1879,7 @@ export type PalletTreasuryCallLike =
1777
1879
  params: {
1778
1880
  assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
1779
1881
  amount: bigint;
1780
- beneficiary: XcmVersionedMultiLocation;
1882
+ beneficiary: XcmVersionedLocation;
1781
1883
  validFrom?: number | undefined;
1782
1884
  };
1783
1885
  }
@@ -1856,9 +1958,9 @@ export type PalletConvictionVotingCallLike =
1856
1958
  | { name: 'RemoveOtherVote'; params: { target: MultiAddressLike; class: number; index: number } };
1857
1959
 
1858
1960
  export type PalletConvictionVotingVoteAccountVote =
1859
- | { tag: 'Standard'; value: { vote: PalletConvictionVotingVote; balance: bigint } }
1860
- | { tag: 'Split'; value: { aye: bigint; nay: bigint } }
1861
- | { tag: 'SplitAbstain'; value: { aye: bigint; nay: bigint; abstain: bigint } };
1961
+ | { type: 'Standard'; value: { vote: PalletConvictionVotingVote; balance: bigint } }
1962
+ | { type: 'Split'; value: { aye: bigint; nay: bigint } }
1963
+ | { type: 'SplitAbstain'; value: { aye: bigint; nay: bigint; abstain: bigint } };
1862
1964
 
1863
1965
  export type PalletConvictionVotingVote = number;
1864
1966
 
@@ -1965,13 +2067,16 @@ export type PalletReferendaCallLike =
1965
2067
  | { name: 'SetMetadata'; params: { index: number; maybeHash?: H256 | undefined } };
1966
2068
 
1967
2069
  export type StagingKusamaRuntimeOriginCaller =
1968
- | { tag: 'System'; value: FrameSupportDispatchRawOrigin }
1969
- | { tag: 'Origins'; value: StagingKusamaRuntimeGovernanceOriginsPalletCustomOriginsOrigin }
1970
- | { tag: 'ParachainsOrigin'; value: PolkadotRuntimeParachainsOriginPalletOrigin }
1971
- | { tag: 'XcmPallet'; value: PalletXcmOrigin }
1972
- | { tag: 'Void'; value: SpCoreVoid };
2070
+ | { type: 'System'; value: FrameSupportDispatchRawOrigin }
2071
+ | { type: 'Origins'; value: StagingKusamaRuntimeGovernanceOriginsPalletCustomOriginsOrigin }
2072
+ | { type: 'ParachainsOrigin'; value: PolkadotRuntimeParachainsOriginPalletOrigin }
2073
+ | { type: 'XcmPallet'; value: PalletXcmOrigin }
2074
+ | { type: 'Void'; value: SpCoreVoid };
1973
2075
 
1974
- export type FrameSupportDispatchRawOrigin = { tag: 'Root' } | { tag: 'Signed'; value: AccountId32 } | { tag: 'None' };
2076
+ export type FrameSupportDispatchRawOrigin =
2077
+ | { type: 'Root' }
2078
+ | { type: 'Signed'; value: AccountId32 }
2079
+ | { type: 'None' };
1975
2080
 
1976
2081
  export type StagingKusamaRuntimeGovernanceOriginsPalletCustomOriginsOrigin =
1977
2082
  | 'StakingAdmin'
@@ -2000,22 +2105,23 @@ export type StagingKusamaRuntimeGovernanceOriginsPalletCustomOriginsOrigin =
2000
2105
  | 'Fellowship6Dan'
2001
2106
  | 'Fellowship7Dan'
2002
2107
  | 'Fellowship8Dan'
2003
- | 'Fellowship9Dan';
2108
+ | 'Fellowship9Dan'
2109
+ | 'WishForChange';
2004
2110
 
2005
2111
  export type PolkadotRuntimeParachainsOriginPalletOrigin = {
2006
- tag: 'Parachain';
2112
+ type: 'Parachain';
2007
2113
  value: PolkadotParachainPrimitivesPrimitivesId;
2008
2114
  };
2009
2115
 
2010
2116
  export type PolkadotParachainPrimitivesPrimitivesId = number;
2011
2117
 
2012
2118
  export type PalletXcmOrigin =
2013
- | { tag: 'Xcm'; value: StagingXcmV3MultilocationMultiLocation }
2014
- | { tag: 'Response'; value: StagingXcmV3MultilocationMultiLocation };
2119
+ | { type: 'Xcm'; value: StagingXcmV4Location }
2120
+ | { type: 'Response'; value: StagingXcmV4Location };
2015
2121
 
2016
2122
  export type SpCoreVoid = null;
2017
2123
 
2018
- export type FrameSupportScheduleDispatchTime = { tag: 'At'; value: number } | { tag: 'After'; value: number };
2124
+ export type FrameSupportScheduleDispatchTime = { type: 'At'; value: number } | { type: 'After'; value: number };
2019
2125
 
2020
2126
  /**
2021
2127
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -2044,7 +2150,11 @@ export type PalletRankedCollectiveCall =
2044
2150
  /**
2045
2151
  * See [`Pallet::cleanup_poll`].
2046
2152
  **/
2047
- | { name: 'CleanupPoll'; params: { pollIndex: number; max: number } };
2153
+ | { name: 'CleanupPoll'; params: { pollIndex: number; max: number } }
2154
+ /**
2155
+ * See [`Pallet::exchange_member`].
2156
+ **/
2157
+ | { name: 'ExchangeMember'; params: { who: MultiAddress; newWho: MultiAddress } };
2048
2158
 
2049
2159
  export type PalletRankedCollectiveCallLike =
2050
2160
  /**
@@ -2070,7 +2180,11 @@ export type PalletRankedCollectiveCallLike =
2070
2180
  /**
2071
2181
  * See [`Pallet::cleanup_poll`].
2072
2182
  **/
2073
- | { name: 'CleanupPoll'; params: { pollIndex: number; max: number } };
2183
+ | { name: 'CleanupPoll'; params: { pollIndex: number; max: number } }
2184
+ /**
2185
+ * See [`Pallet::exchange_member`].
2186
+ **/
2187
+ | { name: 'ExchangeMember'; params: { who: MultiAddressLike; newWho: MultiAddressLike } };
2074
2188
 
2075
2189
  /**
2076
2190
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -2261,172 +2375,6 @@ export type PalletUtilityCallLike =
2261
2375
  **/
2262
2376
  | { name: 'WithWeight'; params: { call: StagingKusamaRuntimeRuntimeCallLike; weight: SpWeightsWeightV2Weight } };
2263
2377
 
2264
- /**
2265
- * Identity pallet declaration.
2266
- **/
2267
- export type PalletIdentityCall =
2268
- /**
2269
- * See [`Pallet::add_registrar`].
2270
- **/
2271
- | { name: 'AddRegistrar'; params: { account: MultiAddress } }
2272
- /**
2273
- * See [`Pallet::set_identity`].
2274
- **/
2275
- | { name: 'SetIdentity'; params: { info: PalletIdentitySimpleIdentityInfo } }
2276
- /**
2277
- * See [`Pallet::set_subs`].
2278
- **/
2279
- | { name: 'SetSubs'; params: { subs: Array<[AccountId32, Data]> } }
2280
- /**
2281
- * See [`Pallet::clear_identity`].
2282
- **/
2283
- | { name: 'ClearIdentity' }
2284
- /**
2285
- * See [`Pallet::request_judgement`].
2286
- **/
2287
- | { name: 'RequestJudgement'; params: { regIndex: number; maxFee: bigint } }
2288
- /**
2289
- * See [`Pallet::cancel_request`].
2290
- **/
2291
- | { name: 'CancelRequest'; params: { regIndex: number } }
2292
- /**
2293
- * See [`Pallet::set_fee`].
2294
- **/
2295
- | { name: 'SetFee'; params: { index: number; fee: bigint } }
2296
- /**
2297
- * See [`Pallet::set_account_id`].
2298
- **/
2299
- | { name: 'SetAccountId'; params: { index: number; new: MultiAddress } }
2300
- /**
2301
- * See [`Pallet::set_fields`].
2302
- **/
2303
- | { name: 'SetFields'; params: { index: number; fields: PalletIdentityBitFlags } }
2304
- /**
2305
- * See [`Pallet::provide_judgement`].
2306
- **/
2307
- | {
2308
- name: 'ProvideJudgement';
2309
- params: { regIndex: number; target: MultiAddress; judgement: PalletIdentityJudgement; identity: H256 };
2310
- }
2311
- /**
2312
- * See [`Pallet::kill_identity`].
2313
- **/
2314
- | { name: 'KillIdentity'; params: { target: MultiAddress } }
2315
- /**
2316
- * See [`Pallet::add_sub`].
2317
- **/
2318
- | { name: 'AddSub'; params: { sub: MultiAddress; data: Data } }
2319
- /**
2320
- * See [`Pallet::rename_sub`].
2321
- **/
2322
- | { name: 'RenameSub'; params: { sub: MultiAddress; data: Data } }
2323
- /**
2324
- * See [`Pallet::remove_sub`].
2325
- **/
2326
- | { name: 'RemoveSub'; params: { sub: MultiAddress } }
2327
- /**
2328
- * See [`Pallet::quit_sub`].
2329
- **/
2330
- | { name: 'QuitSub' };
2331
-
2332
- export type PalletIdentityCallLike =
2333
- /**
2334
- * See [`Pallet::add_registrar`].
2335
- **/
2336
- | { name: 'AddRegistrar'; params: { account: MultiAddressLike } }
2337
- /**
2338
- * See [`Pallet::set_identity`].
2339
- **/
2340
- | { name: 'SetIdentity'; params: { info: PalletIdentitySimpleIdentityInfo } }
2341
- /**
2342
- * See [`Pallet::set_subs`].
2343
- **/
2344
- | { name: 'SetSubs'; params: { subs: Array<[AccountId32Like, Data]> } }
2345
- /**
2346
- * See [`Pallet::clear_identity`].
2347
- **/
2348
- | { name: 'ClearIdentity' }
2349
- /**
2350
- * See [`Pallet::request_judgement`].
2351
- **/
2352
- | { name: 'RequestJudgement'; params: { regIndex: number; maxFee: bigint } }
2353
- /**
2354
- * See [`Pallet::cancel_request`].
2355
- **/
2356
- | { name: 'CancelRequest'; params: { regIndex: number } }
2357
- /**
2358
- * See [`Pallet::set_fee`].
2359
- **/
2360
- | { name: 'SetFee'; params: { index: number; fee: bigint } }
2361
- /**
2362
- * See [`Pallet::set_account_id`].
2363
- **/
2364
- | { name: 'SetAccountId'; params: { index: number; new: MultiAddressLike } }
2365
- /**
2366
- * See [`Pallet::set_fields`].
2367
- **/
2368
- | { name: 'SetFields'; params: { index: number; fields: PalletIdentityBitFlags } }
2369
- /**
2370
- * See [`Pallet::provide_judgement`].
2371
- **/
2372
- | {
2373
- name: 'ProvideJudgement';
2374
- params: { regIndex: number; target: MultiAddressLike; judgement: PalletIdentityJudgement; identity: H256 };
2375
- }
2376
- /**
2377
- * See [`Pallet::kill_identity`].
2378
- **/
2379
- | { name: 'KillIdentity'; params: { target: MultiAddressLike } }
2380
- /**
2381
- * See [`Pallet::add_sub`].
2382
- **/
2383
- | { name: 'AddSub'; params: { sub: MultiAddressLike; data: Data } }
2384
- /**
2385
- * See [`Pallet::rename_sub`].
2386
- **/
2387
- | { name: 'RenameSub'; params: { sub: MultiAddressLike; data: Data } }
2388
- /**
2389
- * See [`Pallet::remove_sub`].
2390
- **/
2391
- | { name: 'RemoveSub'; params: { sub: MultiAddressLike } }
2392
- /**
2393
- * See [`Pallet::quit_sub`].
2394
- **/
2395
- | { name: 'QuitSub' };
2396
-
2397
- export type PalletIdentitySimpleIdentityInfo = {
2398
- additional: Array<[Data, Data]>;
2399
- display: Data;
2400
- legal: Data;
2401
- web: Data;
2402
- riot: Data;
2403
- email: Data;
2404
- pgpFingerprint?: FixedBytes<20> | undefined;
2405
- image: Data;
2406
- twitter: Data;
2407
- };
2408
-
2409
- export type PalletIdentityBitFlags = bigint;
2410
-
2411
- export type PalletIdentitySimpleIdentityField =
2412
- | 'Display'
2413
- | 'Legal'
2414
- | 'Web'
2415
- | 'Riot'
2416
- | 'Email'
2417
- | 'PgpFingerprint'
2418
- | 'Image'
2419
- | 'Twitter';
2420
-
2421
- export type PalletIdentityJudgement =
2422
- | { tag: 'Unknown' }
2423
- | { tag: 'FeePaid'; value: bigint }
2424
- | { tag: 'Reasonable' }
2425
- | { tag: 'KnownGood' }
2426
- | { tag: 'OutOfDate' }
2427
- | { tag: 'LowQuality' }
2428
- | { tag: 'Erroneous' };
2429
-
2430
2378
  /**
2431
2379
  * Contains a variant per dispatchable extrinsic that this pallet has.
2432
2380
  **/
@@ -2725,7 +2673,11 @@ export type PalletVestingCall =
2725
2673
  /**
2726
2674
  * See [`Pallet::merge_schedules`].
2727
2675
  **/
2728
- | { name: 'MergeSchedules'; params: { schedule1Index: number; schedule2Index: number } };
2676
+ | { name: 'MergeSchedules'; params: { schedule1Index: number; schedule2Index: number } }
2677
+ /**
2678
+ * See [`Pallet::force_remove_vesting_schedule`].
2679
+ **/
2680
+ | { name: 'ForceRemoveVestingSchedule'; params: { target: MultiAddress; scheduleIndex: number } };
2729
2681
 
2730
2682
  export type PalletVestingCallLike =
2731
2683
  /**
@@ -2750,7 +2702,11 @@ export type PalletVestingCallLike =
2750
2702
  /**
2751
2703
  * See [`Pallet::merge_schedules`].
2752
2704
  **/
2753
- | { name: 'MergeSchedules'; params: { schedule1Index: number; schedule2Index: number } };
2705
+ | { name: 'MergeSchedules'; params: { schedule1Index: number; schedule2Index: number } }
2706
+ /**
2707
+ * See [`Pallet::force_remove_vesting_schedule`].
2708
+ **/
2709
+ | { name: 'ForceRemoveVestingSchedule'; params: { target: MultiAddressLike; scheduleIndex: number } };
2754
2710
 
2755
2711
  export type PalletVestingVestingInfo = { locked: bigint; perBlock: bigint; startingBlock: number };
2756
2712
 
@@ -3023,7 +2979,6 @@ export type StagingKusamaRuntimeProxyType =
3023
2979
  | 'NonTransfer'
3024
2980
  | 'Governance'
3025
2981
  | 'Staking'
3026
- | 'IdentityJudgement'
3027
2982
  | 'CancelProxy'
3028
2983
  | 'Auction'
3029
2984
  | 'Society'
@@ -3639,7 +3594,14 @@ export type PalletNominationPoolsCall =
3639
3594
  /**
3640
3595
  * See [`Pallet::adjust_pool_deposit`].
3641
3596
  **/
3642
- | { name: 'AdjustPoolDeposit'; params: { poolId: number } };
3597
+ | { name: 'AdjustPoolDeposit'; params: { poolId: number } }
3598
+ /**
3599
+ * See [`Pallet::set_commission_claim_permission`].
3600
+ **/
3601
+ | {
3602
+ name: 'SetCommissionClaimPermission';
3603
+ params: { poolId: number; permission?: PalletNominationPoolsCommissionClaimPermission | undefined };
3604
+ };
3643
3605
 
3644
3606
  export type PalletNominationPoolsCallLike =
3645
3607
  /**
@@ -3762,19 +3724,32 @@ export type PalletNominationPoolsCallLike =
3762
3724
  /**
3763
3725
  * See [`Pallet::adjust_pool_deposit`].
3764
3726
  **/
3765
- | { name: 'AdjustPoolDeposit'; params: { poolId: number } };
3727
+ | { name: 'AdjustPoolDeposit'; params: { poolId: number } }
3728
+ /**
3729
+ * See [`Pallet::set_commission_claim_permission`].
3730
+ **/
3731
+ | {
3732
+ name: 'SetCommissionClaimPermission';
3733
+ params: { poolId: number; permission?: PalletNominationPoolsCommissionClaimPermission | undefined };
3734
+ };
3766
3735
 
3767
- export type PalletNominationPoolsBondExtra = { tag: 'FreeBalance'; value: bigint } | { tag: 'Rewards' };
3736
+ export type PalletNominationPoolsBondExtra = { type: 'FreeBalance'; value: bigint } | { type: 'Rewards' };
3768
3737
 
3769
3738
  export type PalletNominationPoolsPoolState = 'Open' | 'Blocked' | 'Destroying';
3770
3739
 
3771
- export type PalletNominationPoolsConfigOp = { tag: 'Noop' } | { tag: 'Set'; value: bigint } | { tag: 'Remove' };
3740
+ export type PalletNominationPoolsConfigOp = { type: 'Noop' } | { type: 'Set'; value: bigint } | { type: 'Remove' };
3772
3741
 
3773
- export type PalletNominationPoolsConfigOpU32 = { tag: 'Noop' } | { tag: 'Set'; value: number } | { tag: 'Remove' };
3742
+ export type PalletNominationPoolsConfigOpU32 = { type: 'Noop' } | { type: 'Set'; value: number } | { type: 'Remove' };
3774
3743
 
3775
- export type PalletNominationPoolsConfigOpPerbill = { tag: 'Noop' } | { tag: 'Set'; value: Perbill } | { tag: 'Remove' };
3744
+ export type PalletNominationPoolsConfigOpPerbill =
3745
+ | { type: 'Noop' }
3746
+ | { type: 'Set'; value: Perbill }
3747
+ | { type: 'Remove' };
3776
3748
 
3777
- export type PalletNominationPoolsConfigOp004 = { tag: 'Noop' } | { tag: 'Set'; value: AccountId32 } | { tag: 'Remove' };
3749
+ export type PalletNominationPoolsConfigOp004 =
3750
+ | { type: 'Noop' }
3751
+ | { type: 'Set'; value: AccountId32 }
3752
+ | { type: 'Remove' };
3778
3753
 
3779
3754
  export type PalletNominationPoolsClaimPermission =
3780
3755
  | 'Permissioned'
@@ -3784,6 +3759,10 @@ export type PalletNominationPoolsClaimPermission =
3784
3759
 
3785
3760
  export type PalletNominationPoolsCommissionChangeRate = { maxIncrease: Perbill; minDelay: number };
3786
3761
 
3762
+ export type PalletNominationPoolsCommissionClaimPermission =
3763
+ | { type: 'Permissionless' }
3764
+ | { type: 'Account'; value: AccountId32 };
3765
+
3787
3766
  /**
3788
3767
  * Contains a variant per dispatchable extrinsic that this pallet has.
3789
3768
  **/
@@ -3844,9 +3823,9 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
3844
3823
  **/
3845
3824
  | { name: 'SetMaxHeadDataSize'; params: { new: number } }
3846
3825
  /**
3847
- * See [`Pallet::set_on_demand_cores`].
3826
+ * See [`Pallet::set_coretime_cores`].
3848
3827
  **/
3849
- | { name: 'SetOnDemandCores'; params: { new: number } }
3828
+ | { name: 'SetCoretimeCores'; params: { new: number } }
3850
3829
  /**
3851
3830
  * See [`Pallet::set_on_demand_retries`].
3852
3831
  **/
@@ -3998,7 +3977,15 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
3998
3977
  /**
3999
3978
  * See [`Pallet::set_minimum_backing_votes`].
4000
3979
  **/
4001
- | { name: 'SetMinimumBackingVotes'; params: { new: number } };
3980
+ | { name: 'SetMinimumBackingVotes'; params: { new: number } }
3981
+ /**
3982
+ * See [`Pallet::set_node_feature`].
3983
+ **/
3984
+ | { name: 'SetNodeFeature'; params: { index: number; value: boolean } }
3985
+ /**
3986
+ * See [`Pallet::set_approval_voting_params`].
3987
+ **/
3988
+ | { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesVstagingApprovalVotingParams } };
4002
3989
 
4003
3990
  export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
4004
3991
  /**
@@ -4026,9 +4013,9 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
4026
4013
  **/
4027
4014
  | { name: 'SetMaxHeadDataSize'; params: { new: number } }
4028
4015
  /**
4029
- * See [`Pallet::set_on_demand_cores`].
4016
+ * See [`Pallet::set_coretime_cores`].
4030
4017
  **/
4031
- | { name: 'SetOnDemandCores'; params: { new: number } }
4018
+ | { name: 'SetCoretimeCores'; params: { new: number } }
4032
4019
  /**
4033
4020
  * See [`Pallet::set_on_demand_retries`].
4034
4021
  **/
@@ -4180,7 +4167,15 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
4180
4167
  /**
4181
4168
  * See [`Pallet::set_minimum_backing_votes`].
4182
4169
  **/
4183
- | { name: 'SetMinimumBackingVotes'; params: { new: number } };
4170
+ | { name: 'SetMinimumBackingVotes'; params: { new: number } }
4171
+ /**
4172
+ * See [`Pallet::set_node_feature`].
4173
+ **/
4174
+ | { name: 'SetNodeFeature'; params: { index: number; value: boolean } }
4175
+ /**
4176
+ * See [`Pallet::set_approval_voting_params`].
4177
+ **/
4178
+ | { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesVstagingApprovalVotingParams } };
4184
4179
 
4185
4180
  export type PolkadotPrimitivesV6AsyncBackingAsyncBackingParams = {
4186
4181
  maxCandidateDepth: number;
@@ -4190,17 +4185,19 @@ export type PolkadotPrimitivesV6AsyncBackingAsyncBackingParams = {
4190
4185
  export type PolkadotPrimitivesV6ExecutorParams = Array<PolkadotPrimitivesV6ExecutorParamsExecutorParam>;
4191
4186
 
4192
4187
  export type PolkadotPrimitivesV6ExecutorParamsExecutorParam =
4193
- | { tag: 'MaxMemoryPages'; value: number }
4194
- | { tag: 'StackLogicalMax'; value: number }
4195
- | { tag: 'StackNativeMax'; value: number }
4196
- | { tag: 'PrecheckingMaxMemory'; value: bigint }
4197
- | { tag: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV6PvfPrepTimeoutKind, bigint] }
4198
- | { tag: 'PvfExecTimeout'; value: [PolkadotPrimitivesV6PvfExecTimeoutKind, bigint] }
4199
- | { tag: 'WasmExtBulkMemory' };
4188
+ | { type: 'MaxMemoryPages'; value: number }
4189
+ | { type: 'StackLogicalMax'; value: number }
4190
+ | { type: 'StackNativeMax'; value: number }
4191
+ | { type: 'PrecheckingMaxMemory'; value: bigint }
4192
+ | { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV6PvfPrepKind, bigint] }
4193
+ | { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV6PvfExecKind, bigint] }
4194
+ | { type: 'WasmExtBulkMemory' };
4200
4195
 
4201
- export type PolkadotPrimitivesV6PvfPrepTimeoutKind = 'Precheck' | 'Lenient';
4196
+ export type PolkadotPrimitivesV6PvfPrepKind = 'Precheck' | 'Prepare';
4202
4197
 
4203
- export type PolkadotPrimitivesV6PvfExecTimeoutKind = 'Backing' | 'Approval';
4198
+ export type PolkadotPrimitivesV6PvfExecKind = 'Backing' | 'Approval';
4199
+
4200
+ export type PolkadotPrimitivesVstagingApprovalVotingParams = { maxApprovalCoalesceCount: number };
4204
4201
 
4205
4202
  /**
4206
4203
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -4252,6 +4249,8 @@ export type PolkadotPrimitivesV6ValidatorIndex = number;
4252
4249
 
4253
4250
  export type PolkadotPrimitivesV6ValidatorAppSignature = SpCoreSr25519Signature;
4254
4251
 
4252
+ export type SpCoreSr25519Signature = FixedBytes<64>;
4253
+
4255
4254
  export type PolkadotPrimitivesV6BackedCandidate = {
4256
4255
  candidate: PolkadotPrimitivesV6CommittedCandidateReceipt;
4257
4256
  validityVotes: Array<PolkadotPrimitivesV6ValidityAttestation>;
@@ -4300,8 +4299,8 @@ export type PolkadotParachainPrimitivesPrimitivesValidationCode = Bytes;
4300
4299
  export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
4301
4300
 
4302
4301
  export type PolkadotPrimitivesV6ValidityAttestation =
4303
- | { tag: 'Implicit'; value: PolkadotPrimitivesV6ValidatorAppSignature }
4304
- | { tag: 'Explicit'; value: PolkadotPrimitivesV6ValidatorAppSignature };
4302
+ | { type: 'Implicit'; value: PolkadotPrimitivesV6ValidatorAppSignature }
4303
+ | { type: 'Explicit'; value: PolkadotPrimitivesV6ValidatorAppSignature };
4305
4304
 
4306
4305
  export type PolkadotPrimitivesV6DisputeStatementSet = {
4307
4306
  candidateHash: PolkadotCorePrimitivesCandidateHash;
@@ -4318,14 +4317,15 @@ export type PolkadotPrimitivesV6DisputeStatementSet = {
4318
4317
  export type PolkadotCorePrimitivesCandidateHash = H256;
4319
4318
 
4320
4319
  export type PolkadotPrimitivesV6DisputeStatement =
4321
- | { tag: 'Valid'; value: PolkadotPrimitivesV6ValidDisputeStatementKind }
4322
- | { tag: 'Invalid'; value: PolkadotPrimitivesV6InvalidDisputeStatementKind };
4320
+ | { type: 'Valid'; value: PolkadotPrimitivesV6ValidDisputeStatementKind }
4321
+ | { type: 'Invalid'; value: PolkadotPrimitivesV6InvalidDisputeStatementKind };
4323
4322
 
4324
4323
  export type PolkadotPrimitivesV6ValidDisputeStatementKind =
4325
- | { tag: 'Explicit' }
4326
- | { tag: 'BackingSeconded'; value: H256 }
4327
- | { tag: 'BackingValid'; value: H256 }
4328
- | { tag: 'ApprovalChecking' };
4324
+ | { type: 'Explicit' }
4325
+ | { type: 'BackingSeconded'; value: H256 }
4326
+ | { type: 'BackingValid'; value: H256 }
4327
+ | { type: 'ApprovalChecking' }
4328
+ | { type: 'ApprovalCheckingMultipleCandidates'; value: Array<PolkadotCorePrimitivesCandidateHash> };
4329
4329
 
4330
4330
  export type PolkadotPrimitivesV6InvalidDisputeStatementKind = 'Explicit';
4331
4331
 
@@ -4556,7 +4556,11 @@ export type PolkadotRuntimeParachainsHrmpPalletCall =
4556
4556
  | {
4557
4557
  name: 'PokeChannelDeposits';
4558
4558
  params: { sender: PolkadotParachainPrimitivesPrimitivesId; recipient: PolkadotParachainPrimitivesPrimitivesId };
4559
- };
4559
+ }
4560
+ /**
4561
+ * See [`Pallet::establish_channel_with_system`].
4562
+ **/
4563
+ | { name: 'EstablishChannelWithSystem'; params: { targetSystemChain: PolkadotParachainPrimitivesPrimitivesId } };
4560
4564
 
4561
4565
  export type PolkadotRuntimeParachainsHrmpPalletCallLike =
4562
4566
  /**
@@ -4625,7 +4629,11 @@ export type PolkadotRuntimeParachainsHrmpPalletCallLike =
4625
4629
  | {
4626
4630
  name: 'PokeChannelDeposits';
4627
4631
  params: { sender: PolkadotParachainPrimitivesPrimitivesId; recipient: PolkadotParachainPrimitivesPrimitivesId };
4628
- };
4632
+ }
4633
+ /**
4634
+ * See [`Pallet::establish_channel_with_system`].
4635
+ **/
4636
+ | { name: 'EstablishChannelWithSystem'; params: { targetSystemChain: PolkadotParachainPrimitivesPrimitivesId } };
4629
4637
 
4630
4638
  export type PolkadotParachainPrimitivesPrimitivesHrmpChannelId = {
4631
4639
  sender: PolkadotParachainPrimitivesPrimitivesId;
@@ -4682,6 +4690,29 @@ export type PolkadotPrimitivesV6SlashingDisputesTimeSlot = {
4682
4690
 
4683
4691
  export type PolkadotPrimitivesV6SlashingSlashingOffenceKind = 'ForInvalid' | 'AgainstValid';
4684
4692
 
4693
+ /**
4694
+ * Contains a variant per dispatchable extrinsic that this pallet has.
4695
+ **/
4696
+ export type PolkadotRuntimeParachainsAssignerOnDemandPalletCall =
4697
+ /**
4698
+ * See [`Pallet::place_order_allow_death`].
4699
+ **/
4700
+ | { name: 'PlaceOrderAllowDeath'; params: { maxAmount: bigint; paraId: PolkadotParachainPrimitivesPrimitivesId } }
4701
+ /**
4702
+ * See [`Pallet::place_order_keep_alive`].
4703
+ **/
4704
+ | { name: 'PlaceOrderKeepAlive'; params: { maxAmount: bigint; paraId: PolkadotParachainPrimitivesPrimitivesId } };
4705
+
4706
+ export type PolkadotRuntimeParachainsAssignerOnDemandPalletCallLike =
4707
+ /**
4708
+ * See [`Pallet::place_order_allow_death`].
4709
+ **/
4710
+ | { name: 'PlaceOrderAllowDeath'; params: { maxAmount: bigint; paraId: PolkadotParachainPrimitivesPrimitivesId } }
4711
+ /**
4712
+ * See [`Pallet::place_order_keep_alive`].
4713
+ **/
4714
+ | { name: 'PlaceOrderKeepAlive'; params: { maxAmount: bigint; paraId: PolkadotParachainPrimitivesPrimitivesId } };
4715
+
4685
4716
  /**
4686
4717
  * Contains a variant per dispatchable extrinsic that this pallet has.
4687
4718
  **/
@@ -5055,106 +5086,66 @@ export type PolkadotRuntimeCommonCrowdloanPalletCallLike =
5055
5086
  };
5056
5087
 
5057
5088
  export type SpRuntimeMultiSigner =
5058
- | { tag: 'Ed25519'; value: SpCoreEd25519Public }
5059
- | { tag: 'Sr25519'; value: SpCoreSr25519Public }
5060
- | { tag: 'Ecdsa'; value: SpCoreEcdsaPublic };
5089
+ | { type: 'Ed25519'; value: SpCoreEd25519Public }
5090
+ | { type: 'Sr25519'; value: SpCoreSr25519Public }
5091
+ | { type: 'Ecdsa'; value: SpCoreEcdsaPublic };
5061
5092
 
5062
5093
  export type SpRuntimeMultiSignature =
5063
- | { tag: 'Ed25519'; value: SpCoreEd25519Signature }
5064
- | { tag: 'Sr25519'; value: SpCoreSr25519Signature }
5065
- | { tag: 'Ecdsa'; value: SpCoreEcdsaSignature };
5094
+ | { type: 'Ed25519'; value: SpCoreEd25519Signature }
5095
+ | { type: 'Sr25519'; value: SpCoreSr25519Signature }
5096
+ | { type: 'Ecdsa'; value: SpCoreEcdsaSignature };
5066
5097
 
5067
5098
  export type SpCoreEcdsaSignature = FixedBytes<65>;
5068
5099
 
5069
5100
  /**
5070
5101
  * Contains a variant per dispatchable extrinsic that this pallet has.
5071
5102
  **/
5072
- export type PalletStateTrieMigrationCall =
5103
+ export type PolkadotRuntimeParachainsCoretimePalletCall =
5073
5104
  /**
5074
- * See [`Pallet::control_auto_migration`].
5105
+ * See [`Pallet::request_core_count`].
5075
5106
  **/
5076
- | { name: 'ControlAutoMigration'; params: { maybeConfig?: PalletStateTrieMigrationMigrationLimits | undefined } }
5107
+ | { name: 'RequestCoreCount'; params: { count: number } }
5077
5108
  /**
5078
- * See [`Pallet::continue_migrate`].
5109
+ * See [`Pallet::assign_core`].
5079
5110
  **/
5080
5111
  | {
5081
- name: 'ContinueMigrate';
5112
+ name: 'AssignCore';
5082
5113
  params: {
5083
- limits: PalletStateTrieMigrationMigrationLimits;
5084
- realSizeUpper: number;
5085
- witnessTask: PalletStateTrieMigrationMigrationTask;
5114
+ core: number;
5115
+ begin: number;
5116
+ assignment: Array<
5117
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimePartsOf57600]
5118
+ >;
5119
+ endHint?: number | undefined;
5086
5120
  };
5087
- }
5088
- /**
5089
- * See [`Pallet::migrate_custom_top`].
5090
- **/
5091
- | { name: 'MigrateCustomTop'; params: { keys: Array<Bytes>; witnessSize: number } }
5092
- /**
5093
- * See [`Pallet::migrate_custom_child`].
5094
- **/
5095
- | { name: 'MigrateCustomChild'; params: { root: Bytes; childKeys: Array<Bytes>; totalSize: number } }
5096
- /**
5097
- * See [`Pallet::set_signed_max_limits`].
5098
- **/
5099
- | { name: 'SetSignedMaxLimits'; params: { limits: PalletStateTrieMigrationMigrationLimits } }
5100
- /**
5101
- * See [`Pallet::force_set_progress`].
5102
- **/
5103
- | {
5104
- name: 'ForceSetProgress';
5105
- params: { progressTop: PalletStateTrieMigrationProgress; progressChild: PalletStateTrieMigrationProgress };
5106
5121
  };
5107
5122
 
5108
- export type PalletStateTrieMigrationCallLike =
5123
+ export type PolkadotRuntimeParachainsCoretimePalletCallLike =
5109
5124
  /**
5110
- * See [`Pallet::control_auto_migration`].
5125
+ * See [`Pallet::request_core_count`].
5111
5126
  **/
5112
- | { name: 'ControlAutoMigration'; params: { maybeConfig?: PalletStateTrieMigrationMigrationLimits | undefined } }
5127
+ | { name: 'RequestCoreCount'; params: { count: number } }
5113
5128
  /**
5114
- * See [`Pallet::continue_migrate`].
5129
+ * See [`Pallet::assign_core`].
5115
5130
  **/
5116
5131
  | {
5117
- name: 'ContinueMigrate';
5132
+ name: 'AssignCore';
5118
5133
  params: {
5119
- limits: PalletStateTrieMigrationMigrationLimits;
5120
- realSizeUpper: number;
5121
- witnessTask: PalletStateTrieMigrationMigrationTask;
5134
+ core: number;
5135
+ begin: number;
5136
+ assignment: Array<
5137
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimePartsOf57600]
5138
+ >;
5139
+ endHint?: number | undefined;
5122
5140
  };
5123
- }
5124
- /**
5125
- * See [`Pallet::migrate_custom_top`].
5126
- **/
5127
- | { name: 'MigrateCustomTop'; params: { keys: Array<BytesLike>; witnessSize: number } }
5128
- /**
5129
- * See [`Pallet::migrate_custom_child`].
5130
- **/
5131
- | { name: 'MigrateCustomChild'; params: { root: BytesLike; childKeys: Array<BytesLike>; totalSize: number } }
5132
- /**
5133
- * See [`Pallet::set_signed_max_limits`].
5134
- **/
5135
- | { name: 'SetSignedMaxLimits'; params: { limits: PalletStateTrieMigrationMigrationLimits } }
5136
- /**
5137
- * See [`Pallet::force_set_progress`].
5138
- **/
5139
- | {
5140
- name: 'ForceSetProgress';
5141
- params: { progressTop: PalletStateTrieMigrationProgress; progressChild: PalletStateTrieMigrationProgress };
5142
5141
  };
5143
5142
 
5144
- export type PalletStateTrieMigrationMigrationLimits = { size: number; item: number };
5145
-
5146
- export type PalletStateTrieMigrationMigrationTask = {
5147
- progressTop: PalletStateTrieMigrationProgress;
5148
- progressChild: PalletStateTrieMigrationProgress;
5149
- size: number;
5150
- topItems: number;
5151
- childItems: number;
5152
- };
5143
+ export type PalletBrokerCoretimeInterfaceCoreAssignment =
5144
+ | { type: 'Idle' }
5145
+ | { type: 'Pool' }
5146
+ | { type: 'Task'; value: number };
5153
5147
 
5154
- export type PalletStateTrieMigrationProgress =
5155
- | { tag: 'ToStart' }
5156
- | { tag: 'LastKey'; value: Bytes }
5157
- | { tag: 'Complete' };
5148
+ export type PolkadotRuntimeParachainsAssignerCoretimePartsOf57600 = number;
5158
5149
 
5159
5150
  /**
5160
5151
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -5163,16 +5154,16 @@ export type PalletXcmCall =
5163
5154
  /**
5164
5155
  * See [`Pallet::send`].
5165
5156
  **/
5166
- | { name: 'Send'; params: { dest: XcmVersionedMultiLocation; message: XcmVersionedXcm } }
5157
+ | { name: 'Send'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
5167
5158
  /**
5168
5159
  * See [`Pallet::teleport_assets`].
5169
5160
  **/
5170
5161
  | {
5171
5162
  name: 'TeleportAssets';
5172
5163
  params: {
5173
- dest: XcmVersionedMultiLocation;
5174
- beneficiary: XcmVersionedMultiLocation;
5175
- assets: XcmVersionedMultiAssets;
5164
+ dest: XcmVersionedLocation;
5165
+ beneficiary: XcmVersionedLocation;
5166
+ assets: XcmVersionedAssets;
5176
5167
  feeAssetItem: number;
5177
5168
  };
5178
5169
  }
@@ -5182,9 +5173,9 @@ export type PalletXcmCall =
5182
5173
  | {
5183
5174
  name: 'ReserveTransferAssets';
5184
5175
  params: {
5185
- dest: XcmVersionedMultiLocation;
5186
- beneficiary: XcmVersionedMultiLocation;
5187
- assets: XcmVersionedMultiAssets;
5176
+ dest: XcmVersionedLocation;
5177
+ beneficiary: XcmVersionedLocation;
5178
+ assets: XcmVersionedAssets;
5188
5179
  feeAssetItem: number;
5189
5180
  };
5190
5181
  }
@@ -5195,7 +5186,7 @@ export type PalletXcmCall =
5195
5186
  /**
5196
5187
  * See [`Pallet::force_xcm_version`].
5197
5188
  **/
5198
- | { name: 'ForceXcmVersion'; params: { location: StagingXcmV3MultilocationMultiLocation; version: number } }
5189
+ | { name: 'ForceXcmVersion'; params: { location: StagingXcmV4Location; version: number } }
5199
5190
  /**
5200
5191
  * See [`Pallet::force_default_xcm_version`].
5201
5192
  **/
@@ -5203,20 +5194,20 @@ export type PalletXcmCall =
5203
5194
  /**
5204
5195
  * See [`Pallet::force_subscribe_version_notify`].
5205
5196
  **/
5206
- | { name: 'ForceSubscribeVersionNotify'; params: { location: XcmVersionedMultiLocation } }
5197
+ | { name: 'ForceSubscribeVersionNotify'; params: { location: XcmVersionedLocation } }
5207
5198
  /**
5208
5199
  * See [`Pallet::force_unsubscribe_version_notify`].
5209
5200
  **/
5210
- | { name: 'ForceUnsubscribeVersionNotify'; params: { location: XcmVersionedMultiLocation } }
5201
+ | { name: 'ForceUnsubscribeVersionNotify'; params: { location: XcmVersionedLocation } }
5211
5202
  /**
5212
5203
  * See [`Pallet::limited_reserve_transfer_assets`].
5213
5204
  **/
5214
5205
  | {
5215
5206
  name: 'LimitedReserveTransferAssets';
5216
5207
  params: {
5217
- dest: XcmVersionedMultiLocation;
5218
- beneficiary: XcmVersionedMultiLocation;
5219
- assets: XcmVersionedMultiAssets;
5208
+ dest: XcmVersionedLocation;
5209
+ beneficiary: XcmVersionedLocation;
5210
+ assets: XcmVersionedAssets;
5220
5211
  feeAssetItem: number;
5221
5212
  weightLimit: XcmV3WeightLimit;
5222
5213
  };
@@ -5227,9 +5218,9 @@ export type PalletXcmCall =
5227
5218
  | {
5228
5219
  name: 'LimitedTeleportAssets';
5229
5220
  params: {
5230
- dest: XcmVersionedMultiLocation;
5231
- beneficiary: XcmVersionedMultiLocation;
5232
- assets: XcmVersionedMultiAssets;
5221
+ dest: XcmVersionedLocation;
5222
+ beneficiary: XcmVersionedLocation;
5223
+ assets: XcmVersionedAssets;
5233
5224
  feeAssetItem: number;
5234
5225
  weightLimit: XcmV3WeightLimit;
5235
5226
  };
@@ -5237,22 +5228,54 @@ export type PalletXcmCall =
5237
5228
  /**
5238
5229
  * See [`Pallet::force_suspension`].
5239
5230
  **/
5240
- | { name: 'ForceSuspension'; params: { suspended: boolean } };
5231
+ | { name: 'ForceSuspension'; params: { suspended: boolean } }
5232
+ /**
5233
+ * See [`Pallet::transfer_assets`].
5234
+ **/
5235
+ | {
5236
+ name: 'TransferAssets';
5237
+ params: {
5238
+ dest: XcmVersionedLocation;
5239
+ beneficiary: XcmVersionedLocation;
5240
+ assets: XcmVersionedAssets;
5241
+ feeAssetItem: number;
5242
+ weightLimit: XcmV3WeightLimit;
5243
+ };
5244
+ }
5245
+ /**
5246
+ * See [`Pallet::claim_assets`].
5247
+ **/
5248
+ | { name: 'ClaimAssets'; params: { assets: XcmVersionedAssets; beneficiary: XcmVersionedLocation } }
5249
+ /**
5250
+ * See [`Pallet::transfer_assets_using_type_and_then`].
5251
+ **/
5252
+ | {
5253
+ name: 'TransferAssetsUsingTypeAndThen';
5254
+ params: {
5255
+ dest: XcmVersionedLocation;
5256
+ assets: XcmVersionedAssets;
5257
+ assetsTransferType: StagingXcmExecutorAssetTransferTransferType;
5258
+ remoteFeesId: XcmVersionedAssetId;
5259
+ feesTransferType: StagingXcmExecutorAssetTransferTransferType;
5260
+ customXcmOnDest: XcmVersionedXcm;
5261
+ weightLimit: XcmV3WeightLimit;
5262
+ };
5263
+ };
5241
5264
 
5242
5265
  export type PalletXcmCallLike =
5243
5266
  /**
5244
5267
  * See [`Pallet::send`].
5245
5268
  **/
5246
- | { name: 'Send'; params: { dest: XcmVersionedMultiLocation; message: XcmVersionedXcm } }
5269
+ | { name: 'Send'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
5247
5270
  /**
5248
5271
  * See [`Pallet::teleport_assets`].
5249
5272
  **/
5250
5273
  | {
5251
5274
  name: 'TeleportAssets';
5252
5275
  params: {
5253
- dest: XcmVersionedMultiLocation;
5254
- beneficiary: XcmVersionedMultiLocation;
5255
- assets: XcmVersionedMultiAssets;
5276
+ dest: XcmVersionedLocation;
5277
+ beneficiary: XcmVersionedLocation;
5278
+ assets: XcmVersionedAssets;
5256
5279
  feeAssetItem: number;
5257
5280
  };
5258
5281
  }
@@ -5262,9 +5285,9 @@ export type PalletXcmCallLike =
5262
5285
  | {
5263
5286
  name: 'ReserveTransferAssets';
5264
5287
  params: {
5265
- dest: XcmVersionedMultiLocation;
5266
- beneficiary: XcmVersionedMultiLocation;
5267
- assets: XcmVersionedMultiAssets;
5288
+ dest: XcmVersionedLocation;
5289
+ beneficiary: XcmVersionedLocation;
5290
+ assets: XcmVersionedAssets;
5268
5291
  feeAssetItem: number;
5269
5292
  };
5270
5293
  }
@@ -5275,7 +5298,7 @@ export type PalletXcmCallLike =
5275
5298
  /**
5276
5299
  * See [`Pallet::force_xcm_version`].
5277
5300
  **/
5278
- | { name: 'ForceXcmVersion'; params: { location: StagingXcmV3MultilocationMultiLocation; version: number } }
5301
+ | { name: 'ForceXcmVersion'; params: { location: StagingXcmV4Location; version: number } }
5279
5302
  /**
5280
5303
  * See [`Pallet::force_default_xcm_version`].
5281
5304
  **/
@@ -5283,20 +5306,20 @@ export type PalletXcmCallLike =
5283
5306
  /**
5284
5307
  * See [`Pallet::force_subscribe_version_notify`].
5285
5308
  **/
5286
- | { name: 'ForceSubscribeVersionNotify'; params: { location: XcmVersionedMultiLocation } }
5309
+ | { name: 'ForceSubscribeVersionNotify'; params: { location: XcmVersionedLocation } }
5287
5310
  /**
5288
5311
  * See [`Pallet::force_unsubscribe_version_notify`].
5289
5312
  **/
5290
- | { name: 'ForceUnsubscribeVersionNotify'; params: { location: XcmVersionedMultiLocation } }
5313
+ | { name: 'ForceUnsubscribeVersionNotify'; params: { location: XcmVersionedLocation } }
5291
5314
  /**
5292
5315
  * See [`Pallet::limited_reserve_transfer_assets`].
5293
5316
  **/
5294
5317
  | {
5295
5318
  name: 'LimitedReserveTransferAssets';
5296
5319
  params: {
5297
- dest: XcmVersionedMultiLocation;
5298
- beneficiary: XcmVersionedMultiLocation;
5299
- assets: XcmVersionedMultiAssets;
5320
+ dest: XcmVersionedLocation;
5321
+ beneficiary: XcmVersionedLocation;
5322
+ assets: XcmVersionedAssets;
5300
5323
  feeAssetItem: number;
5301
5324
  weightLimit: XcmV3WeightLimit;
5302
5325
  };
@@ -5307,9 +5330,9 @@ export type PalletXcmCallLike =
5307
5330
  | {
5308
5331
  name: 'LimitedTeleportAssets';
5309
5332
  params: {
5310
- dest: XcmVersionedMultiLocation;
5311
- beneficiary: XcmVersionedMultiLocation;
5312
- assets: XcmVersionedMultiAssets;
5333
+ dest: XcmVersionedLocation;
5334
+ beneficiary: XcmVersionedLocation;
5335
+ assets: XcmVersionedAssets;
5313
5336
  feeAssetItem: number;
5314
5337
  weightLimit: XcmV3WeightLimit;
5315
5338
  };
@@ -5317,34 +5340,72 @@ export type PalletXcmCallLike =
5317
5340
  /**
5318
5341
  * See [`Pallet::force_suspension`].
5319
5342
  **/
5320
- | { name: 'ForceSuspension'; params: { suspended: boolean } };
5321
-
5322
- export type XcmVersionedXcm = { tag: 'V2'; value: XcmV2Xcm } | { tag: 'V3'; value: XcmV3Xcm };
5323
-
5324
- export type XcmV2Xcm = Array<XcmV2Instruction>;
5325
-
5326
- export type XcmV2Instruction =
5327
- | { tag: 'WithdrawAsset'; value: XcmV2MultiassetMultiAssets }
5328
- | { tag: 'ReserveAssetDeposited'; value: XcmV2MultiassetMultiAssets }
5329
- | { tag: 'ReceiveTeleportedAsset'; value: XcmV2MultiassetMultiAssets }
5330
- | { tag: 'QueryResponse'; value: { queryId: bigint; response: XcmV2Response; maxWeight: bigint } }
5331
- | {
5332
- tag: 'TransferAsset';
5333
- value: { assets: XcmV2MultiassetMultiAssets; beneficiary: XcmV2MultilocationMultiLocation };
5334
- }
5343
+ | { name: 'ForceSuspension'; params: { suspended: boolean } }
5344
+ /**
5345
+ * See [`Pallet::transfer_assets`].
5346
+ **/
5335
5347
  | {
5336
- tag: 'TransferReserveAsset';
5337
- value: { assets: XcmV2MultiassetMultiAssets; dest: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
5348
+ name: 'TransferAssets';
5349
+ params: {
5350
+ dest: XcmVersionedLocation;
5351
+ beneficiary: XcmVersionedLocation;
5352
+ assets: XcmVersionedAssets;
5353
+ feeAssetItem: number;
5354
+ weightLimit: XcmV3WeightLimit;
5355
+ };
5338
5356
  }
5339
- | { tag: 'Transact'; value: { originType: XcmV2OriginKind; requireWeightAtMost: bigint; call: XcmDoubleEncoded } }
5340
- | { tag: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
5341
- | { tag: 'HrmpChannelAccepted'; value: { recipient: number } }
5342
- | { tag: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
5343
- | { tag: 'ClearOrigin' }
5344
- | { tag: 'DescendOrigin'; value: XcmV2MultilocationJunctions }
5345
- | { tag: 'ReportError'; value: { queryId: bigint; dest: XcmV2MultilocationMultiLocation; maxResponseWeight: bigint } }
5357
+ /**
5358
+ * See [`Pallet::claim_assets`].
5359
+ **/
5360
+ | { name: 'ClaimAssets'; params: { assets: XcmVersionedAssets; beneficiary: XcmVersionedLocation } }
5361
+ /**
5362
+ * See [`Pallet::transfer_assets_using_type_and_then`].
5363
+ **/
5346
5364
  | {
5347
- tag: 'DepositAsset';
5365
+ name: 'TransferAssetsUsingTypeAndThen';
5366
+ params: {
5367
+ dest: XcmVersionedLocation;
5368
+ assets: XcmVersionedAssets;
5369
+ assetsTransferType: StagingXcmExecutorAssetTransferTransferType;
5370
+ remoteFeesId: XcmVersionedAssetId;
5371
+ feesTransferType: StagingXcmExecutorAssetTransferTransferType;
5372
+ customXcmOnDest: XcmVersionedXcm;
5373
+ weightLimit: XcmV3WeightLimit;
5374
+ };
5375
+ };
5376
+
5377
+ export type XcmVersionedXcm =
5378
+ | { type: 'V2'; value: XcmV2Xcm }
5379
+ | { type: 'V3'; value: XcmV3Xcm }
5380
+ | { type: 'V4'; value: StagingXcmV4Xcm };
5381
+
5382
+ export type XcmV2Xcm = Array<XcmV2Instruction>;
5383
+
5384
+ export type XcmV2Instruction =
5385
+ | { type: 'WithdrawAsset'; value: XcmV2MultiassetMultiAssets }
5386
+ | { type: 'ReserveAssetDeposited'; value: XcmV2MultiassetMultiAssets }
5387
+ | { type: 'ReceiveTeleportedAsset'; value: XcmV2MultiassetMultiAssets }
5388
+ | { type: 'QueryResponse'; value: { queryId: bigint; response: XcmV2Response; maxWeight: bigint } }
5389
+ | {
5390
+ type: 'TransferAsset';
5391
+ value: { assets: XcmV2MultiassetMultiAssets; beneficiary: XcmV2MultilocationMultiLocation };
5392
+ }
5393
+ | {
5394
+ type: 'TransferReserveAsset';
5395
+ value: { assets: XcmV2MultiassetMultiAssets; dest: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
5396
+ }
5397
+ | { type: 'Transact'; value: { originType: XcmV2OriginKind; requireWeightAtMost: bigint; call: XcmDoubleEncoded } }
5398
+ | { type: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
5399
+ | { type: 'HrmpChannelAccepted'; value: { recipient: number } }
5400
+ | { type: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
5401
+ | { type: 'ClearOrigin' }
5402
+ | { type: 'DescendOrigin'; value: XcmV2MultilocationJunctions }
5403
+ | {
5404
+ type: 'ReportError';
5405
+ value: { queryId: bigint; dest: XcmV2MultilocationMultiLocation; maxResponseWeight: bigint };
5406
+ }
5407
+ | {
5408
+ type: 'DepositAsset';
5348
5409
  value: {
5349
5410
  assets: XcmV2MultiassetMultiAssetFilter;
5350
5411
  maxAssets: number;
@@ -5352,7 +5413,7 @@ export type XcmV2Instruction =
5352
5413
  };
5353
5414
  }
5354
5415
  | {
5355
- tag: 'DepositReserveAsset';
5416
+ type: 'DepositReserveAsset';
5356
5417
  value: {
5357
5418
  assets: XcmV2MultiassetMultiAssetFilter;
5358
5419
  maxAssets: number;
@@ -5360,17 +5421,17 @@ export type XcmV2Instruction =
5360
5421
  xcm: XcmV2Xcm;
5361
5422
  };
5362
5423
  }
5363
- | { tag: 'ExchangeAsset'; value: { give: XcmV2MultiassetMultiAssetFilter; receive: XcmV2MultiassetMultiAssets } }
5424
+ | { type: 'ExchangeAsset'; value: { give: XcmV2MultiassetMultiAssetFilter; receive: XcmV2MultiassetMultiAssets } }
5364
5425
  | {
5365
- tag: 'InitiateReserveWithdraw';
5426
+ type: 'InitiateReserveWithdraw';
5366
5427
  value: { assets: XcmV2MultiassetMultiAssetFilter; reserve: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
5367
5428
  }
5368
5429
  | {
5369
- tag: 'InitiateTeleport';
5430
+ type: 'InitiateTeleport';
5370
5431
  value: { assets: XcmV2MultiassetMultiAssetFilter; dest: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
5371
5432
  }
5372
5433
  | {
5373
- tag: 'QueryHolding';
5434
+ type: 'QueryHolding';
5374
5435
  value: {
5375
5436
  queryId: bigint;
5376
5437
  dest: XcmV2MultilocationMultiLocation;
@@ -5378,95 +5439,95 @@ export type XcmV2Instruction =
5378
5439
  maxResponseWeight: bigint;
5379
5440
  };
5380
5441
  }
5381
- | { tag: 'BuyExecution'; value: { fees: XcmV2MultiassetMultiAsset; weightLimit: XcmV2WeightLimit } }
5382
- | { tag: 'RefundSurplus' }
5383
- | { tag: 'SetErrorHandler'; value: XcmV2Xcm }
5384
- | { tag: 'SetAppendix'; value: XcmV2Xcm }
5385
- | { tag: 'ClearError' }
5386
- | { tag: 'ClaimAsset'; value: { assets: XcmV2MultiassetMultiAssets; ticket: XcmV2MultilocationMultiLocation } }
5387
- | { tag: 'Trap'; value: bigint }
5388
- | { tag: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: bigint } }
5389
- | { tag: 'UnsubscribeVersion' };
5442
+ | { type: 'BuyExecution'; value: { fees: XcmV2MultiassetMultiAsset; weightLimit: XcmV2WeightLimit } }
5443
+ | { type: 'RefundSurplus' }
5444
+ | { type: 'SetErrorHandler'; value: XcmV2Xcm }
5445
+ | { type: 'SetAppendix'; value: XcmV2Xcm }
5446
+ | { type: 'ClearError' }
5447
+ | { type: 'ClaimAsset'; value: { assets: XcmV2MultiassetMultiAssets; ticket: XcmV2MultilocationMultiLocation } }
5448
+ | { type: 'Trap'; value: bigint }
5449
+ | { type: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: bigint } }
5450
+ | { type: 'UnsubscribeVersion' };
5390
5451
 
5391
5452
  export type XcmV2MultiassetMultiAssets = Array<XcmV2MultiassetMultiAsset>;
5392
5453
 
5393
5454
  export type XcmV2MultiassetMultiAsset = { id: XcmV2MultiassetAssetId; fun: XcmV2MultiassetFungibility };
5394
5455
 
5395
5456
  export type XcmV2MultiassetAssetId =
5396
- | { tag: 'Concrete'; value: XcmV2MultilocationMultiLocation }
5397
- | { tag: 'Abstract'; value: Bytes };
5457
+ | { type: 'Concrete'; value: XcmV2MultilocationMultiLocation }
5458
+ | { type: 'Abstract'; value: Bytes };
5398
5459
 
5399
5460
  export type XcmV2MultiassetFungibility =
5400
- | { tag: 'Fungible'; value: bigint }
5401
- | { tag: 'NonFungible'; value: XcmV2MultiassetAssetInstance };
5461
+ | { type: 'Fungible'; value: bigint }
5462
+ | { type: 'NonFungible'; value: XcmV2MultiassetAssetInstance };
5402
5463
 
5403
5464
  export type XcmV2MultiassetAssetInstance =
5404
- | { tag: 'Undefined' }
5405
- | { tag: 'Index'; value: bigint }
5406
- | { tag: 'Array4'; value: FixedBytes<4> }
5407
- | { tag: 'Array8'; value: FixedBytes<8> }
5408
- | { tag: 'Array16'; value: FixedBytes<16> }
5409
- | { tag: 'Array32'; value: FixedBytes<32> }
5410
- | { tag: 'Blob'; value: Bytes };
5465
+ | { type: 'Undefined' }
5466
+ | { type: 'Index'; value: bigint }
5467
+ | { type: 'Array4'; value: FixedBytes<4> }
5468
+ | { type: 'Array8'; value: FixedBytes<8> }
5469
+ | { type: 'Array16'; value: FixedBytes<16> }
5470
+ | { type: 'Array32'; value: FixedBytes<32> }
5471
+ | { type: 'Blob'; value: Bytes };
5411
5472
 
5412
5473
  export type XcmV2Response =
5413
- | { tag: 'Null' }
5414
- | { tag: 'Assets'; value: XcmV2MultiassetMultiAssets }
5415
- | { tag: 'ExecutionResult'; value?: [number, XcmV2TraitsError] | undefined }
5416
- | { tag: 'Version'; value: number };
5474
+ | { type: 'Null' }
5475
+ | { type: 'Assets'; value: XcmV2MultiassetMultiAssets }
5476
+ | { type: 'ExecutionResult'; value?: [number, XcmV2TraitsError] | undefined }
5477
+ | { type: 'Version'; value: number };
5417
5478
 
5418
5479
  export type XcmV2TraitsError =
5419
- | { tag: 'Overflow' }
5420
- | { tag: 'Unimplemented' }
5421
- | { tag: 'UntrustedReserveLocation' }
5422
- | { tag: 'UntrustedTeleportLocation' }
5423
- | { tag: 'MultiLocationFull' }
5424
- | { tag: 'MultiLocationNotInvertible' }
5425
- | { tag: 'BadOrigin' }
5426
- | { tag: 'InvalidLocation' }
5427
- | { tag: 'AssetNotFound' }
5428
- | { tag: 'FailedToTransactAsset' }
5429
- | { tag: 'NotWithdrawable' }
5430
- | { tag: 'LocationCannotHold' }
5431
- | { tag: 'ExceedsMaxMessageSize' }
5432
- | { tag: 'DestinationUnsupported' }
5433
- | { tag: 'Transport' }
5434
- | { tag: 'Unroutable' }
5435
- | { tag: 'UnknownClaim' }
5436
- | { tag: 'FailedToDecode' }
5437
- | { tag: 'MaxWeightInvalid' }
5438
- | { tag: 'NotHoldingFees' }
5439
- | { tag: 'TooExpensive' }
5440
- | { tag: 'Trap'; value: bigint }
5441
- | { tag: 'UnhandledXcmVersion' }
5442
- | { tag: 'WeightLimitReached'; value: bigint }
5443
- | { tag: 'Barrier' }
5444
- | { tag: 'WeightNotComputable' };
5480
+ | { type: 'Overflow' }
5481
+ | { type: 'Unimplemented' }
5482
+ | { type: 'UntrustedReserveLocation' }
5483
+ | { type: 'UntrustedTeleportLocation' }
5484
+ | { type: 'MultiLocationFull' }
5485
+ | { type: 'MultiLocationNotInvertible' }
5486
+ | { type: 'BadOrigin' }
5487
+ | { type: 'InvalidLocation' }
5488
+ | { type: 'AssetNotFound' }
5489
+ | { type: 'FailedToTransactAsset' }
5490
+ | { type: 'NotWithdrawable' }
5491
+ | { type: 'LocationCannotHold' }
5492
+ | { type: 'ExceedsMaxMessageSize' }
5493
+ | { type: 'DestinationUnsupported' }
5494
+ | { type: 'Transport' }
5495
+ | { type: 'Unroutable' }
5496
+ | { type: 'UnknownClaim' }
5497
+ | { type: 'FailedToDecode' }
5498
+ | { type: 'MaxWeightInvalid' }
5499
+ | { type: 'NotHoldingFees' }
5500
+ | { type: 'TooExpensive' }
5501
+ | { type: 'Trap'; value: bigint }
5502
+ | { type: 'UnhandledXcmVersion' }
5503
+ | { type: 'WeightLimitReached'; value: bigint }
5504
+ | { type: 'Barrier' }
5505
+ | { type: 'WeightNotComputable' };
5445
5506
 
5446
5507
  export type XcmV2OriginKind = 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
5447
5508
 
5448
5509
  export type XcmDoubleEncoded = { encoded: Bytes };
5449
5510
 
5450
5511
  export type XcmV2MultiassetMultiAssetFilter =
5451
- | { tag: 'Definite'; value: XcmV2MultiassetMultiAssets }
5452
- | { tag: 'Wild'; value: XcmV2MultiassetWildMultiAsset };
5512
+ | { type: 'Definite'; value: XcmV2MultiassetMultiAssets }
5513
+ | { type: 'Wild'; value: XcmV2MultiassetWildMultiAsset };
5453
5514
 
5454
5515
  export type XcmV2MultiassetWildMultiAsset =
5455
- | { tag: 'All' }
5456
- | { tag: 'AllOf'; value: { id: XcmV2MultiassetAssetId; fun: XcmV2MultiassetWildFungibility } };
5516
+ | { type: 'All' }
5517
+ | { type: 'AllOf'; value: { id: XcmV2MultiassetAssetId; fun: XcmV2MultiassetWildFungibility } };
5457
5518
 
5458
5519
  export type XcmV2MultiassetWildFungibility = 'Fungible' | 'NonFungible';
5459
5520
 
5460
- export type XcmV2WeightLimit = { tag: 'Unlimited' } | { tag: 'Limited'; value: bigint };
5521
+ export type XcmV2WeightLimit = { type: 'Unlimited' } | { type: 'Limited'; value: bigint };
5461
5522
 
5462
5523
  export type XcmV3Xcm = Array<XcmV3Instruction>;
5463
5524
 
5464
5525
  export type XcmV3Instruction =
5465
- | { tag: 'WithdrawAsset'; value: XcmV3MultiassetMultiAssets }
5466
- | { tag: 'ReserveAssetDeposited'; value: XcmV3MultiassetMultiAssets }
5467
- | { tag: 'ReceiveTeleportedAsset'; value: XcmV3MultiassetMultiAssets }
5526
+ | { type: 'WithdrawAsset'; value: XcmV3MultiassetMultiAssets }
5527
+ | { type: 'ReserveAssetDeposited'; value: XcmV3MultiassetMultiAssets }
5528
+ | { type: 'ReceiveTeleportedAsset'; value: XcmV3MultiassetMultiAssets }
5468
5529
  | {
5469
- tag: 'QueryResponse';
5530
+ type: 'QueryResponse';
5470
5531
  value: {
5471
5532
  queryId: bigint;
5472
5533
  response: XcmV3Response;
@@ -5475,37 +5536,37 @@ export type XcmV3Instruction =
5475
5536
  };
5476
5537
  }
5477
5538
  | {
5478
- tag: 'TransferAsset';
5539
+ type: 'TransferAsset';
5479
5540
  value: { assets: XcmV3MultiassetMultiAssets; beneficiary: StagingXcmV3MultilocationMultiLocation };
5480
5541
  }
5481
5542
  | {
5482
- tag: 'TransferReserveAsset';
5543
+ type: 'TransferReserveAsset';
5483
5544
  value: { assets: XcmV3MultiassetMultiAssets; dest: StagingXcmV3MultilocationMultiLocation; xcm: XcmV3Xcm };
5484
5545
  }
5485
5546
  | {
5486
- tag: 'Transact';
5547
+ type: 'Transact';
5487
5548
  value: { originKind: XcmV2OriginKind; requireWeightAtMost: SpWeightsWeightV2Weight; call: XcmDoubleEncoded };
5488
5549
  }
5489
- | { tag: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
5490
- | { tag: 'HrmpChannelAccepted'; value: { recipient: number } }
5491
- | { tag: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
5492
- | { tag: 'ClearOrigin' }
5493
- | { tag: 'DescendOrigin'; value: XcmV3Junctions }
5494
- | { tag: 'ReportError'; value: XcmV3QueryResponseInfo }
5550
+ | { type: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
5551
+ | { type: 'HrmpChannelAccepted'; value: { recipient: number } }
5552
+ | { type: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
5553
+ | { type: 'ClearOrigin' }
5554
+ | { type: 'DescendOrigin'; value: XcmV3Junctions }
5555
+ | { type: 'ReportError'; value: XcmV3QueryResponseInfo }
5495
5556
  | {
5496
- tag: 'DepositAsset';
5557
+ type: 'DepositAsset';
5497
5558
  value: { assets: XcmV3MultiassetMultiAssetFilter; beneficiary: StagingXcmV3MultilocationMultiLocation };
5498
5559
  }
5499
5560
  | {
5500
- tag: 'DepositReserveAsset';
5561
+ type: 'DepositReserveAsset';
5501
5562
  value: { assets: XcmV3MultiassetMultiAssetFilter; dest: StagingXcmV3MultilocationMultiLocation; xcm: XcmV3Xcm };
5502
5563
  }
5503
5564
  | {
5504
- tag: 'ExchangeAsset';
5565
+ type: 'ExchangeAsset';
5505
5566
  value: { give: XcmV3MultiassetMultiAssetFilter; want: XcmV3MultiassetMultiAssets; maximal: boolean };
5506
5567
  }
5507
5568
  | {
5508
- tag: 'InitiateReserveWithdraw';
5569
+ type: 'InitiateReserveWithdraw';
5509
5570
  value: {
5510
5571
  assets: XcmV3MultiassetMultiAssetFilter;
5511
5572
  reserve: StagingXcmV3MultilocationMultiLocation;
@@ -5513,49 +5574,52 @@ export type XcmV3Instruction =
5513
5574
  };
5514
5575
  }
5515
5576
  | {
5516
- tag: 'InitiateTeleport';
5577
+ type: 'InitiateTeleport';
5517
5578
  value: { assets: XcmV3MultiassetMultiAssetFilter; dest: StagingXcmV3MultilocationMultiLocation; xcm: XcmV3Xcm };
5518
5579
  }
5519
- | { tag: 'ReportHolding'; value: { responseInfo: XcmV3QueryResponseInfo; assets: XcmV3MultiassetMultiAssetFilter } }
5520
- | { tag: 'BuyExecution'; value: { fees: XcmV3MultiassetMultiAsset; weightLimit: XcmV3WeightLimit } }
5521
- | { tag: 'RefundSurplus' }
5522
- | { tag: 'SetErrorHandler'; value: XcmV3Xcm }
5523
- | { tag: 'SetAppendix'; value: XcmV3Xcm }
5524
- | { tag: 'ClearError' }
5525
- | { tag: 'ClaimAsset'; value: { assets: XcmV3MultiassetMultiAssets; ticket: StagingXcmV3MultilocationMultiLocation } }
5526
- | { tag: 'Trap'; value: bigint }
5527
- | { tag: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: SpWeightsWeightV2Weight } }
5528
- | { tag: 'UnsubscribeVersion' }
5529
- | { tag: 'BurnAsset'; value: XcmV3MultiassetMultiAssets }
5530
- | { tag: 'ExpectAsset'; value: XcmV3MultiassetMultiAssets }
5531
- | { tag: 'ExpectOrigin'; value?: StagingXcmV3MultilocationMultiLocation | undefined }
5532
- | { tag: 'ExpectError'; value?: [number, XcmV3TraitsError] | undefined }
5533
- | { tag: 'ExpectTransactStatus'; value: XcmV3MaybeErrorCode }
5534
- | { tag: 'QueryPallet'; value: { moduleName: Bytes; responseInfo: XcmV3QueryResponseInfo } }
5535
- | {
5536
- tag: 'ExpectPallet';
5580
+ | { type: 'ReportHolding'; value: { responseInfo: XcmV3QueryResponseInfo; assets: XcmV3MultiassetMultiAssetFilter } }
5581
+ | { type: 'BuyExecution'; value: { fees: XcmV3MultiassetMultiAsset; weightLimit: XcmV3WeightLimit } }
5582
+ | { type: 'RefundSurplus' }
5583
+ | { type: 'SetErrorHandler'; value: XcmV3Xcm }
5584
+ | { type: 'SetAppendix'; value: XcmV3Xcm }
5585
+ | { type: 'ClearError' }
5586
+ | {
5587
+ type: 'ClaimAsset';
5588
+ value: { assets: XcmV3MultiassetMultiAssets; ticket: StagingXcmV3MultilocationMultiLocation };
5589
+ }
5590
+ | { type: 'Trap'; value: bigint }
5591
+ | { type: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: SpWeightsWeightV2Weight } }
5592
+ | { type: 'UnsubscribeVersion' }
5593
+ | { type: 'BurnAsset'; value: XcmV3MultiassetMultiAssets }
5594
+ | { type: 'ExpectAsset'; value: XcmV3MultiassetMultiAssets }
5595
+ | { type: 'ExpectOrigin'; value?: StagingXcmV3MultilocationMultiLocation | undefined }
5596
+ | { type: 'ExpectError'; value?: [number, XcmV3TraitsError] | undefined }
5597
+ | { type: 'ExpectTransactStatus'; value: XcmV3MaybeErrorCode }
5598
+ | { type: 'QueryPallet'; value: { moduleName: Bytes; responseInfo: XcmV3QueryResponseInfo } }
5599
+ | {
5600
+ type: 'ExpectPallet';
5537
5601
  value: { index: number; name: Bytes; moduleName: Bytes; crateMajor: number; minCrateMinor: number };
5538
5602
  }
5539
- | { tag: 'ReportTransactStatus'; value: XcmV3QueryResponseInfo }
5540
- | { tag: 'ClearTransactStatus' }
5541
- | { tag: 'UniversalOrigin'; value: XcmV3Junction }
5542
- | { tag: 'ExportMessage'; value: { network: XcmV3JunctionNetworkId; destination: XcmV3Junctions; xcm: XcmV3Xcm } }
5543
- | { tag: 'LockAsset'; value: { asset: XcmV3MultiassetMultiAsset; unlocker: StagingXcmV3MultilocationMultiLocation } }
5544
- | { tag: 'UnlockAsset'; value: { asset: XcmV3MultiassetMultiAsset; target: StagingXcmV3MultilocationMultiLocation } }
5603
+ | { type: 'ReportTransactStatus'; value: XcmV3QueryResponseInfo }
5604
+ | { type: 'ClearTransactStatus' }
5605
+ | { type: 'UniversalOrigin'; value: XcmV3Junction }
5606
+ | { type: 'ExportMessage'; value: { network: XcmV3JunctionNetworkId; destination: XcmV3Junctions; xcm: XcmV3Xcm } }
5607
+ | { type: 'LockAsset'; value: { asset: XcmV3MultiassetMultiAsset; unlocker: StagingXcmV3MultilocationMultiLocation } }
5608
+ | { type: 'UnlockAsset'; value: { asset: XcmV3MultiassetMultiAsset; target: StagingXcmV3MultilocationMultiLocation } }
5545
5609
  | {
5546
- tag: 'NoteUnlockable';
5610
+ type: 'NoteUnlockable';
5547
5611
  value: { asset: XcmV3MultiassetMultiAsset; owner: StagingXcmV3MultilocationMultiLocation };
5548
5612
  }
5549
5613
  | {
5550
- tag: 'RequestUnlock';
5614
+ type: 'RequestUnlock';
5551
5615
  value: { asset: XcmV3MultiassetMultiAsset; locker: StagingXcmV3MultilocationMultiLocation };
5552
5616
  }
5553
- | { tag: 'SetFeesMode'; value: { jitWithdraw: boolean } }
5554
- | { tag: 'SetTopic'; value: FixedBytes<32> }
5555
- | { tag: 'ClearTopic' }
5556
- | { tag: 'AliasOrigin'; value: StagingXcmV3MultilocationMultiLocation }
5617
+ | { type: 'SetFeesMode'; value: { jitWithdraw: boolean } }
5618
+ | { type: 'SetTopic'; value: FixedBytes<32> }
5619
+ | { type: 'ClearTopic' }
5620
+ | { type: 'AliasOrigin'; value: StagingXcmV3MultilocationMultiLocation }
5557
5621
  | {
5558
- tag: 'UnpaidExecution';
5622
+ type: 'UnpaidExecution';
5559
5623
  value: { weightLimit: XcmV3WeightLimit; checkOrigin?: StagingXcmV3MultilocationMultiLocation | undefined };
5560
5624
  };
5561
5625
 
@@ -5564,66 +5628,66 @@ export type XcmV3MultiassetMultiAssets = Array<XcmV3MultiassetMultiAsset>;
5564
5628
  export type XcmV3MultiassetMultiAsset = { id: XcmV3MultiassetAssetId; fun: XcmV3MultiassetFungibility };
5565
5629
 
5566
5630
  export type XcmV3MultiassetFungibility =
5567
- | { tag: 'Fungible'; value: bigint }
5568
- | { tag: 'NonFungible'; value: XcmV3MultiassetAssetInstance };
5631
+ | { type: 'Fungible'; value: bigint }
5632
+ | { type: 'NonFungible'; value: XcmV3MultiassetAssetInstance };
5569
5633
 
5570
5634
  export type XcmV3MultiassetAssetInstance =
5571
- | { tag: 'Undefined' }
5572
- | { tag: 'Index'; value: bigint }
5573
- | { tag: 'Array4'; value: FixedBytes<4> }
5574
- | { tag: 'Array8'; value: FixedBytes<8> }
5575
- | { tag: 'Array16'; value: FixedBytes<16> }
5576
- | { tag: 'Array32'; value: FixedBytes<32> };
5635
+ | { type: 'Undefined' }
5636
+ | { type: 'Index'; value: bigint }
5637
+ | { type: 'Array4'; value: FixedBytes<4> }
5638
+ | { type: 'Array8'; value: FixedBytes<8> }
5639
+ | { type: 'Array16'; value: FixedBytes<16> }
5640
+ | { type: 'Array32'; value: FixedBytes<32> };
5577
5641
 
5578
5642
  export type XcmV3Response =
5579
- | { tag: 'Null' }
5580
- | { tag: 'Assets'; value: XcmV3MultiassetMultiAssets }
5581
- | { tag: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
5582
- | { tag: 'Version'; value: number }
5583
- | { tag: 'PalletsInfo'; value: Array<XcmV3PalletInfo> }
5584
- | { tag: 'DispatchResult'; value: XcmV3MaybeErrorCode };
5643
+ | { type: 'Null' }
5644
+ | { type: 'Assets'; value: XcmV3MultiassetMultiAssets }
5645
+ | { type: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
5646
+ | { type: 'Version'; value: number }
5647
+ | { type: 'PalletsInfo'; value: Array<XcmV3PalletInfo> }
5648
+ | { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
5585
5649
 
5586
5650
  export type XcmV3TraitsError =
5587
- | { tag: 'Overflow' }
5588
- | { tag: 'Unimplemented' }
5589
- | { tag: 'UntrustedReserveLocation' }
5590
- | { tag: 'UntrustedTeleportLocation' }
5591
- | { tag: 'LocationFull' }
5592
- | { tag: 'LocationNotInvertible' }
5593
- | { tag: 'BadOrigin' }
5594
- | { tag: 'InvalidLocation' }
5595
- | { tag: 'AssetNotFound' }
5596
- | { tag: 'FailedToTransactAsset' }
5597
- | { tag: 'NotWithdrawable' }
5598
- | { tag: 'LocationCannotHold' }
5599
- | { tag: 'ExceedsMaxMessageSize' }
5600
- | { tag: 'DestinationUnsupported' }
5601
- | { tag: 'Transport' }
5602
- | { tag: 'Unroutable' }
5603
- | { tag: 'UnknownClaim' }
5604
- | { tag: 'FailedToDecode' }
5605
- | { tag: 'MaxWeightInvalid' }
5606
- | { tag: 'NotHoldingFees' }
5607
- | { tag: 'TooExpensive' }
5608
- | { tag: 'Trap'; value: bigint }
5609
- | { tag: 'ExpectationFalse' }
5610
- | { tag: 'PalletNotFound' }
5611
- | { tag: 'NameMismatch' }
5612
- | { tag: 'VersionIncompatible' }
5613
- | { tag: 'HoldingWouldOverflow' }
5614
- | { tag: 'ExportError' }
5615
- | { tag: 'ReanchorFailed' }
5616
- | { tag: 'NoDeal' }
5617
- | { tag: 'FeesNotMet' }
5618
- | { tag: 'LockError' }
5619
- | { tag: 'NoPermission' }
5620
- | { tag: 'Unanchored' }
5621
- | { tag: 'NotDepositable' }
5622
- | { tag: 'UnhandledXcmVersion' }
5623
- | { tag: 'WeightLimitReached'; value: SpWeightsWeightV2Weight }
5624
- | { tag: 'Barrier' }
5625
- | { tag: 'WeightNotComputable' }
5626
- | { tag: 'ExceedsStackLimit' };
5651
+ | { type: 'Overflow' }
5652
+ | { type: 'Unimplemented' }
5653
+ | { type: 'UntrustedReserveLocation' }
5654
+ | { type: 'UntrustedTeleportLocation' }
5655
+ | { type: 'LocationFull' }
5656
+ | { type: 'LocationNotInvertible' }
5657
+ | { type: 'BadOrigin' }
5658
+ | { type: 'InvalidLocation' }
5659
+ | { type: 'AssetNotFound' }
5660
+ | { type: 'FailedToTransactAsset' }
5661
+ | { type: 'NotWithdrawable' }
5662
+ | { type: 'LocationCannotHold' }
5663
+ | { type: 'ExceedsMaxMessageSize' }
5664
+ | { type: 'DestinationUnsupported' }
5665
+ | { type: 'Transport' }
5666
+ | { type: 'Unroutable' }
5667
+ | { type: 'UnknownClaim' }
5668
+ | { type: 'FailedToDecode' }
5669
+ | { type: 'MaxWeightInvalid' }
5670
+ | { type: 'NotHoldingFees' }
5671
+ | { type: 'TooExpensive' }
5672
+ | { type: 'Trap'; value: bigint }
5673
+ | { type: 'ExpectationFalse' }
5674
+ | { type: 'PalletNotFound' }
5675
+ | { type: 'NameMismatch' }
5676
+ | { type: 'VersionIncompatible' }
5677
+ | { type: 'HoldingWouldOverflow' }
5678
+ | { type: 'ExportError' }
5679
+ | { type: 'ReanchorFailed' }
5680
+ | { type: 'NoDeal' }
5681
+ | { type: 'FeesNotMet' }
5682
+ | { type: 'LockError' }
5683
+ | { type: 'NoPermission' }
5684
+ | { type: 'Unanchored' }
5685
+ | { type: 'NotDepositable' }
5686
+ | { type: 'UnhandledXcmVersion' }
5687
+ | { type: 'WeightLimitReached'; value: SpWeightsWeightV2Weight }
5688
+ | { type: 'Barrier' }
5689
+ | { type: 'WeightNotComputable' }
5690
+ | { type: 'ExceedsStackLimit' };
5627
5691
 
5628
5692
  export type XcmV3PalletInfo = {
5629
5693
  index: number;
@@ -5635,9 +5699,9 @@ export type XcmV3PalletInfo = {
5635
5699
  };
5636
5700
 
5637
5701
  export type XcmV3MaybeErrorCode =
5638
- | { tag: 'Success' }
5639
- | { tag: 'Error'; value: Bytes }
5640
- | { tag: 'TruncatedError'; value: Bytes };
5702
+ | { type: 'Success' }
5703
+ | { type: 'Error'; value: Bytes }
5704
+ | { type: 'TruncatedError'; value: Bytes };
5641
5705
 
5642
5706
  export type XcmV3QueryResponseInfo = {
5643
5707
  destination: StagingXcmV3MultilocationMultiLocation;
@@ -5646,22 +5710,177 @@ export type XcmV3QueryResponseInfo = {
5646
5710
  };
5647
5711
 
5648
5712
  export type XcmV3MultiassetMultiAssetFilter =
5649
- | { tag: 'Definite'; value: XcmV3MultiassetMultiAssets }
5650
- | { tag: 'Wild'; value: XcmV3MultiassetWildMultiAsset };
5713
+ | { type: 'Definite'; value: XcmV3MultiassetMultiAssets }
5714
+ | { type: 'Wild'; value: XcmV3MultiassetWildMultiAsset };
5651
5715
 
5652
5716
  export type XcmV3MultiassetWildMultiAsset =
5653
- | { tag: 'All' }
5654
- | { tag: 'AllOf'; value: { id: XcmV3MultiassetAssetId; fun: XcmV3MultiassetWildFungibility } }
5655
- | { tag: 'AllCounted'; value: number }
5656
- | { tag: 'AllOfCounted'; value: { id: XcmV3MultiassetAssetId; fun: XcmV3MultiassetWildFungibility; count: number } };
5717
+ | { type: 'All' }
5718
+ | { type: 'AllOf'; value: { id: XcmV3MultiassetAssetId; fun: XcmV3MultiassetWildFungibility } }
5719
+ | { type: 'AllCounted'; value: number }
5720
+ | { type: 'AllOfCounted'; value: { id: XcmV3MultiassetAssetId; fun: XcmV3MultiassetWildFungibility; count: number } };
5657
5721
 
5658
5722
  export type XcmV3MultiassetWildFungibility = 'Fungible' | 'NonFungible';
5659
5723
 
5660
- export type XcmV3WeightLimit = { tag: 'Unlimited' } | { tag: 'Limited'; value: SpWeightsWeightV2Weight };
5724
+ export type XcmV3WeightLimit = { type: 'Unlimited' } | { type: 'Limited'; value: SpWeightsWeightV2Weight };
5661
5725
 
5662
- export type XcmVersionedMultiAssets =
5663
- | { tag: 'V2'; value: XcmV2MultiassetMultiAssets }
5664
- | { tag: 'V3'; value: XcmV3MultiassetMultiAssets };
5726
+ export type StagingXcmV4Xcm = Array<StagingXcmV4Instruction>;
5727
+
5728
+ export type StagingXcmV4Instruction =
5729
+ | { type: 'WithdrawAsset'; value: StagingXcmV4AssetAssets }
5730
+ | { type: 'ReserveAssetDeposited'; value: StagingXcmV4AssetAssets }
5731
+ | { type: 'ReceiveTeleportedAsset'; value: StagingXcmV4AssetAssets }
5732
+ | {
5733
+ type: 'QueryResponse';
5734
+ value: {
5735
+ queryId: bigint;
5736
+ response: StagingXcmV4Response;
5737
+ maxWeight: SpWeightsWeightV2Weight;
5738
+ querier?: StagingXcmV4Location | undefined;
5739
+ };
5740
+ }
5741
+ | { type: 'TransferAsset'; value: { assets: StagingXcmV4AssetAssets; beneficiary: StagingXcmV4Location } }
5742
+ | {
5743
+ type: 'TransferReserveAsset';
5744
+ value: { assets: StagingXcmV4AssetAssets; dest: StagingXcmV4Location; xcm: StagingXcmV4Xcm };
5745
+ }
5746
+ | {
5747
+ type: 'Transact';
5748
+ value: { originKind: XcmV2OriginKind; requireWeightAtMost: SpWeightsWeightV2Weight; call: XcmDoubleEncoded };
5749
+ }
5750
+ | { type: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
5751
+ | { type: 'HrmpChannelAccepted'; value: { recipient: number } }
5752
+ | { type: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
5753
+ | { type: 'ClearOrigin' }
5754
+ | { type: 'DescendOrigin'; value: StagingXcmV4Junctions }
5755
+ | { type: 'ReportError'; value: StagingXcmV4QueryResponseInfo }
5756
+ | { type: 'DepositAsset'; value: { assets: StagingXcmV4AssetAssetFilter; beneficiary: StagingXcmV4Location } }
5757
+ | {
5758
+ type: 'DepositReserveAsset';
5759
+ value: { assets: StagingXcmV4AssetAssetFilter; dest: StagingXcmV4Location; xcm: StagingXcmV4Xcm };
5760
+ }
5761
+ | {
5762
+ type: 'ExchangeAsset';
5763
+ value: { give: StagingXcmV4AssetAssetFilter; want: StagingXcmV4AssetAssets; maximal: boolean };
5764
+ }
5765
+ | {
5766
+ type: 'InitiateReserveWithdraw';
5767
+ value: { assets: StagingXcmV4AssetAssetFilter; reserve: StagingXcmV4Location; xcm: StagingXcmV4Xcm };
5768
+ }
5769
+ | {
5770
+ type: 'InitiateTeleport';
5771
+ value: { assets: StagingXcmV4AssetAssetFilter; dest: StagingXcmV4Location; xcm: StagingXcmV4Xcm };
5772
+ }
5773
+ | {
5774
+ type: 'ReportHolding';
5775
+ value: { responseInfo: StagingXcmV4QueryResponseInfo; assets: StagingXcmV4AssetAssetFilter };
5776
+ }
5777
+ | { type: 'BuyExecution'; value: { fees: StagingXcmV4Asset; weightLimit: XcmV3WeightLimit } }
5778
+ | { type: 'RefundSurplus' }
5779
+ | { type: 'SetErrorHandler'; value: StagingXcmV4Xcm }
5780
+ | { type: 'SetAppendix'; value: StagingXcmV4Xcm }
5781
+ | { type: 'ClearError' }
5782
+ | { type: 'ClaimAsset'; value: { assets: StagingXcmV4AssetAssets; ticket: StagingXcmV4Location } }
5783
+ | { type: 'Trap'; value: bigint }
5784
+ | { type: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: SpWeightsWeightV2Weight } }
5785
+ | { type: 'UnsubscribeVersion' }
5786
+ | { type: 'BurnAsset'; value: StagingXcmV4AssetAssets }
5787
+ | { type: 'ExpectAsset'; value: StagingXcmV4AssetAssets }
5788
+ | { type: 'ExpectOrigin'; value?: StagingXcmV4Location | undefined }
5789
+ | { type: 'ExpectError'; value?: [number, XcmV3TraitsError] | undefined }
5790
+ | { type: 'ExpectTransactStatus'; value: XcmV3MaybeErrorCode }
5791
+ | { type: 'QueryPallet'; value: { moduleName: Bytes; responseInfo: StagingXcmV4QueryResponseInfo } }
5792
+ | {
5793
+ type: 'ExpectPallet';
5794
+ value: { index: number; name: Bytes; moduleName: Bytes; crateMajor: number; minCrateMinor: number };
5795
+ }
5796
+ | { type: 'ReportTransactStatus'; value: StagingXcmV4QueryResponseInfo }
5797
+ | { type: 'ClearTransactStatus' }
5798
+ | { type: 'UniversalOrigin'; value: StagingXcmV4Junction }
5799
+ | {
5800
+ type: 'ExportMessage';
5801
+ value: { network: StagingXcmV4JunctionNetworkId; destination: StagingXcmV4Junctions; xcm: StagingXcmV4Xcm };
5802
+ }
5803
+ | { type: 'LockAsset'; value: { asset: StagingXcmV4Asset; unlocker: StagingXcmV4Location } }
5804
+ | { type: 'UnlockAsset'; value: { asset: StagingXcmV4Asset; target: StagingXcmV4Location } }
5805
+ | { type: 'NoteUnlockable'; value: { asset: StagingXcmV4Asset; owner: StagingXcmV4Location } }
5806
+ | { type: 'RequestUnlock'; value: { asset: StagingXcmV4Asset; locker: StagingXcmV4Location } }
5807
+ | { type: 'SetFeesMode'; value: { jitWithdraw: boolean } }
5808
+ | { type: 'SetTopic'; value: FixedBytes<32> }
5809
+ | { type: 'ClearTopic' }
5810
+ | { type: 'AliasOrigin'; value: StagingXcmV4Location }
5811
+ | {
5812
+ type: 'UnpaidExecution';
5813
+ value: { weightLimit: XcmV3WeightLimit; checkOrigin?: StagingXcmV4Location | undefined };
5814
+ };
5815
+
5816
+ export type StagingXcmV4AssetAssets = Array<StagingXcmV4Asset>;
5817
+
5818
+ export type StagingXcmV4Asset = { id: StagingXcmV4AssetAssetId; fun: StagingXcmV4AssetFungibility };
5819
+
5820
+ export type StagingXcmV4AssetFungibility =
5821
+ | { type: 'Fungible'; value: bigint }
5822
+ | { type: 'NonFungible'; value: StagingXcmV4AssetAssetInstance };
5823
+
5824
+ export type StagingXcmV4AssetAssetInstance =
5825
+ | { type: 'Undefined' }
5826
+ | { type: 'Index'; value: bigint }
5827
+ | { type: 'Array4'; value: FixedBytes<4> }
5828
+ | { type: 'Array8'; value: FixedBytes<8> }
5829
+ | { type: 'Array16'; value: FixedBytes<16> }
5830
+ | { type: 'Array32'; value: FixedBytes<32> };
5831
+
5832
+ export type StagingXcmV4Response =
5833
+ | { type: 'Null' }
5834
+ | { type: 'Assets'; value: StagingXcmV4AssetAssets }
5835
+ | { type: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
5836
+ | { type: 'Version'; value: number }
5837
+ | { type: 'PalletsInfo'; value: Array<StagingXcmV4PalletInfo> }
5838
+ | { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
5839
+
5840
+ export type StagingXcmV4PalletInfo = {
5841
+ index: number;
5842
+ name: Bytes;
5843
+ moduleName: Bytes;
5844
+ major: number;
5845
+ minor: number;
5846
+ patch: number;
5847
+ };
5848
+
5849
+ export type StagingXcmV4QueryResponseInfo = {
5850
+ destination: StagingXcmV4Location;
5851
+ queryId: bigint;
5852
+ maxWeight: SpWeightsWeightV2Weight;
5853
+ };
5854
+
5855
+ export type StagingXcmV4AssetAssetFilter =
5856
+ | { type: 'Definite'; value: StagingXcmV4AssetAssets }
5857
+ | { type: 'Wild'; value: StagingXcmV4AssetWildAsset };
5858
+
5859
+ export type StagingXcmV4AssetWildAsset =
5860
+ | { type: 'All' }
5861
+ | { type: 'AllOf'; value: { id: StagingXcmV4AssetAssetId; fun: StagingXcmV4AssetWildFungibility } }
5862
+ | { type: 'AllCounted'; value: number }
5863
+ | {
5864
+ type: 'AllOfCounted';
5865
+ value: { id: StagingXcmV4AssetAssetId; fun: StagingXcmV4AssetWildFungibility; count: number };
5866
+ };
5867
+
5868
+ export type StagingXcmV4AssetWildFungibility = 'Fungible' | 'NonFungible';
5869
+
5870
+ export type XcmVersionedAssets =
5871
+ | { type: 'V2'; value: XcmV2MultiassetMultiAssets }
5872
+ | { type: 'V3'; value: XcmV3MultiassetMultiAssets }
5873
+ | { type: 'V4'; value: StagingXcmV4AssetAssets };
5874
+
5875
+ export type StagingXcmExecutorAssetTransferTransferType =
5876
+ | { type: 'Teleport' }
5877
+ | { type: 'LocalReserve' }
5878
+ | { type: 'DestinationReserve' }
5879
+ | { type: 'RemoteReserve'; value: XcmVersionedLocation };
5880
+
5881
+ export type XcmVersionedAssetId =
5882
+ | { type: 'V3'; value: XcmV3MultiassetAssetId }
5883
+ | { type: 'V4'; value: StagingXcmV4AssetAssetId };
5665
5884
 
5666
5885
  /**
5667
5886
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -5709,12 +5928,12 @@ export type PalletMessageQueueCallLike =
5709
5928
  };
5710
5929
 
5711
5930
  export type PolkadotRuntimeParachainsInclusionAggregateMessageOrigin = {
5712
- tag: 'Ump';
5931
+ type: 'Ump';
5713
5932
  value: PolkadotRuntimeParachainsInclusionUmpQueueId;
5714
5933
  };
5715
5934
 
5716
5935
  export type PolkadotRuntimeParachainsInclusionUmpQueueId = {
5717
- tag: 'Para';
5936
+ type: 'Para';
5718
5937
  value: PolkadotParachainPrimitivesPrimitivesId;
5719
5938
  };
5720
5939
 
@@ -5845,9 +6064,13 @@ export type PalletRankedCollectiveEvent =
5845
6064
  vote: PalletRankedCollectiveVoteRecord;
5846
6065
  tally: PalletRankedCollectiveTally;
5847
6066
  };
5848
- };
6067
+ }
6068
+ /**
6069
+ * The member `who` had their `AccountId` changed to `new_who`.
6070
+ **/
6071
+ | { name: 'MemberExchanged'; data: { who: AccountId32; newWho: AccountId32 } };
5849
6072
 
5850
- export type PalletRankedCollectiveVoteRecord = { tag: 'Aye'; value: number } | { tag: 'Nay'; value: number };
6073
+ export type PalletRankedCollectiveVoteRecord = { type: 'Aye'; value: number } | { type: 'Nay'; value: number };
5851
6074
 
5852
6075
  export type PalletRankedCollectiveTally = { bareAyes: number; ayes: number; nays: number };
5853
6076
 
@@ -5922,7 +6145,7 @@ export type PalletReferendaEvent002 =
5922
6145
  };
5923
6146
  }
5924
6147
  /**
5925
- * A deposit has been slashaed.
6148
+ * A deposit has been slashed.
5926
6149
  **/
5927
6150
  | {
5928
6151
  name: 'DepositSlashed';
@@ -6200,52 +6423,6 @@ export type PalletUtilityEvent =
6200
6423
  **/
6201
6424
  | { name: 'DispatchedAs'; data: { result: Result<[], DispatchError> } };
6202
6425
 
6203
- /**
6204
- * The `Event` enum of this pallet
6205
- **/
6206
- export type PalletIdentityEvent =
6207
- /**
6208
- * A name was set or reset (which will remove all judgements).
6209
- **/
6210
- | { name: 'IdentitySet'; data: { who: AccountId32 } }
6211
- /**
6212
- * A name was cleared, and the given balance returned.
6213
- **/
6214
- | { name: 'IdentityCleared'; data: { who: AccountId32; deposit: bigint } }
6215
- /**
6216
- * A name was removed and the given balance slashed.
6217
- **/
6218
- | { name: 'IdentityKilled'; data: { who: AccountId32; deposit: bigint } }
6219
- /**
6220
- * A judgement was asked from a registrar.
6221
- **/
6222
- | { name: 'JudgementRequested'; data: { who: AccountId32; registrarIndex: number } }
6223
- /**
6224
- * A judgement request was retracted.
6225
- **/
6226
- | { name: 'JudgementUnrequested'; data: { who: AccountId32; registrarIndex: number } }
6227
- /**
6228
- * A judgement was given by a registrar.
6229
- **/
6230
- | { name: 'JudgementGiven'; data: { target: AccountId32; registrarIndex: number } }
6231
- /**
6232
- * A registrar was added.
6233
- **/
6234
- | { name: 'RegistrarAdded'; data: { registrarIndex: number } }
6235
- /**
6236
- * A sub-identity was added to an identity and the deposit paid.
6237
- **/
6238
- | { name: 'SubIdentityAdded'; data: { sub: AccountId32; main: AccountId32; deposit: bigint } }
6239
- /**
6240
- * A sub-identity was removed from an identity and the deposit freed.
6241
- **/
6242
- | { name: 'SubIdentityRemoved'; data: { sub: AccountId32; main: AccountId32; deposit: bigint } }
6243
- /**
6244
- * A sub-identity was cleared, and the given deposit repatriated from the
6245
- * main identity account to the sub-identity account.
6246
- **/
6247
- | { name: 'SubIdentityRevoked'; data: { sub: AccountId32; main: AccountId32; deposit: bigint } };
6248
-
6249
6426
  /**
6250
6427
  * The `Event` enum of this pallet
6251
6428
  **/
@@ -6635,10 +6812,10 @@ export type PalletElectionProviderMultiPhaseElectionCompute =
6635
6812
  | 'Emergency';
6636
6813
 
6637
6814
  export type PalletElectionProviderMultiPhasePhase =
6638
- | { tag: 'Off' }
6639
- | { tag: 'Signed' }
6640
- | { tag: 'Unsigned'; value: [boolean, number] }
6641
- | { tag: 'Emergency' };
6815
+ | { type: 'Off' }
6816
+ | { type: 'Signed' }
6817
+ | { type: 'Unsigned'; value: [boolean, number] }
6818
+ | { type: 'Emergency' };
6642
6819
 
6643
6820
  /**
6644
6821
  * The `Event` enum of this pallet
@@ -6826,6 +7003,13 @@ export type PalletNominationPoolsEvent =
6826
7003
  name: 'PoolCommissionChangeRateUpdated';
6827
7004
  data: { poolId: number; changeRate: PalletNominationPoolsCommissionChangeRate };
6828
7005
  }
7006
+ /**
7007
+ * Pool commission claim permission has been updated.
7008
+ **/
7009
+ | {
7010
+ name: 'PoolCommissionClaimPermissionUpdated';
7011
+ data: { poolId: number; permission?: PalletNominationPoolsCommissionClaimPermission | undefined };
7012
+ }
6829
7013
  /**
6830
7014
  * Pool commission has been claimed.
6831
7015
  **/
@@ -7025,7 +7209,7 @@ export type PolkadotRuntimeParachainsHrmpPalletEvent =
7025
7209
  };
7026
7210
  }
7027
7211
  /**
7028
- * An HRMP channel was opened between two system chains.
7212
+ * An HRMP channel was opened with a system chain.
7029
7213
  **/
7030
7214
  | {
7031
7215
  name: 'HrmpSystemChannelOpened';
@@ -7075,6 +7259,19 @@ export type PolkadotRuntimeParachainsDisputesDisputeLocation = 'Local' | 'Remote
7075
7259
 
7076
7260
  export type PolkadotRuntimeParachainsDisputesDisputeResult = 'Valid' | 'Invalid';
7077
7261
 
7262
+ /**
7263
+ * The `Event` enum of this pallet
7264
+ **/
7265
+ export type PolkadotRuntimeParachainsAssignerOnDemandPalletEvent =
7266
+ /**
7267
+ * An order was placed at some spot price amount.
7268
+ **/
7269
+ | { name: 'OnDemandOrderPlaced'; data: { paraId: PolkadotParachainPrimitivesPrimitivesId; spotPrice: bigint } }
7270
+ /**
7271
+ * The value of the spot traffic multiplier changed.
7272
+ **/
7273
+ | { name: 'SpotTrafficSet'; data: { traffic: FixedU128 } };
7274
+
7078
7275
  /**
7079
7276
  * The `Event` enum of this pallet
7080
7277
  **/
@@ -7214,63 +7411,17 @@ export type PolkadotRuntimeCommonCrowdloanPalletEvent =
7214
7411
  | { name: 'AddedToNewRaise'; data: { paraId: PolkadotParachainPrimitivesPrimitivesId } };
7215
7412
 
7216
7413
  /**
7217
- * Inner events of this pallet.
7414
+ * The `Event` enum of this pallet
7218
7415
  **/
7219
- export type PalletStateTrieMigrationEvent =
7416
+ export type PolkadotRuntimeParachainsCoretimePalletEvent =
7220
7417
  /**
7221
- * Given number of `(top, child)` keys were migrated respectively, with the given
7222
- * `compute`.
7418
+ * The broker chain has asked for revenue information for a specific block.
7223
7419
  **/
7224
- | { name: 'Migrated'; data: { top: number; child: number; compute: PalletStateTrieMigrationMigrationCompute } }
7420
+ | { name: 'RevenueInfoRequested'; data: { when: number } }
7225
7421
  /**
7226
- * Some account got slashed by the given amount.
7422
+ * A core has received a new assignment from the broker chain.
7227
7423
  **/
7228
- | { name: 'Slashed'; data: { who: AccountId32; amount: bigint } }
7229
- /**
7230
- * The auto migration task finished.
7231
- **/
7232
- | { name: 'AutoMigrationFinished' }
7233
- /**
7234
- * Migration got halted due to an error or miss-configuration.
7235
- **/
7236
- | { name: 'Halted'; data: { error: PalletStateTrieMigrationError } };
7237
-
7238
- export type PalletStateTrieMigrationMigrationCompute = 'Signed' | 'Auto';
7239
-
7240
- /**
7241
- * The `Error` enum of this pallet.
7242
- **/
7243
- export type PalletStateTrieMigrationError =
7244
- /**
7245
- * Max signed limits not respected.
7246
- **/
7247
- | 'MaxSignedLimits'
7248
- /**
7249
- * A key was longer than the configured maximum.
7250
- *
7251
- * This means that the migration halted at the current [`Progress`] and
7252
- * can be resumed with a larger [`crate::Config::MaxKeyLen`] value.
7253
- * Retrying with the same [`crate::Config::MaxKeyLen`] value will not work.
7254
- * The value should only be increased to avoid a storage migration for the currently
7255
- * stored [`crate::Progress::LastKey`].
7256
- **/
7257
- | 'KeyTooLong'
7258
- /**
7259
- * submitter does not have enough funds.
7260
- **/
7261
- | 'NotEnoughFunds'
7262
- /**
7263
- * Bad witness data provided.
7264
- **/
7265
- | 'BadWitness'
7266
- /**
7267
- * Signed migration is not allowed because the maximum limit is not set yet.
7268
- **/
7269
- | 'SignedMigrationNotAllowed'
7270
- /**
7271
- * Bad child root provided.
7272
- **/
7273
- | 'BadChildRoot';
7424
+ | { name: 'CoreAssigned'; data: { core: PolkadotPrimitivesV6CoreIndex } };
7274
7425
 
7275
7426
  /**
7276
7427
  * The `Event` enum of this pallet
@@ -7279,16 +7430,16 @@ export type PalletXcmEvent =
7279
7430
  /**
7280
7431
  * Execution of an XCM message was attempted.
7281
7432
  **/
7282
- | { name: 'Attempted'; data: { outcome: XcmV3TraitsOutcome } }
7433
+ | { name: 'Attempted'; data: { outcome: StagingXcmV4TraitsOutcome } }
7283
7434
  /**
7284
7435
  * A XCM message was sent.
7285
7436
  **/
7286
7437
  | {
7287
7438
  name: 'Sent';
7288
7439
  data: {
7289
- origin: StagingXcmV3MultilocationMultiLocation;
7290
- destination: StagingXcmV3MultilocationMultiLocation;
7291
- message: XcmV3Xcm;
7440
+ origin: StagingXcmV4Location;
7441
+ destination: StagingXcmV4Location;
7442
+ message: StagingXcmV4Xcm;
7292
7443
  messageId: FixedBytes<32>;
7293
7444
  };
7294
7445
  }
@@ -7297,12 +7448,12 @@ export type PalletXcmEvent =
7297
7448
  * matching query was never registered, it may be because it is a duplicate response, or
7298
7449
  * because the query timed out.
7299
7450
  **/
7300
- | { name: 'UnexpectedResponse'; data: { origin: StagingXcmV3MultilocationMultiLocation; queryId: bigint } }
7451
+ | { name: 'UnexpectedResponse'; data: { origin: StagingXcmV4Location; queryId: bigint } }
7301
7452
  /**
7302
7453
  * Query response has been received and is ready for taking with `take_response`. There is
7303
7454
  * no registered notification call.
7304
7455
  **/
7305
- | { name: 'ResponseReady'; data: { queryId: bigint; response: XcmV3Response } }
7456
+ | { name: 'ResponseReady'; data: { queryId: bigint; response: StagingXcmV4Response } }
7306
7457
  /**
7307
7458
  * Query response has been received and query is removed. The registered notification has
7308
7459
  * been dispatched and executed successfully.
@@ -7341,11 +7492,7 @@ export type PalletXcmEvent =
7341
7492
  **/
7342
7493
  | {
7343
7494
  name: 'InvalidResponder';
7344
- data: {
7345
- origin: StagingXcmV3MultilocationMultiLocation;
7346
- queryId: bigint;
7347
- expectedLocation?: StagingXcmV3MultilocationMultiLocation | undefined;
7348
- };
7495
+ data: { origin: StagingXcmV4Location; queryId: bigint; expectedLocation?: StagingXcmV4Location | undefined };
7349
7496
  }
7350
7497
  /**
7351
7498
  * Expected query response has been received but the expected origin location placed in
@@ -7356,7 +7503,7 @@ export type PalletXcmEvent =
7356
7503
  * valid response will be dropped. Manual governance intervention is probably going to be
7357
7504
  * needed.
7358
7505
  **/
7359
- | { name: 'InvalidResponderVersion'; data: { origin: StagingXcmV3MultilocationMultiLocation; queryId: bigint } }
7506
+ | { name: 'InvalidResponderVersion'; data: { origin: StagingXcmV4Location; queryId: bigint } }
7360
7507
  /**
7361
7508
  * Received query response has been read and removed.
7362
7509
  **/
@@ -7364,10 +7511,7 @@ export type PalletXcmEvent =
7364
7511
  /**
7365
7512
  * Some assets have been placed in an asset trap.
7366
7513
  **/
7367
- | {
7368
- name: 'AssetsTrapped';
7369
- data: { hash: H256; origin: StagingXcmV3MultilocationMultiLocation; assets: XcmVersionedMultiAssets };
7370
- }
7514
+ | { name: 'AssetsTrapped'; data: { hash: H256; origin: StagingXcmV4Location; assets: XcmVersionedAssets } }
7371
7515
  /**
7372
7516
  * An XCM version change notification message has been attempted to be sent.
7373
7517
  *
@@ -7376,9 +7520,9 @@ export type PalletXcmEvent =
7376
7520
  | {
7377
7521
  name: 'VersionChangeNotified';
7378
7522
  data: {
7379
- destination: StagingXcmV3MultilocationMultiLocation;
7523
+ destination: StagingXcmV4Location;
7380
7524
  result: number;
7381
- cost: XcmV3MultiassetMultiAssets;
7525
+ cost: StagingXcmV4AssetAssets;
7382
7526
  messageId: FixedBytes<32>;
7383
7527
  };
7384
7528
  }
@@ -7386,20 +7530,17 @@ export type PalletXcmEvent =
7386
7530
  * The supported version of a location has been changed. This might be through an
7387
7531
  * automatic notification or a manual intervention.
7388
7532
  **/
7389
- | { name: 'SupportedVersionChanged'; data: { location: StagingXcmV3MultilocationMultiLocation; version: number } }
7533
+ | { name: 'SupportedVersionChanged'; data: { location: StagingXcmV4Location; version: number } }
7390
7534
  /**
7391
7535
  * A given location which had a version change subscription was dropped owing to an error
7392
7536
  * sending the notification to it.
7393
7537
  **/
7394
- | {
7395
- name: 'NotifyTargetSendFail';
7396
- data: { location: StagingXcmV3MultilocationMultiLocation; queryId: bigint; error: XcmV3TraitsError };
7397
- }
7538
+ | { name: 'NotifyTargetSendFail'; data: { location: StagingXcmV4Location; queryId: bigint; error: XcmV3TraitsError } }
7398
7539
  /**
7399
7540
  * A given location which had a version change subscription was dropped owing to an error
7400
7541
  * migrating the location to our new XCM format.
7401
7542
  **/
7402
- | { name: 'NotifyTargetMigrationFail'; data: { location: XcmVersionedMultiLocation; queryId: bigint } }
7543
+ | { name: 'NotifyTargetMigrationFail'; data: { location: XcmVersionedLocation; queryId: bigint } }
7403
7544
  /**
7404
7545
  * Expected query response has been received but the expected querier location placed in
7405
7546
  * storage by this runtime previously cannot be decoded. The query remains registered.
@@ -7409,7 +7550,7 @@ export type PalletXcmEvent =
7409
7550
  * valid response will be dropped. Manual governance intervention is probably going to be
7410
7551
  * needed.
7411
7552
  **/
7412
- | { name: 'InvalidQuerierVersion'; data: { origin: StagingXcmV3MultilocationMultiLocation; queryId: bigint } }
7553
+ | { name: 'InvalidQuerierVersion'; data: { origin: StagingXcmV4Location; queryId: bigint } }
7413
7554
  /**
7414
7555
  * Expected query response has been received but the querier location of the response does
7415
7556
  * not match the expected. The query remains registered for a later, valid, response to
@@ -7418,10 +7559,10 @@ export type PalletXcmEvent =
7418
7559
  | {
7419
7560
  name: 'InvalidQuerier';
7420
7561
  data: {
7421
- origin: StagingXcmV3MultilocationMultiLocation;
7562
+ origin: StagingXcmV4Location;
7422
7563
  queryId: bigint;
7423
- expectedQuerier: StagingXcmV3MultilocationMultiLocation;
7424
- maybeActualQuerier?: StagingXcmV3MultilocationMultiLocation | undefined;
7564
+ expectedQuerier: StagingXcmV4Location;
7565
+ maybeActualQuerier?: StagingXcmV4Location | undefined;
7425
7566
  };
7426
7567
  }
7427
7568
  /**
@@ -7430,22 +7571,14 @@ export type PalletXcmEvent =
7430
7571
  **/
7431
7572
  | {
7432
7573
  name: 'VersionNotifyStarted';
7433
- data: {
7434
- destination: StagingXcmV3MultilocationMultiLocation;
7435
- cost: XcmV3MultiassetMultiAssets;
7436
- messageId: FixedBytes<32>;
7437
- };
7574
+ data: { destination: StagingXcmV4Location; cost: StagingXcmV4AssetAssets; messageId: FixedBytes<32> };
7438
7575
  }
7439
7576
  /**
7440
7577
  * We have requested that a remote chain send us XCM version change notifications.
7441
7578
  **/
7442
7579
  | {
7443
7580
  name: 'VersionNotifyRequested';
7444
- data: {
7445
- destination: StagingXcmV3MultilocationMultiLocation;
7446
- cost: XcmV3MultiassetMultiAssets;
7447
- messageId: FixedBytes<32>;
7448
- };
7581
+ data: { destination: StagingXcmV4Location; cost: StagingXcmV4AssetAssets; messageId: FixedBytes<32> };
7449
7582
  }
7450
7583
  /**
7451
7584
  * We have requested that a remote chain stops sending us XCM version change
@@ -7453,28 +7586,25 @@ export type PalletXcmEvent =
7453
7586
  **/
7454
7587
  | {
7455
7588
  name: 'VersionNotifyUnrequested';
7456
- data: {
7457
- destination: StagingXcmV3MultilocationMultiLocation;
7458
- cost: XcmV3MultiassetMultiAssets;
7459
- messageId: FixedBytes<32>;
7460
- };
7589
+ data: { destination: StagingXcmV4Location; cost: StagingXcmV4AssetAssets; messageId: FixedBytes<32> };
7461
7590
  }
7462
7591
  /**
7463
7592
  * Fees were paid from a location for an operation (often for using `SendXcm`).
7464
7593
  **/
7465
- | { name: 'FeesPaid'; data: { paying: StagingXcmV3MultilocationMultiLocation; fees: XcmV3MultiassetMultiAssets } }
7594
+ | { name: 'FeesPaid'; data: { paying: StagingXcmV4Location; fees: StagingXcmV4AssetAssets } }
7466
7595
  /**
7467
7596
  * Some assets have been claimed from an asset trap
7468
7597
  **/
7469
- | {
7470
- name: 'AssetsClaimed';
7471
- data: { hash: H256; origin: StagingXcmV3MultilocationMultiLocation; assets: XcmVersionedMultiAssets };
7472
- };
7598
+ | { name: 'AssetsClaimed'; data: { hash: H256; origin: StagingXcmV4Location; assets: XcmVersionedAssets } }
7599
+ /**
7600
+ * A XCM version migration finished.
7601
+ **/
7602
+ | { name: 'VersionMigrationFinished'; data: { version: number } };
7473
7603
 
7474
- export type XcmV3TraitsOutcome =
7475
- | { tag: 'Complete'; value: SpWeightsWeightV2Weight }
7476
- | { tag: 'Incomplete'; value: [SpWeightsWeightV2Weight, XcmV3TraitsError] }
7477
- | { tag: 'Error'; value: XcmV3TraitsError };
7604
+ export type StagingXcmV4TraitsOutcome =
7605
+ | { type: 'Complete'; value: { used: SpWeightsWeightV2Weight } }
7606
+ | { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error: XcmV3TraitsError } }
7607
+ | { type: 'Error'; value: { error: XcmV3TraitsError } };
7478
7608
 
7479
7609
  /**
7480
7610
  * The `Event` enum of this pallet
@@ -7486,8 +7616,22 @@ export type PalletMessageQueueEvent =
7486
7616
  | {
7487
7617
  name: 'ProcessingFailed';
7488
7618
  data: {
7489
- id: FixedBytes<32>;
7619
+ /**
7620
+ * The `blake2_256` hash of the message.
7621
+ **/
7622
+ id: H256;
7623
+
7624
+ /**
7625
+ * The queue of the message.
7626
+ **/
7490
7627
  origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
7628
+
7629
+ /**
7630
+ * The error that occurred.
7631
+ *
7632
+ * This error is pretty opaque. More fine-grained errors need to be emitted as events
7633
+ * by the `MessageProcessor`.
7634
+ **/
7491
7635
  error: FrameSupportMessagesProcessMessageError;
7492
7636
  };
7493
7637
  }
@@ -7497,9 +7641,29 @@ export type PalletMessageQueueEvent =
7497
7641
  | {
7498
7642
  name: 'Processed';
7499
7643
  data: {
7500
- id: FixedBytes<32>;
7644
+ /**
7645
+ * The `blake2_256` hash of the message.
7646
+ **/
7647
+ id: H256;
7648
+
7649
+ /**
7650
+ * The queue of the message.
7651
+ **/
7501
7652
  origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
7653
+
7654
+ /**
7655
+ * How much weight was used to process the message.
7656
+ **/
7502
7657
  weightUsed: SpWeightsWeightV2Weight;
7658
+
7659
+ /**
7660
+ * Whether the message was processed.
7661
+ *
7662
+ * Note that this does not mean that the underlying `MessageProcessor` was internally
7663
+ * successful. It *solely* means that the MQ pallet will treat this as a success
7664
+ * condition and discard the message. Any internal error needs to be emitted as events
7665
+ * by the `MessageProcessor`.
7666
+ **/
7503
7667
  success: boolean;
7504
7668
  };
7505
7669
  }
@@ -7509,23 +7673,51 @@ export type PalletMessageQueueEvent =
7509
7673
  | {
7510
7674
  name: 'OverweightEnqueued';
7511
7675
  data: {
7676
+ /**
7677
+ * The `blake2_256` hash of the message.
7678
+ **/
7512
7679
  id: FixedBytes<32>;
7680
+
7681
+ /**
7682
+ * The queue of the message.
7683
+ **/
7513
7684
  origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
7685
+
7686
+ /**
7687
+ * The page of the message.
7688
+ **/
7514
7689
  pageIndex: number;
7690
+
7691
+ /**
7692
+ * The index of the message within the page.
7693
+ **/
7515
7694
  messageIndex: number;
7516
7695
  };
7517
7696
  }
7518
7697
  /**
7519
7698
  * This page was reaped.
7520
7699
  **/
7521
- | { name: 'PageReaped'; data: { origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin; index: number } };
7700
+ | {
7701
+ name: 'PageReaped';
7702
+ data: {
7703
+ /**
7704
+ * The queue of the page.
7705
+ **/
7706
+ origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
7707
+
7708
+ /**
7709
+ * The index of the page.
7710
+ **/
7711
+ index: number;
7712
+ };
7713
+ };
7522
7714
 
7523
7715
  export type FrameSupportMessagesProcessMessageError =
7524
- | { tag: 'BadFormat' }
7525
- | { tag: 'Corrupt' }
7526
- | { tag: 'Unsupported' }
7527
- | { tag: 'Overweight'; value: SpWeightsWeightV2Weight }
7528
- | { tag: 'Yield' };
7716
+ | { type: 'BadFormat' }
7717
+ | { type: 'Corrupt' }
7718
+ | { type: 'Unsupported' }
7719
+ | { type: 'Overweight'; value: SpWeightsWeightV2Weight }
7720
+ | { type: 'Yield' };
7529
7721
 
7530
7722
  /**
7531
7723
  * The `Event` enum of this pallet
@@ -7543,6 +7735,8 @@ export type PalletAssetRateEvent =
7543
7735
 
7544
7736
  export type FrameSystemLastRuntimeUpgradeInfo = { specVersion: number; specName: string };
7545
7737
 
7738
+ export type FrameSystemCodeUpgradeAuthorization = { codeHash: H256; checkVersion: boolean };
7739
+
7546
7740
  export type FrameSystemLimitsBlockWeights = {
7547
7741
  baseBlock: SpWeightsWeightV2Weight;
7548
7742
  maxBlock: SpWeightsWeightV2Weight;
@@ -7599,12 +7793,20 @@ export type FrameSystemError =
7599
7793
  /**
7600
7794
  * The origin filter prevent the call to be dispatched.
7601
7795
  **/
7602
- | 'CallFiltered';
7796
+ | 'CallFiltered'
7797
+ /**
7798
+ * No upgrade authorized.
7799
+ **/
7800
+ | 'NothingAuthorized'
7801
+ /**
7802
+ * The submitted code is not authorized.
7803
+ **/
7804
+ | 'Unauthorized';
7603
7805
 
7604
7806
  export type SpConsensusBabeDigestsPreDigest =
7605
- | { tag: 'Primary'; value: SpConsensusBabeDigestsPrimaryPreDigest }
7606
- | { tag: 'SecondaryPlain'; value: SpConsensusBabeDigestsSecondaryPlainPreDigest }
7607
- | { tag: 'SecondaryVRF'; value: SpConsensusBabeDigestsSecondaryVRFPreDigest };
7807
+ | { type: 'Primary'; value: SpConsensusBabeDigestsPrimaryPreDigest }
7808
+ | { type: 'SecondaryPlain'; value: SpConsensusBabeDigestsSecondaryPlainPreDigest }
7809
+ | { type: 'SecondaryVRF'; value: SpConsensusBabeDigestsSecondaryVRFPreDigest };
7608
7810
 
7609
7811
  export type SpConsensusBabeDigestsPrimaryPreDigest = {
7610
7812
  authorityIndex: number;
@@ -7612,7 +7814,7 @@ export type SpConsensusBabeDigestsPrimaryPreDigest = {
7612
7814
  vrfSignature: SpCoreSr25519VrfVrfSignature;
7613
7815
  };
7614
7816
 
7615
- export type SpCoreSr25519VrfVrfSignature = { output: FixedBytes<32>; proof: FixedBytes<64> };
7817
+ export type SpCoreSr25519VrfVrfSignature = { preOutput: FixedBytes<32>; proof: FixedBytes<64> };
7616
7818
 
7617
7819
  export type SpConsensusBabeDigestsSecondaryPlainPreDigest = { authorityIndex: number; slot: SpConsensusSlotsSlot };
7618
7820
 
@@ -7679,8 +7881,8 @@ export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
7679
7881
  export type PalletBalancesIdAmount = { id: StagingKusamaRuntimeRuntimeHoldReason; amount: bigint };
7680
7882
 
7681
7883
  export type StagingKusamaRuntimeRuntimeHoldReason =
7682
- | { tag: 'Preimage'; value: PalletPreimageHoldReason }
7683
- | { tag: 'Nis'; value: PalletNisHoldReason };
7884
+ | { type: 'Preimage'; value: PalletPreimageHoldReason }
7885
+ | { type: 'Nis'; value: PalletNisHoldReason };
7684
7886
 
7685
7887
  export type PalletPreimageHoldReason = 'Preimage';
7686
7888
 
@@ -7689,7 +7891,7 @@ export type PalletNisHoldReason = 'NftReceipt';
7689
7891
  export type PalletBalancesIdAmountRuntimeFreezeReason = { id: StagingKusamaRuntimeRuntimeFreezeReason; amount: bigint };
7690
7892
 
7691
7893
  export type StagingKusamaRuntimeRuntimeFreezeReason = {
7692
- tag: 'NominationPools';
7894
+ type: 'NominationPools';
7693
7895
  value: PalletNominationPoolsFreezeReason;
7694
7896
  };
7695
7897
 
@@ -7732,13 +7934,21 @@ export type PalletBalancesError =
7732
7934
  **/
7733
7935
  | 'TooManyReserves'
7734
7936
  /**
7735
- * Number of holds exceed `MaxHolds`.
7937
+ * Number of holds exceed `VariantCountOf<T::RuntimeHoldReason>`.
7736
7938
  **/
7737
7939
  | 'TooManyHolds'
7738
7940
  /**
7739
7941
  * Number of freezes exceed `MaxFreezes`.
7740
7942
  **/
7741
- | 'TooManyFreezes';
7943
+ | 'TooManyFreezes'
7944
+ /**
7945
+ * The issuance cannot be modified since it is already deactivated.
7946
+ **/
7947
+ | 'IssuanceDeactivated'
7948
+ /**
7949
+ * The delta cannot be zero.
7950
+ **/
7951
+ | 'DeltaZero';
7742
7952
 
7743
7953
  export type PalletTransactionPaymentReleases = 'V1Ancient' | 'V2';
7744
7954
 
@@ -7747,15 +7957,17 @@ export type PalletStakingStakingLedger = {
7747
7957
  total: bigint;
7748
7958
  active: bigint;
7749
7959
  unlocking: Array<PalletStakingUnlockChunk>;
7750
- claimedRewards: Array<number>;
7960
+ legacyClaimedRewards: Array<number>;
7751
7961
  };
7752
7962
 
7753
- export type PalletStakingUnlockChunk = { value: bigint; era: number };
7754
-
7755
7963
  export type PalletStakingNominations = { targets: Array<AccountId32>; submittedIn: number; suppressed: boolean };
7756
7964
 
7757
7965
  export type PalletStakingActiveEraInfo = { index: number; start?: bigint | undefined };
7758
7966
 
7967
+ export type SpStakingPagedExposureMetadata = { total: bigint; own: bigint; nominatorCount: number; pageCount: number };
7968
+
7969
+ export type SpStakingExposurePage = { pageTotal: bigint; others: Array<SpStakingIndividualExposure> };
7970
+
7759
7971
  export type PalletStakingEraRewardPoints = { total: number; individual: Array<[AccountId32, number]> };
7760
7972
 
7761
7973
  export type PalletStakingUnappliedSlash = {
@@ -7841,6 +8053,10 @@ export type PalletStakingPalletError =
7841
8053
  * Rewards for this era have already been claimed for this validator.
7842
8054
  **/
7843
8055
  | 'AlreadyClaimed'
8056
+ /**
8057
+ * No nominators exist on this page.
8058
+ **/
8059
+ | 'InvalidPage'
7844
8060
  /**
7845
8061
  * Incorrect previous history depth input provided.
7846
8062
  **/
@@ -7882,10 +8098,18 @@ export type PalletStakingPalletError =
7882
8098
  /**
7883
8099
  * Some bound is not met.
7884
8100
  **/
7885
- | 'BoundNotMet';
8101
+ | 'BoundNotMet'
8102
+ /**
8103
+ * Used when attempting to use deprecated controller account logic.
8104
+ **/
8105
+ | 'ControllerDeprecated'
8106
+ /**
8107
+ * Cannot reset a ledger.
8108
+ **/
8109
+ | 'CannotRestoreLedger';
7886
8110
 
7887
8111
  export type SpStakingOffenceOffenceDetails = {
7888
- offender: [AccountId32, PalletStakingExposure];
8112
+ offender: [AccountId32, SpStakingExposure];
7889
8113
  reporters: Array<AccountId32>;
7890
8114
  };
7891
8115
 
@@ -7917,10 +8141,10 @@ export type PalletSessionError =
7917
8141
  | 'NoAccount';
7918
8142
 
7919
8143
  export type PalletGrandpaStoredState =
7920
- | { tag: 'Live' }
7921
- | { tag: 'PendingPause'; value: { scheduledAt: number; delay: number } }
7922
- | { tag: 'Paused' }
7923
- | { tag: 'PendingResume'; value: { scheduledAt: number; delay: number } };
8144
+ | { type: 'Live' }
8145
+ | { type: 'PendingPause'; value: { scheduledAt: number; delay: number } }
8146
+ | { type: 'Paused' }
8147
+ | { type: 'PendingResume'; value: { scheduledAt: number; delay: number } };
7924
8148
 
7925
8149
  export type PalletGrandpaStoredPendingChange = {
7926
8150
  scheduledAt: number;
@@ -7964,34 +8188,21 @@ export type PalletGrandpaError =
7964
8188
  **/
7965
8189
  | 'DuplicateOffenceReport';
7966
8190
 
7967
- /**
7968
- * The `Error` enum of this pallet.
7969
- **/
7970
- export type PalletImOnlineError =
7971
- /**
7972
- * Non existent public key.
7973
- **/
7974
- | 'InvalidKey'
7975
- /**
7976
- * Duplicated heartbeat.
7977
- **/
7978
- | 'DuplicatedHeartbeat';
7979
-
7980
8191
  export type PalletTreasuryProposal = { proposer: AccountId32; value: bigint; beneficiary: AccountId32; bond: bigint };
7981
8192
 
7982
8193
  export type PalletTreasurySpendStatus = {
7983
8194
  assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
7984
8195
  amount: bigint;
7985
- beneficiary: XcmVersionedMultiLocation;
8196
+ beneficiary: XcmVersionedLocation;
7986
8197
  validFrom: number;
7987
8198
  expireAt: number;
7988
8199
  status: PalletTreasuryPaymentState;
7989
8200
  };
7990
8201
 
7991
8202
  export type PalletTreasuryPaymentState =
7992
- | { tag: 'Pending' }
7993
- | { tag: 'Attempted'; value: { id: bigint } }
7994
- | { tag: 'Failed' };
8203
+ | { type: 'Pending' }
8204
+ | { type: 'Attempted'; value: { id: bigint } }
8205
+ | { type: 'Failed' };
7995
8206
 
7996
8207
  export type FrameSupportPalletId = FixedBytes<8>;
7997
8208
 
@@ -8050,8 +8261,8 @@ export type PalletTreasuryError =
8050
8261
  | 'Inconclusive';
8051
8262
 
8052
8263
  export type PalletConvictionVotingVoteVoting =
8053
- | { tag: 'Casting'; value: PalletConvictionVotingVoteCasting }
8054
- | { tag: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
8264
+ | { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
8265
+ | { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
8055
8266
 
8056
8267
  export type PalletConvictionVotingVoteCasting = {
8057
8268
  votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
@@ -8126,12 +8337,12 @@ export type PalletConvictionVotingError =
8126
8337
  | 'BadClass';
8127
8338
 
8128
8339
  export type PalletReferendaReferendumInfo =
8129
- | { tag: 'Ongoing'; value: PalletReferendaReferendumStatus }
8130
- | { tag: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8131
- | { tag: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8132
- | { tag: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8133
- | { tag: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8134
- | { tag: 'Killed'; value: number };
8340
+ | { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
8341
+ | { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8342
+ | { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8343
+ | { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8344
+ | { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8345
+ | { type: 'Killed'; value: number };
8135
8346
 
8136
8347
  export type PalletReferendaReferendumStatus = {
8137
8348
  track: number;
@@ -8164,9 +8375,9 @@ export type PalletReferendaTrackInfo = {
8164
8375
  };
8165
8376
 
8166
8377
  export type PalletReferendaCurve =
8167
- | { tag: 'LinearDecreasing'; value: { length: Perbill; floor: Perbill; ceil: Perbill } }
8168
- | { tag: 'SteppedDecreasing'; value: { begin: Perbill; end: Perbill; step: Perbill; period: Perbill } }
8169
- | { tag: 'Reciprocal'; value: { factor: FixedI64; xOffset: FixedI64; yOffset: FixedI64 } };
8378
+ | { type: 'LinearDecreasing'; value: { length: Perbill; floor: Perbill; ceil: Perbill } }
8379
+ | { type: 'SteppedDecreasing'; value: { begin: Perbill; end: Perbill; step: Perbill; period: Perbill } }
8380
+ | { type: 'Reciprocal'; value: { factor: FixedI64; xOffset: FixedI64; yOffset: FixedI64 } };
8170
8381
 
8171
8382
  /**
8172
8383
  * The `Error` enum of this pallet.
@@ -8266,15 +8477,19 @@ export type PalletRankedCollectiveError =
8266
8477
  /**
8267
8478
  * The origin is not sufficiently privileged to do the operation.
8268
8479
  **/
8269
- | 'NoPermission';
8480
+ | 'NoPermission'
8481
+ /**
8482
+ * The new member to exchange is the same as the old member
8483
+ **/
8484
+ | 'SameMember';
8270
8485
 
8271
8486
  export type PalletReferendaReferendumInfoTally =
8272
- | { tag: 'Ongoing'; value: PalletReferendaReferendumStatusTally }
8273
- | { tag: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8274
- | { tag: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8275
- | { tag: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8276
- | { tag: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8277
- | { tag: 'Killed'; value: number };
8487
+ | { type: 'Ongoing'; value: PalletReferendaReferendumStatusTally }
8488
+ | { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8489
+ | { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8490
+ | { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8491
+ | { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
8492
+ | { type: 'Killed'; value: number };
8278
8493
 
8279
8494
  export type PalletReferendaReferendumStatusTally = {
8280
8495
  track: number;
@@ -8354,91 +8569,6 @@ export type PalletUtilityError =
8354
8569
  **/
8355
8570
  'TooManyCalls';
8356
8571
 
8357
- export type PalletIdentityRegistration = {
8358
- judgements: Array<[number, PalletIdentityJudgement]>;
8359
- deposit: bigint;
8360
- info: PalletIdentitySimpleIdentityInfo;
8361
- };
8362
-
8363
- export type PalletIdentityRegistrarInfo = { account: AccountId32; fee: bigint; fields: PalletIdentityBitFlags };
8364
-
8365
- /**
8366
- * The `Error` enum of this pallet.
8367
- **/
8368
- export type PalletIdentityError =
8369
- /**
8370
- * Too many subs-accounts.
8371
- **/
8372
- | 'TooManySubAccounts'
8373
- /**
8374
- * Account isn't found.
8375
- **/
8376
- | 'NotFound'
8377
- /**
8378
- * Account isn't named.
8379
- **/
8380
- | 'NotNamed'
8381
- /**
8382
- * Empty index.
8383
- **/
8384
- | 'EmptyIndex'
8385
- /**
8386
- * Fee is changed.
8387
- **/
8388
- | 'FeeChanged'
8389
- /**
8390
- * No identity found.
8391
- **/
8392
- | 'NoIdentity'
8393
- /**
8394
- * Sticky judgement.
8395
- **/
8396
- | 'StickyJudgement'
8397
- /**
8398
- * Judgement given.
8399
- **/
8400
- | 'JudgementGiven'
8401
- /**
8402
- * Invalid judgement.
8403
- **/
8404
- | 'InvalidJudgement'
8405
- /**
8406
- * The index is invalid.
8407
- **/
8408
- | 'InvalidIndex'
8409
- /**
8410
- * The target is invalid.
8411
- **/
8412
- | 'InvalidTarget'
8413
- /**
8414
- * Too many additional fields.
8415
- **/
8416
- | 'TooManyFields'
8417
- /**
8418
- * Maximum amount of registrars reached. Cannot add any more.
8419
- **/
8420
- | 'TooManyRegistrars'
8421
- /**
8422
- * Account ID is already named.
8423
- **/
8424
- | 'AlreadyClaimed'
8425
- /**
8426
- * Sender is not a sub-account.
8427
- **/
8428
- | 'NotSub'
8429
- /**
8430
- * Sub-account isn't owned by sender.
8431
- **/
8432
- | 'NotOwned'
8433
- /**
8434
- * The provided judgement was for a different identity.
8435
- **/
8436
- | 'JudgementForDifferentIdentity'
8437
- /**
8438
- * Error that occurs when there is an issue paying for judgement.
8439
- **/
8440
- | 'JudgementPaymentFailed';
8441
-
8442
8572
  export type PalletSocietyMemberRecord = {
8443
8573
  rank: number;
8444
8574
  strikes: number;
@@ -8452,7 +8582,7 @@ export type PalletSocietyPayoutRecord = { paid: bigint; payouts: Array<[number,
8452
8582
 
8453
8583
  export type PalletSocietyBid = { who: AccountId32; kind: PalletSocietyBidKind; value: bigint };
8454
8584
 
8455
- export type PalletSocietyBidKind = { tag: 'Deposit'; value: bigint } | { tag: 'Vouch'; value: [AccountId32, bigint] };
8585
+ export type PalletSocietyBidKind = { type: 'Deposit'; value: bigint } | { type: 'Vouch'; value: [AccountId32, bigint] };
8456
8586
 
8457
8587
  export type PalletSocietyCandidacy = {
8458
8588
  round: number;
@@ -8854,16 +8984,16 @@ export type PalletMultisigError =
8854
8984
  | 'AlreadyStored';
8855
8985
 
8856
8986
  export type PalletPreimageOldRequestStatus =
8857
- | { tag: 'Unrequested'; value: { deposit: [AccountId32, bigint]; len: number } }
8987
+ | { type: 'Unrequested'; value: { deposit: [AccountId32, bigint]; len: number } }
8858
8988
  | {
8859
- tag: 'Requested';
8989
+ type: 'Requested';
8860
8990
  value: { deposit?: [AccountId32, bigint] | undefined; count: number; len?: number | undefined };
8861
8991
  };
8862
8992
 
8863
8993
  export type PalletPreimageRequestStatus =
8864
- | { tag: 'Unrequested'; value: { ticket: [AccountId32, FrameSupportTokensFungibleHoldConsideration]; len: number } }
8994
+ | { type: 'Unrequested'; value: { ticket: [AccountId32, FrameSupportTokensFungibleHoldConsideration]; len: number } }
8865
8995
  | {
8866
- tag: 'Requested';
8996
+ type: 'Requested';
8867
8997
  value: {
8868
8998
  maybeTicket?: [AccountId32, FrameSupportTokensFungibleHoldConsideration] | undefined;
8869
8999
  count: number;
@@ -8920,12 +9050,12 @@ export type PalletBountiesBounty = {
8920
9050
  };
8921
9051
 
8922
9052
  export type PalletBountiesBountyStatus =
8923
- | { tag: 'Proposed' }
8924
- | { tag: 'Approved' }
8925
- | { tag: 'Funded' }
8926
- | { tag: 'CuratorProposed'; value: { curator: AccountId32 } }
8927
- | { tag: 'Active'; value: { curator: AccountId32; updateDue: number } }
8928
- | { tag: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } };
9053
+ | { type: 'Proposed' }
9054
+ | { type: 'Approved' }
9055
+ | { type: 'Funded' }
9056
+ | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
9057
+ | { type: 'Active'; value: { curator: AccountId32; updateDue: number } }
9058
+ | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } };
8929
9059
 
8930
9060
  /**
8931
9061
  * The `Error` enum of this pallet.
@@ -8986,10 +9116,10 @@ export type PalletChildBountiesChildBounty = {
8986
9116
  };
8987
9117
 
8988
9118
  export type PalletChildBountiesChildBountyStatus =
8989
- | { tag: 'Added' }
8990
- | { tag: 'CuratorProposed'; value: { curator: AccountId32 } }
8991
- | { tag: 'Active'; value: { curator: AccountId32 } }
8992
- | { tag: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } };
9119
+ | { type: 'Added' }
9120
+ | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
9121
+ | { type: 'Active'; value: { curator: AccountId32 } }
9122
+ | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } };
8993
9123
 
8994
9124
  /**
8995
9125
  * The `Error` enum of this pallet.
@@ -9085,7 +9215,11 @@ export type PalletElectionProviderMultiPhaseError =
9085
9215
  /**
9086
9216
  * Submitted solution has too many winners
9087
9217
  **/
9088
- | 'TooManyWinners';
9218
+ | 'TooManyWinners'
9219
+ /**
9220
+ * Sumission was prepared for a different round.
9221
+ **/
9222
+ | 'PreDispatchDifferentRound';
9089
9223
 
9090
9224
  export type PalletNisBid = { amount: bigint; who: AccountId32 };
9091
9225
 
@@ -9188,7 +9322,7 @@ export type PalletBagsListError =
9188
9322
  /**
9189
9323
  * A error in the list interface implementation.
9190
9324
  **/
9191
- { tag: 'List'; value: PalletBagsListListListError };
9325
+ { name: 'List'; data: PalletBagsListListListError };
9192
9326
 
9193
9327
  export type PalletBagsListListListError = 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
9194
9328
 
@@ -9212,6 +9346,7 @@ export type PalletNominationPoolsCommission = {
9212
9346
  max?: Perbill | undefined;
9213
9347
  changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
9214
9348
  throttleFrom?: number | undefined;
9349
+ claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
9215
9350
  };
9216
9351
 
9217
9352
  export type PalletNominationPoolsPoolRoles = {
@@ -9243,37 +9378,37 @@ export type PalletNominationPoolsError =
9243
9378
  /**
9244
9379
  * A (bonded) pool id does not exist.
9245
9380
  **/
9246
- | { tag: 'PoolNotFound' }
9381
+ | { name: 'PoolNotFound' }
9247
9382
  /**
9248
9383
  * An account is not a member.
9249
9384
  **/
9250
- | { tag: 'PoolMemberNotFound' }
9385
+ | { name: 'PoolMemberNotFound' }
9251
9386
  /**
9252
9387
  * A reward pool does not exist. In all cases this is a system logic error.
9253
9388
  **/
9254
- | { tag: 'RewardPoolNotFound' }
9389
+ | { name: 'RewardPoolNotFound' }
9255
9390
  /**
9256
9391
  * A sub pool does not exist.
9257
9392
  **/
9258
- | { tag: 'SubPoolsNotFound' }
9393
+ | { name: 'SubPoolsNotFound' }
9259
9394
  /**
9260
9395
  * An account is already delegating in another pool. An account may only belong to one
9261
9396
  * pool at a time.
9262
9397
  **/
9263
- | { tag: 'AccountBelongsToOtherPool' }
9398
+ | { name: 'AccountBelongsToOtherPool' }
9264
9399
  /**
9265
9400
  * The member is fully unbonded (and thus cannot access the bonded and reward pool
9266
9401
  * anymore to, for example, collect rewards).
9267
9402
  **/
9268
- | { tag: 'FullyUnbonding' }
9403
+ | { name: 'FullyUnbonding' }
9269
9404
  /**
9270
9405
  * The member cannot unbond further chunks due to reaching the limit.
9271
9406
  **/
9272
- | { tag: 'MaxUnbondingLimit' }
9407
+ | { name: 'MaxUnbondingLimit' }
9273
9408
  /**
9274
9409
  * None of the funds can be withdrawn yet because the bonding duration has not passed.
9275
9410
  **/
9276
- | { tag: 'CannotWithdrawAny' }
9411
+ | { name: 'CannotWithdrawAny' }
9277
9412
  /**
9278
9413
  * The amount does not meet the minimum bond to either join or create a pool.
9279
9414
  *
@@ -9281,101 +9416,101 @@ export type PalletNominationPoolsError =
9281
9416
  * caller does not have nominating permissions for the pool. Members can never unbond to a
9282
9417
  * value below `MinJoinBond`.
9283
9418
  **/
9284
- | { tag: 'MinimumBondNotMet' }
9419
+ | { name: 'MinimumBondNotMet' }
9285
9420
  /**
9286
9421
  * The transaction could not be executed due to overflow risk for the pool.
9287
9422
  **/
9288
- | { tag: 'OverflowRisk' }
9423
+ | { name: 'OverflowRisk' }
9289
9424
  /**
9290
9425
  * A pool must be in [`PoolState::Destroying`] in order for the depositor to unbond or for
9291
9426
  * other members to be permissionlessly unbonded.
9292
9427
  **/
9293
- | { tag: 'NotDestroying' }
9428
+ | { name: 'NotDestroying' }
9294
9429
  /**
9295
9430
  * The caller does not have nominating permissions for the pool.
9296
9431
  **/
9297
- | { tag: 'NotNominator' }
9432
+ | { name: 'NotNominator' }
9298
9433
  /**
9299
9434
  * Either a) the caller cannot make a valid kick or b) the pool is not destroying.
9300
9435
  **/
9301
- | { tag: 'NotKickerOrDestroying' }
9436
+ | { name: 'NotKickerOrDestroying' }
9302
9437
  /**
9303
9438
  * The pool is not open to join
9304
9439
  **/
9305
- | { tag: 'NotOpen' }
9440
+ | { name: 'NotOpen' }
9306
9441
  /**
9307
9442
  * The system is maxed out on pools.
9308
9443
  **/
9309
- | { tag: 'MaxPools' }
9444
+ | { name: 'MaxPools' }
9310
9445
  /**
9311
9446
  * Too many members in the pool or system.
9312
9447
  **/
9313
- | { tag: 'MaxPoolMembers' }
9448
+ | { name: 'MaxPoolMembers' }
9314
9449
  /**
9315
9450
  * The pools state cannot be changed.
9316
9451
  **/
9317
- | { tag: 'CanNotChangeState' }
9452
+ | { name: 'CanNotChangeState' }
9318
9453
  /**
9319
9454
  * The caller does not have adequate permissions.
9320
9455
  **/
9321
- | { tag: 'DoesNotHavePermission' }
9456
+ | { name: 'DoesNotHavePermission' }
9322
9457
  /**
9323
9458
  * Metadata exceeds [`Config::MaxMetadataLen`]
9324
9459
  **/
9325
- | { tag: 'MetadataExceedsMaxLen' }
9460
+ | { name: 'MetadataExceedsMaxLen' }
9326
9461
  /**
9327
9462
  * Some error occurred that should never happen. This should be reported to the
9328
9463
  * maintainers.
9329
9464
  **/
9330
- | { tag: 'Defensive'; value: PalletNominationPoolsDefensiveError }
9465
+ | { name: 'Defensive'; data: PalletNominationPoolsDefensiveError }
9331
9466
  /**
9332
9467
  * Partial unbonding now allowed permissionlessly.
9333
9468
  **/
9334
- | { tag: 'PartialUnbondNotAllowedPermissionlessly' }
9469
+ | { name: 'PartialUnbondNotAllowedPermissionlessly' }
9335
9470
  /**
9336
9471
  * The pool's max commission cannot be set higher than the existing value.
9337
9472
  **/
9338
- | { tag: 'MaxCommissionRestricted' }
9473
+ | { name: 'MaxCommissionRestricted' }
9339
9474
  /**
9340
9475
  * The supplied commission exceeds the max allowed commission.
9341
9476
  **/
9342
- | { tag: 'CommissionExceedsMaximum' }
9477
+ | { name: 'CommissionExceedsMaximum' }
9343
9478
  /**
9344
9479
  * The supplied commission exceeds global maximum commission.
9345
9480
  **/
9346
- | { tag: 'CommissionExceedsGlobalMaximum' }
9481
+ | { name: 'CommissionExceedsGlobalMaximum' }
9347
9482
  /**
9348
9483
  * Not enough blocks have surpassed since the last commission update.
9349
9484
  **/
9350
- | { tag: 'CommissionChangeThrottled' }
9485
+ | { name: 'CommissionChangeThrottled' }
9351
9486
  /**
9352
9487
  * The submitted changes to commission change rate are not allowed.
9353
9488
  **/
9354
- | { tag: 'CommissionChangeRateNotAllowed' }
9489
+ | { name: 'CommissionChangeRateNotAllowed' }
9355
9490
  /**
9356
9491
  * There is no pending commission to claim.
9357
9492
  **/
9358
- | { tag: 'NoPendingCommission' }
9493
+ | { name: 'NoPendingCommission' }
9359
9494
  /**
9360
9495
  * No commission current has been set.
9361
9496
  **/
9362
- | { tag: 'NoCommissionCurrentSet' }
9497
+ | { name: 'NoCommissionCurrentSet' }
9363
9498
  /**
9364
9499
  * Pool id currently in use.
9365
9500
  **/
9366
- | { tag: 'PoolIdInUse' }
9501
+ | { name: 'PoolIdInUse' }
9367
9502
  /**
9368
9503
  * Pool id provided is not correct/usable.
9369
9504
  **/
9370
- | { tag: 'InvalidPoolId' }
9505
+ | { name: 'InvalidPoolId' }
9371
9506
  /**
9372
9507
  * Bonding extra is restricted to the exact pending reward amount.
9373
9508
  **/
9374
- | { tag: 'BondExtraRestricted' }
9509
+ | { name: 'BondExtraRestricted' }
9375
9510
  /**
9376
9511
  * No imbalance in the ED deposit for the pool.
9377
9512
  **/
9378
- | { tag: 'NothingToAdjust' };
9513
+ | { name: 'NothingToAdjust' };
9379
9514
 
9380
9515
  export type PalletNominationPoolsDefensiveError =
9381
9516
  | 'NotEnoughSpaceInUnbondPool'
@@ -9439,7 +9574,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
9439
9574
  hrmpChannelMaxMessageSize: number;
9440
9575
  executorParams: PolkadotPrimitivesV6ExecutorParams;
9441
9576
  codeRetentionPeriod: number;
9442
- onDemandCores: number;
9577
+ coretimeCores: number;
9443
9578
  onDemandRetries: number;
9444
9579
  onDemandQueueMaxSize: number;
9445
9580
  onDemandTargetQueueUtilization: Perbill;
@@ -9461,6 +9596,8 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
9461
9596
  pvfVotingTtl: number;
9462
9597
  minimumValidationUpgradeDelay: number;
9463
9598
  minimumBackingVotes: number;
9599
+ nodeFeatures: BitSequence;
9600
+ approvalVotingParams: PolkadotPrimitivesVstagingApprovalVotingParams;
9464
9601
  };
9465
9602
 
9466
9603
  /**
@@ -9658,11 +9795,23 @@ export type PolkadotRuntimeParachainsParasInherentPalletError =
9658
9795
  /**
9659
9796
  * A dispute statement was invalid.
9660
9797
  **/
9661
- | 'DisputeInvalid';
9798
+ | 'DisputeInvalid'
9799
+ /**
9800
+ * A candidate was backed by a disabled validator
9801
+ **/
9802
+ | 'BackedByDisabled'
9803
+ /**
9804
+ * A candidate was backed even though the paraid was not scheduled.
9805
+ **/
9806
+ | 'BackedOnUnscheduledCore'
9807
+ /**
9808
+ * Too many candidates supplied.
9809
+ **/
9810
+ | 'UnscheduledCandidate';
9662
9811
 
9663
9812
  export type PolkadotRuntimeParachainsSchedulerPalletCoreOccupied =
9664
- | { tag: 'Free' }
9665
- | { tag: 'Paras'; value: PolkadotRuntimeParachainsSchedulerPalletParasEntry };
9813
+ | { type: 'Free' }
9814
+ | { type: 'Paras'; value: PolkadotRuntimeParachainsSchedulerPalletParasEntry };
9666
9815
 
9667
9816
  export type PolkadotRuntimeParachainsSchedulerPalletParasEntry = {
9668
9817
  assignment: PolkadotRuntimeParachainsSchedulerCommonAssignment;
@@ -9670,7 +9819,12 @@ export type PolkadotRuntimeParachainsSchedulerPalletParasEntry = {
9670
9819
  ttl: number;
9671
9820
  };
9672
9821
 
9673
- export type PolkadotRuntimeParachainsSchedulerCommonAssignment = { paraId: PolkadotParachainPrimitivesPrimitivesId };
9822
+ export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
9823
+ | {
9824
+ type: 'Pool';
9825
+ value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV6CoreIndex };
9826
+ }
9827
+ | { type: 'Bulk'; value: PolkadotParachainPrimitivesPrimitivesId };
9674
9828
 
9675
9829
  export type PolkadotRuntimeParachainsParasPvfCheckActiveVoteState = {
9676
9830
  votesAccept: BitSequence;
@@ -9681,9 +9835,9 @@ export type PolkadotRuntimeParachainsParasPvfCheckActiveVoteState = {
9681
9835
  };
9682
9836
 
9683
9837
  export type PolkadotRuntimeParachainsParasPvfCheckCause =
9684
- | { tag: 'Onboarding'; value: PolkadotParachainPrimitivesPrimitivesId }
9838
+ | { type: 'Onboarding'; value: PolkadotParachainPrimitivesPrimitivesId }
9685
9839
  | {
9686
- tag: 'Upgrade';
9840
+ type: 'Upgrade';
9687
9841
  value: {
9688
9842
  id: PolkadotParachainPrimitivesPrimitivesId;
9689
9843
  includedAt: number;
@@ -9990,6 +10144,90 @@ export type PolkadotRuntimeParachainsDisputesSlashingPalletError =
9990
10144
  **/
9991
10145
  | 'DuplicateSlashingReport';
9992
10146
 
10147
+ export type PolkadotRuntimeParachainsAssignerOnDemandEnqueuedOrder = {
10148
+ paraId: PolkadotParachainPrimitivesPrimitivesId;
10149
+ };
10150
+
10151
+ export type PolkadotRuntimeParachainsAssignerOnDemandCoreAffinityCount = {
10152
+ coreIdx: PolkadotPrimitivesV6CoreIndex;
10153
+ count: number;
10154
+ };
10155
+
10156
+ /**
10157
+ * The `Error` enum of this pallet.
10158
+ **/
10159
+ export type PolkadotRuntimeParachainsAssignerOnDemandPalletError =
10160
+ /**
10161
+ * The `ParaId` supplied to the `place_order` call is not a valid `ParaThread`, making the
10162
+ * call is invalid.
10163
+ **/
10164
+ | 'InvalidParaId'
10165
+ /**
10166
+ * The order queue is full, `place_order` will not continue.
10167
+ **/
10168
+ | 'QueueFull'
10169
+ /**
10170
+ * The current spot price is higher than the max amount specified in the `place_order`
10171
+ * call, making it invalid.
10172
+ **/
10173
+ | 'SpotPriceHigherThanMaxAmount';
10174
+
10175
+ export type PolkadotRuntimeParachainsAssignerCoretimeSchedule = {
10176
+ assignments: Array<
10177
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimePartsOf57600]
10178
+ >;
10179
+ endHint?: number | undefined;
10180
+ nextSchedule?: number | undefined;
10181
+ };
10182
+
10183
+ export type PolkadotRuntimeParachainsAssignerCoretimeCoreDescriptor = {
10184
+ queue?: PolkadotRuntimeParachainsAssignerCoretimeQueueDescriptor | undefined;
10185
+ currentWork?: PolkadotRuntimeParachainsAssignerCoretimeWorkState | undefined;
10186
+ };
10187
+
10188
+ export type PolkadotRuntimeParachainsAssignerCoretimeQueueDescriptor = { first: number; last: number };
10189
+
10190
+ export type PolkadotRuntimeParachainsAssignerCoretimeWorkState = {
10191
+ assignments: Array<
10192
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimeAssignmentState]
10193
+ >;
10194
+ endHint?: number | undefined;
10195
+ pos: number;
10196
+ step: PolkadotRuntimeParachainsAssignerCoretimePartsOf57600;
10197
+ };
10198
+
10199
+ export type PolkadotRuntimeParachainsAssignerCoretimeAssignmentState = {
10200
+ ratio: PolkadotRuntimeParachainsAssignerCoretimePartsOf57600;
10201
+ remaining: PolkadotRuntimeParachainsAssignerCoretimePartsOf57600;
10202
+ };
10203
+
10204
+ /**
10205
+ * The `Error` enum of this pallet.
10206
+ **/
10207
+ export type PolkadotRuntimeParachainsAssignerCoretimePalletError =
10208
+ | 'AssignmentsEmpty'
10209
+ /**
10210
+ * Assignments together exceeded 57600.
10211
+ **/
10212
+ | 'OverScheduled'
10213
+ /**
10214
+ * Assignments together less than 57600
10215
+ **/
10216
+ | 'UnderScheduled'
10217
+ /**
10218
+ * assign_core is only allowed to append new assignments at the end of already existing
10219
+ * ones.
10220
+ **/
10221
+ | 'DisallowedInsert'
10222
+ /**
10223
+ * Tried to insert a schedule for the same core and block number as an existing schedule
10224
+ **/
10225
+ | 'DuplicateInsert'
10226
+ /**
10227
+ * Tried to add an unsorted set of assignments
10228
+ **/
10229
+ | 'AssignmentsNotSorted';
10230
+
9993
10231
  export type PolkadotRuntimeCommonParasRegistrarParaInfo = {
9994
10232
  manager: AccountId32;
9995
10233
  deposit: bigint;
@@ -10119,9 +10357,9 @@ export type PolkadotRuntimeCommonCrowdloanFundInfo = {
10119
10357
  };
10120
10358
 
10121
10359
  export type PolkadotRuntimeCommonCrowdloanLastContribution =
10122
- | { tag: 'Never' }
10123
- | { tag: 'PreEnding'; value: number }
10124
- | { tag: 'Ending'; value: number };
10360
+ | { type: 'Never' }
10361
+ | { type: 'PreEnding'; value: number }
10362
+ | { type: 'Ending'; value: number };
10125
10363
 
10126
10364
  /**
10127
10365
  * The `Error` enum of this pallet.
@@ -10221,33 +10459,43 @@ export type PolkadotRuntimeCommonCrowdloanPalletError =
10221
10459
  **/
10222
10460
  | 'NoLeasePeriod';
10223
10461
 
10462
+ /**
10463
+ * The `Error` enum of this pallet.
10464
+ **/
10465
+ export type PolkadotRuntimeParachainsCoretimePalletError =
10466
+ /**
10467
+ * The paraid making the call is not the coretime brokerage system parachain.
10468
+ **/
10469
+ 'NotBroker';
10470
+
10224
10471
  export type PalletXcmQueryStatus =
10225
10472
  | {
10226
- tag: 'Pending';
10473
+ type: 'Pending';
10227
10474
  value: {
10228
- responder: XcmVersionedMultiLocation;
10229
- maybeMatchQuerier?: XcmVersionedMultiLocation | undefined;
10475
+ responder: XcmVersionedLocation;
10476
+ maybeMatchQuerier?: XcmVersionedLocation | undefined;
10230
10477
  maybeNotify?: [number, number] | undefined;
10231
10478
  timeout: number;
10232
10479
  };
10233
10480
  }
10234
- | { tag: 'VersionNotifier'; value: { origin: XcmVersionedMultiLocation; isActive: boolean } }
10235
- | { tag: 'Ready'; value: { response: XcmVersionedResponse; at: number } };
10481
+ | { type: 'VersionNotifier'; value: { origin: XcmVersionedLocation; isActive: boolean } }
10482
+ | { type: 'Ready'; value: { response: XcmVersionedResponse; at: number } };
10236
10483
 
10237
- export type XcmVersionedResponse = { tag: 'V2'; value: XcmV2Response } | { tag: 'V3'; value: XcmV3Response };
10484
+ export type XcmVersionedResponse =
10485
+ | { type: 'V2'; value: XcmV2Response }
10486
+ | { type: 'V3'; value: XcmV3Response }
10487
+ | { type: 'V4'; value: StagingXcmV4Response };
10238
10488
 
10239
10489
  export type PalletXcmVersionMigrationStage =
10240
- | { tag: 'MigrateSupportedVersion' }
10241
- | { tag: 'MigrateVersionNotifiers' }
10242
- | { tag: 'NotifyCurrentTargets'; value?: Bytes | undefined }
10243
- | { tag: 'MigrateAndNotifyOldTargets' };
10244
-
10245
- export type XcmVersionedAssetId = { tag: 'V3'; value: XcmV3MultiassetAssetId };
10490
+ | { type: 'MigrateSupportedVersion' }
10491
+ | { type: 'MigrateVersionNotifiers' }
10492
+ | { type: 'NotifyCurrentTargets'; value?: Bytes | undefined }
10493
+ | { type: 'MigrateAndNotifyOldTargets' };
10246
10494
 
10247
10495
  export type PalletXcmRemoteLockedFungibleRecord = {
10248
10496
  amount: bigint;
10249
- owner: XcmVersionedMultiLocation;
10250
- locker: XcmVersionedMultiLocation;
10497
+ owner: XcmVersionedLocation;
10498
+ locker: XcmVersionedLocation;
10251
10499
  consumers: Array<[[], bigint]>;
10252
10500
  };
10253
10501
 
@@ -10274,7 +10522,7 @@ export type PalletXcmError =
10274
10522
  **/
10275
10523
  | 'UnweighableMessage'
10276
10524
  /**
10277
- * The destination `MultiLocation` provided cannot be inverted.
10525
+ * The destination `Location` provided cannot be inverted.
10278
10526
  **/
10279
10527
  | 'DestinationNotInvertible'
10280
10528
  /**
@@ -10311,9 +10559,9 @@ export type PalletXcmError =
10311
10559
  **/
10312
10560
  | 'AlreadySubscribed'
10313
10561
  /**
10314
- * Invalid asset for the operation.
10562
+ * Could not check-out the assets for teleportation to the destination chain.
10315
10563
  **/
10316
- | 'InvalidAsset'
10564
+ | 'CannotCheckOutTeleport'
10317
10565
  /**
10318
10566
  * The owner does not own (all) of the asset that they wish to do the operation on.
10319
10567
  **/
@@ -10337,7 +10585,27 @@ export type PalletXcmError =
10337
10585
  /**
10338
10586
  * The unlock operation cannot succeed because there are still consumers of the lock.
10339
10587
  **/
10340
- | 'InUse';
10588
+ | 'InUse'
10589
+ /**
10590
+ * Invalid non-concrete asset.
10591
+ **/
10592
+ | 'InvalidAssetNotConcrete'
10593
+ /**
10594
+ * Invalid asset, reserve chain could not be determined for it.
10595
+ **/
10596
+ | 'InvalidAssetUnknownReserve'
10597
+ /**
10598
+ * Invalid asset, do not support remote asset reserves with different fees reserves.
10599
+ **/
10600
+ | 'InvalidAssetUnsupportedReserve'
10601
+ /**
10602
+ * Too many assets with different reserve locations have been attempted for transfer.
10603
+ **/
10604
+ | 'TooManyReserves'
10605
+ /**
10606
+ * Local XCM execution incomplete.
10607
+ **/
10608
+ | 'LocalExecutionIncomplete';
10341
10609
 
10342
10610
  export type PalletMessageQueueBookState = {
10343
10611
  begin: number;
@@ -10403,7 +10671,11 @@ export type PalletMessageQueueError =
10403
10671
  *
10404
10672
  * This can change at any time and may resolve in the future by re-trying.
10405
10673
  **/
10406
- | 'QueuePaused';
10674
+ | 'QueuePaused'
10675
+ /**
10676
+ * Another call is in progress and needs to finish before this call can happen.
10677
+ **/
10678
+ | 'RecursiveDisallowed';
10407
10679
 
10408
10680
  /**
10409
10681
  * The `Error` enum of this pallet.
@@ -10457,6 +10729,10 @@ export type FrameSystemExtensionsCheckWeight = {};
10457
10729
 
10458
10730
  export type PalletTransactionPaymentChargeTransactionPayment = bigint;
10459
10731
 
10732
+ export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
10733
+
10734
+ export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
10735
+
10460
10736
  export type StagingKusamaRuntimeRuntime = {};
10461
10737
 
10462
10738
  export type SpRuntimeBlock = { header: Header; extrinsics: Array<UncheckedExtrinsic> };
@@ -10464,26 +10740,26 @@ export type SpRuntimeBlock = { header: Header; extrinsics: Array<UncheckedExtrin
10464
10740
  export type SpCoreOpaqueMetadata = Bytes;
10465
10741
 
10466
10742
  export type SpRuntimeTransactionValidityTransactionValidityError =
10467
- | { tag: 'Invalid'; value: SpRuntimeTransactionValidityInvalidTransaction }
10468
- | { tag: 'Unknown'; value: SpRuntimeTransactionValidityUnknownTransaction };
10743
+ | { type: 'Invalid'; value: SpRuntimeTransactionValidityInvalidTransaction }
10744
+ | { type: 'Unknown'; value: SpRuntimeTransactionValidityUnknownTransaction };
10469
10745
 
10470
10746
  export type SpRuntimeTransactionValidityInvalidTransaction =
10471
- | { tag: 'Call' }
10472
- | { tag: 'Payment' }
10473
- | { tag: 'Future' }
10474
- | { tag: 'Stale' }
10475
- | { tag: 'BadProof' }
10476
- | { tag: 'AncientBirthBlock' }
10477
- | { tag: 'ExhaustsResources' }
10478
- | { tag: 'Custom'; value: number }
10479
- | { tag: 'BadMandatory' }
10480
- | { tag: 'MandatoryValidation' }
10481
- | { tag: 'BadSigner' };
10747
+ | { type: 'Call' }
10748
+ | { type: 'Payment' }
10749
+ | { type: 'Future' }
10750
+ | { type: 'Stale' }
10751
+ | { type: 'BadProof' }
10752
+ | { type: 'AncientBirthBlock' }
10753
+ | { type: 'ExhaustsResources' }
10754
+ | { type: 'Custom'; value: number }
10755
+ | { type: 'BadMandatory' }
10756
+ | { type: 'MandatoryValidation' }
10757
+ | { type: 'BadSigner' };
10482
10758
 
10483
10759
  export type SpRuntimeTransactionValidityUnknownTransaction =
10484
- | { tag: 'CannotLookup' }
10485
- | { tag: 'NoUnsignedValidator' }
10486
- | { tag: 'Custom'; value: number };
10760
+ | { type: 'CannotLookup' }
10761
+ | { type: 'NoUnsignedValidator' }
10762
+ | { type: 'Custom'; value: number };
10487
10763
 
10488
10764
  export type SpInherentsInherentData = { data: Array<[FixedBytes<8>, Bytes]> };
10489
10765
 
@@ -10506,9 +10782,9 @@ export type PolkadotPrimitivesV6GroupRotationInfo = {
10506
10782
  };
10507
10783
 
10508
10784
  export type PolkadotPrimitivesV6CoreState =
10509
- | { tag: 'Occupied'; value: PolkadotPrimitivesV6OccupiedCore }
10510
- | { tag: 'Scheduled'; value: PolkadotPrimitivesV6ScheduledCore }
10511
- | { tag: 'Free' };
10785
+ | { type: 'Occupied'; value: PolkadotPrimitivesV6OccupiedCore }
10786
+ | { type: 'Scheduled'; value: PolkadotPrimitivesV6ScheduledCore }
10787
+ | { type: 'Free' };
10512
10788
 
10513
10789
  export type PolkadotPrimitivesV6OccupiedCore = {
10514
10790
  nextUpOnAvailable?: PolkadotPrimitivesV6ScheduledCore | undefined;
@@ -10537,7 +10813,7 @@ export type PolkadotPrimitivesV6PersistedValidationData = {
10537
10813
 
10538
10814
  export type PolkadotPrimitivesV6CandidateEvent =
10539
10815
  | {
10540
- tag: 'CandidateBacked';
10816
+ type: 'CandidateBacked';
10541
10817
  value: [
10542
10818
  PolkadotPrimitivesV6CandidateReceipt,
10543
10819
  PolkadotParachainPrimitivesPrimitivesHeadData,
@@ -10546,7 +10822,7 @@ export type PolkadotPrimitivesV6CandidateEvent =
10546
10822
  ];
10547
10823
  }
10548
10824
  | {
10549
- tag: 'CandidateIncluded';
10825
+ type: 'CandidateIncluded';
10550
10826
  value: [
10551
10827
  PolkadotPrimitivesV6CandidateReceipt,
10552
10828
  PolkadotParachainPrimitivesPrimitivesHeadData,
@@ -10555,7 +10831,7 @@ export type PolkadotPrimitivesV6CandidateEvent =
10555
10831
  ];
10556
10832
  }
10557
10833
  | {
10558
- tag: 'CandidateTimedOut';
10834
+ type: 'CandidateTimedOut';
10559
10835
  value: [
10560
10836
  PolkadotPrimitivesV6CandidateReceipt,
10561
10837
  PolkadotParachainPrimitivesPrimitivesHeadData,
@@ -10660,51 +10936,51 @@ export type PalletTransactionPaymentFeeDetails = {
10660
10936
  export type PalletTransactionPaymentInclusionFee = { baseFee: bigint; lenFee: bigint; adjustedWeightFee: bigint };
10661
10937
 
10662
10938
  export type StagingKusamaRuntimeRuntimeError =
10663
- | { tag: 'System'; value: FrameSystemError }
10664
- | { tag: 'Babe'; value: PalletBabeError }
10665
- | { tag: 'Indices'; value: PalletIndicesError }
10666
- | { tag: 'Balances'; value: PalletBalancesError }
10667
- | { tag: 'Staking'; value: PalletStakingPalletError }
10668
- | { tag: 'Session'; value: PalletSessionError }
10669
- | { tag: 'Grandpa'; value: PalletGrandpaError }
10670
- | { tag: 'ImOnline'; value: PalletImOnlineError }
10671
- | { tag: 'Treasury'; value: PalletTreasuryError }
10672
- | { tag: 'ConvictionVoting'; value: PalletConvictionVotingError }
10673
- | { tag: 'Referenda'; value: PalletReferendaError }
10674
- | { tag: 'FellowshipCollective'; value: PalletRankedCollectiveError }
10675
- | { tag: 'FellowshipReferenda'; value: PalletReferendaError }
10676
- | { tag: 'Whitelist'; value: PalletWhitelistError }
10677
- | { tag: 'Claims'; value: PolkadotRuntimeCommonClaimsPalletError }
10678
- | { tag: 'Utility'; value: PalletUtilityError }
10679
- | { tag: 'Identity'; value: PalletIdentityError }
10680
- | { tag: 'Society'; value: PalletSocietyError }
10681
- | { tag: 'Recovery'; value: PalletRecoveryError }
10682
- | { tag: 'Vesting'; value: PalletVestingError }
10683
- | { tag: 'Scheduler'; value: PalletSchedulerError }
10684
- | { tag: 'Proxy'; value: PalletProxyError }
10685
- | { tag: 'Multisig'; value: PalletMultisigError }
10686
- | { tag: 'Preimage'; value: PalletPreimageError }
10687
- | { tag: 'Bounties'; value: PalletBountiesError }
10688
- | { tag: 'ChildBounties'; value: PalletChildBountiesError }
10689
- | { tag: 'ElectionProviderMultiPhase'; value: PalletElectionProviderMultiPhaseError }
10690
- | { tag: 'Nis'; value: PalletNisError }
10691
- | { tag: 'NisCounterpartBalances'; value: PalletBalancesError }
10692
- | { tag: 'VoterList'; value: PalletBagsListError }
10693
- | { tag: 'NominationPools'; value: PalletNominationPoolsError }
10694
- | { tag: 'FastUnstake'; value: PalletFastUnstakeError }
10695
- | { tag: 'Configuration'; value: PolkadotRuntimeParachainsConfigurationPalletError }
10696
- | { tag: 'ParaInclusion'; value: PolkadotRuntimeParachainsInclusionPalletError }
10697
- | { tag: 'ParaInherent'; value: PolkadotRuntimeParachainsParasInherentPalletError }
10698
- | { tag: 'Paras'; value: PolkadotRuntimeParachainsParasPalletError }
10699
- | { tag: 'Hrmp'; value: PolkadotRuntimeParachainsHrmpPalletError }
10700
- | { tag: 'ParasDisputes'; value: PolkadotRuntimeParachainsDisputesPalletError }
10701
- | { tag: 'ParasSlashing'; value: PolkadotRuntimeParachainsDisputesSlashingPalletError }
10702
- | { tag: 'Registrar'; value: PolkadotRuntimeCommonParasRegistrarPalletError }
10703
- | { tag: 'Slots'; value: PolkadotRuntimeCommonSlotsPalletError }
10704
- | { tag: 'Auctions'; value: PolkadotRuntimeCommonAuctionsPalletError }
10705
- | { tag: 'Crowdloan'; value: PolkadotRuntimeCommonCrowdloanPalletError }
10706
- | { tag: 'StateTrieMigration'; value: PalletStateTrieMigrationError }
10707
- | { tag: 'XcmPallet'; value: PalletXcmError }
10708
- | { tag: 'MessageQueue'; value: PalletMessageQueueError }
10709
- | { tag: 'AssetRate'; value: PalletAssetRateError }
10710
- | { tag: 'Beefy'; value: PalletBeefyError };
10939
+ | { pallet: 'System'; palletError: FrameSystemError }
10940
+ | { pallet: 'Babe'; palletError: PalletBabeError }
10941
+ | { pallet: 'Indices'; palletError: PalletIndicesError }
10942
+ | { pallet: 'Balances'; palletError: PalletBalancesError }
10943
+ | { pallet: 'Staking'; palletError: PalletStakingPalletError }
10944
+ | { pallet: 'Session'; palletError: PalletSessionError }
10945
+ | { pallet: 'Grandpa'; palletError: PalletGrandpaError }
10946
+ | { pallet: 'Treasury'; palletError: PalletTreasuryError }
10947
+ | { pallet: 'ConvictionVoting'; palletError: PalletConvictionVotingError }
10948
+ | { pallet: 'Referenda'; palletError: PalletReferendaError }
10949
+ | { pallet: 'FellowshipCollective'; palletError: PalletRankedCollectiveError }
10950
+ | { pallet: 'FellowshipReferenda'; palletError: PalletReferendaError }
10951
+ | { pallet: 'Whitelist'; palletError: PalletWhitelistError }
10952
+ | { pallet: 'Claims'; palletError: PolkadotRuntimeCommonClaimsPalletError }
10953
+ | { pallet: 'Utility'; palletError: PalletUtilityError }
10954
+ | { pallet: 'Society'; palletError: PalletSocietyError }
10955
+ | { pallet: 'Recovery'; palletError: PalletRecoveryError }
10956
+ | { pallet: 'Vesting'; palletError: PalletVestingError }
10957
+ | { pallet: 'Scheduler'; palletError: PalletSchedulerError }
10958
+ | { pallet: 'Proxy'; palletError: PalletProxyError }
10959
+ | { pallet: 'Multisig'; palletError: PalletMultisigError }
10960
+ | { pallet: 'Preimage'; palletError: PalletPreimageError }
10961
+ | { pallet: 'Bounties'; palletError: PalletBountiesError }
10962
+ | { pallet: 'ChildBounties'; palletError: PalletChildBountiesError }
10963
+ | { pallet: 'ElectionProviderMultiPhase'; palletError: PalletElectionProviderMultiPhaseError }
10964
+ | { pallet: 'Nis'; palletError: PalletNisError }
10965
+ | { pallet: 'NisCounterpartBalances'; palletError: PalletBalancesError }
10966
+ | { pallet: 'VoterList'; palletError: PalletBagsListError }
10967
+ | { pallet: 'NominationPools'; palletError: PalletNominationPoolsError }
10968
+ | { pallet: 'FastUnstake'; palletError: PalletFastUnstakeError }
10969
+ | { pallet: 'Configuration'; palletError: PolkadotRuntimeParachainsConfigurationPalletError }
10970
+ | { pallet: 'ParaInclusion'; palletError: PolkadotRuntimeParachainsInclusionPalletError }
10971
+ | { pallet: 'ParaInherent'; palletError: PolkadotRuntimeParachainsParasInherentPalletError }
10972
+ | { pallet: 'Paras'; palletError: PolkadotRuntimeParachainsParasPalletError }
10973
+ | { pallet: 'Hrmp'; palletError: PolkadotRuntimeParachainsHrmpPalletError }
10974
+ | { pallet: 'ParasDisputes'; palletError: PolkadotRuntimeParachainsDisputesPalletError }
10975
+ | { pallet: 'ParasSlashing'; palletError: PolkadotRuntimeParachainsDisputesSlashingPalletError }
10976
+ | { pallet: 'OnDemandAssignmentProvider'; palletError: PolkadotRuntimeParachainsAssignerOnDemandPalletError }
10977
+ | { pallet: 'CoretimeAssignmentProvider'; palletError: PolkadotRuntimeParachainsAssignerCoretimePalletError }
10978
+ | { pallet: 'Registrar'; palletError: PolkadotRuntimeCommonParasRegistrarPalletError }
10979
+ | { pallet: 'Slots'; palletError: PolkadotRuntimeCommonSlotsPalletError }
10980
+ | { pallet: 'Auctions'; palletError: PolkadotRuntimeCommonAuctionsPalletError }
10981
+ | { pallet: 'Crowdloan'; palletError: PolkadotRuntimeCommonCrowdloanPalletError }
10982
+ | { pallet: 'Coretime'; palletError: PolkadotRuntimeParachainsCoretimePalletError }
10983
+ | { pallet: 'XcmPallet'; palletError: PalletXcmError }
10984
+ | { pallet: 'MessageQueue'; palletError: PalletMessageQueueError }
10985
+ | { pallet: 'AssetRate'; palletError: PalletAssetRateError }
10986
+ | { pallet: 'Beefy'; palletError: PalletBeefyError };