@dedot/chaintypes 0.264.0 → 0.266.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.
@@ -80,8 +80,7 @@ export type AssetHubKusamaRuntimeRuntimeCall =
80
80
  | { pallet: 'ChildBounties'; palletCall: PalletChildBountiesCall }
81
81
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCall }
82
82
  | { pallet: 'MultiAssetBounties'; palletCall: PalletMultiAssetBountiesCall }
83
- | { pallet: 'AhOps'; palletCall: PalletAhOpsCall }
84
- | { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCall };
83
+ | { pallet: 'AhOps'; palletCall: PalletAhOpsCall };
85
84
 
86
85
  export type AssetHubKusamaRuntimeRuntimeCallLike =
87
86
  | { pallet: 'System'; palletCall: FrameSystemCallLike }
@@ -134,8 +133,7 @@ export type AssetHubKusamaRuntimeRuntimeCallLike =
134
133
  | { pallet: 'ChildBounties'; palletCall: PalletChildBountiesCallLike }
135
134
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCallLike }
136
135
  | { pallet: 'MultiAssetBounties'; palletCall: PalletMultiAssetBountiesCallLike }
137
- | { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike }
138
- | { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCallLike };
136
+ | { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike };
139
137
 
140
138
  /**
141
139
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -613,7 +611,10 @@ export type PalletSchedulerCall =
613
611
  };
614
612
  }
615
613
  /**
616
- * Cancel an anonymously scheduled task.
614
+ * Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for
615
+ * execution in, as well as the index of the task in that block's agenda.
616
+ *
617
+ * In the case of a named task, it will remove it from the lookup table as well.
617
618
  **/
618
619
  | { name: 'Cancel'; params: { when: number; index: number } }
619
620
  /**
@@ -671,6 +672,8 @@ export type PalletSchedulerCall =
671
672
  * clones of the original task. Their retry configuration will be derived from the
672
673
  * original task's configuration, but will have a lower value for `remaining` than the
673
674
  * original `total_retries`.
675
+ *
676
+ * This call **cannot** be used to set a retry configuration for a named task.
674
677
  **/
675
678
  | { name: 'SetRetry'; params: { task: [number, number]; retries: number; period: number } }
676
679
  /**
@@ -686,6 +689,8 @@ export type PalletSchedulerCall =
686
689
  * clones of the original task. Their retry configuration will be derived from the
687
690
  * original task's configuration, but will have a lower value for `remaining` than the
688
691
  * original `total_retries`.
692
+ *
693
+ * This is the only way to set a retry configuration for a named task.
689
694
  **/
690
695
  | { name: 'SetRetryNamed'; params: { id: FixedBytes<32>; retries: number; period: number } }
691
696
  /**
@@ -711,7 +716,10 @@ export type PalletSchedulerCallLike =
711
716
  };
712
717
  }
713
718
  /**
714
- * Cancel an anonymously scheduled task.
719
+ * Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for
720
+ * execution in, as well as the index of the task in that block's agenda.
721
+ *
722
+ * In the case of a named task, it will remove it from the lookup table as well.
715
723
  **/
716
724
  | { name: 'Cancel'; params: { when: number; index: number } }
717
725
  /**
@@ -769,6 +777,8 @@ export type PalletSchedulerCallLike =
769
777
  * clones of the original task. Their retry configuration will be derived from the
770
778
  * original task's configuration, but will have a lower value for `remaining` than the
771
779
  * original `total_retries`.
780
+ *
781
+ * This call **cannot** be used to set a retry configuration for a named task.
772
782
  **/
773
783
  | { name: 'SetRetry'; params: { task: [number, number]; retries: number; period: number } }
774
784
  /**
@@ -784,6 +794,8 @@ export type PalletSchedulerCallLike =
784
794
  * clones of the original task. Their retry configuration will be derived from the
785
795
  * original task's configuration, but will have a lower value for `remaining` than the
786
796
  * original `total_retries`.
797
+ *
798
+ * This is the only way to set a retry configuration for a named task.
787
799
  **/
788
800
  | { name: 'SetRetryNamed'; params: { id: FixedBytes<32>; retries: number; period: number } }
789
801
  /**
@@ -1719,14 +1731,16 @@ export type PalletCollatorSelectionCallLike =
1719
1731
  export type PalletSessionCall =
1720
1732
  /**
1721
1733
  * Sets the session key(s) of the function caller to `keys`.
1734
+ *
1722
1735
  * Allows an account to set its session key prior to becoming a validator.
1723
1736
  * This doesn't take effect until the next session.
1724
1737
  *
1725
- * The dispatch origin of this function must be signed.
1726
- *
1727
- * ## Complexity
1728
- * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1729
- * fixed.
1738
+ * - `origin`: The dispatch origin of this function must be signed.
1739
+ * - `keys`: The new session keys to set. These are the public keys of all sessions keys
1740
+ * setup in the runtime.
1741
+ * - `proof`: The proof that `origin` has access to the private keys of `keys`. See
1742
+ * [`impl_opaque_keys`](sp_runtime::impl_opaque_keys) for more information about the
1743
+ * proof format.
1730
1744
  **/
1731
1745
  | { name: 'SetKeys'; params: { keys: AssetHubKusamaRuntimeSessionKeys; proof: Bytes } }
1732
1746
  /**
@@ -1738,24 +1752,22 @@ export type PalletSessionCall =
1738
1752
  * convertible to a validator ID using the chain's typical addressing system (this usually
1739
1753
  * means being a controller account) or directly convertible into a validator ID (which
1740
1754
  * usually means being a stash account).
1741
- *
1742
- * ## Complexity
1743
- * - `O(1)` in number of key types. Actual cost depends on the number of length of
1744
- * `T::Keys::key_ids()` which is fixed.
1745
1755
  **/
1746
1756
  | { name: 'PurgeKeys' };
1747
1757
 
1748
1758
  export type PalletSessionCallLike =
1749
1759
  /**
1750
1760
  * Sets the session key(s) of the function caller to `keys`.
1761
+ *
1751
1762
  * Allows an account to set its session key prior to becoming a validator.
1752
1763
  * This doesn't take effect until the next session.
1753
1764
  *
1754
- * The dispatch origin of this function must be signed.
1755
- *
1756
- * ## Complexity
1757
- * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1758
- * fixed.
1765
+ * - `origin`: The dispatch origin of this function must be signed.
1766
+ * - `keys`: The new session keys to set. These are the public keys of all sessions keys
1767
+ * setup in the runtime.
1768
+ * - `proof`: The proof that `origin` has access to the private keys of `keys`. See
1769
+ * [`impl_opaque_keys`](sp_runtime::impl_opaque_keys) for more information about the
1770
+ * proof format.
1759
1771
  **/
1760
1772
  | { name: 'SetKeys'; params: { keys: AssetHubKusamaRuntimeSessionKeys; proof: BytesLike } }
1761
1773
  /**
@@ -1767,10 +1779,6 @@ export type PalletSessionCallLike =
1767
1779
  * convertible to a validator ID using the chain's typical addressing system (this usually
1768
1780
  * means being a controller account) or directly convertible into a validator ID (which
1769
1781
  * usually means being a stash account).
1770
- *
1771
- * ## Complexity
1772
- * - `O(1)` in number of key types. Actual cost depends on the number of length of
1773
- * `T::Keys::key_ids()` which is fixed.
1774
1782
  **/
1775
1783
  | { name: 'PurgeKeys' };
1776
1784
 
@@ -3712,7 +3720,9 @@ export type PalletMultisigCall =
3712
3720
  * Register approval for a dispatch to be made from a deterministic composite account if
3713
3721
  * approved by a total of `threshold - 1` of `other_signatories`.
3714
3722
  *
3715
- * If there are enough, then dispatch the call.
3723
+ * **If the approval threshold is met (including the sender's approval), this will
3724
+ * immediately execute the call.** This is the only way to execute a multisig call -
3725
+ * `approve_as_multi` will never trigger execution.
3716
3726
  *
3717
3727
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3718
3728
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
@@ -3728,8 +3738,9 @@ export type PalletMultisigCall =
3728
3738
  * transaction index) of the first approval transaction.
3729
3739
  * - `call`: The call to be executed.
3730
3740
  *
3731
- * NOTE: Unless this is the final approval, you will generally want to use
3732
- * `approve_as_multi` instead, since it only requires a hash of the call.
3741
+ * NOTE: For intermediate approvals (not the final approval), you should generally use
3742
+ * `approve_as_multi` instead, since it only requires a hash of the call and is more
3743
+ * efficient.
3733
3744
  *
3734
3745
  * Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise
3735
3746
  * on success, result is `Ok` and the result from the interior call, if it was executed,
@@ -3763,6 +3774,13 @@ export type PalletMultisigCall =
3763
3774
  * Register approval for a dispatch to be made from a deterministic composite account if
3764
3775
  * approved by a total of `threshold - 1` of `other_signatories`.
3765
3776
  *
3777
+ * **This function will NEVER execute the call, even if the approval threshold is
3778
+ * reached.** It only registers approval. To actually execute the call, `as_multi` must
3779
+ * be called with the full call data by any of the signatories.
3780
+ *
3781
+ * This function is more efficient than `as_multi` for intermediate approvals since it
3782
+ * only requires the call hash, not the full call data.
3783
+ *
3766
3784
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3767
3785
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
3768
3786
  * is cancelled.
@@ -3777,7 +3795,8 @@ export type PalletMultisigCall =
3777
3795
  * transaction index) of the first approval transaction.
3778
3796
  * - `call_hash`: The hash of the call to be executed.
3779
3797
  *
3780
- * NOTE: If this is the final approval, you will want to use `as_multi` instead.
3798
+ * NOTE: To execute the call after approvals are gathered, any signatory must call
3799
+ * `as_multi` with the full call data. This function cannot execute the call.
3781
3800
  *
3782
3801
  * ## Complexity
3783
3802
  * - `O(S)`.
@@ -3876,7 +3895,9 @@ export type PalletMultisigCallLike =
3876
3895
  * Register approval for a dispatch to be made from a deterministic composite account if
3877
3896
  * approved by a total of `threshold - 1` of `other_signatories`.
3878
3897
  *
3879
- * If there are enough, then dispatch the call.
3898
+ * **If the approval threshold is met (including the sender's approval), this will
3899
+ * immediately execute the call.** This is the only way to execute a multisig call -
3900
+ * `approve_as_multi` will never trigger execution.
3880
3901
  *
3881
3902
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3882
3903
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
@@ -3892,8 +3913,9 @@ export type PalletMultisigCallLike =
3892
3913
  * transaction index) of the first approval transaction.
3893
3914
  * - `call`: The call to be executed.
3894
3915
  *
3895
- * NOTE: Unless this is the final approval, you will generally want to use
3896
- * `approve_as_multi` instead, since it only requires a hash of the call.
3916
+ * NOTE: For intermediate approvals (not the final approval), you should generally use
3917
+ * `approve_as_multi` instead, since it only requires a hash of the call and is more
3918
+ * efficient.
3897
3919
  *
3898
3920
  * Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise
3899
3921
  * on success, result is `Ok` and the result from the interior call, if it was executed,
@@ -3927,6 +3949,13 @@ export type PalletMultisigCallLike =
3927
3949
  * Register approval for a dispatch to be made from a deterministic composite account if
3928
3950
  * approved by a total of `threshold - 1` of `other_signatories`.
3929
3951
  *
3952
+ * **This function will NEVER execute the call, even if the approval threshold is
3953
+ * reached.** It only registers approval. To actually execute the call, `as_multi` must
3954
+ * be called with the full call data by any of the signatories.
3955
+ *
3956
+ * This function is more efficient than `as_multi` for intermediate approvals since it
3957
+ * only requires the call hash, not the full call data.
3958
+ *
3930
3959
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3931
3960
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
3932
3961
  * is cancelled.
@@ -3941,7 +3970,8 @@ export type PalletMultisigCallLike =
3941
3970
  * transaction index) of the first approval transaction.
3942
3971
  * - `call_hash`: The hash of the call to be executed.
3943
3972
  *
3944
- * NOTE: If this is the final approval, you will want to use `as_multi` instead.
3973
+ * NOTE: To execute the call after approvals are gathered, any signatory must call
3974
+ * `as_multi` with the full call data. This function cannot execute the call.
3945
3975
  *
3946
3976
  * ## Complexity
3947
3977
  * - `O(S)`.
@@ -13297,13 +13327,11 @@ export type PalletStakingAsyncRcClientCall =
13297
13327
  * **Validation on AssetHub:**
13298
13328
  * - Keys are decoded as `T::RelayChainSessionKeys` to ensure they match RC's expected
13299
13329
  * format.
13330
+ * - Ownership proof is validated using `OpaqueKeys::ownership_proof_is_valid`.
13300
13331
  *
13301
13332
  * If validation passes, only the validated keys are sent to RC (with empty proof),
13302
13333
  * since RC trusts AH's validation.
13303
13334
  *
13304
- * Note: Ownership proof validation requires PR #1739 which is not backported to
13305
- * stable2512. The proof parameter will be added when that PR is backported.
13306
- *
13307
13335
  * **Fees:**
13308
13336
  * The actual cost of this call is higher than what the weight-based fee estimate shows.
13309
13337
  * In addition to the local transaction weight fee, the stash account is charged an XCM
@@ -13369,13 +13397,11 @@ export type PalletStakingAsyncRcClientCallLike =
13369
13397
  * **Validation on AssetHub:**
13370
13398
  * - Keys are decoded as `T::RelayChainSessionKeys` to ensure they match RC's expected
13371
13399
  * format.
13400
+ * - Ownership proof is validated using `OpaqueKeys::ownership_proof_is_valid`.
13372
13401
  *
13373
13402
  * If validation passes, only the validated keys are sent to RC (with empty proof),
13374
13403
  * since RC trusts AH's validation.
13375
13404
  *
13376
- * Note: Ownership proof validation requires PR #1739 which is not backported to
13377
- * stable2512. The proof parameter will be added when that PR is backported.
13378
- *
13379
13405
  * **Fees:**
13380
13406
  * The actual cost of this call is higher than what the weight-based fee estimate shows.
13381
13407
  * In addition to the local transaction weight fee, the stash account is charged an XCM
@@ -13835,12 +13861,6 @@ export type PalletStakingAsyncPalletCall =
13835
13861
  * have enough blocks to get a result.
13836
13862
  **/
13837
13863
  | { name: 'ForceNewEra' }
13838
- /**
13839
- * Set the validators who cannot be slashed (if any).
13840
- *
13841
- * The dispatch origin must be Root.
13842
- **/
13843
- | { name: 'SetInvulnerables'; params: { invulnerables: Array<AccountId32> } }
13844
13864
  /**
13845
13865
  * Force a current staker to become completely unstaked, immediately.
13846
13866
  *
@@ -14022,7 +14042,7 @@ export type PalletStakingAsyncPalletCall =
14022
14042
  *
14023
14043
  * If a validator has more than [`Config::MaxExposurePageSize`] nominators backing
14024
14044
  * them, then the list of nominators is paged, with each page being capped at
14025
- * [`Config::MaxExposurePageSize`.] If a validator has more than one page of nominators,
14045
+ * [`Config::MaxExposurePageSize`]. If a validator has more than one page of nominators,
14026
14046
  * the call needs to be made for each page separately in order for all the nominators
14027
14047
  * backing a validator to receive the reward. The nominators are not sorted across pages
14028
14048
  * and so it should not be assumed the highest staker would be on the topmost page and vice
@@ -14297,12 +14317,6 @@ export type PalletStakingAsyncPalletCallLike =
14297
14317
  * have enough blocks to get a result.
14298
14318
  **/
14299
14319
  | { name: 'ForceNewEra' }
14300
- /**
14301
- * Set the validators who cannot be slashed (if any).
14302
- *
14303
- * The dispatch origin must be Root.
14304
- **/
14305
- | { name: 'SetInvulnerables'; params: { invulnerables: Array<AccountId32Like> } }
14306
14320
  /**
14307
14321
  * Force a current staker to become completely unstaked, immediately.
14308
14322
  *
@@ -14484,7 +14498,7 @@ export type PalletStakingAsyncPalletCallLike =
14484
14498
  *
14485
14499
  * If a validator has more than [`Config::MaxExposurePageSize`] nominators backing
14486
14500
  * them, then the list of nominators is paged, with each page being capped at
14487
- * [`Config::MaxExposurePageSize`.] If a validator has more than one page of nominators,
14501
+ * [`Config::MaxExposurePageSize`]. If a validator has more than one page of nominators,
14488
14502
  * the call needs to be made for each page separately in order for all the nominators
14489
14503
  * backing a validator to receive the reward. The nominators are not sorted across pages
14490
14504
  * and so it should not be assumed the highest staker would be on the topmost page and vice
@@ -16787,1117 +16801,234 @@ export type PalletAhOpsCallLike =
16787
16801
  };
16788
16802
  };
16789
16803
 
16804
+ export type FrameSystemExtensionsAuthorizeCall = {};
16805
+
16806
+ export type FrameSystemExtensionsCheckNonZeroSender = {};
16807
+
16808
+ export type FrameSystemExtensionsCheckSpecVersion = {};
16809
+
16810
+ export type FrameSystemExtensionsCheckTxVersion = {};
16811
+
16812
+ export type FrameSystemExtensionsCheckGenesis = {};
16813
+
16814
+ export type FrameSystemExtensionsCheckMortality = Era;
16815
+
16816
+ export type FrameSystemExtensionsCheckNonce = number;
16817
+
16818
+ export type FrameSystemExtensionsCheckWeight = {};
16819
+
16820
+ export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
16821
+ tip: bigint;
16822
+ assetId?: StagingXcmV5Location | undefined;
16823
+ };
16824
+
16825
+ export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
16826
+
16827
+ export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
16828
+
16829
+ export type PalletReviveEvmTxExtensionSetOrigin = {};
16830
+
16831
+ export type FrameSystemAccountInfo = {
16832
+ nonce: number;
16833
+ consumers: number;
16834
+ providers: number;
16835
+ sufficients: number;
16836
+ data: PalletBalancesAccountData;
16837
+ };
16838
+
16839
+ export type PalletBalancesAccountData = {
16840
+ free: bigint;
16841
+ reserved: bigint;
16842
+ frozen: bigint;
16843
+ flags: PalletBalancesExtraFlags;
16844
+ };
16845
+
16846
+ export type PalletBalancesExtraFlags = bigint;
16847
+
16848
+ export type FrameSupportDispatchPerDispatchClass = {
16849
+ normal: SpWeightsWeightV2Weight;
16850
+ operational: SpWeightsWeightV2Weight;
16851
+ mandatory: SpWeightsWeightV2Weight;
16852
+ };
16853
+
16854
+ export type FrameSystemEventRecord = { phase: Phase; event: AssetHubKusamaRuntimeRuntimeEvent; topics: Array<H256> };
16855
+
16856
+ export type AssetHubKusamaRuntimeRuntimeEvent =
16857
+ | { pallet: 'System'; palletEvent: FrameSystemEvent }
16858
+ | { pallet: 'ParachainSystem'; palletEvent: CumulusPalletParachainSystemEvent }
16859
+ | { pallet: 'MultiBlockMigrations'; palletEvent: PalletMigrationsEvent }
16860
+ | { pallet: 'Preimage'; palletEvent: PalletPreimageEvent }
16861
+ | { pallet: 'Scheduler'; palletEvent: PalletSchedulerEvent }
16862
+ | { pallet: 'Parameters'; palletEvent: PalletParametersEvent }
16863
+ | { pallet: 'Balances'; palletEvent: PalletBalancesEvent }
16864
+ | { pallet: 'TransactionPayment'; palletEvent: PalletTransactionPaymentEvent }
16865
+ | { pallet: 'AssetTxPayment'; palletEvent: PalletAssetConversionTxPaymentEvent }
16866
+ | { pallet: 'Vesting'; palletEvent: PalletVestingEvent }
16867
+ | { pallet: 'Claims'; palletEvent: PolkadotRuntimeCommonClaimsPalletEvent }
16868
+ | { pallet: 'CollatorSelection'; palletEvent: PalletCollatorSelectionEvent }
16869
+ | { pallet: 'Session'; palletEvent: PalletSessionEvent }
16870
+ | { pallet: 'XcmpQueue'; palletEvent: CumulusPalletXcmpQueueEvent }
16871
+ | { pallet: 'PolkadotXcm'; palletEvent: PalletXcmEvent }
16872
+ | { pallet: 'CumulusXcm'; palletEvent: CumulusPalletXcmEvent }
16873
+ | { pallet: 'ToPolkadotXcmRouter'; palletEvent: PalletXcmBridgeHubRouterEvent }
16874
+ | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
16875
+ | { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
16876
+ | { pallet: 'Multisig'; palletEvent: PalletMultisigEvent }
16877
+ | { pallet: 'Proxy'; palletEvent: PalletProxyEvent }
16878
+ | { pallet: 'Indices'; palletEvent: PalletIndicesEvent }
16879
+ | { pallet: 'Assets'; palletEvent: PalletAssetsEvent }
16880
+ | { pallet: 'Uniques'; palletEvent: PalletUniquesEvent }
16881
+ | { pallet: 'Nfts'; palletEvent: PalletNftsEvent }
16882
+ | { pallet: 'ForeignAssets'; palletEvent: PalletAssetsEvent002 }
16883
+ | { pallet: 'NftFractionalization'; palletEvent: PalletNftFractionalizationEvent }
16884
+ | { pallet: 'PoolAssets'; palletEvent: PalletAssetsEvent }
16885
+ | { pallet: 'AssetConversion'; palletEvent: PalletAssetConversionEvent }
16886
+ | { pallet: 'Recovery'; palletEvent: PalletRecoveryEvent }
16887
+ | { pallet: 'Society'; palletEvent: PalletSocietyEvent }
16888
+ | { pallet: 'Revive'; palletEvent: PalletReviveEvent }
16889
+ | { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
16890
+ | { pallet: 'NominationPools'; palletEvent: PalletNominationPoolsEvent }
16891
+ | { pallet: 'VoterList'; palletEvent: PalletBagsListEvent }
16892
+ | { pallet: 'DelegatedStaking'; palletEvent: PalletDelegatedStakingEvent }
16893
+ | { pallet: 'StakingRcClient'; palletEvent: PalletStakingAsyncRcClientEvent }
16894
+ | { pallet: 'MultiBlockElection'; palletEvent: PalletElectionProviderMultiBlockEvent }
16895
+ | { pallet: 'MultiBlockElectionVerifier'; palletEvent: PalletElectionProviderMultiBlockVerifierImplsPalletEvent }
16896
+ | { pallet: 'MultiBlockElectionSigned'; palletEvent: PalletElectionProviderMultiBlockSignedPalletEvent }
16897
+ | { pallet: 'Staking'; palletEvent: PalletStakingAsyncPalletEvent }
16898
+ | { pallet: 'Treasury'; palletEvent: PalletTreasuryEvent }
16899
+ | { pallet: 'ConvictionVoting'; palletEvent: PalletConvictionVotingEvent }
16900
+ | { pallet: 'Referenda'; palletEvent: PalletReferendaEvent }
16901
+ | { pallet: 'Whitelist'; palletEvent: PalletWhitelistEvent }
16902
+ | { pallet: 'Bounties'; palletEvent: PalletBountiesEvent }
16903
+ | { pallet: 'ChildBounties'; palletEvent: PalletChildBountiesEvent }
16904
+ | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
16905
+ | { pallet: 'MultiAssetBounties'; palletEvent: PalletMultiAssetBountiesEvent }
16906
+ | { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent };
16907
+
16790
16908
  /**
16791
- * Contains a variant per dispatchable extrinsic that this pallet has.
16909
+ * Event for the System pallet.
16792
16910
  **/
16793
- export type PalletAhMigratorCall =
16911
+ export type FrameSystemEvent =
16794
16912
  /**
16795
- * Receive accounts from the Relay Chain.
16796
- *
16797
- * The accounts sent with `pallet_rc_migrator::Pallet::migrate_accounts` function.
16913
+ * An extrinsic completed successfully.
16798
16914
  **/
16799
- | { name: 'ReceiveAccounts'; params: { accounts: Array<PalletRcMigratorAccountsAccount> } }
16915
+ | { name: 'ExtrinsicSuccess'; data: { dispatchInfo: FrameSystemDispatchEventInfo } }
16800
16916
  /**
16801
- * Receive multisigs from the Relay Chain.
16802
- *
16803
- * This will be called from an XCM `Transact` inside a DMP from the relay chain. The
16804
- * multisigs were prepared by
16805
- * `pallet_rc_migrator::multisig::MultisigMigrator::migrate_many`.
16917
+ * An extrinsic failed.
16806
16918
  **/
16807
- | { name: 'ReceiveMultisigs'; params: { accounts: Array<PalletRcMigratorMultisigRcMultisig> } }
16919
+ | { name: 'ExtrinsicFailed'; data: { dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo } }
16808
16920
  /**
16809
- * Receive proxies from the Relay Chain.
16921
+ * `:code` was updated.
16810
16922
  **/
16811
- | { name: 'ReceiveProxyProxies'; params: { proxies: Array<PalletRcMigratorProxyRcProxy> } }
16923
+ | { name: 'CodeUpdated' }
16812
16924
  /**
16813
- * Receive proxy announcements from the Relay Chain.
16925
+ * A new account was created.
16814
16926
  **/
16815
- | { name: 'ReceiveProxyAnnouncements'; params: { announcements: Array<PalletRcMigratorProxyRcProxyAnnouncement> } }
16816
- | { name: 'ReceivePreimageChunks'; params: { chunks: Array<PalletRcMigratorPreimageChunksRcPreimageChunk> } }
16817
- | {
16818
- name: 'ReceivePreimageRequestStatus';
16819
- params: { requestStatus: Array<PalletRcMigratorPreimageRequestStatusPortableRequestStatus> };
16820
- }
16821
- | {
16822
- name: 'ReceivePreimageLegacyStatus';
16823
- params: { legacyStatus: Array<PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus> };
16824
- }
16825
- | { name: 'ReceiveNomPoolsMessages'; params: { messages: Array<PalletRcMigratorStakingNomPoolsRcNomPoolsMessage> } }
16826
- | { name: 'ReceiveVestingSchedules'; params: { schedules: Array<PalletRcMigratorVestingRcVestingSchedule> } }
16927
+ | { name: 'NewAccount'; data: { account: AccountId32 } }
16827
16928
  /**
16828
- * Receive referendum counts, deciding counts, votes for the track queue.
16929
+ * An account was reaped.
16829
16930
  **/
16830
- | { name: 'ReceiveReferendaValues'; params: { values: Array<PalletRcMigratorReferendaReferendaMessage> } }
16931
+ | { name: 'KilledAccount'; data: { account: AccountId32 } }
16831
16932
  /**
16832
- * Receive referendums from the Relay Chain.
16933
+ * On on-chain remark happened.
16833
16934
  **/
16834
- | { name: 'ReceiveReferendums'; params: { referendums: Array<[number, PalletReferendaReferendumInfo]> } }
16835
- | { name: 'ReceiveClaims'; params: { messages: Array<PalletRcMigratorClaimsRcClaimsMessage> } }
16836
- | {
16837
- name: 'ReceiveBagsListMessages';
16838
- params: { messages: Array<PalletRcMigratorStakingBagsListPortableBagsListMessage> };
16839
- }
16840
- | { name: 'ReceiveSchedulerMessages'; params: { messages: Array<PalletRcMigratorSchedulerRcSchedulerMessage> } }
16841
- | { name: 'ReceiveIndices'; params: { indices: Array<PalletRcMigratorIndicesRcIndicesIndex> } }
16842
- | {
16843
- name: 'ReceiveConvictionVotingMessages';
16844
- params: { messages: Array<PalletRcMigratorConvictionVotingRcConvictionVotingMessage> };
16845
- }
16846
- | { name: 'ReceiveBountiesMessages'; params: { messages: Array<PalletRcMigratorBountiesRcBountiesMessage> } }
16847
- | {
16848
- name: 'ReceiveAssetRates';
16849
- params: { rates: Array<[PolkadotRuntimeCommonImplsVersionedLocatableAsset, FixedU128]> };
16850
- }
16851
- | { name: 'ReceiveCrowdloanMessages'; params: { messages: Array<PalletRcMigratorCrowdloanRcCrowdloanMessage> } }
16852
- | { name: 'ReceiveReferendaMetadata'; params: { metadata: Array<[number, H256]> } }
16853
- | { name: 'ReceiveTreasuryMessages'; params: { messages: Array<PalletRcMigratorTreasuryPortableTreasuryMessage> } }
16854
- | {
16855
- name: 'ReceiveSchedulerAgendaMessages';
16856
- params: { messages: Array<PalletRcMigratorSchedulerSchedulerAgendaMessage> };
16857
- }
16858
- | {
16859
- name: 'ReceiveDelegatedStakingMessages';
16860
- params: { messages: Array<PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage> };
16861
- }
16862
- | {
16863
- name: 'ReceiveChildBountiesMessages';
16864
- params: { messages: Array<PalletRcMigratorChildBountiesPortableChildBountiesMessage> };
16865
- }
16866
- | {
16867
- name: 'ReceiveStakingMessages';
16868
- params: { messages: Array<PalletRcMigratorStakingMessagePortableStakingMessage> };
16869
- }
16870
- | { name: 'ReceiveRecoveryMessages'; params: { messages: Array<PalletRcMigratorRecoveryPortableRecoveryMessage> } }
16871
- | { name: 'ReceiveSocietyMessages'; params: { messages: Array<PalletRcMigratorSocietyPortableSocietyMessage> } }
16935
+ | { name: 'Remarked'; data: { sender: AccountId32; hash: H256 } }
16872
16936
  /**
16873
- * Set the migration stage.
16874
- *
16875
- * This call is intended for emergency use only and is guarded by the
16876
- * [`Config::AdminOrigin`].
16937
+ * A [`Task`] has started executing
16877
16938
  **/
16878
- | { name: 'ForceSetStage'; params: { stage: PalletAhMigratorMigrationStage } }
16939
+ | { name: 'TaskStarted'; data: { task: AssetHubKusamaRuntimeRuntimeTask } }
16879
16940
  /**
16880
- * Start the data migration.
16881
- *
16882
- * This is typically called by the Relay Chain to start the migration on the Asset Hub and
16883
- * receive a handshake message indicating the Asset Hub's readiness.
16941
+ * A [`Task`] has finished executing.
16884
16942
  **/
16885
- | { name: 'StartMigration' }
16943
+ | { name: 'TaskCompleted'; data: { task: AssetHubKusamaRuntimeRuntimeTask } }
16886
16944
  /**
16887
- * Set the DMP queue priority configuration.
16888
- *
16889
- * Can only be called by the `AdminOrigin`.
16945
+ * A [`Task`] failed during execution.
16890
16946
  **/
16891
- | { name: 'SetDmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
16947
+ | { name: 'TaskFailed'; data: { task: AssetHubKusamaRuntimeRuntimeTask; err: DispatchError } }
16892
16948
  /**
16893
- * Set the manager account id.
16894
- *
16895
- * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
16896
- * can not set the manager account id via `set_manager` call.
16949
+ * An upgrade was authorized.
16897
16950
  **/
16898
- | { name: 'SetManager'; params: { new?: AccountId32 | undefined } }
16951
+ | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } }
16899
16952
  /**
16900
- * Finish the migration.
16901
- *
16902
- * This is typically called by the Relay Chain to signal the migration has finished.
16903
- *
16904
- * The `data` parameter might be `None` if we are running the migration for a second time
16905
- * for some pallets and have already performed the checking account balance correction,
16906
- * so we do not need to do it this time.
16953
+ * An invalid authorized upgrade was rejected while trying to apply it.
16907
16954
  **/
16908
- | {
16909
- name: 'FinishMigration';
16910
- params: { data?: PalletRcMigratorMigrationFinishedData | undefined; coolOffEndAt: number };
16911
- }
16955
+ | { name: 'RejectedInvalidAuthorizedUpgrade'; data: { codeHash: H256; error: DispatchError } };
16956
+
16957
+ export type FrameSystemDispatchEventInfo = {
16958
+ weight: SpWeightsWeightV2Weight;
16959
+ class: FrameSupportDispatchDispatchClass;
16960
+ paysFee: FrameSupportDispatchPays;
16961
+ };
16962
+
16963
+ export type FrameSupportDispatchDispatchClass = 'Normal' | 'Operational' | 'Mandatory';
16964
+
16965
+ export type FrameSupportDispatchPays = 'Yes' | 'No';
16966
+
16967
+ export type SpRuntimeProvingTrieTrieError =
16968
+ | 'InvalidStateRoot'
16969
+ | 'IncompleteDatabase'
16970
+ | 'ValueAtIncompleteKey'
16971
+ | 'DecoderError'
16972
+ | 'InvalidHash'
16973
+ | 'DuplicateKey'
16974
+ | 'ExtraneousNode'
16975
+ | 'ExtraneousValue'
16976
+ | 'ExtraneousHashReference'
16977
+ | 'InvalidChildReference'
16978
+ | 'ValueMismatch'
16979
+ | 'IncompleteProof'
16980
+ | 'RootMismatch'
16981
+ | 'DecodeError';
16982
+
16983
+ /**
16984
+ * The `Event` enum of this pallet
16985
+ **/
16986
+ export type CumulusPalletParachainSystemEvent =
16912
16987
  /**
16913
- * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
16914
- * [Config::SendXcm] router which will be able to send messages to the Relay Chain during
16915
- * the migration.
16988
+ * The validation function has been scheduled to apply.
16916
16989
  **/
16917
- | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } };
16918
-
16919
- export type PalletAhMigratorCallLike =
16990
+ | { name: 'ValidationFunctionStored' }
16920
16991
  /**
16921
- * Receive accounts from the Relay Chain.
16922
- *
16923
- * The accounts sent with `pallet_rc_migrator::Pallet::migrate_accounts` function.
16992
+ * The validation function was applied as of the contained relay chain block number.
16924
16993
  **/
16925
- | { name: 'ReceiveAccounts'; params: { accounts: Array<PalletRcMigratorAccountsAccount> } }
16994
+ | { name: 'ValidationFunctionApplied'; data: { relayChainBlockNum: number } }
16926
16995
  /**
16927
- * Receive multisigs from the Relay Chain.
16928
- *
16929
- * This will be called from an XCM `Transact` inside a DMP from the relay chain. The
16930
- * multisigs were prepared by
16931
- * `pallet_rc_migrator::multisig::MultisigMigrator::migrate_many`.
16996
+ * The relay-chain aborted the upgrade process.
16932
16997
  **/
16933
- | { name: 'ReceiveMultisigs'; params: { accounts: Array<PalletRcMigratorMultisigRcMultisig> } }
16998
+ | { name: 'ValidationFunctionDiscarded' }
16934
16999
  /**
16935
- * Receive proxies from the Relay Chain.
17000
+ * Some downward messages have been received and will be processed.
16936
17001
  **/
16937
- | { name: 'ReceiveProxyProxies'; params: { proxies: Array<PalletRcMigratorProxyRcProxy> } }
17002
+ | { name: 'DownwardMessagesReceived'; data: { count: number } }
16938
17003
  /**
16939
- * Receive proxy announcements from the Relay Chain.
17004
+ * Downward messages were processed using the given weight.
16940
17005
  **/
16941
- | { name: 'ReceiveProxyAnnouncements'; params: { announcements: Array<PalletRcMigratorProxyRcProxyAnnouncement> } }
16942
- | { name: 'ReceivePreimageChunks'; params: { chunks: Array<PalletRcMigratorPreimageChunksRcPreimageChunk> } }
16943
- | {
16944
- name: 'ReceivePreimageRequestStatus';
16945
- params: { requestStatus: Array<PalletRcMigratorPreimageRequestStatusPortableRequestStatus> };
16946
- }
16947
- | {
16948
- name: 'ReceivePreimageLegacyStatus';
16949
- params: { legacyStatus: Array<PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus> };
16950
- }
16951
- | { name: 'ReceiveNomPoolsMessages'; params: { messages: Array<PalletRcMigratorStakingNomPoolsRcNomPoolsMessage> } }
16952
- | { name: 'ReceiveVestingSchedules'; params: { schedules: Array<PalletRcMigratorVestingRcVestingSchedule> } }
17006
+ | { name: 'DownwardMessagesProcessed'; data: { weightUsed: SpWeightsWeightV2Weight; dmqHead: H256 } }
16953
17007
  /**
16954
- * Receive referendum counts, deciding counts, votes for the track queue.
17008
+ * An upward message was sent to the relay chain.
16955
17009
  **/
16956
- | { name: 'ReceiveReferendaValues'; params: { values: Array<PalletRcMigratorReferendaReferendaMessage> } }
17010
+ | { name: 'UpwardMessageSent'; data: { messageHash?: FixedBytes<32> | undefined } };
17011
+
17012
+ /**
17013
+ * The `Event` enum of this pallet
17014
+ **/
17015
+ export type PalletMigrationsEvent =
16957
17016
  /**
16958
- * Receive referendums from the Relay Chain.
17017
+ * A Runtime upgrade started.
17018
+ *
17019
+ * Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`.
16959
17020
  **/
16960
- | { name: 'ReceiveReferendums'; params: { referendums: Array<[number, PalletReferendaReferendumInfo]> } }
16961
- | { name: 'ReceiveClaims'; params: { messages: Array<PalletRcMigratorClaimsRcClaimsMessage> } }
16962
17021
  | {
16963
- name: 'ReceiveBagsListMessages';
16964
- params: { messages: Array<PalletRcMigratorStakingBagsListPortableBagsListMessage> };
16965
- }
16966
- | { name: 'ReceiveSchedulerMessages'; params: { messages: Array<PalletRcMigratorSchedulerRcSchedulerMessage> } }
16967
- | { name: 'ReceiveIndices'; params: { indices: Array<PalletRcMigratorIndicesRcIndicesIndex> } }
16968
- | {
16969
- name: 'ReceiveConvictionVotingMessages';
16970
- params: { messages: Array<PalletRcMigratorConvictionVotingRcConvictionVotingMessage> };
16971
- }
16972
- | { name: 'ReceiveBountiesMessages'; params: { messages: Array<PalletRcMigratorBountiesRcBountiesMessage> } }
16973
- | {
16974
- name: 'ReceiveAssetRates';
16975
- params: { rates: Array<[PolkadotRuntimeCommonImplsVersionedLocatableAsset, FixedU128]> };
16976
- }
16977
- | { name: 'ReceiveCrowdloanMessages'; params: { messages: Array<PalletRcMigratorCrowdloanRcCrowdloanMessage> } }
16978
- | { name: 'ReceiveReferendaMetadata'; params: { metadata: Array<[number, H256]> } }
16979
- | { name: 'ReceiveTreasuryMessages'; params: { messages: Array<PalletRcMigratorTreasuryPortableTreasuryMessage> } }
16980
- | {
16981
- name: 'ReceiveSchedulerAgendaMessages';
16982
- params: { messages: Array<PalletRcMigratorSchedulerSchedulerAgendaMessage> };
16983
- }
16984
- | {
16985
- name: 'ReceiveDelegatedStakingMessages';
16986
- params: { messages: Array<PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage> };
16987
- }
16988
- | {
16989
- name: 'ReceiveChildBountiesMessages';
16990
- params: { messages: Array<PalletRcMigratorChildBountiesPortableChildBountiesMessage> };
16991
- }
16992
- | {
16993
- name: 'ReceiveStakingMessages';
16994
- params: { messages: Array<PalletRcMigratorStakingMessagePortableStakingMessage> };
16995
- }
16996
- | { name: 'ReceiveRecoveryMessages'; params: { messages: Array<PalletRcMigratorRecoveryPortableRecoveryMessage> } }
16997
- | { name: 'ReceiveSocietyMessages'; params: { messages: Array<PalletRcMigratorSocietyPortableSocietyMessage> } }
16998
- /**
16999
- * Set the migration stage.
17000
- *
17001
- * This call is intended for emergency use only and is guarded by the
17002
- * [`Config::AdminOrigin`].
17003
- **/
17004
- | { name: 'ForceSetStage'; params: { stage: PalletAhMigratorMigrationStage } }
17005
- /**
17006
- * Start the data migration.
17007
- *
17008
- * This is typically called by the Relay Chain to start the migration on the Asset Hub and
17009
- * receive a handshake message indicating the Asset Hub's readiness.
17010
- **/
17011
- | { name: 'StartMigration' }
17012
- /**
17013
- * Set the DMP queue priority configuration.
17014
- *
17015
- * Can only be called by the `AdminOrigin`.
17016
- **/
17017
- | { name: 'SetDmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
17018
- /**
17019
- * Set the manager account id.
17020
- *
17021
- * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
17022
- * can not set the manager account id via `set_manager` call.
17023
- **/
17024
- | { name: 'SetManager'; params: { new?: AccountId32Like | undefined } }
17025
- /**
17026
- * Finish the migration.
17027
- *
17028
- * This is typically called by the Relay Chain to signal the migration has finished.
17029
- *
17030
- * The `data` parameter might be `None` if we are running the migration for a second time
17031
- * for some pallets and have already performed the checking account balance correction,
17032
- * so we do not need to do it this time.
17033
- **/
17034
- | {
17035
- name: 'FinishMigration';
17036
- params: { data?: PalletRcMigratorMigrationFinishedData | undefined; coolOffEndAt: number };
17037
- }
17038
- /**
17039
- * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
17040
- * [Config::SendXcm] router which will be able to send messages to the Relay Chain during
17041
- * the migration.
17042
- **/
17043
- | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } };
17044
-
17045
- export type PalletRcMigratorAccountsAccount = {
17046
- who: AccountId32;
17047
- free: bigint;
17048
- reserved: bigint;
17049
- frozen: bigint;
17050
- holds: Array<FrameSupportTokensMiscIdAmount>;
17051
- freezes: Array<FrameSupportTokensMiscIdAmountPortableFreezeReason>;
17052
- locks: Array<PalletBalancesBalanceLock>;
17053
- unnamedReserve: bigint;
17054
- consumers: number;
17055
- providers: number;
17056
- };
17057
-
17058
- export type PalletRcMigratorPortableHoldReason =
17059
- | { type: 'Preimage'; value: PalletPreimageHoldReason }
17060
- | { type: 'Staking'; value: PalletStakingPalletHoldReason }
17061
- | { type: 'StateTrieMigration'; value: PalletStateTrieMigrationHoldReason }
17062
- | { type: 'DelegatedStaking'; value: PalletDelegatedStakingHoldReason }
17063
- | { type: 'Session'; value: PalletSessionHoldReason }
17064
- | { type: 'XcmPallet'; value: PalletXcmHoldReason };
17065
-
17066
- export type PalletPreimageHoldReason = 'Preimage';
17067
-
17068
- export type PalletStakingPalletHoldReason = 'Staking';
17069
-
17070
- export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
17071
-
17072
- export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
17073
-
17074
- export type PalletSessionHoldReason = 'Keys';
17075
-
17076
- export type PalletXcmHoldReason = 'AuthorizeAlias';
17077
-
17078
- export type PalletRcMigratorPortableFreezeReason = {
17079
- type: 'NominationPools';
17080
- value: PalletNominationPoolsFreezeReason;
17081
- };
17082
-
17083
- export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
17084
-
17085
- export type FrameSupportTokensMiscIdAmount = { id: PalletRcMigratorPortableHoldReason; amount: bigint };
17086
-
17087
- export type FrameSupportTokensMiscIdAmountPortableFreezeReason = {
17088
- id: PalletRcMigratorPortableFreezeReason;
17089
- amount: bigint;
17090
- };
17091
-
17092
- export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
17093
-
17094
- export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
17095
-
17096
- export type PalletRcMigratorMultisigRcMultisig = { creator: AccountId32; deposit: bigint };
17097
-
17098
- export type PalletRcMigratorProxyRcProxy = {
17099
- delegator: AccountId32;
17100
- deposit: bigint;
17101
- proxies: Array<PalletProxyProxyDefinition>;
17102
- };
17103
-
17104
- export type KusamaRuntimeConstantsProxyProxyType =
17105
- | 'Any'
17106
- | 'NonTransfer'
17107
- | 'Governance'
17108
- | 'Staking'
17109
- | 'CancelProxy'
17110
- | 'Auction'
17111
- | 'Society'
17112
- | 'NominationPools'
17113
- | 'Spokesperson'
17114
- | 'ParaRegistration';
17115
-
17116
- export type PalletProxyProxyDefinition = {
17117
- delegate: AccountId32;
17118
- proxyType: KusamaRuntimeConstantsProxyProxyType;
17119
- delay: number;
17120
- };
17121
-
17122
- export type PalletRcMigratorProxyRcProxyAnnouncement = { depositor: AccountId32; deposit: bigint };
17123
-
17124
- export type PalletRcMigratorPreimageChunksRcPreimageChunk = {
17125
- preimageHash: H256;
17126
- preimageLen: number;
17127
- chunkByteOffset: number;
17128
- chunkBytes: Bytes;
17129
- };
17130
-
17131
- export type PalletRcMigratorPreimageRequestStatusPortableRequestStatus = {
17132
- hash: H256;
17133
- requestStatus: PalletRcMigratorPreimageRequestStatusPortableRequestStatusInner;
17134
- };
17135
-
17136
- export type PalletRcMigratorPreimageRequestStatusPortableRequestStatusInner =
17137
- | { type: 'Unrequested'; value: { ticket: [AccountId32, Bytes]; len: number } }
17138
- | {
17139
- type: 'Requested';
17140
- value: { maybeTicket?: [AccountId32, Bytes] | undefined; count: number; maybeLen?: number | undefined };
17141
- };
17142
-
17143
- export type PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus = {
17144
- hash: H256;
17145
- depositor: AccountId32;
17146
- deposit: bigint;
17147
- };
17148
-
17149
- export type PalletRcMigratorStakingNomPoolsRcNomPoolsMessage =
17150
- | { type: 'StorageValues'; value: { values: PalletRcMigratorStakingNomPoolsNomPoolsStorageValues } }
17151
- | { type: 'PoolMembers'; value: { member: [AccountId32, PalletNominationPoolsPoolMember] } }
17152
- | { type: 'BondedPools'; value: { pool: [number, PalletNominationPoolsBondedPoolInner] } }
17153
- | { type: 'RewardPools'; value: { rewards: [number, PalletRcMigratorStakingNomPoolsAliasRewardPool] } }
17154
- | { type: 'SubPoolsStorage'; value: { subPools: [number, PalletRcMigratorStakingNomPoolsAliasSubPools] } }
17155
- | { type: 'Metadata'; value: { meta: [number, Bytes] } }
17156
- | { type: 'ReversePoolIdLookup'; value: { lookups: [AccountId32, number] } }
17157
- | { type: 'ClaimPermissions'; value: { perms: [AccountId32, PalletNominationPoolsClaimPermission] } };
17158
-
17159
- export type PalletRcMigratorStakingNomPoolsNomPoolsStorageValues = {
17160
- totalValueLocked?: bigint | undefined;
17161
- minJoinBond?: bigint | undefined;
17162
- minCreateBond?: bigint | undefined;
17163
- maxPools?: number | undefined;
17164
- maxPoolMembers?: number | undefined;
17165
- maxPoolMembersPerPool?: number | undefined;
17166
- globalMaxCommission?: Perbill | undefined;
17167
- lastPoolId?: number | undefined;
17168
- };
17169
-
17170
- export type PalletNominationPoolsPoolMember = {
17171
- poolId: number;
17172
- points: bigint;
17173
- lastRecordedRewardCounter: FixedU128;
17174
- unbondingEras: Array<[number, bigint]>;
17175
- };
17176
-
17177
- export type PalletNominationPoolsBondedPoolInner = {
17178
- commission: PalletNominationPoolsCommission;
17179
- memberCounter: number;
17180
- points: bigint;
17181
- roles: PalletNominationPoolsPoolRoles;
17182
- state: PalletNominationPoolsPoolState;
17183
- };
17184
-
17185
- export type PalletNominationPoolsCommission = {
17186
- current?: [Perbill, AccountId32] | undefined;
17187
- max?: Perbill | undefined;
17188
- changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
17189
- throttleFrom?: number | undefined;
17190
- claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
17191
- };
17192
-
17193
- export type PalletNominationPoolsPoolRoles = {
17194
- depositor: AccountId32;
17195
- root?: AccountId32 | undefined;
17196
- nominator?: AccountId32 | undefined;
17197
- bouncer?: AccountId32 | undefined;
17198
- };
17199
-
17200
- export type PalletRcMigratorStakingNomPoolsAliasRewardPool = {
17201
- lastRecordedRewardCounter: FixedU128;
17202
- lastRecordedTotalPayouts: bigint;
17203
- totalRewardsClaimed: bigint;
17204
- totalCommissionPending: bigint;
17205
- totalCommissionClaimed: bigint;
17206
- };
17207
-
17208
- export type PalletRcMigratorStakingNomPoolsAliasSubPools = {
17209
- noEra: PalletRcMigratorStakingNomPoolsAliasUnbondPool;
17210
- withEra: Array<[number, PalletRcMigratorStakingNomPoolsAliasUnbondPool]>;
17211
- };
17212
-
17213
- export type PalletRcMigratorStakingNomPoolsAliasUnbondPool = { points: bigint; balance: bigint };
17214
-
17215
- export type PalletRcMigratorVestingRcVestingSchedule = { who: AccountId32; schedules: Array<PalletVestingVestingInfo> };
17216
-
17217
- export type PalletRcMigratorReferendaReferendaMessage = {
17218
- referendumCount?: number | undefined;
17219
- decidingCount: Array<[number, number]>;
17220
- trackQueue: Array<[number, Array<[number, bigint]>]>;
17221
- };
17222
-
17223
- export type PalletReferendaReferendumInfo =
17224
- | { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
17225
- | { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
17226
- | { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
17227
- | { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
17228
- | { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
17229
- | { type: 'Killed'; value: number };
17230
-
17231
- export type AssetHubKusamaRuntimeAhMigrationRcPalletsOrigin =
17232
- | { type: 'System'; value: FrameSupportDispatchRawOrigin }
17233
- | { type: 'Origins'; value: AssetHubKusamaRuntimeGovernanceOriginsPalletCustomOriginsOrigin };
17234
-
17235
- export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
17236
-
17237
- export type PalletReferendaReferendumStatus = {
17238
- track: number;
17239
- origin: AssetHubKusamaRuntimeAhMigrationRcPalletsOrigin;
17240
- proposal: FrameSupportPreimagesBounded;
17241
- enactment: FrameSupportScheduleDispatchTime;
17242
- submitted: number;
17243
- submissionDeposit: PalletReferendaDeposit;
17244
- decisionDeposit?: PalletReferendaDeposit | undefined;
17245
- deciding?: PalletReferendaDecidingStatus | undefined;
17246
- tally: PalletConvictionVotingTally;
17247
- inQueue: boolean;
17248
- alarm?: [number, [number, number]] | undefined;
17249
- };
17250
-
17251
- export type PalletReferendaDeposit = { who: AccountId32; amount: bigint };
17252
-
17253
- export type PalletReferendaDecidingStatus = { since: number; confirming?: number | undefined };
17254
-
17255
- export type PalletRcMigratorClaimsRcClaimsMessage =
17256
- | { type: 'StorageValues'; value: { total: bigint } }
17257
- | { type: 'Claims'; value: [EthereumAddress, bigint] }
17258
- | { type: 'Vesting'; value: { who: EthereumAddress; schedule: [bigint, bigint, number] } }
17259
- | { type: 'Signing'; value: [EthereumAddress, PolkadotRuntimeCommonClaimsStatementKind] }
17260
- | { type: 'Preclaims'; value: [AccountId32, EthereumAddress] };
17261
-
17262
- export type PalletRcMigratorStakingBagsListPortableBagsListMessage =
17263
- | { type: 'Node'; value: { id: AccountId32; node: PalletRcMigratorStakingBagsListPortableNode } }
17264
- | { type: 'Bag'; value: { score: bigint; bag: PalletRcMigratorStakingBagsListPortableBag } };
17265
-
17266
- export type PalletRcMigratorStakingBagsListPortableNode = {
17267
- id: AccountId32;
17268
- prev?: AccountId32 | undefined;
17269
- next?: AccountId32 | undefined;
17270
- bagUpper: bigint;
17271
- score: bigint;
17272
- };
17273
-
17274
- export type PalletRcMigratorStakingBagsListPortableBag = {
17275
- head?: AccountId32 | undefined;
17276
- tail?: AccountId32 | undefined;
17277
- bagUpper: bigint;
17278
- };
17279
-
17280
- export type PalletRcMigratorSchedulerRcSchedulerMessage =
17281
- | { type: 'IncompleteSince'; value: number }
17282
- | { type: 'Retries'; value: [[number, number], PalletSchedulerRetryConfig] }
17283
- | { type: 'Lookup'; value: [FixedBytes<32>, [number, number]] };
17284
-
17285
- export type PalletSchedulerRetryConfig = { totalRetries: number; remaining: number; period: number };
17286
-
17287
- export type PalletRcMigratorIndicesRcIndicesIndex = {
17288
- index: number;
17289
- who: AccountId32;
17290
- deposit: bigint;
17291
- frozen: boolean;
17292
- };
17293
-
17294
- export type PalletRcMigratorConvictionVotingRcConvictionVotingMessage =
17295
- | { type: 'VotingFor'; value: [AccountId32, number, PalletConvictionVotingVoteVoting] }
17296
- | { type: 'ClassLocksFor'; value: [AccountId32, Array<[number, bigint]>] };
17297
-
17298
- export type PalletConvictionVotingVoteVoting =
17299
- | { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
17300
- | { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
17301
-
17302
- export type PalletConvictionVotingVoteCasting = {
17303
- votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
17304
- delegations: PalletConvictionVotingDelegations;
17305
- prior: PalletConvictionVotingVotePriorLock;
17306
- };
17307
-
17308
- export type PalletConvictionVotingDelegations = { votes: bigint; capital: bigint };
17309
-
17310
- export type PalletConvictionVotingVotePriorLock = [number, bigint];
17311
-
17312
- export type PalletConvictionVotingVoteDelegating = {
17313
- balance: bigint;
17314
- target: AccountId32;
17315
- conviction: PalletConvictionVotingConviction;
17316
- delegations: PalletConvictionVotingDelegations;
17317
- prior: PalletConvictionVotingVotePriorLock;
17318
- };
17319
-
17320
- export type PalletRcMigratorBountiesRcBountiesMessage =
17321
- | { type: 'BountyCount'; value: number }
17322
- | { type: 'BountyApprovals'; value: Array<number> }
17323
- | { type: 'BountyDescriptions'; value: [number, Bytes] }
17324
- | { type: 'Bounties'; value: [number, PalletRcMigratorBountiesAliasBounty] };
17325
-
17326
- export type PalletRcMigratorBountiesAliasBounty = {
17327
- proposer: AccountId32;
17328
- value: bigint;
17329
- fee: bigint;
17330
- curatorDeposit: bigint;
17331
- bond: bigint;
17332
- status: PalletBountiesBountyStatus;
17333
- };
17334
-
17335
- export type PalletBountiesBountyStatus =
17336
- | { type: 'Proposed' }
17337
- | { type: 'Approved' }
17338
- | { type: 'Funded' }
17339
- | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
17340
- | { type: 'Active'; value: { curator: AccountId32; updateDue: number } }
17341
- | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } }
17342
- | { type: 'ApprovedWithCurator'; value: { curator: AccountId32 } };
17343
-
17344
- export type PalletRcMigratorCrowdloanRcCrowdloanMessage =
17345
- | {
17346
- type: 'LeaseReserve';
17347
- value: {
17348
- unreserveBlock: number;
17349
- account: AccountId32;
17350
- paraId: PolkadotParachainPrimitivesPrimitivesId;
17351
- amount: bigint;
17352
- };
17353
- }
17354
- | {
17355
- type: 'CrowdloanContribution';
17356
- value: {
17357
- withdrawBlock: number;
17358
- contributor: AccountId32;
17359
- paraId: PolkadotParachainPrimitivesPrimitivesId;
17360
- amount: bigint;
17361
- crowdloanAccount: AccountId32;
17362
- };
17363
- }
17364
- | {
17365
- type: 'CrowdloanReserve';
17366
- value: {
17367
- unreserveBlock: number;
17368
- depositor: AccountId32;
17369
- paraId: PolkadotParachainPrimitivesPrimitivesId;
17370
- amount: bigint;
17371
- };
17372
- };
17373
-
17374
- export type PalletRcMigratorTreasuryPortableTreasuryMessage =
17375
- | { type: 'ProposalCount'; value: number }
17376
- | { type: 'Proposals'; value: [number, PalletTreasuryProposal] }
17377
- | { type: 'Approvals'; value: Array<number> }
17378
- | { type: 'SpendCount'; value: number }
17379
- | { type: 'Spends'; value: { id: number; status: PalletRcMigratorTreasuryPortableSpendStatus } }
17380
- | { type: 'LastSpendPeriod'; value?: number | undefined }
17381
- | { type: 'Funds' };
17382
-
17383
- export type PalletTreasuryProposal = { proposer: AccountId32; value: bigint; beneficiary: AccountId32; bond: bigint };
17384
-
17385
- export type PalletRcMigratorTreasuryPortableSpendStatus = {
17386
- assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
17387
- amount: bigint;
17388
- beneficiary: XcmVersionedLocation;
17389
- validFrom: number;
17390
- expireAt: number;
17391
- status: PalletRcMigratorTreasuryPortablePaymentState;
17392
- };
17393
-
17394
- export type PalletRcMigratorTreasuryPortablePaymentState =
17395
- | { type: 'Pending' }
17396
- | { type: 'Attempted'; value: { id: bigint } }
17397
- | { type: 'Failed' };
17398
-
17399
- export type PalletRcMigratorSchedulerSchedulerAgendaMessage = {
17400
- block: number;
17401
- agenda: Array<PalletRcMigratorSchedulerAliasScheduled | undefined>;
17402
- };
17403
-
17404
- export type PalletRcMigratorSchedulerAliasScheduled = {
17405
- maybeId?: FixedBytes<32> | undefined;
17406
- priority: number;
17407
- call: FrameSupportPreimagesBounded;
17408
- maybePeriodic?: [number, number] | undefined;
17409
- origin: AssetHubKusamaRuntimeAhMigrationRcPalletsOrigin;
17410
- };
17411
-
17412
- export type PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage =
17413
- | { type: 'Delegators'; value: { delegator: AccountId32; agent: AccountId32; amount: bigint } }
17414
- | {
17415
- type: 'Agents';
17416
- value: {
17417
- agent: AccountId32;
17418
- payee: AccountId32;
17419
- totalDelegated: bigint;
17420
- unclaimedWithdrawals: bigint;
17421
- pendingSlash: bigint;
17422
- };
17423
- };
17424
-
17425
- export type PalletRcMigratorChildBountiesPortableChildBountiesMessage =
17426
- | { type: 'ChildBountyCount'; value: number }
17427
- | { type: 'ParentChildBounties'; value: [number, number] }
17428
- | { type: 'ParentTotalChildBounties'; value: [number, number] }
17429
- | {
17430
- type: 'ChildBounty';
17431
- value: { parentId: number; childId: number; childBounty: PalletRcMigratorChildBountiesPortableChildBounty };
17432
- }
17433
- | { type: 'ChildBountyDescriptionsV1'; value: { parentId: number; childId: number; description: Bytes } }
17434
- | { type: 'V0ToV1ChildBountyIds'; value: { v0ChildId: number; parentId: number; v1ChildId: number } }
17435
- | { type: 'ChildrenCuratorFees'; value: { childId: number; amount: bigint } };
17436
-
17437
- export type PalletRcMigratorChildBountiesPortableChildBounty = {
17438
- parentBounty: number;
17439
- value: bigint;
17440
- fee: bigint;
17441
- curatorDeposit: bigint;
17442
- status: PalletRcMigratorChildBountiesPortableChildBountyStatus;
17443
- };
17444
-
17445
- export type PalletRcMigratorChildBountiesPortableChildBountyStatus =
17446
- | { type: 'Added' }
17447
- | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
17448
- | { type: 'Active'; value: { curator: AccountId32 } }
17449
- | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } };
17450
-
17451
- export type PalletRcMigratorStakingMessagePortableStakingMessage =
17452
- | { type: 'Values'; value: PalletRcMigratorStakingMessageStakingValues }
17453
- | { type: 'Invulnerables'; value: Array<AccountId32> }
17454
- | { type: 'Bonded'; value: { stash: AccountId32; controller: AccountId32 } }
17455
- | { type: 'Ledger'; value: { controller: AccountId32; ledger: PalletRcMigratorStakingMessagePortableStakingLedger } }
17456
- | { type: 'Payee'; value: { stash: AccountId32; payment: PalletRcMigratorStakingMessagePortableRewardDestination } }
17457
- | {
17458
- type: 'Validators';
17459
- value: { stash: AccountId32; validators: PalletRcMigratorStakingMessagePortableValidatorPrefs };
17460
- }
17461
- | {
17462
- type: 'Nominators';
17463
- value: { stash: AccountId32; nominations: PalletRcMigratorStakingMessagePortableNominations };
17464
- }
17465
- | { type: 'VirtualStakers'; value: AccountId32 }
17466
- | {
17467
- type: 'ErasStakersOverview';
17468
- value: {
17469
- era: number;
17470
- validator: AccountId32;
17471
- exposure: PalletRcMigratorStakingMessagePortablePagedExposureMetadata;
17472
- };
17473
- }
17474
- | {
17475
- type: 'ErasStakersPaged';
17476
- value: {
17477
- era: number;
17478
- validator: AccountId32;
17479
- page: number;
17480
- exposure: PalletRcMigratorStakingMessagePortableExposurePage;
17481
- };
17482
- }
17483
- | { type: 'ClaimedRewards'; value: { era: number; validator: AccountId32; rewards: Array<number> } }
17484
- | {
17485
- type: 'ErasValidatorPrefs';
17486
- value: { era: number; validator: AccountId32; prefs: PalletRcMigratorStakingMessagePortableValidatorPrefs };
17487
- }
17488
- | { type: 'ErasValidatorReward'; value: { era: number; reward: bigint } }
17489
- | { type: 'ErasRewardPoints'; value: { era: number; points: PalletRcMigratorStakingMessagePortableEraRewardPoints } }
17490
- | { type: 'ErasTotalStake'; value: { era: number; totalStake: bigint } }
17491
- | { type: 'UnappliedSlashes'; value: { era: number; slash: PalletRcMigratorStakingMessagePortableUnappliedSlash } }
17492
- | { type: 'BondedEras'; value: Array<[number, number]> }
17493
- | { type: 'ValidatorSlashInEra'; value: { era: number; validator: AccountId32; slash: [Perbill, bigint] } };
17494
-
17495
- export type PalletRcMigratorStakingMessageStakingValues = {
17496
- validatorCount?: number | undefined;
17497
- minValidatorCount?: number | undefined;
17498
- minNominatorBond?: bigint | undefined;
17499
- minValidatorBond?: bigint | undefined;
17500
- minActiveStake?: bigint | undefined;
17501
- minCommission?: Perbill | undefined;
17502
- maxValidatorsCount?: number | undefined;
17503
- maxNominatorsCount?: number | undefined;
17504
- currentEra?: number | undefined;
17505
- activeEra?: PalletRcMigratorStakingMessagePortableActiveEraInfo | undefined;
17506
- forceEra?: PalletRcMigratorStakingMessagePortableForcing | undefined;
17507
- maxStakedRewards?: Percent | undefined;
17508
- slashRewardFraction?: Perbill | undefined;
17509
- canceledSlashPayout?: bigint | undefined;
17510
- currentPlannedSession?: number | undefined;
17511
- chillThreshold?: Percent | undefined;
17512
- };
17513
-
17514
- export type PalletRcMigratorStakingMessagePortableActiveEraInfo = { index: number; start?: bigint | undefined };
17515
-
17516
- export type PalletRcMigratorStakingMessagePortableForcing = 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
17517
-
17518
- export type PalletRcMigratorStakingMessagePortableStakingLedger = {
17519
- stash: AccountId32;
17520
- total: bigint;
17521
- active: bigint;
17522
- unlocking: Array<PalletRcMigratorStakingMessagePortableUnlockChunk>;
17523
- };
17524
-
17525
- export type PalletRcMigratorStakingMessagePortableUnlockChunk = { value: bigint; era: number };
17526
-
17527
- export type PalletRcMigratorStakingMessagePortableRewardDestination =
17528
- | { type: 'Staked' }
17529
- | { type: 'Stash' }
17530
- | { type: 'Controller' }
17531
- | { type: 'Account'; value: AccountId32 }
17532
- | { type: 'None' };
17533
-
17534
- export type PalletRcMigratorStakingMessagePortableValidatorPrefs = { commission: Perbill; blocked: boolean };
17535
-
17536
- export type PalletRcMigratorStakingMessagePortableNominations = {
17537
- targets: Array<AccountId32>;
17538
- submittedIn: number;
17539
- suppressed: boolean;
17540
- };
17541
-
17542
- export type PalletRcMigratorStakingMessagePortablePagedExposureMetadata = {
17543
- total: bigint;
17544
- own: bigint;
17545
- nominatorCount: number;
17546
- pageCount: number;
17547
- };
17548
-
17549
- export type PalletRcMigratorStakingMessagePortableExposurePage = {
17550
- pageTotal: bigint;
17551
- others: Array<PalletRcMigratorStakingMessagePortableIndividualExposure>;
17552
- };
17553
-
17554
- export type PalletRcMigratorStakingMessagePortableIndividualExposure = { who: AccountId32; value: bigint };
17555
-
17556
- export type PalletRcMigratorStakingMessagePortableEraRewardPoints = {
17557
- total: number;
17558
- individual: Array<[AccountId32, number]>;
17559
- };
17560
-
17561
- export type PalletRcMigratorStakingMessagePortableUnappliedSlash = {
17562
- validator: AccountId32;
17563
- own: bigint;
17564
- others: Array<[AccountId32, bigint]>;
17565
- reporters: Array<AccountId32>;
17566
- payout: bigint;
17567
- };
17568
-
17569
- export type PalletRcMigratorRecoveryPortableRecoveryMessage =
17570
- | { type: 'Recoverable'; value: [AccountId32, PalletRcMigratorRecoveryPortableRecoveryConfig] }
17571
- | { type: 'ActiveRecoveries'; value: [AccountId32, AccountId32, PalletRcMigratorRecoveryPortableActiveRecovery] }
17572
- | { type: 'Proxy'; value: [AccountId32, AccountId32] };
17573
-
17574
- export type PalletRcMigratorRecoveryPortableRecoveryConfig = {
17575
- delayPeriod: number;
17576
- deposit: bigint;
17577
- friends: PalletRcMigratorRecoveryPortableRecoveryFriends;
17578
- threshold: number;
17579
- };
17580
-
17581
- export type PalletRcMigratorRecoveryPortableRecoveryFriends = { friends: Array<AccountId32> };
17582
-
17583
- export type PalletRcMigratorRecoveryPortableActiveRecovery = {
17584
- created: number;
17585
- deposit: bigint;
17586
- friends: PalletRcMigratorRecoveryPortableRecoveryFriends;
17587
- };
17588
-
17589
- export type PalletRcMigratorSocietyPortableSocietyMessage =
17590
- | { type: 'Values'; value: PalletRcMigratorSocietySocietyValues }
17591
- | { type: 'Member'; value: [AccountId32, PalletRcMigratorSocietyPortableMemberRecord] }
17592
- | { type: 'Payout'; value: [AccountId32, PalletRcMigratorSocietyPortablePayoutRecord] }
17593
- | { type: 'MemberByIndex'; value: [number, AccountId32] }
17594
- | { type: 'SuspendedMembers'; value: [AccountId32, PalletRcMigratorSocietyPortableMemberRecord] }
17595
- | { type: 'Candidates'; value: [AccountId32, PalletRcMigratorSocietyPortableCandidacy] }
17596
- | { type: 'Votes'; value: [AccountId32, AccountId32, PalletRcMigratorSocietyPortableVote] }
17597
- | { type: 'VoteClearCursor'; value: [AccountId32, Bytes] }
17598
- | { type: 'DefenderVotes'; value: [number, AccountId32, PalletRcMigratorSocietyPortableVote] };
17599
-
17600
- export type PalletRcMigratorSocietySocietyValues = {
17601
- parameters?: PalletRcMigratorSocietyPortableGroupParams | undefined;
17602
- pot?: bigint | undefined;
17603
- founder?: AccountId32 | undefined;
17604
- head?: AccountId32 | undefined;
17605
- rules?: H256 | undefined;
17606
- memberCount?: number | undefined;
17607
- roundCount?: number | undefined;
17608
- bids?: Array<PalletRcMigratorSocietyPortableBid> | undefined;
17609
- sceptic?: AccountId32 | undefined;
17610
- nextHead?: PalletRcMigratorSocietyPortableIntakeRecord | undefined;
17611
- challengeRoundCount?: number | undefined;
17612
- defending?: [AccountId32, AccountId32, PalletRcMigratorSocietyPortableTally] | undefined;
17613
- nextIntakeAt?: number | undefined;
17614
- nextChallengeAt?: number | undefined;
17615
- };
17616
-
17617
- export type PalletRcMigratorSocietyPortableGroupParams = {
17618
- maxMembers: number;
17619
- maxIntake: number;
17620
- maxStrikes: number;
17621
- candidateDeposit: bigint;
17622
- };
17623
-
17624
- export type PalletRcMigratorSocietyPortableBid = {
17625
- who: AccountId32;
17626
- kind: PalletRcMigratorSocietyPortableBidKind;
17627
- value: bigint;
17628
- };
17629
-
17630
- export type PalletRcMigratorSocietyPortableBidKind =
17631
- | { type: 'Deposit'; value: bigint }
17632
- | { type: 'Vouch'; value: [AccountId32, bigint] };
17633
-
17634
- export type PalletRcMigratorSocietyPortableIntakeRecord = { who: AccountId32; bid: bigint; round: number };
17635
-
17636
- export type PalletRcMigratorSocietyPortableTally = { approvals: number; rejections: number };
17637
-
17638
- export type PalletRcMigratorSocietyPortableMemberRecord = {
17639
- rank: number;
17640
- strikes: number;
17641
- vouching?: PalletRcMigratorSocietyPortableVouchingStatus | undefined;
17642
- index: number;
17643
- };
17644
-
17645
- export type PalletRcMigratorSocietyPortableVouchingStatus = 'Vouching' | 'Banned';
17646
-
17647
- export type PalletRcMigratorSocietyPortablePayoutRecord = { paid: bigint; payouts: Array<[number, bigint]> };
17648
-
17649
- export type PalletRcMigratorSocietyPortableCandidacy = {
17650
- round: number;
17651
- kind: PalletRcMigratorSocietyPortableBidKind;
17652
- bid: bigint;
17653
- tally: PalletRcMigratorSocietyPortableTally;
17654
- skepticStruck: boolean;
17655
- };
17656
-
17657
- export type PalletRcMigratorSocietyPortableVote = { approve: boolean; weight: number };
17658
-
17659
- export type PalletAhMigratorMigrationStage =
17660
- | { type: 'Pending' }
17661
- | { type: 'DataMigrationOngoing' }
17662
- | { type: 'MigrationDone' }
17663
- | { type: 'CoolOff'; value: { endAt: number } };
17664
-
17665
- export type PalletRcMigratorQueuePriority =
17666
- | { type: 'Config' }
17667
- | { type: 'OverrideConfig'; value: [number, number] }
17668
- | { type: 'Disabled' };
17669
-
17670
- export type PalletRcMigratorMigrationFinishedData = { rcBalanceKept: bigint };
17671
-
17672
- export type FrameSystemExtensionsAuthorizeCall = {};
17673
-
17674
- export type FrameSystemExtensionsCheckNonZeroSender = {};
17675
-
17676
- export type FrameSystemExtensionsCheckSpecVersion = {};
17677
-
17678
- export type FrameSystemExtensionsCheckTxVersion = {};
17679
-
17680
- export type FrameSystemExtensionsCheckGenesis = {};
17681
-
17682
- export type FrameSystemExtensionsCheckMortality = Era;
17683
-
17684
- export type FrameSystemExtensionsCheckNonce = number;
17685
-
17686
- export type FrameSystemExtensionsCheckWeight = {};
17687
-
17688
- export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
17689
- tip: bigint;
17690
- assetId?: StagingXcmV5Location | undefined;
17691
- };
17692
-
17693
- export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
17694
-
17695
- export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
17696
-
17697
- export type PalletReviveEvmTxExtensionSetOrigin = {};
17698
-
17699
- export type FrameSystemAccountInfo = {
17700
- nonce: number;
17701
- consumers: number;
17702
- providers: number;
17703
- sufficients: number;
17704
- data: PalletBalancesAccountData;
17705
- };
17706
-
17707
- export type PalletBalancesAccountData = {
17708
- free: bigint;
17709
- reserved: bigint;
17710
- frozen: bigint;
17711
- flags: PalletBalancesExtraFlags;
17712
- };
17713
-
17714
- export type PalletBalancesExtraFlags = bigint;
17715
-
17716
- export type FrameSupportDispatchPerDispatchClass = {
17717
- normal: SpWeightsWeightV2Weight;
17718
- operational: SpWeightsWeightV2Weight;
17719
- mandatory: SpWeightsWeightV2Weight;
17720
- };
17721
-
17722
- export type FrameSystemEventRecord = { phase: Phase; event: AssetHubKusamaRuntimeRuntimeEvent; topics: Array<H256> };
17723
-
17724
- export type AssetHubKusamaRuntimeRuntimeEvent =
17725
- | { pallet: 'System'; palletEvent: FrameSystemEvent }
17726
- | { pallet: 'ParachainSystem'; palletEvent: CumulusPalletParachainSystemEvent }
17727
- | { pallet: 'MultiBlockMigrations'; palletEvent: PalletMigrationsEvent }
17728
- | { pallet: 'Preimage'; palletEvent: PalletPreimageEvent }
17729
- | { pallet: 'Scheduler'; palletEvent: PalletSchedulerEvent }
17730
- | { pallet: 'Parameters'; palletEvent: PalletParametersEvent }
17731
- | { pallet: 'Balances'; palletEvent: PalletBalancesEvent }
17732
- | { pallet: 'TransactionPayment'; palletEvent: PalletTransactionPaymentEvent }
17733
- | { pallet: 'AssetTxPayment'; palletEvent: PalletAssetConversionTxPaymentEvent }
17734
- | { pallet: 'Vesting'; palletEvent: PalletVestingEvent }
17735
- | { pallet: 'Claims'; palletEvent: PolkadotRuntimeCommonClaimsPalletEvent }
17736
- | { pallet: 'CollatorSelection'; palletEvent: PalletCollatorSelectionEvent }
17737
- | { pallet: 'Session'; palletEvent: PalletSessionEvent }
17738
- | { pallet: 'XcmpQueue'; palletEvent: CumulusPalletXcmpQueueEvent }
17739
- | { pallet: 'PolkadotXcm'; palletEvent: PalletXcmEvent }
17740
- | { pallet: 'CumulusXcm'; palletEvent: CumulusPalletXcmEvent }
17741
- | { pallet: 'ToPolkadotXcmRouter'; palletEvent: PalletXcmBridgeHubRouterEvent }
17742
- | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
17743
- | { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
17744
- | { pallet: 'Multisig'; palletEvent: PalletMultisigEvent }
17745
- | { pallet: 'Proxy'; palletEvent: PalletProxyEvent }
17746
- | { pallet: 'Indices'; palletEvent: PalletIndicesEvent }
17747
- | { pallet: 'Assets'; palletEvent: PalletAssetsEvent }
17748
- | { pallet: 'Uniques'; palletEvent: PalletUniquesEvent }
17749
- | { pallet: 'Nfts'; palletEvent: PalletNftsEvent }
17750
- | { pallet: 'ForeignAssets'; palletEvent: PalletAssetsEvent002 }
17751
- | { pallet: 'NftFractionalization'; palletEvent: PalletNftFractionalizationEvent }
17752
- | { pallet: 'PoolAssets'; palletEvent: PalletAssetsEvent }
17753
- | { pallet: 'AssetConversion'; palletEvent: PalletAssetConversionEvent }
17754
- | { pallet: 'Recovery'; palletEvent: PalletRecoveryEvent }
17755
- | { pallet: 'Society'; palletEvent: PalletSocietyEvent }
17756
- | { pallet: 'Revive'; palletEvent: PalletReviveEvent }
17757
- | { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
17758
- | { pallet: 'NominationPools'; palletEvent: PalletNominationPoolsEvent }
17759
- | { pallet: 'VoterList'; palletEvent: PalletBagsListEvent }
17760
- | { pallet: 'DelegatedStaking'; palletEvent: PalletDelegatedStakingEvent }
17761
- | { pallet: 'StakingRcClient'; palletEvent: PalletStakingAsyncRcClientEvent }
17762
- | { pallet: 'MultiBlockElection'; palletEvent: PalletElectionProviderMultiBlockEvent }
17763
- | { pallet: 'MultiBlockElectionVerifier'; palletEvent: PalletElectionProviderMultiBlockVerifierImplsPalletEvent }
17764
- | { pallet: 'MultiBlockElectionSigned'; palletEvent: PalletElectionProviderMultiBlockSignedPalletEvent }
17765
- | { pallet: 'Staking'; palletEvent: PalletStakingAsyncPalletEvent }
17766
- | { pallet: 'Treasury'; palletEvent: PalletTreasuryEvent }
17767
- | { pallet: 'ConvictionVoting'; palletEvent: PalletConvictionVotingEvent }
17768
- | { pallet: 'Referenda'; palletEvent: PalletReferendaEvent }
17769
- | { pallet: 'Whitelist'; palletEvent: PalletWhitelistEvent }
17770
- | { pallet: 'Bounties'; palletEvent: PalletBountiesEvent }
17771
- | { pallet: 'ChildBounties'; palletEvent: PalletChildBountiesEvent }
17772
- | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
17773
- | { pallet: 'MultiAssetBounties'; palletEvent: PalletMultiAssetBountiesEvent }
17774
- | { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent }
17775
- | { pallet: 'AhMigrator'; palletEvent: PalletAhMigratorEvent };
17776
-
17777
- /**
17778
- * Event for the System pallet.
17779
- **/
17780
- export type FrameSystemEvent =
17781
- /**
17782
- * An extrinsic completed successfully.
17783
- **/
17784
- | { name: 'ExtrinsicSuccess'; data: { dispatchInfo: FrameSystemDispatchEventInfo } }
17785
- /**
17786
- * An extrinsic failed.
17787
- **/
17788
- | { name: 'ExtrinsicFailed'; data: { dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo } }
17789
- /**
17790
- * `:code` was updated.
17791
- **/
17792
- | { name: 'CodeUpdated' }
17793
- /**
17794
- * A new account was created.
17795
- **/
17796
- | { name: 'NewAccount'; data: { account: AccountId32 } }
17797
- /**
17798
- * An account was reaped.
17799
- **/
17800
- | { name: 'KilledAccount'; data: { account: AccountId32 } }
17801
- /**
17802
- * On on-chain remark happened.
17803
- **/
17804
- | { name: 'Remarked'; data: { sender: AccountId32; hash: H256 } }
17805
- /**
17806
- * A [`Task`] has started executing
17807
- **/
17808
- | { name: 'TaskStarted'; data: { task: AssetHubKusamaRuntimeRuntimeTask } }
17809
- /**
17810
- * A [`Task`] has finished executing.
17811
- **/
17812
- | { name: 'TaskCompleted'; data: { task: AssetHubKusamaRuntimeRuntimeTask } }
17813
- /**
17814
- * A [`Task`] failed during execution.
17815
- **/
17816
- | { name: 'TaskFailed'; data: { task: AssetHubKusamaRuntimeRuntimeTask; err: DispatchError } }
17817
- /**
17818
- * An upgrade was authorized.
17819
- **/
17820
- | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } }
17821
- /**
17822
- * An invalid authorized upgrade was rejected while trying to apply it.
17823
- **/
17824
- | { name: 'RejectedInvalidAuthorizedUpgrade'; data: { codeHash: H256; error: DispatchError } };
17825
-
17826
- export type FrameSystemDispatchEventInfo = {
17827
- weight: SpWeightsWeightV2Weight;
17828
- class: FrameSupportDispatchDispatchClass;
17829
- paysFee: FrameSupportDispatchPays;
17830
- };
17831
-
17832
- export type FrameSupportDispatchDispatchClass = 'Normal' | 'Operational' | 'Mandatory';
17833
-
17834
- export type FrameSupportDispatchPays = 'Yes' | 'No';
17835
-
17836
- export type SpRuntimeProvingTrieTrieError =
17837
- | 'InvalidStateRoot'
17838
- | 'IncompleteDatabase'
17839
- | 'ValueAtIncompleteKey'
17840
- | 'DecoderError'
17841
- | 'InvalidHash'
17842
- | 'DuplicateKey'
17843
- | 'ExtraneousNode'
17844
- | 'ExtraneousValue'
17845
- | 'ExtraneousHashReference'
17846
- | 'InvalidChildReference'
17847
- | 'ValueMismatch'
17848
- | 'IncompleteProof'
17849
- | 'RootMismatch'
17850
- | 'DecodeError';
17851
-
17852
- /**
17853
- * The `Event` enum of this pallet
17854
- **/
17855
- export type CumulusPalletParachainSystemEvent =
17856
- /**
17857
- * The validation function has been scheduled to apply.
17858
- **/
17859
- | { name: 'ValidationFunctionStored' }
17860
- /**
17861
- * The validation function was applied as of the contained relay chain block number.
17862
- **/
17863
- | { name: 'ValidationFunctionApplied'; data: { relayChainBlockNum: number } }
17864
- /**
17865
- * The relay-chain aborted the upgrade process.
17866
- **/
17867
- | { name: 'ValidationFunctionDiscarded' }
17868
- /**
17869
- * Some downward messages have been received and will be processed.
17870
- **/
17871
- | { name: 'DownwardMessagesReceived'; data: { count: number } }
17872
- /**
17873
- * Downward messages were processed using the given weight.
17874
- **/
17875
- | { name: 'DownwardMessagesProcessed'; data: { weightUsed: SpWeightsWeightV2Weight; dmqHead: H256 } }
17876
- /**
17877
- * An upward message was sent to the relay chain.
17878
- **/
17879
- | { name: 'UpwardMessageSent'; data: { messageHash?: FixedBytes<32> | undefined } };
17880
-
17881
- /**
17882
- * The `Event` enum of this pallet
17883
- **/
17884
- export type PalletMigrationsEvent =
17885
- /**
17886
- * A Runtime upgrade started.
17887
- *
17888
- * Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`.
17889
- **/
17890
- | {
17891
- name: 'UpgradeStarted';
17892
- data: {
17893
- /**
17894
- * The number of migrations that this upgrade contains.
17895
- *
17896
- * This can be used to design a progress indicator in combination with counting the
17897
- * `MigrationCompleted` and `MigrationSkipped` events.
17898
- **/
17899
- migrations: number;
17900
- };
17022
+ name: 'UpgradeStarted';
17023
+ data: {
17024
+ /**
17025
+ * The number of migrations that this upgrade contains.
17026
+ *
17027
+ * This can be used to design a progress indicator in combination with counting the
17028
+ * `MigrationCompleted` and `MigrationSkipped` events.
17029
+ **/
17030
+ migrations: number;
17031
+ };
17901
17032
  }
17902
17033
  /**
17903
17034
  * The current runtime upgrade completed.
@@ -18316,10 +17447,20 @@ export type AssetHubKusamaRuntimeRuntimeHoldReason =
18316
17447
  | { type: 'Staking'; value: PalletStakingAsyncPalletHoldReason }
18317
17448
  | { type: 'MultiAssetBounties'; value: PalletMultiAssetBountiesHoldReason };
18318
17449
 
17450
+ export type PalletPreimageHoldReason = 'Preimage';
17451
+
17452
+ export type PalletSessionHoldReason = 'Keys';
17453
+
17454
+ export type PalletXcmHoldReason = 'AuthorizeAlias';
17455
+
18319
17456
  export type PalletNftFractionalizationHoldReason = 'Fractionalized';
18320
17457
 
18321
17458
  export type PalletReviveHoldReason = 'CodeUploadDepositReserve' | 'StorageDepositReserve' | 'AddressMapping';
18322
17459
 
17460
+ export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
17461
+
17462
+ export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
17463
+
18323
17464
  export type PalletStakingAsyncRcClientHoldReason = 'Keys';
18324
17465
 
18325
17466
  export type PalletElectionProviderMultiBlockSignedPalletHoldReason = 'SignedSubmission';
@@ -19158,7 +18299,23 @@ export type PalletAssetsEvent =
19158
18299
  /**
19159
18300
  * Reserve information was removed for `asset_id`.
19160
18301
  **/
19161
- | { name: 'ReservesRemoved'; data: { assetId: number } };
18302
+ | { name: 'ReservesRemoved'; data: { assetId: number } }
18303
+ /**
18304
+ * Some assets were issued as Credit (no owner yet).
18305
+ **/
18306
+ | { name: 'IssuedCredit'; data: { assetId: number; amount: bigint } }
18307
+ /**
18308
+ * Some assets Credit was destroyed.
18309
+ **/
18310
+ | { name: 'BurnedCredit'; data: { assetId: number; amount: bigint } }
18311
+ /**
18312
+ * Some assets were burned and a Debt was created.
18313
+ **/
18314
+ | { name: 'IssuedDebt'; data: { assetId: number; amount: bigint } }
18315
+ /**
18316
+ * Some assets Debt was destroyed (and assets issued).
18317
+ **/
18318
+ | { name: 'BurnedDebt'; data: { assetId: number; amount: bigint } };
19162
18319
 
19163
18320
  /**
19164
18321
  * The `Event` enum of this pallet
@@ -19668,7 +18825,23 @@ export type PalletAssetsEvent002 =
19668
18825
  /**
19669
18826
  * Reserve information was removed for `asset_id`.
19670
18827
  **/
19671
- | { name: 'ReservesRemoved'; data: { assetId: StagingXcmV5Location } };
18828
+ | { name: 'ReservesRemoved'; data: { assetId: StagingXcmV5Location } }
18829
+ /**
18830
+ * Some assets were issued as Credit (no owner yet).
18831
+ **/
18832
+ | { name: 'IssuedCredit'; data: { assetId: StagingXcmV5Location; amount: bigint } }
18833
+ /**
18834
+ * Some assets Credit was destroyed.
18835
+ **/
18836
+ | { name: 'BurnedCredit'; data: { assetId: StagingXcmV5Location; amount: bigint } }
18837
+ /**
18838
+ * Some assets were burned and a Debt was created.
18839
+ **/
18840
+ | { name: 'IssuedDebt'; data: { assetId: StagingXcmV5Location; amount: bigint } }
18841
+ /**
18842
+ * Some assets Debt was destroyed (and assets issued).
18843
+ **/
18844
+ | { name: 'BurnedDebt'; data: { assetId: StagingXcmV5Location; amount: bigint } };
19672
18845
 
19673
18846
  /**
19674
18847
  * The `Event` enum of this pallet
@@ -20350,13 +19523,32 @@ export type PalletElectionProviderMultiBlockEvent =
20350
19523
  };
20351
19524
  }
20352
19525
  /**
20353
- * Target snapshot creation failed
19526
+ * Target snapshot creation failed.
20354
19527
  **/
20355
19528
  | { name: 'UnexpectedTargetSnapshotFailed' }
20356
19529
  /**
20357
- * Voter snapshot creation failed
19530
+ * Voter snapshot creation failed.
19531
+ **/
19532
+ | { name: 'UnexpectedVoterSnapshotFailed' }
19533
+ /**
19534
+ * Phase transition could not proceed due to being out of weight.
19535
+ **/
19536
+ | {
19537
+ name: 'UnexpectedPhaseTransitionOutOfWeight';
19538
+ data: {
19539
+ from: PalletElectionProviderMultiBlockPhase;
19540
+ to: PalletElectionProviderMultiBlockPhase;
19541
+ required: SpWeightsWeightV2Weight;
19542
+ had: SpWeightsWeightV2Weight;
19543
+ };
19544
+ }
19545
+ /**
19546
+ * Phase transition could not even begin becaseu of being out of weight.
20358
19547
  **/
20359
- | { name: 'UnexpectedVoterSnapshotFailed' };
19548
+ | {
19549
+ name: 'UnexpectedPhaseTransitionHalt';
19550
+ data: { required: SpWeightsWeightV2Weight; had: SpWeightsWeightV2Weight };
19551
+ };
20360
19552
 
20361
19553
  /**
20362
19554
  * The `Event` enum of this pallet
@@ -20565,7 +19757,13 @@ export type PalletStakingAsyncPalletEvent =
20565
19757
 
20566
19758
  export type PalletStakingAsyncForcing = 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
20567
19759
 
20568
- export type PalletStakingAsyncPalletUnexpectedKind = 'EraDurationBoundExceeded' | 'UnknownValidatorActivation';
19760
+ export type PalletStakingAsyncPalletUnexpectedKind =
19761
+ | { type: 'EraDurationBoundExceeded' }
19762
+ | { type: 'UnknownValidatorActivation' }
19763
+ | {
19764
+ type: 'PagedElectionOutOfWeight';
19765
+ value: { page: number; required: SpWeightsWeightV2Weight; had: SpWeightsWeightV2Weight };
19766
+ };
20569
19767
 
20570
19768
  /**
20571
19769
  * The `Event` enum of this pallet
@@ -20942,6 +20140,8 @@ export type PalletReferendaEvent =
20942
20140
  };
20943
20141
  };
20944
20142
 
20143
+ export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
20144
+
20945
20145
  /**
20946
20146
  * The `Event` enum of this pallet
20947
20147
  **/
@@ -21087,299 +20287,92 @@ export type PalletMultiAssetBountiesEvent =
21087
20287
  | {
21088
20288
  name: 'BountyPayoutProcessed';
21089
20289
  data: {
21090
- index: number;
21091
- childIndex?: number | undefined;
21092
- assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
21093
- value: bigint;
21094
- beneficiary: ParachainsCommonPayVersionedLocatableAccount;
21095
- };
21096
- }
21097
- /**
21098
- * Funding payment has concluded successfully.
21099
- **/
21100
- | { name: 'BountyFundingProcessed'; data: { index: number; childIndex?: number | undefined } }
21101
- /**
21102
- * Refund payment has concluded successfully.
21103
- **/
21104
- | { name: 'BountyRefundProcessed'; data: { index: number; childIndex?: number | undefined } }
21105
- /**
21106
- * A child-/bounty was cancelled.
21107
- **/
21108
- | { name: 'BountyCanceled'; data: { index: number; childIndex?: number | undefined } }
21109
- /**
21110
- * A child-/bounty curator was unassigned.
21111
- **/
21112
- | { name: 'CuratorUnassigned'; data: { index: number; childIndex?: number | undefined } }
21113
- /**
21114
- * A child-/bounty curator was proposed.
21115
- **/
21116
- | { name: 'CuratorProposed'; data: { index: number; childIndex?: number | undefined; curator: AccountId32 } }
21117
- /**
21118
- * A payment failed and can be retried.
21119
- **/
21120
- | { name: 'PaymentFailed'; data: { index: number; childIndex?: number | undefined; paymentId: bigint } }
21121
- /**
21122
- * A payment happened and can be checked.
21123
- **/
21124
- | { name: 'Paid'; data: { index: number; childIndex?: number | undefined; paymentId: bigint } };
21125
-
21126
- /**
21127
- * The `Event` enum of this pallet
21128
- **/
21129
- export type PalletAhOpsEvent =
21130
- /**
21131
- * Some lease reserve could not be unreserved and needs manual cleanup.
21132
- **/
21133
- | {
21134
- name: 'LeaseUnreserveRemaining';
21135
- data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
21136
- }
21137
- /**
21138
- * Some amount for a crowdloan reserve could not be unreserved and needs manual cleanup.
21139
- **/
21140
- | {
21141
- name: 'CrowdloanUnreserveRemaining';
21142
- data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
21143
- }
21144
- /**
21145
- * A sovereign parachain account has been migrated from its child to sibling
21146
- * representation.
21147
- **/
21148
- | {
21149
- name: 'SovereignMigrated';
21150
- data: {
21151
- /**
21152
- * The parachain ID that had its account migrated.
21153
- **/
21154
- paraId: number;
21155
-
21156
- /**
21157
- * The old account that was migrated out of.
21158
- **/
21159
- from: AccountId32;
21160
-
21161
- /**
21162
- * The new account that was migrated into.
21163
- **/
21164
- to: AccountId32;
21165
-
21166
- /**
21167
- * The derivation path that was used to translate the account.
21168
- **/
21169
- derivationPath: Array<number>;
21170
- };
21171
- }
21172
- /**
21173
- * Failed to re-bond some migrated funds.
21174
- **/
21175
- | { name: 'FailedToBond'; data: { account: AccountId32; amount: bigint } };
21176
-
21177
- /**
21178
- * The `Event` enum of this pallet
21179
- **/
21180
- export type PalletAhMigratorEvent =
21181
- /**
21182
- * A stage transition has occurred.
21183
- **/
21184
- | {
21185
- name: 'StageTransition';
21186
- data: {
21187
- /**
21188
- * The old stage before the transition.
21189
- **/
21190
- old: PalletAhMigratorMigrationStage;
21191
-
21192
- /**
21193
- * The new stage after the transition.
21194
- **/
21195
- new: PalletAhMigratorMigrationStage;
21196
- };
21197
- }
21198
- /**
21199
- * We received a batch of messages that will be integrated into a pallet.
21200
- **/
21201
- | { name: 'BatchReceived'; data: { pallet: PalletAhMigratorPalletEventName; count: number } }
21202
- /**
21203
- * We processed a batch of messages for this pallet.
21204
- **/
21205
- | { name: 'BatchProcessed'; data: { pallet: PalletAhMigratorPalletEventName; countGood: number; countBad: number } }
21206
- /**
21207
- * The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
21208
- * emitted.
21209
- *
21210
- * This event is equivalent to `StageTransition { new: DataMigrationOngoing, .. }` but is
21211
- * easier to understand. The activation is immediate and affects all events happening
21212
- * afterwards.
21213
- **/
21214
- | { name: 'AssetHubMigrationStarted' }
21215
- /**
21216
- * The Asset Hub Migration finished.
21217
- *
21218
- * This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
21219
- * to understand. The finishing is immediate and affects all events happening
21220
- * afterwards.
21221
- **/
21222
- | { name: 'AssetHubMigrationFinished' }
21223
- /**
21224
- * Whether the DMP queue was prioritized for the next block.
21225
- **/
21226
- | {
21227
- name: 'DmpQueuePrioritySet';
21228
- data: {
21229
- /**
21230
- * Indicates if DMP queue was successfully set as priority.
21231
- * If `false`, it means we're in the round-robin phase of our priority pattern
21232
- * (see [`Config::DmpQueuePriorityPattern`]), where no queue gets priority.
21233
- **/
21234
- prioritized: boolean;
21235
-
21236
- /**
21237
- * Current block number within the pattern cycle (1 to period).
21238
- **/
21239
- cycleBlock: number;
21240
-
21241
- /**
21242
- * Total number of blocks in the pattern cycle
21243
- **/
21244
- cyclePeriod: number;
21245
- };
21246
- }
21247
- /**
21248
- * The DMP queue priority config was set.
21249
- **/
21250
- | {
21251
- name: 'DmpQueuePriorityConfigSet';
21252
- data: {
21253
- /**
21254
- * The old priority pattern.
21255
- **/
21256
- old: PalletRcMigratorQueuePriority;
21257
-
21258
- /**
21259
- * The new priority pattern.
21260
- **/
21261
- new: PalletRcMigratorQueuePriority;
20290
+ index: number;
20291
+ childIndex?: number | undefined;
20292
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
20293
+ value: bigint;
20294
+ beneficiary: ParachainsCommonPayVersionedLocatableAccount;
21262
20295
  };
21263
20296
  }
21264
20297
  /**
21265
- * The balances before the migration were recorded.
20298
+ * Funding payment has concluded successfully.
21266
20299
  **/
21267
- | { name: 'BalancesBeforeRecordSet'; data: { checkingAccount: bigint; totalIssuance: bigint } }
20300
+ | { name: 'BountyFundingProcessed'; data: { index: number; childIndex?: number | undefined } }
21268
20301
  /**
21269
- * The balances before the migration were consumed.
20302
+ * Refund payment has concluded successfully.
21270
20303
  **/
21271
- | { name: 'BalancesBeforeRecordConsumed'; data: { checkingAccount: bigint; totalIssuance: bigint } }
20304
+ | { name: 'BountyRefundProcessed'; data: { index: number; childIndex?: number | undefined } }
21272
20305
  /**
21273
- * A referendum was cancelled because it could not be mapped.
20306
+ * A child-/bounty was cancelled.
21274
20307
  **/
21275
- | { name: 'ReferendumCanceled'; data: { id: number } }
20308
+ | { name: 'BountyCanceled'; data: { index: number; childIndex?: number | undefined } }
21276
20309
  /**
21277
- * The manager account id was set.
20310
+ * A child-/bounty curator was unassigned.
21278
20311
  **/
21279
- | {
21280
- name: 'ManagerSet';
21281
- data: {
21282
- /**
21283
- * The old manager account id.
21284
- **/
21285
- old?: AccountId32 | undefined;
20312
+ | { name: 'CuratorUnassigned'; data: { index: number; childIndex?: number | undefined } }
20313
+ /**
20314
+ * A child-/bounty curator was proposed.
20315
+ **/
20316
+ | { name: 'CuratorProposed'; data: { index: number; childIndex?: number | undefined; curator: AccountId32 } }
20317
+ /**
20318
+ * A payment failed and can be retried.
20319
+ **/
20320
+ | { name: 'PaymentFailed'; data: { index: number; childIndex?: number | undefined; paymentId: bigint } }
20321
+ /**
20322
+ * A payment happened and can be checked.
20323
+ **/
20324
+ | { name: 'Paid'; data: { index: number; childIndex?: number | undefined; paymentId: bigint } };
21286
20325
 
21287
- /**
21288
- * The new manager account id.
21289
- **/
21290
- new?: AccountId32 | undefined;
21291
- };
21292
- }
21293
- | { name: 'AccountTranslatedParachainSovereign'; data: { from: AccountId32; to: AccountId32 } }
20326
+ /**
20327
+ * The `Event` enum of this pallet
20328
+ **/
20329
+ export type PalletAhOpsEvent =
20330
+ /**
20331
+ * Some lease reserve could not be unreserved and needs manual cleanup.
20332
+ **/
21294
20333
  | {
21295
- name: 'AccountTranslatedParachainSovereignDerived';
21296
- data: { from: AccountId32; to: AccountId32; derivationIndex: number };
20334
+ name: 'LeaseUnreserveRemaining';
20335
+ data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
21297
20336
  }
21298
20337
  /**
21299
- * An XCM message was sent.
20338
+ * Some amount for a crowdloan reserve could not be unreserved and needs manual cleanup.
21300
20339
  **/
21301
20340
  | {
21302
- name: 'XcmSent';
21303
- data: {
21304
- origin: StagingXcmV5Location;
21305
- destination: StagingXcmV5Location;
21306
- message: StagingXcmV5Xcm;
21307
- messageId: FixedBytes<32>;
21308
- };
20341
+ name: 'CrowdloanUnreserveRemaining';
20342
+ data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
21309
20343
  }
21310
20344
  /**
21311
- * Failed to unreserve a multisig deposit.
20345
+ * A sovereign parachain account has been migrated from its child to sibling
20346
+ * representation.
21312
20347
  **/
21313
20348
  | {
21314
- name: 'FailedToUnreserveMultisigDeposit';
20349
+ name: 'SovereignMigrated';
21315
20350
  data: {
21316
20351
  /**
21317
- * The expected amount of the deposit that was expected to be unreserved.
21318
- **/
21319
- expectedAmount: bigint;
21320
-
21321
- /**
21322
- * The missing amount of the deposit.
20352
+ * The parachain ID that had its account migrated.
21323
20353
  **/
21324
- missingAmount: bigint;
20354
+ paraId: number;
21325
20355
 
21326
20356
  /**
21327
- * The account that the deposit was unreserved from.
21328
- **/
21329
- account: AccountId32;
21330
- };
21331
- }
21332
- /**
21333
- * Failed to unreserve a legacy status preimage deposit.
21334
- **/
21335
- | {
21336
- name: 'FailedToUnreservePreimageDeposit';
21337
- data: {
21338
- /**
21339
- * The expected amount of the deposit that was expected to be unreserved.
20357
+ * The old account that was migrated out of.
21340
20358
  **/
21341
- expectedAmount: bigint;
20359
+ from: AccountId32;
21342
20360
 
21343
20361
  /**
21344
- * The missing amount of the deposit.
20362
+ * The new account that was migrated into.
21345
20363
  **/
21346
- missingAmount: bigint;
20364
+ to: AccountId32;
21347
20365
 
21348
20366
  /**
21349
- * The account that the deposit was unreserved from.
20367
+ * The derivation path that was used to translate the account.
21350
20368
  **/
21351
- account: AccountId32;
20369
+ derivationPath: Array<number>;
21352
20370
  };
21353
- };
21354
-
21355
- export type PalletAhMigratorPalletEventName =
21356
- | 'AssetRates'
21357
- | 'BagsList'
21358
- | 'Balances'
21359
- | 'Bounties'
21360
- | 'ChildBounties'
21361
- | 'Claims'
21362
- | 'ConvictionVoting'
21363
- | 'Crowdloan'
21364
- | 'DelegatedStaking'
21365
- | 'Indices'
21366
- | 'Multisig'
21367
- | 'NomPools'
21368
- | 'PreimageChunk'
21369
- | 'PreimageLegacyStatus'
21370
- | 'PreimageRequestStatus'
21371
- | 'ProxyAnnouncements'
21372
- | 'ProxyProxies'
21373
- | 'Recovery'
21374
- | 'ReferendaMetadata'
21375
- | 'ReferendaReferendums'
21376
- | 'ReferendaValues'
21377
- | 'Scheduler'
21378
- | 'SchedulerAgenda'
21379
- | 'Staking'
21380
- | 'Treasury'
21381
- | 'Vesting'
21382
- | 'Society';
20371
+ }
20372
+ /**
20373
+ * Failed to re-bond some migrated funds.
20374
+ **/
20375
+ | { name: 'FailedToBond'; data: { account: AccountId32; amount: bigint } };
21383
20376
 
21384
20377
  export type FrameSystemLastRuntimeUpgradeInfo = { specVersion: number; specName: string };
21385
20378
 
@@ -21404,7 +20397,10 @@ export type FrameSystemLimitsWeightsPerClass = {
21404
20397
  reserved?: SpWeightsWeightV2Weight | undefined;
21405
20398
  };
21406
20399
 
21407
- export type FrameSystemLimitsBlockLength = { max: FrameSupportDispatchPerDispatchClassU32 };
20400
+ export type FrameSystemLimitsBlockLength = {
20401
+ max: FrameSupportDispatchPerDispatchClassU32;
20402
+ maxHeaderSize?: number | undefined;
20403
+ };
21408
20404
 
21409
20405
  export type FrameSupportDispatchPerDispatchClassU32 = { normal: number; operational: number; mandatory: number };
21410
20406
 
@@ -21479,6 +20475,14 @@ export type CumulusPalletWeightReclaimStorageWeightReclaim = [
21479
20475
  PalletReviveEvmTxExtensionSetOrigin,
21480
20476
  ];
21481
20477
 
20478
+ export type CumulusPalletParachainSystemBlockWeightBlockWeightMode =
20479
+ | { type: 'FullCore'; value: { context: number } }
20480
+ | {
20481
+ type: 'PotentialFullCore';
20482
+ value: { context: number; firstTransactionIndex?: number | undefined; targetWeight: SpWeightsWeightV2Weight };
20483
+ }
20484
+ | { type: 'FractionOfCore'; value: { context: number; firstTransactionIndex?: number | undefined } };
20485
+
21482
20486
  export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
21483
20487
  usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
21484
20488
  paraHeadHash?: H256 | undefined;
@@ -21553,6 +20557,14 @@ export type PolkadotCorePrimitivesOutboundHrmpMessage = {
21553
20557
  data: Bytes;
21554
20558
  };
21555
20559
 
20560
+ export type CumulusPalletParachainSystemPoVMessages = {
20561
+ relayStorageRootOrHash: H256;
20562
+ coreSelector: number;
20563
+ bundleIndex: number;
20564
+ umpMsgCount: number;
20565
+ hrmpOutboundCount: number;
20566
+ };
20567
+
21556
20568
  /**
21557
20569
  * The `Error` enum of this pallet.
21558
20570
  **/
@@ -21592,6 +20604,21 @@ export type PalletMigrationsError =
21592
20604
  **/
21593
20605
  'Ongoing';
21594
20606
 
20607
+ export type PalletMigrationsMbmIsOngoing = 'Yes' | 'No' | 'Stuck';
20608
+
20609
+ export type PalletMigrationsMbmProgress = {
20610
+ currentMigration: number;
20611
+ totalMigrations: number;
20612
+ currentMigrationSteps: number;
20613
+ currentMigrationMaxSteps?: number | undefined;
20614
+ };
20615
+
20616
+ export type PalletMigrationsMbmStatus = {
20617
+ ongoing: PalletMigrationsMbmIsOngoing;
20618
+ progress?: PalletMigrationsMbmProgress | undefined;
20619
+ prefixes: Array<Bytes>;
20620
+ };
20621
+
21595
20622
  export type PalletPreimageOldRequestStatus =
21596
20623
  | { type: 'Unrequested'; value: { deposit: [AccountId32, bigint]; len: number } }
21597
20624
  | {
@@ -21657,6 +20684,8 @@ export type PalletSchedulerScheduled = {
21657
20684
  origin: AssetHubKusamaRuntimeOriginCaller;
21658
20685
  };
21659
20686
 
20687
+ export type PalletSchedulerRetryConfig = { totalRetries: number; remaining: number; period: number };
20688
+
21660
20689
  /**
21661
20690
  * The `Error` enum of this pallet.
21662
20691
  **/
@@ -21682,12 +20711,13 @@ export type PalletSchedulerError =
21682
20711
  **/
21683
20712
  | 'Named';
21684
20713
 
20714
+ export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
20715
+
20716
+ export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
20717
+
21685
20718
  export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
21686
20719
 
21687
- export type FrameSupportTokensMiscIdAmountRuntimeHoldReason = {
21688
- id: AssetHubKusamaRuntimeRuntimeHoldReason;
21689
- amount: bigint;
21690
- };
20720
+ export type FrameSupportTokensMiscIdAmount = { id: AssetHubKusamaRuntimeRuntimeHoldReason; amount: bigint };
21691
20721
 
21692
20722
  export type FrameSupportTokensMiscIdAmountRuntimeFreezeReason = {
21693
20723
  id: AssetHubKusamaRuntimeRuntimeFreezeReason;
@@ -21699,6 +20729,8 @@ export type AssetHubKusamaRuntimeRuntimeFreezeReason = {
21699
20729
  value: PalletNominationPoolsFreezeReason;
21700
20730
  };
21701
20731
 
20732
+ export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
20733
+
21702
20734
  /**
21703
20735
  * The `Error` enum of this pallet.
21704
20736
  **/
@@ -21930,10 +20962,13 @@ export type CumulusPalletXcmpQueueOutboundChannelDetails = {
21930
20962
  signalsExist: boolean;
21931
20963
  firstIndex: number;
21932
20964
  lastIndex: number;
20965
+ flags: CumulusPalletXcmpQueueOutboundChannelFlags;
21933
20966
  };
21934
20967
 
21935
20968
  export type CumulusPalletXcmpQueueOutboundState = 'Ok' | 'Suspended';
21936
20969
 
20970
+ export type CumulusPalletXcmpQueueOutboundChannelFlags = { bits: number };
20971
+
21937
20972
  export type CumulusPalletXcmpQueueQueueConfigData = {
21938
20973
  suspendThreshold: number;
21939
20974
  dropThreshold: number;
@@ -22322,7 +21357,7 @@ export type PalletMultisigError =
22322
21357
  **/
22323
21358
  | 'AlreadyStored';
22324
21359
 
22325
- export type PalletProxyProxyDefinitionProxyType = {
21360
+ export type PalletProxyProxyDefinition = {
22326
21361
  delegate: AccountId32;
22327
21362
  proxyType: AssetHubKusamaRuntimeProxyType;
22328
21363
  delay: number;
@@ -23387,7 +22422,6 @@ export type PalletReviveEvmApiRpcTypesGenTransaction7702Unsigned = {
23387
22422
  authorizationList: Array<PalletReviveEvmApiRpcTypesGenAuthorizationListEntry>;
23388
22423
  chainId: U256;
23389
22424
  gas: U256;
23390
- gasPrice: U256;
23391
22425
  input: PalletReviveEvmApiByteBytes;
23392
22426
  maxFeePerGas: U256;
23393
22427
  maxPriorityFeePerGas: U256;
@@ -23527,6 +22561,7 @@ export type PalletReviveDebugDebugSettings = {
23527
22561
  allowUnlimitedContractSize: boolean;
23528
22562
  bypassEip3607: boolean;
23529
22563
  pvmLogs: boolean;
22564
+ disableExecutionTracing: boolean;
23530
22565
  };
23531
22566
 
23532
22567
  /**
@@ -23787,6 +22822,73 @@ export type PalletReviveError =
23787
22822
  **/
23788
22823
  | 'EcdsaRecoveryFailed';
23789
22824
 
22825
+ /**
22826
+ * Error types for the permit pallet.
22827
+ **/
22828
+ export type PalletAssetsPrecompilesPermitPalletError =
22829
+ /**
22830
+ * The permit signature is invalid.
22831
+ **/
22832
+ | 'InvalidSignature'
22833
+ /**
22834
+ * The signer does not match the owner.
22835
+ **/
22836
+ | 'SignerMismatch'
22837
+ /**
22838
+ * The permit has expired (deadline passed).
22839
+ **/
22840
+ | 'PermitExpired'
22841
+ /**
22842
+ * The signature's `s` value is too high (malleability protection).
22843
+ **/
22844
+ | 'SignatureSValueTooHigh'
22845
+ /**
22846
+ * The signature's `v` value is invalid.
22847
+ **/
22848
+ | 'InvalidVValue'
22849
+ /**
22850
+ * Nonce overflow - account has used too many permits.
22851
+ **/
22852
+ | 'NonceOverflow'
22853
+ /**
22854
+ * The owner address is invalid (e.g., zero address).
22855
+ **/
22856
+ | 'InvalidOwner'
22857
+ /**
22858
+ * The spender address is invalid (e.g., zero address).
22859
+ **/
22860
+ | 'InvalidSpender';
22861
+
22862
+ export type PalletNominationPoolsPoolMember = {
22863
+ poolId: number;
22864
+ points: bigint;
22865
+ lastRecordedRewardCounter: FixedU128;
22866
+ unbondingEras: Array<[number, bigint]>;
22867
+ };
22868
+
22869
+ export type PalletNominationPoolsBondedPoolInner = {
22870
+ commission: PalletNominationPoolsCommission;
22871
+ memberCounter: number;
22872
+ points: bigint;
22873
+ roles: PalletNominationPoolsPoolRoles;
22874
+ state: PalletNominationPoolsPoolState;
22875
+ };
22876
+
22877
+ export type PalletNominationPoolsCommission = {
22878
+ current?: [Perbill, AccountId32] | undefined;
22879
+ max?: Perbill | undefined;
22880
+ changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
22881
+ throttleFrom?: number | undefined;
22882
+ claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
22883
+ };
22884
+
22885
+ export type PalletNominationPoolsPoolRoles = {
22886
+ depositor: AccountId32;
22887
+ root?: AccountId32 | undefined;
22888
+ nominator?: AccountId32 | undefined;
22889
+ bouncer?: AccountId32 | undefined;
22890
+ };
22891
+
23790
22892
  export type PalletNominationPoolsRewardPool = {
23791
22893
  lastRecordedRewardCounter: FixedU128;
23792
22894
  lastRecordedTotalPayouts: bigint;
@@ -24096,7 +23198,7 @@ export type PalletStakingAsyncRcClientError =
24096
23198
  **/
24097
23199
  | 'InvalidKeys'
24098
23200
  /**
24099
- * The ownership proof for the session keys is invalid.
23201
+ * Invalid ownership proof for the session keys.
24100
23202
  **/
24101
23203
  | 'InvalidProof'
24102
23204
  /**
@@ -24385,6 +23487,8 @@ export type PalletStakingAsyncPalletError =
24385
23487
  **/
24386
23488
  | 'CancelledSlash';
24387
23489
 
23490
+ export type PalletTreasuryProposal = { proposer: AccountId32; value: bigint; beneficiary: AccountId32; bond: bigint };
23491
+
24388
23492
  export type PalletTreasurySpendStatus = {
24389
23493
  assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
24390
23494
  amount: bigint;
@@ -24449,6 +23553,28 @@ export type PalletTreasuryError =
24449
23553
  **/
24450
23554
  | 'Inconclusive';
24451
23555
 
23556
+ export type PalletConvictionVotingVoteVoting =
23557
+ | { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
23558
+ | { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
23559
+
23560
+ export type PalletConvictionVotingVoteCasting = {
23561
+ votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
23562
+ delegations: PalletConvictionVotingDelegations;
23563
+ prior: PalletConvictionVotingVotePriorLock;
23564
+ };
23565
+
23566
+ export type PalletConvictionVotingDelegations = { votes: bigint; capital: bigint };
23567
+
23568
+ export type PalletConvictionVotingVotePriorLock = [number, bigint];
23569
+
23570
+ export type PalletConvictionVotingVoteDelegating = {
23571
+ balance: bigint;
23572
+ target: AccountId32;
23573
+ conviction: PalletConvictionVotingConviction;
23574
+ delegations: PalletConvictionVotingDelegations;
23575
+ prior: PalletConvictionVotingVotePriorLock;
23576
+ };
23577
+
24452
23578
  /**
24453
23579
  * The `Error` enum of this pallet.
24454
23580
  **/
@@ -24503,15 +23629,15 @@ export type PalletConvictionVotingError =
24503
23629
  **/
24504
23630
  | 'BadClass';
24505
23631
 
24506
- export type PalletReferendaReferendumInfoOriginCaller =
24507
- | { type: 'Ongoing'; value: PalletReferendaReferendumStatusOriginCaller }
23632
+ export type PalletReferendaReferendumInfo =
23633
+ | { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
24508
23634
  | { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
24509
23635
  | { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
24510
23636
  | { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
24511
23637
  | { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
24512
23638
  | { type: 'Killed'; value: number };
24513
23639
 
24514
- export type PalletReferendaReferendumStatusOriginCaller = {
23640
+ export type PalletReferendaReferendumStatus = {
24515
23641
  track: number;
24516
23642
  origin: AssetHubKusamaRuntimeOriginCaller;
24517
23643
  proposal: FrameSupportPreimagesBounded;
@@ -24525,6 +23651,10 @@ export type PalletReferendaReferendumStatusOriginCaller = {
24525
23651
  alarm?: [number, [number, number]] | undefined;
24526
23652
  };
24527
23653
 
23654
+ export type PalletReferendaDeposit = { who: AccountId32; amount: bigint };
23655
+
23656
+ export type PalletReferendaDecidingStatus = { since: number; confirming?: number | undefined };
23657
+
24528
23658
  export type PalletReferendaTrackDetails = {
24529
23659
  name: string;
24530
23660
  maxDeciding: number;
@@ -24637,6 +23767,15 @@ export type PalletBountiesBounty = {
24637
23767
  status: PalletBountiesBountyStatus;
24638
23768
  };
24639
23769
 
23770
+ export type PalletBountiesBountyStatus =
23771
+ | { type: 'Proposed' }
23772
+ | { type: 'Approved' }
23773
+ | { type: 'Funded' }
23774
+ | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
23775
+ | { type: 'Active'; value: { curator: AccountId32; updateDue: number } }
23776
+ | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } }
23777
+ | { type: 'ApprovedWithCurator'; value: { curator: AccountId32 } };
23778
+
24640
23779
  /**
24641
23780
  * The `Error` enum of this pallet.
24642
23781
  **/
@@ -24919,89 +24058,6 @@ export type PalletAhOpsError =
24919
24058
  **/
24920
24059
  | 'FailedToForceUnstake';
24921
24060
 
24922
- export type PalletAhMigratorBalancesBefore = { checkingAccount: bigint; totalIssuance: bigint };
24923
-
24924
- /**
24925
- * The `Error` enum of this pallet.
24926
- **/
24927
- export type PalletAhMigratorError =
24928
- /**
24929
- * Failed to unreserve deposit.
24930
- **/
24931
- | 'FailedToUnreserveDeposit'
24932
- /**
24933
- * Failed to process an account data from RC.
24934
- **/
24935
- | 'FailedToProcessAccount'
24936
- /**
24937
- * Some item could not be inserted because it already exists.
24938
- **/
24939
- | 'InsertConflict'
24940
- /**
24941
- * Failed to convert RC type to AH type.
24942
- **/
24943
- | 'FailedToConvertType'
24944
- /**
24945
- * Failed to fetch preimage.
24946
- **/
24947
- | 'PreimageNotFound'
24948
- /**
24949
- * Failed to convert RC call to AH call.
24950
- **/
24951
- | 'FailedToConvertCall'
24952
- /**
24953
- * Failed to bound a call.
24954
- **/
24955
- | 'FailedToBoundCall'
24956
- /**
24957
- * Failed to send XCM message.
24958
- **/
24959
- | 'XcmError'
24960
- /**
24961
- * Failed to integrate a vesting schedule.
24962
- **/
24963
- | 'FailedToIntegrateVestingSchedule'
24964
- /**
24965
- * Checking account overflow or underflow.
24966
- **/
24967
- | 'FailedToCalculateCheckingAccount'
24968
- /**
24969
- * Vector did not fit into its compile-time bound.
24970
- **/
24971
- | 'FailedToBoundVector'
24972
- /**
24973
- * The DMP queue priority is already set to the same value.
24974
- **/
24975
- | 'DmpQueuePriorityAlreadySet'
24976
- /**
24977
- * Invalid parameter.
24978
- **/
24979
- | 'InvalidParameter'
24980
- /**
24981
- * Preimage missing.
24982
- **/
24983
- | 'PreimageMissing'
24984
- /**
24985
- * Preimage too big.
24986
- **/
24987
- | 'PreimageTooBig'
24988
- /**
24989
- * Preimage chunk missing.
24990
- **/
24991
- | 'PreimageChunkMissing'
24992
- /**
24993
- * Preimage status invalid.
24994
- **/
24995
- | 'PreimageStatusInvalid'
24996
- /**
24997
- * The XCM version is invalid.
24998
- **/
24999
- | 'BadXcmVersion'
25000
- /**
25001
- * The origin is invalid.
25002
- **/
25003
- | 'InvalidOrigin';
25004
-
25005
24061
  export type SpConsensusSlotsSlotDuration = bigint;
25006
24062
 
25007
24063
  export type SpRuntimeBlockLazyBlock = { header: Header; extrinsics: Array<SpRuntimeOpaqueExtrinsic> };
@@ -25050,6 +24106,8 @@ export type SpRuntimeTransactionValidityValidTransaction = {
25050
24106
  propagate: boolean;
25051
24107
  };
25052
24108
 
24109
+ export type SpSessionRuntimeApiOpaqueGeneratedSessionKeys = { keys: Bytes; proof: Bytes };
24110
+
25053
24111
  export type FrameSupportViewFunctionsViewFunctionId = { prefix: FixedBytes<16>; suffix: FixedBytes<16> };
25054
24112
 
25055
24113
  export type FrameSupportViewFunctionsViewFunctionDispatchError =
@@ -25204,7 +24262,8 @@ export type PalletRevivePrimitivesContractAccessError =
25204
24262
 
25205
24263
  export type PalletReviveEvmApiDebugRpcTypesTracerType =
25206
24264
  | { type: 'CallTracer'; value?: PalletReviveEvmApiDebugRpcTypesCallTracerConfig | undefined }
25207
- | { type: 'PrestateTracer'; value?: PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig | undefined };
24265
+ | { type: 'PrestateTracer'; value?: PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig | undefined }
24266
+ | { type: 'ExecutionTracer'; value?: PalletReviveEvmApiDebugRpcTypesExecutionTracerConfig | undefined };
25208
24267
 
25209
24268
  export type PalletReviveEvmApiDebugRpcTypesCallTracerConfig = { withLogs: boolean; onlyTopCall: boolean };
25210
24269
 
@@ -25214,14 +24273,25 @@ export type PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig = {
25214
24273
  disableCode: boolean;
25215
24274
  };
25216
24275
 
24276
+ export type PalletReviveEvmApiDebugRpcTypesExecutionTracerConfig = {
24277
+ enableMemory: boolean;
24278
+ disableStack: boolean;
24279
+ disableStorage: boolean;
24280
+ enableReturnData: boolean;
24281
+ disableSyscallDetails: boolean;
24282
+ limit?: bigint | undefined;
24283
+ memoryWordLimit: number;
24284
+ };
24285
+
25217
24286
  export type PalletReviveEvmApiDebugRpcTypesTrace =
25218
24287
  | { type: 'Call'; value: PalletReviveEvmApiDebugRpcTypesCallTrace }
25219
- | { type: 'Prestate'; value: PalletReviveEvmApiDebugRpcTypesPrestateTrace };
24288
+ | { type: 'Prestate'; value: PalletReviveEvmApiDebugRpcTypesPrestateTrace }
24289
+ | { type: 'Execution'; value: PalletReviveEvmApiDebugRpcTypesExecutionTrace };
25220
24290
 
25221
24291
  export type PalletReviveEvmApiDebugRpcTypesCallTrace = {
25222
24292
  from: H160;
25223
- gas: U256;
25224
- gasUsed: U256;
24293
+ gas: bigint;
24294
+ gasUsed: bigint;
25225
24295
  to: H160;
25226
24296
  input: PalletReviveEvmApiByteBytes;
25227
24297
  output: PalletReviveEvmApiByteBytes;
@@ -25266,6 +24336,38 @@ export type PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo = {
25266
24336
  storage: Array<[PalletReviveEvmApiByteBytes, PalletReviveEvmApiByteBytes | undefined]>;
25267
24337
  };
25268
24338
 
24339
+ export type PalletReviveEvmApiDebugRpcTypesExecutionTrace = {
24340
+ gas: bigint;
24341
+ weightConsumed: SpWeightsWeightV2Weight;
24342
+ baseCallWeight: SpWeightsWeightV2Weight;
24343
+ failed: boolean;
24344
+ returnValue: PalletReviveEvmApiByteBytes;
24345
+ structLogs: Array<PalletReviveEvmApiDebugRpcTypesExecutionStep>;
24346
+ };
24347
+
24348
+ export type PalletReviveEvmApiDebugRpcTypesExecutionStep = {
24349
+ gas: bigint;
24350
+ gasCost: bigint;
24351
+ weightCost: SpWeightsWeightV2Weight;
24352
+ depth: number;
24353
+ returnData: PalletReviveEvmApiByteBytes;
24354
+ error?: string | undefined;
24355
+ kind: PalletReviveEvmApiDebugRpcTypesExecutionStepKind;
24356
+ };
24357
+
24358
+ export type PalletReviveEvmApiDebugRpcTypesExecutionStepKind =
24359
+ | {
24360
+ type: 'EvmOpcode';
24361
+ value: {
24362
+ pc: number;
24363
+ op: number;
24364
+ stack: Array<PalletReviveEvmApiByteBytes>;
24365
+ memory: Array<PalletReviveEvmApiByteBytes>;
24366
+ storage?: Array<[PalletReviveEvmApiByteBytes, PalletReviveEvmApiByteBytes]> | undefined;
24367
+ };
24368
+ }
24369
+ | { type: 'PvmSyscall'; value: { op: number; args: Array<bigint>; returned?: bigint | undefined } };
24370
+
25269
24371
  export type PalletRevivePrimitivesBalanceConversionError = 'Value' | 'Dust';
25270
24372
 
25271
24373
  export type AssetHubKusamaRuntimeRuntimeError =
@@ -25297,6 +24399,7 @@ export type AssetHubKusamaRuntimeRuntimeError =
25297
24399
  | { pallet: 'Recovery'; palletError: PalletRecoveryError }
25298
24400
  | { pallet: 'Society'; palletError: PalletSocietyError }
25299
24401
  | { pallet: 'Revive'; palletError: PalletReviveError }
24402
+ | { pallet: 'AssetsPrecompilesPermit'; palletError: PalletAssetsPrecompilesPermitPalletError }
25300
24403
  | { pallet: 'StateTrieMigration'; palletError: PalletStateTrieMigrationError }
25301
24404
  | { pallet: 'NominationPools'; palletError: PalletNominationPoolsError }
25302
24405
  | { pallet: 'VoterList'; palletError: PalletBagsListError }
@@ -25313,5 +24416,4 @@ export type AssetHubKusamaRuntimeRuntimeError =
25313
24416
  | { pallet: 'ChildBounties'; palletError: PalletChildBountiesError }
25314
24417
  | { pallet: 'AssetRate'; palletError: PalletAssetRateError }
25315
24418
  | { pallet: 'MultiAssetBounties'; palletError: PalletMultiAssetBountiesError }
25316
- | { pallet: 'AhOps'; palletError: PalletAhOpsError }
25317
- | { pallet: 'AhMigrator'; palletError: PalletAhMigratorError };
24419
+ | { pallet: 'AhOps'; palletError: PalletAhOpsError };