@dedot/chaintypes 0.263.0 → 0.265.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.
package/kusama/types.d.ts CHANGED
@@ -78,8 +78,7 @@ export type StagingKusamaRuntimeRuntimeCall =
78
78
  | { pallet: 'XcmPallet'; palletCall: PalletXcmCall }
79
79
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCall }
80
80
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCall }
81
- | { pallet: 'Beefy'; palletCall: PalletBeefyCall }
82
- | { pallet: 'RcMigrator'; palletCall: PalletRcMigratorCall };
81
+ | { pallet: 'Beefy'; palletCall: PalletBeefyCall };
83
82
 
84
83
  export type StagingKusamaRuntimeRuntimeCallLike =
85
84
  | { pallet: 'System'; palletCall: FrameSystemCallLike }
@@ -131,8 +130,7 @@ export type StagingKusamaRuntimeRuntimeCallLike =
131
130
  | { pallet: 'XcmPallet'; palletCall: PalletXcmCallLike }
132
131
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCallLike }
133
132
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCallLike }
134
- | { pallet: 'Beefy'; palletCall: PalletBeefyCallLike }
135
- | { pallet: 'RcMigrator'; palletCall: PalletRcMigratorCallLike };
133
+ | { pallet: 'Beefy'; palletCall: PalletBeefyCallLike };
136
134
 
137
135
  /**
138
136
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -1187,7 +1185,7 @@ export type PalletStakingPalletCall =
1187
1185
  *
1188
1186
  * If a validator has more than [`Config::MaxExposurePageSize`] nominators backing
1189
1187
  * them, then the list of nominators is paged, with each page being capped at
1190
- * [`Config::MaxExposurePageSize`.] If a validator has more than one page of nominators,
1188
+ * [`Config::MaxExposurePageSize`]. If a validator has more than one page of nominators,
1191
1189
  * the call needs to be made for each page separately in order for all the nominators
1192
1190
  * backing a validator to receive the reward. The nominators are not sorted across pages
1193
1191
  * and so it should not be assumed the highest staker would be on the topmost page and vice
@@ -1670,7 +1668,7 @@ export type PalletStakingPalletCallLike =
1670
1668
  *
1671
1669
  * If a validator has more than [`Config::MaxExposurePageSize`] nominators backing
1672
1670
  * them, then the list of nominators is paged, with each page being capped at
1673
- * [`Config::MaxExposurePageSize`.] If a validator has more than one page of nominators,
1671
+ * [`Config::MaxExposurePageSize`]. If a validator has more than one page of nominators,
1674
1672
  * the call needs to be made for each page separately in order for all the nominators
1675
1673
  * backing a validator to receive the reward. The nominators are not sorted across pages
1676
1674
  * and so it should not be assumed the highest staker would be on the topmost page and vice
@@ -1784,14 +1782,16 @@ export type PalletStakingUnlockChunk = { value: bigint; era: number };
1784
1782
  export type PalletSessionCall =
1785
1783
  /**
1786
1784
  * Sets the session key(s) of the function caller to `keys`.
1785
+ *
1787
1786
  * Allows an account to set its session key prior to becoming a validator.
1788
1787
  * This doesn't take effect until the next session.
1789
1788
  *
1790
- * The dispatch origin of this function must be signed.
1791
- *
1792
- * ## Complexity
1793
- * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1794
- * fixed.
1789
+ * - `origin`: The dispatch origin of this function must be signed.
1790
+ * - `keys`: The new session keys to set. These are the public keys of all sessions keys
1791
+ * setup in the runtime.
1792
+ * - `proof`: The proof that `origin` has access to the private keys of `keys`. See
1793
+ * [`impl_opaque_keys`](sp_runtime::impl_opaque_keys) for more information about the
1794
+ * proof format.
1795
1795
  **/
1796
1796
  | { name: 'SetKeys'; params: { keys: StagingKusamaRuntimeSessionKeys; proof: Bytes } }
1797
1797
  /**
@@ -1803,24 +1803,22 @@ export type PalletSessionCall =
1803
1803
  * convertible to a validator ID using the chain's typical addressing system (this usually
1804
1804
  * means being a controller account) or directly convertible into a validator ID (which
1805
1805
  * usually means being a stash account).
1806
- *
1807
- * ## Complexity
1808
- * - `O(1)` in number of key types. Actual cost depends on the number of length of
1809
- * `T::Keys::key_ids()` which is fixed.
1810
1806
  **/
1811
1807
  | { name: 'PurgeKeys' };
1812
1808
 
1813
1809
  export type PalletSessionCallLike =
1814
1810
  /**
1815
1811
  * Sets the session key(s) of the function caller to `keys`.
1812
+ *
1816
1813
  * Allows an account to set its session key prior to becoming a validator.
1817
1814
  * This doesn't take effect until the next session.
1818
1815
  *
1819
- * The dispatch origin of this function must be signed.
1820
- *
1821
- * ## Complexity
1822
- * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1823
- * fixed.
1816
+ * - `origin`: The dispatch origin of this function must be signed.
1817
+ * - `keys`: The new session keys to set. These are the public keys of all sessions keys
1818
+ * setup in the runtime.
1819
+ * - `proof`: The proof that `origin` has access to the private keys of `keys`. See
1820
+ * [`impl_opaque_keys`](sp_runtime::impl_opaque_keys) for more information about the
1821
+ * proof format.
1824
1822
  **/
1825
1823
  | { name: 'SetKeys'; params: { keys: StagingKusamaRuntimeSessionKeys; proof: BytesLike } }
1826
1824
  /**
@@ -1832,10 +1830,6 @@ export type PalletSessionCallLike =
1832
1830
  * convertible to a validator ID using the chain's typical addressing system (this usually
1833
1831
  * means being a controller account) or directly convertible into a validator ID (which
1834
1832
  * usually means being a stash account).
1835
- *
1836
- * ## Complexity
1837
- * - `O(1)` in number of key types. Actual cost depends on the number of length of
1838
- * `T::Keys::key_ids()` which is fixed.
1839
1833
  **/
1840
1834
  | { name: 'PurgeKeys' };
1841
1835
 
@@ -4687,7 +4681,10 @@ export type PalletSchedulerCall =
4687
4681
  };
4688
4682
  }
4689
4683
  /**
4690
- * Cancel an anonymously scheduled task.
4684
+ * Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for
4685
+ * execution in, as well as the index of the task in that block's agenda.
4686
+ *
4687
+ * In the case of a named task, it will remove it from the lookup table as well.
4691
4688
  **/
4692
4689
  | { name: 'Cancel'; params: { when: number; index: number } }
4693
4690
  /**
@@ -4745,6 +4742,8 @@ export type PalletSchedulerCall =
4745
4742
  * clones of the original task. Their retry configuration will be derived from the
4746
4743
  * original task's configuration, but will have a lower value for `remaining` than the
4747
4744
  * original `total_retries`.
4745
+ *
4746
+ * This call **cannot** be used to set a retry configuration for a named task.
4748
4747
  **/
4749
4748
  | { name: 'SetRetry'; params: { task: [number, number]; retries: number; period: number } }
4750
4749
  /**
@@ -4760,6 +4759,8 @@ export type PalletSchedulerCall =
4760
4759
  * clones of the original task. Their retry configuration will be derived from the
4761
4760
  * original task's configuration, but will have a lower value for `remaining` than the
4762
4761
  * original `total_retries`.
4762
+ *
4763
+ * This is the only way to set a retry configuration for a named task.
4763
4764
  **/
4764
4765
  | { name: 'SetRetryNamed'; params: { id: FixedBytes<32>; retries: number; period: number } }
4765
4766
  /**
@@ -4785,7 +4786,10 @@ export type PalletSchedulerCallLike =
4785
4786
  };
4786
4787
  }
4787
4788
  /**
4788
- * Cancel an anonymously scheduled task.
4789
+ * Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for
4790
+ * execution in, as well as the index of the task in that block's agenda.
4791
+ *
4792
+ * In the case of a named task, it will remove it from the lookup table as well.
4789
4793
  **/
4790
4794
  | { name: 'Cancel'; params: { when: number; index: number } }
4791
4795
  /**
@@ -4843,6 +4847,8 @@ export type PalletSchedulerCallLike =
4843
4847
  * clones of the original task. Their retry configuration will be derived from the
4844
4848
  * original task's configuration, but will have a lower value for `remaining` than the
4845
4849
  * original `total_retries`.
4850
+ *
4851
+ * This call **cannot** be used to set a retry configuration for a named task.
4846
4852
  **/
4847
4853
  | { name: 'SetRetry'; params: { task: [number, number]; retries: number; period: number } }
4848
4854
  /**
@@ -4858,6 +4864,8 @@ export type PalletSchedulerCallLike =
4858
4864
  * clones of the original task. Their retry configuration will be derived from the
4859
4865
  * original task's configuration, but will have a lower value for `remaining` than the
4860
4866
  * original `total_retries`.
4867
+ *
4868
+ * This is the only way to set a retry configuration for a named task.
4861
4869
  **/
4862
4870
  | { name: 'SetRetryNamed'; params: { id: FixedBytes<32>; retries: number; period: number } }
4863
4871
  /**
@@ -5278,7 +5286,9 @@ export type PalletMultisigCall =
5278
5286
  * Register approval for a dispatch to be made from a deterministic composite account if
5279
5287
  * approved by a total of `threshold - 1` of `other_signatories`.
5280
5288
  *
5281
- * If there are enough, then dispatch the call.
5289
+ * **If the approval threshold is met (including the sender's approval), this will
5290
+ * immediately execute the call.** This is the only way to execute a multisig call -
5291
+ * `approve_as_multi` will never trigger execution.
5282
5292
  *
5283
5293
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
5284
5294
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
@@ -5294,8 +5304,9 @@ export type PalletMultisigCall =
5294
5304
  * transaction index) of the first approval transaction.
5295
5305
  * - `call`: The call to be executed.
5296
5306
  *
5297
- * NOTE: Unless this is the final approval, you will generally want to use
5298
- * `approve_as_multi` instead, since it only requires a hash of the call.
5307
+ * NOTE: For intermediate approvals (not the final approval), you should generally use
5308
+ * `approve_as_multi` instead, since it only requires a hash of the call and is more
5309
+ * efficient.
5299
5310
  *
5300
5311
  * Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise
5301
5312
  * on success, result is `Ok` and the result from the interior call, if it was executed,
@@ -5329,6 +5340,13 @@ export type PalletMultisigCall =
5329
5340
  * Register approval for a dispatch to be made from a deterministic composite account if
5330
5341
  * approved by a total of `threshold - 1` of `other_signatories`.
5331
5342
  *
5343
+ * **This function will NEVER execute the call, even if the approval threshold is
5344
+ * reached.** It only registers approval. To actually execute the call, `as_multi` must
5345
+ * be called with the full call data by any of the signatories.
5346
+ *
5347
+ * This function is more efficient than `as_multi` for intermediate approvals since it
5348
+ * only requires the call hash, not the full call data.
5349
+ *
5332
5350
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
5333
5351
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
5334
5352
  * is cancelled.
@@ -5343,7 +5361,8 @@ export type PalletMultisigCall =
5343
5361
  * transaction index) of the first approval transaction.
5344
5362
  * - `call_hash`: The hash of the call to be executed.
5345
5363
  *
5346
- * NOTE: If this is the final approval, you will want to use `as_multi` instead.
5364
+ * NOTE: To execute the call after approvals are gathered, any signatory must call
5365
+ * `as_multi` with the full call data. This function cannot execute the call.
5347
5366
  *
5348
5367
  * ## Complexity
5349
5368
  * - `O(S)`.
@@ -5442,7 +5461,9 @@ export type PalletMultisigCallLike =
5442
5461
  * Register approval for a dispatch to be made from a deterministic composite account if
5443
5462
  * approved by a total of `threshold - 1` of `other_signatories`.
5444
5463
  *
5445
- * If there are enough, then dispatch the call.
5464
+ * **If the approval threshold is met (including the sender's approval), this will
5465
+ * immediately execute the call.** This is the only way to execute a multisig call -
5466
+ * `approve_as_multi` will never trigger execution.
5446
5467
  *
5447
5468
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
5448
5469
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
@@ -5458,8 +5479,9 @@ export type PalletMultisigCallLike =
5458
5479
  * transaction index) of the first approval transaction.
5459
5480
  * - `call`: The call to be executed.
5460
5481
  *
5461
- * NOTE: Unless this is the final approval, you will generally want to use
5462
- * `approve_as_multi` instead, since it only requires a hash of the call.
5482
+ * NOTE: For intermediate approvals (not the final approval), you should generally use
5483
+ * `approve_as_multi` instead, since it only requires a hash of the call and is more
5484
+ * efficient.
5463
5485
  *
5464
5486
  * Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise
5465
5487
  * on success, result is `Ok` and the result from the interior call, if it was executed,
@@ -5493,6 +5515,13 @@ export type PalletMultisigCallLike =
5493
5515
  * Register approval for a dispatch to be made from a deterministic composite account if
5494
5516
  * approved by a total of `threshold - 1` of `other_signatories`.
5495
5517
  *
5518
+ * **This function will NEVER execute the call, even if the approval threshold is
5519
+ * reached.** It only registers approval. To actually execute the call, `as_multi` must
5520
+ * be called with the full call data by any of the signatories.
5521
+ *
5522
+ * This function is more efficient than `as_multi` for intermediate approvals since it
5523
+ * only requires the call hash, not the full call data.
5524
+ *
5496
5525
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
5497
5526
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
5498
5527
  * is cancelled.
@@ -5507,7 +5536,8 @@ export type PalletMultisigCallLike =
5507
5536
  * transaction index) of the first approval transaction.
5508
5537
  * - `call_hash`: The hash of the call to be executed.
5509
5538
  *
5510
- * NOTE: If this is the final approval, you will want to use `as_multi` instead.
5539
+ * NOTE: To execute the call after approvals are gathered, any signatory must call
5540
+ * `as_multi` with the full call data. This function cannot execute the call.
5511
5541
  *
5512
5542
  * ## Complexity
5513
5543
  * - `O(S)`.
@@ -7722,7 +7752,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
7722
7752
  /**
7723
7753
  * Set scheduler-params.
7724
7754
  **/
7725
- | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV9SchedulerParams } };
7755
+ | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesVstagingSchedulerParams } }
7756
+ /**
7757
+ * Set the maximum relay parent session age.
7758
+ **/
7759
+ | { name: 'SetMaxRelayParentSessionAge'; params: { new: number } };
7726
7760
 
7727
7761
  export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
7728
7762
  /**
@@ -7918,7 +7952,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
7918
7952
  /**
7919
7953
  * Set scheduler-params.
7920
7954
  **/
7921
- | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV9SchedulerParams } };
7955
+ | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesVstagingSchedulerParams } }
7956
+ /**
7957
+ * Set the maximum relay parent session age.
7958
+ **/
7959
+ | { name: 'SetMaxRelayParentSessionAge'; params: { new: number } };
7922
7960
 
7923
7961
  export type PolkadotPrimitivesV9AsyncBackingAsyncBackingParams = {
7924
7962
  maxCandidateDepth: number;
@@ -7934,26 +7972,27 @@ export type PolkadotPrimitivesV9ExecutorParamsExecutorParam =
7934
7972
  | { type: 'PrecheckingMaxMemory'; value: bigint }
7935
7973
  | { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV9PvfPrepKind, bigint] }
7936
7974
  | { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV9PvfExecKind, bigint] }
7937
- | { type: 'WasmExtBulkMemory' };
7975
+ | { type: 'WasmExtBulkMemory' }
7976
+ | { type: 'EnabledHostFunction'; value: PolkadotPrimitivesV9ExecutorParamsExecutorHostFunction };
7938
7977
 
7939
7978
  export type PolkadotPrimitivesV9PvfPrepKind = 'Precheck' | 'Prepare';
7940
7979
 
7941
7980
  export type PolkadotPrimitivesV9PvfExecKind = 'Backing' | 'Approval';
7942
7981
 
7982
+ export type PolkadotPrimitivesV9ExecutorParamsExecutorHostFunction = 'EccRfc163';
7983
+
7943
7984
  export type PolkadotPrimitivesV9ApprovalVotingParams = { maxApprovalCoalesceCount: number };
7944
7985
 
7945
- export type PolkadotPrimitivesV9SchedulerParams = {
7986
+ export type PolkadotPrimitivesVstagingSchedulerParams = {
7946
7987
  groupRotationFrequency: number;
7947
7988
  parasAvailabilityPeriod: number;
7948
7989
  maxValidatorsPerCore?: number | undefined;
7949
7990
  lookahead: number;
7950
7991
  numCores: number;
7951
- maxAvailabilityTimeouts: number;
7952
7992
  onDemandQueueMaxSize: number;
7953
7993
  onDemandTargetQueueUtilization: Perbill;
7954
7994
  onDemandFeeVariability: Perbill;
7955
7995
  onDemandBaseFee: bigint;
7956
- ttl: number;
7957
7996
  };
7958
7997
 
7959
7998
  /**
@@ -8020,20 +8059,20 @@ export type PolkadotPrimitivesV9CommittedCandidateReceiptV2 = {
8020
8059
  export type PolkadotPrimitivesV9CandidateDescriptorV2 = {
8021
8060
  paraId: PolkadotParachainPrimitivesPrimitivesId;
8022
8061
  relayParent: H256;
8023
- version: PolkadotPrimitivesV9InternalVersion;
8062
+ version: number;
8024
8063
  coreIndex: number;
8025
8064
  sessionIndex: number;
8026
- reserved1: FixedBytes<25>;
8065
+ schedulingSessionOffset: number;
8066
+ reserved1: FixedBytes<24>;
8027
8067
  persistedValidationDataHash: H256;
8028
8068
  povHash: H256;
8029
8069
  erasureRoot: H256;
8030
- reserved2: FixedBytes<64>;
8070
+ schedulingParent: H256;
8071
+ reserved2: FixedBytes<32>;
8031
8072
  paraHead: H256;
8032
8073
  validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
8033
8074
  };
8034
8075
 
8035
- export type PolkadotPrimitivesV9InternalVersion = number;
8036
-
8037
8076
  export type PolkadotParachainPrimitivesPrimitivesValidationCodeHash = H256;
8038
8077
 
8039
8078
  export type PolkadotPrimitivesV9CandidateCommitments = {
@@ -9480,7 +9519,7 @@ export type SpRuntimeMultiSignature =
9480
9519
  | { type: 'Eth'; value: FixedBytes<65> };
9481
9520
 
9482
9521
  /**
9483
- * Contains a variant per dispatchable extrinsic that this pallet has.
9522
+ * Extrinsics to be called by the Coretime chain.
9484
9523
  **/
9485
9524
  export type PolkadotRuntimeParachainsCoretimePalletCall =
9486
9525
  /**
@@ -9517,7 +9556,7 @@ export type PolkadotRuntimeParachainsCoretimePalletCall =
9517
9556
  core: number;
9518
9557
  begin: number;
9519
9558
  assignment: Array<
9520
- [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimePartsOf57600]
9559
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600]
9521
9560
  >;
9522
9561
  endHint?: number | undefined;
9523
9562
  };
@@ -9558,7 +9597,7 @@ export type PolkadotRuntimeParachainsCoretimePalletCallLike =
9558
9597
  core: number;
9559
9598
  begin: number;
9560
9599
  assignment: Array<
9561
- [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimePartsOf57600]
9600
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600]
9562
9601
  >;
9563
9602
  endHint?: number | undefined;
9564
9603
  };
@@ -9569,7 +9608,7 @@ export type PalletBrokerCoretimeInterfaceCoreAssignment =
9569
9608
  | { type: 'Pool' }
9570
9609
  | { type: 'Task'; value: number };
9571
9610
 
9572
- export type PolkadotRuntimeParachainsAssignerCoretimePartsOf57600 = number;
9611
+ export type PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600 = number;
9573
9612
 
9574
9613
  /**
9575
9614
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -11156,485 +11195,6 @@ export type SpMmrPrimitivesAncestryProof = {
11156
11195
 
11157
11196
  export type SpConsensusBeefyFutureBlockVotingProof = { vote: SpConsensusBeefyVoteMessage };
11158
11197
 
11159
- /**
11160
- * Contains a variant per dispatchable extrinsic that this pallet has.
11161
- **/
11162
- export type PalletRcMigratorCall =
11163
- /**
11164
- * Set the migration stage.
11165
- *
11166
- * This call is intended for emergency use only and is guarded by the
11167
- * [`Config::AdminOrigin`].
11168
- **/
11169
- | { name: 'ForceSetStage'; params: { stage: PalletRcMigratorMigrationStage } }
11170
- /**
11171
- * Schedule the migration to start at a given moment.
11172
- *
11173
- * ### Parameters:
11174
- * - `start`: The block number at which the migration will start. `DispatchTime` calculated
11175
- * at the moment of the extrinsic execution.
11176
- * - `warm_up`: Duration or timepoint that will be used to prepare for the migration. Calls
11177
- * are filtered during this period. It is intended to give enough time for UMP and DMP
11178
- * queues to empty. `DispatchTime` calculated at the moment of the transition to the
11179
- * warm-up stage.
11180
- * - `cool_off`: The block number at which the post migration cool-off period will end. The
11181
- * `DispatchTime` calculated at the moment of the transition to the cool-off stage.
11182
- * - `unsafe_ignore_staking_lock_check`: ONLY FOR TESTING. Ignore the check whether the
11183
- * scheduled time point is far enough in the future.
11184
- *
11185
- * Note: If the staking election for next era is already complete, and the next
11186
- * validator set is queued in `pallet-session`, we want to avoid starting the data
11187
- * migration at this point as it can lead to some missed validator rewards. To address
11188
- * this, we stop staking election at the start of migration and must wait atleast 1
11189
- * session (set via warm_up) before starting the data migration.
11190
- *
11191
- * Read [`MigrationStage::Scheduled`] documentation for more details.
11192
- **/
11193
- | {
11194
- name: 'ScheduleMigration';
11195
- params: {
11196
- start: FrameSupportScheduleDispatchTime;
11197
- warmUp: FrameSupportScheduleDispatchTime;
11198
- coolOff: FrameSupportScheduleDispatchTime;
11199
- unsafeIgnoreStakingLockCheck: boolean;
11200
- };
11201
- }
11202
- /**
11203
- * Start the data migration.
11204
- *
11205
- * This is typically called by the Asset Hub to indicate it's readiness to receive the
11206
- * migration data.
11207
- **/
11208
- | { name: 'StartDataMigration' }
11209
- /**
11210
- * Receive a query response from the Asset Hub for a previously sent xcm message.
11211
- **/
11212
- | { name: 'ReceiveQueryResponse'; params: { queryId: bigint; response: StagingXcmV5Response } }
11213
- /**
11214
- * Resend a previously sent and unconfirmed XCM message.
11215
- **/
11216
- | { name: 'ResendXcm'; params: { queryId: bigint } }
11217
- /**
11218
- * Set the unprocessed message buffer size.
11219
- *
11220
- * `None` means to use the configuration value.
11221
- **/
11222
- | { name: 'SetUnprocessedMsgBuffer'; params: { new?: number | undefined } }
11223
- /**
11224
- * Set the AH UMP queue priority configuration.
11225
- *
11226
- * Can only be called by the `AdminOrigin`.
11227
- **/
11228
- | { name: 'SetAhUmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
11229
- /**
11230
- * Set the manager account id.
11231
- *
11232
- * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
11233
- * can not set the manager account id via `set_manager` call.
11234
- **/
11235
- | { name: 'SetManager'; params: { new?: AccountId32 | undefined } }
11236
- /**
11237
- * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
11238
- * [Config::SendXcm] router which will be able to send messages to the Asset Hub during
11239
- * the migration.
11240
- **/
11241
- | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
11242
- /**
11243
- * Set the accounts to be preserved on Relay Chain during the migration.
11244
- *
11245
- * The accounts must have no consumers references.
11246
- **/
11247
- | { name: 'PreserveAccounts'; params: { accounts: Array<AccountId32> } }
11248
- /**
11249
- * Set the canceller account id.
11250
- *
11251
- * The canceller can only stop scheduled migration.
11252
- **/
11253
- | { name: 'SetCanceller'; params: { new?: AccountId32 | undefined } }
11254
- /**
11255
- * Pause the migration.
11256
- **/
11257
- | { name: 'PauseMigration' }
11258
- /**
11259
- * Cancel the migration.
11260
- *
11261
- * Migration can only be cancelled if it is in the [`MigrationStage::Scheduled`] state.
11262
- **/
11263
- | { name: 'CancelMigration' }
11264
- /**
11265
- * Vote on behalf of any of the members in `MultisigMembers`.
11266
- *
11267
- * Unsigned extrinsic, requiring the `payload` to be signed.
11268
- *
11269
- * Upon each call, a new entry is created in `ManagerMultisigs` map the `payload.call` to
11270
- * be dispatched. Once `MultisigThreshold` is reached, the entire map is deleted, and we
11271
- * move on to the next round.
11272
- *
11273
- * The round system ensures that signatures from older round cannot be reused.
11274
- **/
11275
- | {
11276
- name: 'VoteManagerMultisig';
11277
- params: { payload: PalletRcMigratorManagerMultisigVote; sig: SpRuntimeMultiSignature };
11278
- }
11279
- /**
11280
- * Set the migration settings. Can only be done by admin or manager.
11281
- **/
11282
- | { name: 'SetSettings'; params: { settings?: PalletRcMigratorMigrationSettings | undefined } };
11283
-
11284
- export type PalletRcMigratorCallLike =
11285
- /**
11286
- * Set the migration stage.
11287
- *
11288
- * This call is intended for emergency use only and is guarded by the
11289
- * [`Config::AdminOrigin`].
11290
- **/
11291
- | { name: 'ForceSetStage'; params: { stage: PalletRcMigratorMigrationStage } }
11292
- /**
11293
- * Schedule the migration to start at a given moment.
11294
- *
11295
- * ### Parameters:
11296
- * - `start`: The block number at which the migration will start. `DispatchTime` calculated
11297
- * at the moment of the extrinsic execution.
11298
- * - `warm_up`: Duration or timepoint that will be used to prepare for the migration. Calls
11299
- * are filtered during this period. It is intended to give enough time for UMP and DMP
11300
- * queues to empty. `DispatchTime` calculated at the moment of the transition to the
11301
- * warm-up stage.
11302
- * - `cool_off`: The block number at which the post migration cool-off period will end. The
11303
- * `DispatchTime` calculated at the moment of the transition to the cool-off stage.
11304
- * - `unsafe_ignore_staking_lock_check`: ONLY FOR TESTING. Ignore the check whether the
11305
- * scheduled time point is far enough in the future.
11306
- *
11307
- * Note: If the staking election for next era is already complete, and the next
11308
- * validator set is queued in `pallet-session`, we want to avoid starting the data
11309
- * migration at this point as it can lead to some missed validator rewards. To address
11310
- * this, we stop staking election at the start of migration and must wait atleast 1
11311
- * session (set via warm_up) before starting the data migration.
11312
- *
11313
- * Read [`MigrationStage::Scheduled`] documentation for more details.
11314
- **/
11315
- | {
11316
- name: 'ScheduleMigration';
11317
- params: {
11318
- start: FrameSupportScheduleDispatchTime;
11319
- warmUp: FrameSupportScheduleDispatchTime;
11320
- coolOff: FrameSupportScheduleDispatchTime;
11321
- unsafeIgnoreStakingLockCheck: boolean;
11322
- };
11323
- }
11324
- /**
11325
- * Start the data migration.
11326
- *
11327
- * This is typically called by the Asset Hub to indicate it's readiness to receive the
11328
- * migration data.
11329
- **/
11330
- | { name: 'StartDataMigration' }
11331
- /**
11332
- * Receive a query response from the Asset Hub for a previously sent xcm message.
11333
- **/
11334
- | { name: 'ReceiveQueryResponse'; params: { queryId: bigint; response: StagingXcmV5Response } }
11335
- /**
11336
- * Resend a previously sent and unconfirmed XCM message.
11337
- **/
11338
- | { name: 'ResendXcm'; params: { queryId: bigint } }
11339
- /**
11340
- * Set the unprocessed message buffer size.
11341
- *
11342
- * `None` means to use the configuration value.
11343
- **/
11344
- | { name: 'SetUnprocessedMsgBuffer'; params: { new?: number | undefined } }
11345
- /**
11346
- * Set the AH UMP queue priority configuration.
11347
- *
11348
- * Can only be called by the `AdminOrigin`.
11349
- **/
11350
- | { name: 'SetAhUmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
11351
- /**
11352
- * Set the manager account id.
11353
- *
11354
- * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
11355
- * can not set the manager account id via `set_manager` call.
11356
- **/
11357
- | { name: 'SetManager'; params: { new?: AccountId32Like | undefined } }
11358
- /**
11359
- * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
11360
- * [Config::SendXcm] router which will be able to send messages to the Asset Hub during
11361
- * the migration.
11362
- **/
11363
- | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
11364
- /**
11365
- * Set the accounts to be preserved on Relay Chain during the migration.
11366
- *
11367
- * The accounts must have no consumers references.
11368
- **/
11369
- | { name: 'PreserveAccounts'; params: { accounts: Array<AccountId32Like> } }
11370
- /**
11371
- * Set the canceller account id.
11372
- *
11373
- * The canceller can only stop scheduled migration.
11374
- **/
11375
- | { name: 'SetCanceller'; params: { new?: AccountId32Like | undefined } }
11376
- /**
11377
- * Pause the migration.
11378
- **/
11379
- | { name: 'PauseMigration' }
11380
- /**
11381
- * Cancel the migration.
11382
- *
11383
- * Migration can only be cancelled if it is in the [`MigrationStage::Scheduled`] state.
11384
- **/
11385
- | { name: 'CancelMigration' }
11386
- /**
11387
- * Vote on behalf of any of the members in `MultisigMembers`.
11388
- *
11389
- * Unsigned extrinsic, requiring the `payload` to be signed.
11390
- *
11391
- * Upon each call, a new entry is created in `ManagerMultisigs` map the `payload.call` to
11392
- * be dispatched. Once `MultisigThreshold` is reached, the entire map is deleted, and we
11393
- * move on to the next round.
11394
- *
11395
- * The round system ensures that signatures from older round cannot be reused.
11396
- **/
11397
- | {
11398
- name: 'VoteManagerMultisig';
11399
- params: { payload: PalletRcMigratorManagerMultisigVote; sig: SpRuntimeMultiSignature };
11400
- }
11401
- /**
11402
- * Set the migration settings. Can only be done by admin or manager.
11403
- **/
11404
- | { name: 'SetSettings'; params: { settings?: PalletRcMigratorMigrationSettings | undefined } };
11405
-
11406
- export type PalletRcMigratorMigrationStage =
11407
- | { type: 'Pending' }
11408
- | { type: 'MigrationPaused' }
11409
- | { type: 'Scheduled'; value: { start: number } }
11410
- | { type: 'WaitingForAh' }
11411
- | { type: 'WarmUp'; value: { endAt: number } }
11412
- | { type: 'Starting' }
11413
- | { type: 'PureProxyCandidatesMigrationInit' }
11414
- | { type: 'AccountsMigrationInit' }
11415
- | { type: 'AccountsMigrationOngoing'; value: { lastKey?: AccountId32 | undefined } }
11416
- | { type: 'AccountsMigrationDone' }
11417
- | { type: 'MultisigMigrationInit' }
11418
- | { type: 'MultisigMigrationOngoing'; value: { lastKey?: [AccountId32, FixedBytes<32>] | undefined } }
11419
- | { type: 'MultisigMigrationDone' }
11420
- | { type: 'ClaimsMigrationInit' }
11421
- | { type: 'ClaimsMigrationOngoing'; value: { currentKey?: PalletRcMigratorClaimsClaimsStage | undefined } }
11422
- | { type: 'ClaimsMigrationDone' }
11423
- | { type: 'ProxyMigrationInit' }
11424
- | { type: 'ProxyMigrationProxies'; value: { lastKey?: AccountId32 | undefined } }
11425
- | { type: 'ProxyMigrationAnnouncements'; value: { lastKey?: AccountId32 | undefined } }
11426
- | { type: 'ProxyMigrationDone' }
11427
- | { type: 'PreimageMigrationInit' }
11428
- | { type: 'PreimageMigrationChunksOngoing'; value: { lastKey?: [[H256, number], number] | undefined } }
11429
- | { type: 'PreimageMigrationChunksDone' }
11430
- | { type: 'PreimageMigrationRequestStatusOngoing'; value: { nextKey?: H256 | undefined } }
11431
- | { type: 'PreimageMigrationRequestStatusDone' }
11432
- | { type: 'PreimageMigrationLegacyRequestStatusInit' }
11433
- | { type: 'PreimageMigrationLegacyRequestStatusOngoing'; value: { nextKey?: H256 | undefined } }
11434
- | { type: 'PreimageMigrationLegacyRequestStatusDone' }
11435
- | { type: 'PreimageMigrationDone' }
11436
- | { type: 'NomPoolsMigrationInit' }
11437
- | { type: 'NomPoolsMigrationOngoing'; value: { nextKey?: PalletRcMigratorStakingNomPoolsNomPoolsStage | undefined } }
11438
- | { type: 'NomPoolsMigrationDone' }
11439
- | { type: 'VestingMigrationInit' }
11440
- | { type: 'VestingMigrationOngoing'; value: { nextKey?: AccountId32 | undefined } }
11441
- | { type: 'VestingMigrationDone' }
11442
- | { type: 'DelegatedStakingMigrationInit' }
11443
- | {
11444
- type: 'DelegatedStakingMigrationOngoing';
11445
- value: { nextKey?: PalletRcMigratorStakingDelegatedStakingDelegatedStakingStage | undefined };
11446
- }
11447
- | { type: 'DelegatedStakingMigrationDone' }
11448
- | { type: 'IndicesMigrationInit' }
11449
- | { type: 'IndicesMigrationOngoing'; value: { nextKey?: [] | undefined } }
11450
- | { type: 'IndicesMigrationDone' }
11451
- | { type: 'ReferendaMigrationInit' }
11452
- | { type: 'ReferendaMigrationOngoing'; value: { lastKey?: PalletRcMigratorReferendaReferendaStage | undefined } }
11453
- | { type: 'ReferendaMigrationDone' }
11454
- | { type: 'BagsListMigrationInit' }
11455
- | { type: 'BagsListMigrationOngoing'; value: { nextKey?: PalletRcMigratorStakingBagsListBagsListStage | undefined } }
11456
- | { type: 'BagsListMigrationDone' }
11457
- | { type: 'SchedulerMigrationInit' }
11458
- | { type: 'SchedulerMigrationOngoing'; value: { lastKey?: PalletRcMigratorSchedulerSchedulerStage | undefined } }
11459
- | { type: 'SchedulerAgendaMigrationOngoing'; value: { lastKey?: number | undefined } }
11460
- | { type: 'SchedulerMigrationDone' }
11461
- | { type: 'ConvictionVotingMigrationInit' }
11462
- | {
11463
- type: 'ConvictionVotingMigrationOngoing';
11464
- value: { lastKey?: PalletRcMigratorConvictionVotingConvictionVotingStage | undefined };
11465
- }
11466
- | { type: 'ConvictionVotingMigrationDone' }
11467
- | { type: 'BountiesMigrationInit' }
11468
- | { type: 'BountiesMigrationOngoing'; value: { lastKey?: PalletRcMigratorBountiesBountiesStage | undefined } }
11469
- | { type: 'BountiesMigrationDone' }
11470
- | { type: 'ChildBountiesMigrationInit' }
11471
- | {
11472
- type: 'ChildBountiesMigrationOngoing';
11473
- value: { lastKey?: PalletRcMigratorChildBountiesChildBountiesStage | undefined };
11474
- }
11475
- | { type: 'ChildBountiesMigrationDone' }
11476
- | { type: 'AssetRateMigrationInit' }
11477
- | {
11478
- type: 'AssetRateMigrationOngoing';
11479
- value: { lastKey?: PolkadotRuntimeCommonImplsVersionedLocatableAsset | undefined };
11480
- }
11481
- | { type: 'AssetRateMigrationDone' }
11482
- | { type: 'CrowdloanMigrationInit' }
11483
- | { type: 'CrowdloanMigrationOngoing'; value: { lastKey?: PalletRcMigratorCrowdloanCrowdloanStage | undefined } }
11484
- | { type: 'CrowdloanMigrationDone' }
11485
- | { type: 'TreasuryMigrationInit' }
11486
- | { type: 'TreasuryMigrationOngoing'; value: { lastKey?: PalletRcMigratorTreasuryTreasuryStage | undefined } }
11487
- | { type: 'TreasuryMigrationDone' }
11488
- | { type: 'RecoveryMigrationInit' }
11489
- | { type: 'RecoveryMigrationOngoing'; value: { lastKey?: PalletRcMigratorRecoveryRecoveryStage | undefined } }
11490
- | { type: 'RecoveryMigrationDone' }
11491
- | { type: 'SocietyMigrationInit' }
11492
- | { type: 'SocietyMigrationOngoing'; value: { lastKey?: PalletRcMigratorSocietySocietyStage | undefined } }
11493
- | { type: 'SocietyMigrationDone' }
11494
- | { type: 'StakingMigrationInit' }
11495
- | { type: 'StakingMigrationOngoing'; value: { nextKey?: PalletRcMigratorStakingStakingImplStakingStage | undefined } }
11496
- | { type: 'StakingMigrationDone' }
11497
- | { type: 'CoolOff'; value: { endAt: number } }
11498
- | { type: 'SignalMigrationFinish' }
11499
- | { type: 'MigrationDone' };
11500
-
11501
- export type PalletRcMigratorClaimsClaimsStage =
11502
- | { type: 'StorageValues' }
11503
- | { type: 'Claims'; value?: EthereumAddress | undefined }
11504
- | { type: 'Vesting'; value?: EthereumAddress | undefined }
11505
- | { type: 'Signing'; value?: EthereumAddress | undefined }
11506
- | { type: 'Preclaims'; value?: AccountId32 | undefined }
11507
- | { type: 'Finished' };
11508
-
11509
- export type PalletRcMigratorStakingNomPoolsNomPoolsStage =
11510
- | { type: 'StorageValues' }
11511
- | { type: 'PoolMembers'; value?: AccountId32 | undefined }
11512
- | { type: 'BondedPools'; value?: number | undefined }
11513
- | { type: 'RewardPools'; value?: number | undefined }
11514
- | { type: 'SubPoolsStorage'; value?: number | undefined }
11515
- | { type: 'Metadata'; value?: number | undefined }
11516
- | { type: 'ReversePoolIdLookup'; value?: AccountId32 | undefined }
11517
- | { type: 'ClaimPermissions'; value?: AccountId32 | undefined }
11518
- | { type: 'Finished' };
11519
-
11520
- export type PalletRcMigratorStakingDelegatedStakingDelegatedStakingStage =
11521
- | { type: 'Delegators'; value?: AccountId32 | undefined }
11522
- | { type: 'Agents'; value?: AccountId32 | undefined }
11523
- | { type: 'Finished' };
11524
-
11525
- export type PalletRcMigratorReferendaReferendaStage =
11526
- | { type: 'StorageValues' }
11527
- | { type: 'Metadata'; value?: number | undefined }
11528
- | { type: 'ReferendumInfo'; value?: number | undefined };
11529
-
11530
- export type PalletRcMigratorStakingBagsListBagsListStage =
11531
- | { type: 'ListNodes'; value?: AccountId32 | undefined }
11532
- | { type: 'ListBags'; value?: bigint | undefined }
11533
- | { type: 'Finished' };
11534
-
11535
- export type PalletRcMigratorSchedulerSchedulerStage =
11536
- | { type: 'IncompleteSince' }
11537
- | { type: 'Retries'; value?: [number, number] | undefined }
11538
- | { type: 'Lookup'; value?: FixedBytes<32> | undefined }
11539
- | { type: 'Finished' };
11540
-
11541
- export type PalletRcMigratorConvictionVotingConvictionVotingStage =
11542
- | { type: 'VotingFor'; value?: [AccountId32, number] | undefined }
11543
- | { type: 'ClassLocksFor'; value?: AccountId32 | undefined }
11544
- | { type: 'Finished' };
11545
-
11546
- export type PalletRcMigratorBountiesBountiesStage =
11547
- | { type: 'BountyCount' }
11548
- | { type: 'BountyApprovals' }
11549
- | { type: 'BountyDescriptions'; value: { lastKey?: number | undefined } }
11550
- | { type: 'Bounties'; value: { lastKey?: number | undefined } }
11551
- | { type: 'Finished' };
11552
-
11553
- export type PalletRcMigratorChildBountiesChildBountiesStage =
11554
- | { type: 'ChildBountyCount' }
11555
- | { type: 'ParentChildBounties'; value: { parentId?: number | undefined } }
11556
- | { type: 'ParentTotalChildBounties'; value: { parentId?: number | undefined } }
11557
- | { type: 'ChildBounties'; value: { ids?: [number, number] | undefined } }
11558
- | { type: 'ChildBountyDescriptionsV1'; value: { ids?: [number, number] | undefined } }
11559
- | { type: 'V0ToV1ChildBountyIds'; value: { childId?: number | undefined } }
11560
- | { type: 'ChildrenCuratorFees'; value: { childId?: number | undefined } }
11561
- | { type: 'Finished' };
11562
-
11563
- export type PalletRcMigratorCrowdloanCrowdloanStage =
11564
- | { type: 'Setup' }
11565
- | { type: 'LeaseReserve'; value: { lastKey?: PolkadotParachainPrimitivesPrimitivesId | undefined } }
11566
- | { type: 'CrowdloanContribution'; value: { lastKey?: PolkadotParachainPrimitivesPrimitivesId | undefined } }
11567
- | { type: 'CrowdloanReserve' }
11568
- | { type: 'Finished' };
11569
-
11570
- export type PalletRcMigratorTreasuryTreasuryStage =
11571
- | { type: 'ProposalCount' }
11572
- | { type: 'Proposals'; value?: number | undefined }
11573
- | { type: 'Approvals' }
11574
- | { type: 'SpendCount' }
11575
- | { type: 'Spends'; value?: number | undefined }
11576
- | { type: 'LastSpendPeriod' }
11577
- | { type: 'Funds' }
11578
- | { type: 'Finished' };
11579
-
11580
- export type PalletRcMigratorRecoveryRecoveryStage =
11581
- | { type: 'Recoverable'; value?: AccountId32 | undefined }
11582
- | { type: 'ActiveRecoveries'; value?: [AccountId32, AccountId32] | undefined }
11583
- | { type: 'Proxy'; value?: AccountId32 | undefined }
11584
- | { type: 'Finished' };
11585
-
11586
- export type PalletRcMigratorSocietySocietyStage =
11587
- | { type: 'Values' }
11588
- | { type: 'Members'; value?: AccountId32 | undefined }
11589
- | { type: 'Payouts'; value?: AccountId32 | undefined }
11590
- | { type: 'MemberByIndex'; value?: number | undefined }
11591
- | { type: 'SuspendedMembers'; value?: AccountId32 | undefined }
11592
- | { type: 'Candidates'; value?: AccountId32 | undefined }
11593
- | { type: 'Votes'; value?: [AccountId32, AccountId32] | undefined }
11594
- | { type: 'VoteClearCursor'; value?: AccountId32 | undefined }
11595
- | { type: 'DefenderVotes'; value?: [number, AccountId32] | undefined }
11596
- | { type: 'Finished' };
11597
-
11598
- export type PalletRcMigratorStakingStakingImplStakingStage =
11599
- | { type: 'Values' }
11600
- | { type: 'Invulnerables' }
11601
- | { type: 'Bonded'; value?: AccountId32 | undefined }
11602
- | { type: 'Ledger'; value?: AccountId32 | undefined }
11603
- | { type: 'Payee'; value?: AccountId32 | undefined }
11604
- | { type: 'Validators'; value?: AccountId32 | undefined }
11605
- | { type: 'Nominators'; value?: AccountId32 | undefined }
11606
- | { type: 'VirtualStakers'; value?: AccountId32 | undefined }
11607
- | { type: 'ErasStakersOverview'; value?: [number, AccountId32] | undefined }
11608
- | { type: 'ErasStakersPaged'; value?: [number, AccountId32, number] | undefined }
11609
- | { type: 'ClaimedRewards'; value?: [number, AccountId32] | undefined }
11610
- | { type: 'ErasValidatorPrefs'; value?: [number, AccountId32] | undefined }
11611
- | { type: 'ErasValidatorReward'; value?: number | undefined }
11612
- | { type: 'ErasRewardPoints'; value?: number | undefined }
11613
- | { type: 'ErasTotalStake'; value?: number | undefined }
11614
- | { type: 'UnappliedSlashes'; value?: number | undefined }
11615
- | { type: 'BondedEras' }
11616
- | { type: 'ValidatorSlashInEra'; value?: [number, AccountId32] | undefined }
11617
- | { type: 'NominatorSlashInEra'; value?: [number, AccountId32] | undefined }
11618
- | { type: 'SlashingSpans'; value?: AccountId32 | undefined }
11619
- | { type: 'SpanSlash'; value?: [AccountId32, number] | undefined }
11620
- | { type: 'Finished' };
11621
-
11622
- export type PalletRcMigratorQueuePriority =
11623
- | { type: 'Config' }
11624
- | { type: 'OverrideConfig'; value: [number, number] }
11625
- | { type: 'Disabled' };
11626
-
11627
- export type PalletRcMigratorManagerMultisigVote = {
11628
- who: SpRuntimeMultiSigner;
11629
- call: StagingKusamaRuntimeRuntimeCall;
11630
- round: number;
11631
- };
11632
-
11633
- export type PalletRcMigratorMigrationSettings = {
11634
- maxAccountsPerBlock?: number | undefined;
11635
- maxItemsPerBlock?: number | undefined;
11636
- };
11637
-
11638
11198
  export type FrameSystemExtensionsCheckNonZeroSender = {};
11639
11199
 
11640
11200
  export type FrameSystemExtensionsCheckSpecVersion = {};
@@ -11726,8 +11286,7 @@ export type StagingKusamaRuntimeRuntimeEvent =
11726
11286
  | { pallet: 'Coretime'; palletEvent: PolkadotRuntimeParachainsCoretimePalletEvent }
11727
11287
  | { pallet: 'XcmPallet'; palletEvent: PalletXcmEvent }
11728
11288
  | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
11729
- | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
11730
- | { pallet: 'RcMigrator'; palletEvent: PalletRcMigratorEvent };
11289
+ | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent };
11731
11290
 
11732
11291
  /**
11733
11292
  * Event for the System pallet.
@@ -14484,260 +14043,6 @@ export type PalletAssetRateEvent =
14484
14043
  data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; old: FixedU128; new: FixedU128 };
14485
14044
  };
14486
14045
 
14487
- /**
14488
- * The `Event` enum of this pallet
14489
- **/
14490
- export type PalletRcMigratorEvent =
14491
- /**
14492
- * A stage transition has occurred.
14493
- **/
14494
- | {
14495
- name: 'StageTransition';
14496
- data: {
14497
- /**
14498
- * The old stage before the transition.
14499
- **/
14500
- old: PalletRcMigratorMigrationStage;
14501
-
14502
- /**
14503
- * The new stage after the transition.
14504
- **/
14505
- new: PalletRcMigratorMigrationStage;
14506
- };
14507
- }
14508
- /**
14509
- * The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
14510
- * emitted.
14511
- *
14512
- * This event is equivalent to `StageTransition { new: Initializing, .. }` but is easier
14513
- * to understand. The activation is immediate and affects all events happening
14514
- * afterwards.
14515
- **/
14516
- | { name: 'AssetHubMigrationStarted' }
14517
- /**
14518
- * The Asset Hub Migration finished.
14519
- *
14520
- * This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
14521
- * to understand. The finishing is immediate and affects all events happening
14522
- * afterwards.
14523
- **/
14524
- | { name: 'AssetHubMigrationFinished' }
14525
- /**
14526
- * A query response has been received.
14527
- **/
14528
- | {
14529
- name: 'QueryResponseReceived';
14530
- data: {
14531
- /**
14532
- * The query ID.
14533
- **/
14534
- queryId: bigint;
14535
-
14536
- /**
14537
- * The response.
14538
- **/
14539
- response: XcmV3MaybeErrorCode;
14540
- };
14541
- }
14542
- /**
14543
- * A XCM message has been resent.
14544
- **/
14545
- | {
14546
- name: 'XcmResendAttempt';
14547
- data: {
14548
- /**
14549
- * The query ID.
14550
- **/
14551
- queryId: bigint;
14552
-
14553
- /**
14554
- * The error message.
14555
- **/
14556
- sendError?: XcmV3TraitsSendError | undefined;
14557
- };
14558
- }
14559
- /**
14560
- * The unprocessed message buffer size has been set.
14561
- **/
14562
- | {
14563
- name: 'UnprocessedMsgBufferSet';
14564
- data: {
14565
- /**
14566
- * The new size.
14567
- **/
14568
- new: number;
14569
-
14570
- /**
14571
- * The old size.
14572
- **/
14573
- old: number;
14574
- };
14575
- }
14576
- /**
14577
- * Whether the AH UMP queue was prioritized for the next block.
14578
- **/
14579
- | {
14580
- name: 'AhUmpQueuePrioritySet';
14581
- data: {
14582
- /**
14583
- * Indicates if AH UMP queue was successfully set as priority.
14584
- * If `false`, it means we're in the round-robin phase of our priority pattern
14585
- * (see [`Config::AhUmpQueuePriorityPattern`]), where no queue gets priority.
14586
- **/
14587
- prioritized: boolean;
14588
-
14589
- /**
14590
- * Current block number within the pattern cycle (1 to period).
14591
- **/
14592
- cycleBlock: number;
14593
-
14594
- /**
14595
- * Total number of blocks in the pattern cycle
14596
- **/
14597
- cyclePeriod: number;
14598
- };
14599
- }
14600
- /**
14601
- * The AH UMP queue priority config was set.
14602
- **/
14603
- | {
14604
- name: 'AhUmpQueuePriorityConfigSet';
14605
- data: {
14606
- /**
14607
- * The old priority pattern.
14608
- **/
14609
- old: PalletRcMigratorQueuePriority;
14610
-
14611
- /**
14612
- * The new priority pattern.
14613
- **/
14614
- new: PalletRcMigratorQueuePriority;
14615
- };
14616
- }
14617
- /**
14618
- * The total issuance was recorded.
14619
- **/
14620
- | { name: 'MigratedBalanceRecordSet'; data: { kept: bigint; migrated: bigint } }
14621
- /**
14622
- * The RC kept balance was consumed.
14623
- **/
14624
- | { name: 'MigratedBalanceConsumed'; data: { kept: bigint; migrated: bigint } }
14625
- /**
14626
- * The manager account id was set.
14627
- **/
14628
- | {
14629
- name: 'ManagerSet';
14630
- data: {
14631
- /**
14632
- * The old manager account id.
14633
- **/
14634
- old?: AccountId32 | undefined;
14635
-
14636
- /**
14637
- * The new manager account id.
14638
- **/
14639
- new?: AccountId32 | undefined;
14640
- };
14641
- }
14642
- /**
14643
- * An XCM message was sent.
14644
- **/
14645
- | {
14646
- name: 'XcmSent';
14647
- data: {
14648
- origin: StagingXcmV5Location;
14649
- destination: StagingXcmV5Location;
14650
- message: StagingXcmV5Xcm;
14651
- messageId: FixedBytes<32>;
14652
- };
14653
- }
14654
- /**
14655
- * The staking elections were paused.
14656
- **/
14657
- | { name: 'StakingElectionsPaused' }
14658
- /**
14659
- * The accounts to be preserved on Relay Chain were set.
14660
- **/
14661
- | {
14662
- name: 'AccountsPreserved';
14663
- data: {
14664
- /**
14665
- * The accounts that will be preserved.
14666
- **/
14667
- accounts: Array<AccountId32>;
14668
- };
14669
- }
14670
- /**
14671
- * The canceller account id was set.
14672
- **/
14673
- | {
14674
- name: 'CancellerSet';
14675
- data: {
14676
- /**
14677
- * The old canceller account id.
14678
- **/
14679
- old?: AccountId32 | undefined;
14680
-
14681
- /**
14682
- * The new canceller account id.
14683
- **/
14684
- new?: AccountId32 | undefined;
14685
- };
14686
- }
14687
- /**
14688
- * The migration was paused.
14689
- **/
14690
- | {
14691
- name: 'MigrationPaused';
14692
- data: {
14693
- /**
14694
- * The stage at which the migration was paused.
14695
- **/
14696
- pauseStage: PalletRcMigratorMigrationStage;
14697
- };
14698
- }
14699
- /**
14700
- * The migration was cancelled.
14701
- **/
14702
- | { name: 'MigrationCancelled' }
14703
- /**
14704
- * Some pure accounts were indexed for possibly receiving free `Any` proxies.
14705
- **/
14706
- | {
14707
- name: 'PureAccountsIndexed';
14708
- data: {
14709
- /**
14710
- * The number of indexed pure accounts.
14711
- **/
14712
- numPureAccounts: number;
14713
- };
14714
- }
14715
- /**
14716
- * The manager multisig dispatched something.
14717
- **/
14718
- | { name: 'ManagerMultisigDispatched'; data: { res: Result<[], DispatchError> } }
14719
- /**
14720
- * The manager multisig received a vote.
14721
- **/
14722
- | { name: 'ManagerMultisigVoted'; data: { votes: number } }
14723
- /**
14724
- * The migration settings were set.
14725
- **/
14726
- | {
14727
- name: 'MigrationSettingsSet';
14728
- data: {
14729
- /**
14730
- * The old migration settings.
14731
- **/
14732
- old?: PalletRcMigratorMigrationSettings | undefined;
14733
-
14734
- /**
14735
- * The new migration settings.
14736
- **/
14737
- new?: PalletRcMigratorMigrationSettings | undefined;
14738
- };
14739
- };
14740
-
14741
14046
  export type FrameSystemLastRuntimeUpgradeInfo = { specVersion: number; specName: string };
14742
14047
 
14743
14048
  export type FrameSystemCodeUpgradeAuthorization = { codeHash: H256; checkVersion: boolean };
@@ -14761,7 +14066,10 @@ export type FrameSystemLimitsWeightsPerClass = {
14761
14066
  reserved?: SpWeightsWeightV2Weight | undefined;
14762
14067
  };
14763
14068
 
14764
- export type FrameSystemLimitsBlockLength = { max: FrameSupportDispatchPerDispatchClassU32 };
14069
+ export type FrameSystemLimitsBlockLength = {
14070
+ max: FrameSupportDispatchPerDispatchClassU32;
14071
+ maxHeaderSize?: number | undefined;
14072
+ };
14765
14073
 
14766
14074
  export type FrameSupportDispatchPerDispatchClassU32 = { normal: number; operational: number; mandatory: number };
14767
14075
 
@@ -16685,7 +15993,8 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
16685
15993
  minimumBackingVotes: number;
16686
15994
  nodeFeatures: BitSequence;
16687
15995
  approvalVotingParams: PolkadotPrimitivesV9ApprovalVotingParams;
16688
- schedulerParams: PolkadotPrimitivesV9SchedulerParams;
15996
+ schedulerParams: PolkadotPrimitivesVstagingSchedulerParams;
15997
+ maxRelayParentSessionAge: number;
16689
15998
  };
16690
15999
 
16691
16000
  /**
@@ -16697,17 +16006,18 @@ export type PolkadotRuntimeParachainsConfigurationPalletError =
16697
16006
  **/
16698
16007
  'InvalidNewValue';
16699
16008
 
16700
- export type PolkadotRuntimeParachainsSharedAllowedRelayParentsTracker = {
16701
- buffer: Array<PolkadotRuntimeParachainsSharedRelayParentInfo>;
16009
+ export type PolkadotRuntimeParachainsSharedAllowedSchedulingParentsTracker = {
16010
+ buffer: Array<PolkadotRuntimeParachainsSharedSchedulingParentInfo>;
16702
16011
  latestNumber: number;
16703
16012
  };
16704
16013
 
16705
- export type PolkadotRuntimeParachainsSharedRelayParentInfo = {
16706
- relayParent: H256;
16707
- stateRoot: H256;
16014
+ export type PolkadotRuntimeParachainsSharedSchedulingParentInfo = {
16015
+ schedulingParent: H256;
16708
16016
  claimQueue: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<[number, Array<PolkadotPrimitivesV9CoreIndex>]>]>;
16709
16017
  };
16710
16018
 
16019
+ export type PolkadotPrimitivesVstagingRelayParentInfo = { number: number; stateRoot: H256 };
16020
+
16711
16021
  export type PolkadotRuntimeParachainsInclusionCandidatePendingAvailability = {
16712
16022
  core: PolkadotPrimitivesV9CoreIndex;
16713
16023
  hash: PolkadotCorePrimitivesCandidateHash;
@@ -16749,9 +16059,13 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
16749
16059
  * not recent enough or it didn't advance based on the last parachain block.
16750
16060
  **/
16751
16061
  | 'DisallowedRelayParent'
16062
+ /**
16063
+ * The candidate's scheduling-parent was not allowed.
16064
+ **/
16065
+ | 'DisallowedSchedulingParent'
16752
16066
  /**
16753
16067
  * Failed to compute group index for the core: either it's out of bounds
16754
- * or the relay parent doesn't belong to the current session.
16068
+ * or the scheduling parent doesn't belong to the current session.
16755
16069
  **/
16756
16070
  | 'InvalidAssignment'
16757
16071
  /**
@@ -16830,12 +16144,47 @@ export type PolkadotRuntimeParachainsParasInherentPalletError =
16830
16144
  **/
16831
16145
  | 'UnscheduledCandidate';
16832
16146
 
16833
- export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
16834
- | {
16835
- type: 'Pool';
16836
- value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV9CoreIndex };
16837
- }
16838
- | { type: 'Bulk'; value: PolkadotParachainPrimitivesPrimitivesId };
16147
+ export type PolkadotRuntimeParachainsSchedulerAssignerCoretimeSchedule = {
16148
+ assignments: Array<
16149
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600]
16150
+ >;
16151
+ endHint?: number | undefined;
16152
+ nextSchedule?: number | undefined;
16153
+ };
16154
+
16155
+ export type PolkadotRuntimeParachainsSchedulerAssignerCoretimeCoreDescriptor = {
16156
+ queue?: PolkadotRuntimeParachainsSchedulerAssignerCoretimeQueueDescriptor | undefined;
16157
+ currentWork?: PolkadotRuntimeParachainsSchedulerAssignerCoretimeWorkState | undefined;
16158
+ };
16159
+
16160
+ export type PolkadotRuntimeParachainsSchedulerAssignerCoretimeQueueDescriptor = { first: number; last: number };
16161
+
16162
+ export type PolkadotRuntimeParachainsSchedulerAssignerCoretimeWorkState = {
16163
+ assignments: Array<
16164
+ [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsSchedulerAssignerCoretimeAssignmentState]
16165
+ >;
16166
+ endHint?: number | undefined;
16167
+ pos: number;
16168
+ step: PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600;
16169
+ };
16170
+
16171
+ export type PolkadotRuntimeParachainsSchedulerAssignerCoretimeAssignmentState = {
16172
+ ratio: PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600;
16173
+ remaining: PolkadotRuntimeParachainsSchedulerAssignerCoretimePartsOf57600;
16174
+ };
16175
+
16176
+ /**
16177
+ * The `Error` enum of this pallet.
16178
+ **/
16179
+ export type PolkadotRuntimeParachainsSchedulerPalletError =
16180
+ /**
16181
+ * assign_core was called with no assignments.
16182
+ **/
16183
+ | 'AssignmentsEmpty'
16184
+ /**
16185
+ * assign_core with non allowed insertion.
16186
+ **/
16187
+ | 'DisallowedInsert';
16839
16188
 
16840
16189
  export type PolkadotRuntimeParachainsParasPvfCheckActiveVoteState = {
16841
16190
  votesAccept: BitSequence;
@@ -17176,29 +16525,18 @@ export type PolkadotRuntimeParachainsDisputesSlashingPalletError =
17176
16525
  **/
17177
16526
  | 'DuplicateSlashingReport';
17178
16527
 
17179
- export type PolkadotRuntimeParachainsOnDemandTypesCoreAffinityCount = {
17180
- coreIndex: PolkadotPrimitivesV9CoreIndex;
17181
- count: number;
17182
- };
17183
-
17184
- export type PolkadotRuntimeParachainsOnDemandTypesQueueStatusType = {
16528
+ export type PolkadotRuntimeParachainsOnDemandOrderStatus = {
17185
16529
  traffic: FixedU128;
17186
- nextIndex: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
17187
- smallestIndex: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
17188
- freedIndices: BinaryHeap;
16530
+ queue: PolkadotRuntimeParachainsOnDemandOrderQueue;
17189
16531
  };
17190
16532
 
17191
- export type PolkadotRuntimeParachainsOnDemandTypesQueueIndex = number;
17192
-
17193
- export type BinaryHeap = Array<PolkadotRuntimeParachainsOnDemandTypesReverseQueueIndex>;
17194
-
17195
- export type PolkadotRuntimeParachainsOnDemandTypesReverseQueueIndex = number;
17196
-
17197
- export type BinaryHeapEnqueuedOrder = Array<PolkadotRuntimeParachainsOnDemandTypesEnqueuedOrder>;
16533
+ export type PolkadotRuntimeParachainsOnDemandOrderQueue = {
16534
+ queue: Array<PolkadotRuntimeParachainsOnDemandEnqueuedOrder>;
16535
+ };
17198
16536
 
17199
- export type PolkadotRuntimeParachainsOnDemandTypesEnqueuedOrder = {
16537
+ export type PolkadotRuntimeParachainsOnDemandEnqueuedOrder = {
17200
16538
  paraId: PolkadotParachainPrimitivesPrimitivesId;
17201
- idx: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
16539
+ orderedAt: number;
17202
16540
  };
17203
16541
 
17204
16542
  /**
@@ -17219,46 +16557,6 @@ export type PolkadotRuntimeParachainsOnDemandPalletError =
17219
16557
  **/
17220
16558
  | 'InsufficientCredits';
17221
16559
 
17222
- export type PolkadotRuntimeParachainsAssignerCoretimeSchedule = {
17223
- assignments: Array<
17224
- [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimePartsOf57600]
17225
- >;
17226
- endHint?: number | undefined;
17227
- nextSchedule?: number | undefined;
17228
- };
17229
-
17230
- export type PolkadotRuntimeParachainsAssignerCoretimeCoreDescriptor = {
17231
- queue?: PolkadotRuntimeParachainsAssignerCoretimeQueueDescriptor | undefined;
17232
- currentWork?: PolkadotRuntimeParachainsAssignerCoretimeWorkState | undefined;
17233
- };
17234
-
17235
- export type PolkadotRuntimeParachainsAssignerCoretimeQueueDescriptor = { first: number; last: number };
17236
-
17237
- export type PolkadotRuntimeParachainsAssignerCoretimeWorkState = {
17238
- assignments: Array<
17239
- [PalletBrokerCoretimeInterfaceCoreAssignment, PolkadotRuntimeParachainsAssignerCoretimeAssignmentState]
17240
- >;
17241
- endHint?: number | undefined;
17242
- pos: number;
17243
- step: PolkadotRuntimeParachainsAssignerCoretimePartsOf57600;
17244
- };
17245
-
17246
- export type PolkadotRuntimeParachainsAssignerCoretimeAssignmentState = {
17247
- ratio: PolkadotRuntimeParachainsAssignerCoretimePartsOf57600;
17248
- remaining: PolkadotRuntimeParachainsAssignerCoretimePartsOf57600;
17249
- };
17250
-
17251
- /**
17252
- * The `Error` enum of this pallet.
17253
- **/
17254
- export type PolkadotRuntimeParachainsAssignerCoretimePalletError =
17255
- | 'AssignmentsEmpty'
17256
- /**
17257
- * assign_core is only allowed to append new assignments at the end of already existing
17258
- * ones or update the last entry.
17259
- **/
17260
- | 'DisallowedInsert';
17261
-
17262
16560
  export type PolkadotRuntimeCommonParasRegistrarParaInfo = {
17263
16561
  manager: AccountId32;
17264
16562
  deposit: bigint;
@@ -17843,89 +17141,15 @@ export type PalletBeefyError =
17843
17141
 
17844
17142
  export type SpConsensusBeefyMmrBeefyAuthoritySet = { id: bigint; len: number; keysetCommitment: H256 };
17845
17143
 
17846
- export type PalletRcMigratorAccountsAccountState =
17144
+ export type PalletRcMigratorAccountState =
17847
17145
  | { type: 'Migrate' }
17848
17146
  | { type: 'Preserve' }
17849
17147
  | { type: 'Part'; value: { free: bigint; reserved: bigint; consumers: number } };
17850
17148
 
17851
- export type PalletRcMigratorAccountsMigratedBalances = { kept: bigint; migrated: bigint };
17852
-
17853
17149
  /**
17854
17150
  * The `Error` enum of this pallet.
17855
17151
  **/
17856
- export type PalletRcMigratorError =
17857
- | 'Unreachable'
17858
- | 'OutOfWeight'
17859
- /**
17860
- * Failed to send XCM message to AH.
17861
- **/
17862
- | 'XcmError'
17863
- /**
17864
- * Failed to withdraw account from RC for migration to AH.
17865
- **/
17866
- | 'FailedToWithdrawAccount'
17867
- /**
17868
- * Indicates that the specified block number is in the past.
17869
- **/
17870
- | 'PastBlockNumber'
17871
- /**
17872
- * Indicates that there is not enough time for staking to lock.
17873
- *
17874
- * Schedule the migration at least two sessions before the current era ends.
17875
- **/
17876
- | 'EraEndsTooSoon'
17877
- /**
17878
- * Balance accounting overflow.
17879
- **/
17880
- | 'BalanceOverflow'
17881
- /**
17882
- * Balance accounting underflow.
17883
- **/
17884
- | 'BalanceUnderflow'
17885
- /**
17886
- * The query response is invalid.
17887
- **/
17888
- | 'InvalidQueryResponse'
17889
- /**
17890
- * The xcm query was not found.
17891
- **/
17892
- | 'QueryNotFound'
17893
- /**
17894
- * Failed to send XCM message.
17895
- **/
17896
- | 'XcmSendError'
17897
- /**
17898
- * The migration stage is not reachable from the current stage.
17899
- **/
17900
- | 'UnreachableStage'
17901
- /**
17902
- * Invalid parameter.
17903
- **/
17904
- | 'InvalidParameter'
17905
- /**
17906
- * The AH UMP queue priority configuration is already set.
17907
- **/
17908
- | 'AhUmpQueuePriorityAlreadySet'
17909
- /**
17910
- * The account is referenced by some other pallet. It might have freezes or holds.
17911
- **/
17912
- | 'AccountReferenced'
17913
- /**
17914
- * The XCM version is invalid.
17915
- **/
17916
- | 'BadXcmVersion'
17917
- /**
17918
- * The origin is invalid.
17919
- **/
17920
- | 'InvalidOrigin'
17921
- /**
17922
- * The stage transition is invalid.
17923
- **/
17924
- | 'InvalidStageTransition'
17925
- /**
17926
- * Unsigned validation failed.
17927
- **/
17928
- | 'UnsignedValidationFailed';
17152
+ export type PalletRcMigratorError = null;
17929
17153
 
17930
17154
  export type SpRuntimeBlockLazyBlock = { header: Header; extrinsics: Array<SpRuntimeOpaqueExtrinsic> };
17931
17155
 
@@ -18134,6 +17358,8 @@ export type SpConsensusBabeEpoch = {
18134
17358
 
18135
17359
  export type SpConsensusBabeOpaqueKeyOwnershipProof = Bytes;
18136
17360
 
17361
+ export type SpSessionRuntimeApiOpaqueGeneratedSessionKeys = { keys: Bytes; proof: Bytes };
17362
+
18137
17363
  export type FrameSupportViewFunctionsViewFunctionId = { prefix: FixedBytes<16>; suffix: FixedBytes<16> };
18138
17364
 
18139
17365
  export type FrameSupportViewFunctionsViewFunctionDispatchError =
@@ -18213,12 +17439,12 @@ export type StagingKusamaRuntimeRuntimeError =
18213
17439
  | { pallet: 'Configuration'; palletError: PolkadotRuntimeParachainsConfigurationPalletError }
18214
17440
  | { pallet: 'ParaInclusion'; palletError: PolkadotRuntimeParachainsInclusionPalletError }
18215
17441
  | { pallet: 'ParaInherent'; palletError: PolkadotRuntimeParachainsParasInherentPalletError }
17442
+ | { pallet: 'ParaScheduler'; palletError: PolkadotRuntimeParachainsSchedulerPalletError }
18216
17443
  | { pallet: 'Paras'; palletError: PolkadotRuntimeParachainsParasPalletError }
18217
17444
  | { pallet: 'Hrmp'; palletError: PolkadotRuntimeParachainsHrmpPalletError }
18218
17445
  | { pallet: 'ParasDisputes'; palletError: PolkadotRuntimeParachainsDisputesPalletError }
18219
17446
  | { pallet: 'ParasSlashing'; palletError: PolkadotRuntimeParachainsDisputesSlashingPalletError }
18220
17447
  | { pallet: 'OnDemandAssignmentProvider'; palletError: PolkadotRuntimeParachainsOnDemandPalletError }
18221
- | { pallet: 'CoretimeAssignmentProvider'; palletError: PolkadotRuntimeParachainsAssignerCoretimePalletError }
18222
17448
  | { pallet: 'Registrar'; palletError: PolkadotRuntimeCommonParasRegistrarPalletError }
18223
17449
  | { pallet: 'Slots'; palletError: PolkadotRuntimeCommonSlotsPalletError }
18224
17450
  | { pallet: 'Auctions'; palletError: PolkadotRuntimeCommonAuctionsPalletError }