git.delta.rocks / unique-network / refs/commits / 768e7a342d72

difftreelog

test regenerate polkadot types

Yaroslav Bolyukin2023-05-22parent: #3f5f75f.patch.diff
in: master

11 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -43,10 +43,25 @@
     };
     balances: {
       /**
-       * The minimum amount required to keep an account open.
+       * The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
+       * 
+       * If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for
+       * this pallet. However, you do so at your own risk: this will open up a major DoS vector.
+       * In case you have multiple sources of provider references, you may also get unexpected
+       * behaviour if you set this to zero.
+       * 
+       * Bottom line: Do yourself a favour and make it at least one!
        **/
       existentialDeposit: u128 & AugmentedConst<ApiType>;
       /**
+       * The maximum number of individual freeze locks that can exist on an account at any time.
+       **/
+      maxFreezes: u32 & AugmentedConst<ApiType>;
+      /**
+       * The maximum number of holds that can exist on an account at any time.
+       **/
+      maxHolds: u32 & AugmentedConst<ApiType>;
+      /**
        * The maximum number of locks that should exist on an account.
        * Not strictly enforced, but used for weight estimation.
        **/
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -47,35 +47,43 @@
     };
     balances: {
       /**
-       * Beneficiary account must pre-exist
+       * Beneficiary account must pre-exist.
        **/
       DeadAccount: AugmentedError<ApiType>;
       /**
-       * Value too low to create account due to existential deposit
+       * Value too low to create account due to existential deposit.
        **/
       ExistentialDeposit: AugmentedError<ApiType>;
       /**
-       * A vesting schedule already exists for this account
+       * A vesting schedule already exists for this account.
        **/
       ExistingVestingSchedule: AugmentedError<ApiType>;
       /**
+       * Transfer/payment would kill account.
+       **/
+      Expendability: AugmentedError<ApiType>;
+      /**
        * Balance too low to send value.
        **/
       InsufficientBalance: AugmentedError<ApiType>;
       /**
-       * Transfer/payment would kill account
+       * Account liquidity restrictions prevent withdrawal.
        **/
-      KeepAlive: AugmentedError<ApiType>;
+      LiquidityRestrictions: AugmentedError<ApiType>;
+      /**
+       * Number of freezes exceed `MaxFreezes`.
+       **/
+      TooManyFreezes: AugmentedError<ApiType>;
       /**
-       * Account liquidity restrictions prevent withdrawal
+       * Number of holds exceed `MaxHolds`.
        **/
-      LiquidityRestrictions: AugmentedError<ApiType>;
+      TooManyHolds: AugmentedError<ApiType>;
       /**
-       * Number of named reserves exceed MaxReserves
+       * Number of named reserves exceed `MaxReserves`.
        **/
       TooManyReserves: AugmentedError<ApiType>;
       /**
-       * Vesting balance too high to send value
+       * Vesting balance too high to send value.
        **/
       VestingBalance: AugmentedError<ApiType>;
       /**
@@ -591,7 +599,7 @@
     };
     parachainSystem: {
       /**
-       * The inherent which supplies the host configuration did not run this block
+       * The inherent which supplies the host configuration did not run this block.
        **/
       HostConfigurationNotAvailable: AugmentedError<ApiType>;
       /**
@@ -603,16 +611,16 @@
        **/
       NotScheduled: AugmentedError<ApiType>;
       /**
-       * Attempt to upgrade validation function while existing upgrade pending
+       * Attempt to upgrade validation function while existing upgrade pending.
        **/
       OverlappingUpgrades: AugmentedError<ApiType>;
       /**
-       * Polkadot currently prohibits this parachain from upgrading its validation function
+       * Polkadot currently prohibits this parachain from upgrading its validation function.
        **/
       ProhibitedByPolkadot: AugmentedError<ApiType>;
       /**
        * The supplied validation function has compiled into a blob larger than Polkadot is
-       * willing to run
+       * willing to run.
        **/
       TooBig: AugmentedError<ApiType>;
       /**
@@ -620,7 +628,7 @@
        **/
       Unauthorized: AugmentedError<ApiType>;
       /**
-       * The inherent which supplies the validation data did not run this block
+       * The inherent which supplies the validation data did not run this block.
        **/
       ValidationDataNotAvailable: AugmentedError<ApiType>;
       /**
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -56,7 +56,11 @@
       /**
        * A balance was set by root.
        **/
-      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;
+      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;
+      /**
+       * Some amount was burned from an account.
+       **/
+      Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
       /**
        * Some amount was deposited (e.g. for transaction fees).
        **/
@@ -71,6 +75,26 @@
        **/
       Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
       /**
+       * Some balance was frozen.
+       **/
+      Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
+       * Total issuance was increased by `amount`, creating a credit to be balanced.
+       **/
+      Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
+      /**
+       * Some balance was locked.
+       **/
+      Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
+       * Some amount was minted into an account.
+       **/
+      Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
+       * Total issuance was decreased by `amount`, creating a debt to be balanced.
+       **/
+      Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
+      /**
        * Some balance was reserved (moved from free to reserved).
        **/
       Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
@@ -80,18 +104,38 @@
        **/
       ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;
       /**
+       * Some amount was restored into an account.
+       **/
+      Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
        * Some amount was removed from the account (e.g. for misbehavior).
        **/
       Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
       /**
+       * Some amount was suspended from an account (it can be restored later).
+       **/
+      Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
+       * Some balance was thawed.
+       **/
+      Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
        * Transfer succeeded.
        **/
       Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
       /**
+       * Some balance was unlocked.
+       **/
+      Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+      /**
        * Some balance was unreserved (moved from reserved to free).
        **/
       Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
       /**
+       * An account was upgraded.
+       **/
+      Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
+      /**
        * Some amount was withdrawn from the account (e.g. for transaction fees).
        **/
       Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
@@ -274,7 +318,7 @@
       /**
        * An ethereum transaction was successfully executed.
        **/
-      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;
+      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes }>;
       /**
        * Generic event
        **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -10,7 +10,7 @@
 import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -55,7 +55,6 @@
        * Stores the total staked amount.
        **/
       totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
-      upgradedToReserves: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
@@ -130,6 +129,14 @@
        **/
       account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
       /**
+       * Freeze locks on account balances.
+       **/
+      freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * Holds on account balances.
+       **/
+      holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
        * The total units of outstanding deactivated balance in the system.
        **/
       inactiveIssuance: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
@@ -146,12 +153,6 @@
        * The total units issued in the system.
        **/
       totalIssuance: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
-       * Generic query
-       **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
-    charging: {
       /**
        * Generic query
        **/
@@ -565,7 +566,7 @@
       /**
        * The next authorized upgrade, if there is one.
        **/
-      authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<H256>>, []> & QueryableStorageEntry<ApiType, []>;
+      authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<CumulusPalletParachainSystemCodeUpgradeAuthorization>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * A custom head data that should be returned as result of `validate_block`.
        * 
@@ -584,7 +585,7 @@
        * 
        * This data is also absent from the genesis.
        **/
-      hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
+      hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * HRMP messages that were sent in a block.
        * 
@@ -680,7 +681,7 @@
        * relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is
        * set after the inherent.
        **/
-      upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
+      upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Upward messages that were sent in a block.
        * 
@@ -692,7 +693,7 @@
        * This value is expected to be set only once per block and it's never stored
        * in the trie.
        **/
-      validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
+      validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
@@ -751,6 +752,10 @@
        **/
       versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
       /**
+       * Global suspension state of the XCM executor.
+       **/
+      xcmExecutionSuspended: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
        * Generic query
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
@@ -1062,11 +1067,6 @@
        * Last sponsoring of token property setting // todo:doc rephrase this and the following
        **/
       tokenPropertyBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
-      /**
-       * Variable metadata sponsoring
-       * Collection id (controlled?2), token id (controlled?2)
-       **/
-      variableMetaDataBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
       /**
        * Generic query
        **/
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -181,13 +181,21 @@
        **/
       [key: string]: DecoratedCallBase<ApiType>;
     };
-    /** 0x37e397fc7c91f5e4/1 */
+    /** 0x37e397fc7c91f5e4/2 */
     metadata: {
       /**
        * Returns the metadata of a runtime
        **/
       metadata: AugmentedCall<ApiType, () => Observable<OpaqueMetadata>>;
       /**
+       * Returns the metadata at a given version.
+       **/
+      metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
+      /**
+       * Returns the supported metadata versions.
+       **/
+      metadataVersions: AugmentedCall<ApiType, () => Observable<Vec<u32>>>;
+      /**
        * Generic call
        **/
       [key: string]: DecoratedCallBase<ApiType>;
@@ -229,7 +237,7 @@
        **/
       [key: string]: DecoratedCallBase<ApiType>;
     };
-    /** 0x37c8bb1350a9a2a8/3 */
+    /** 0x37c8bb1350a9a2a8/4 */
     transactionPaymentApi: {
       /**
        * The transaction fee details
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -132,12 +132,15 @@
     };
     balances: {
       /**
-       * Exactly as `transfer`, except the origin must be root and the source account may be
-       * specified.
-       * ## Complexity
-       * - Same as transfer, but additional read and write because the source account is not
-       * assumed to be in the overlay.
+       * Set the regular balance of a given account.
+       * 
+       * The dispatch origin for this call is `root`.
        **/
+      forceSetBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
+      /**
+       * Exactly as `transfer_allow_death`, except the origin must be root and the source account
+       * may be specified.
+       **/
       forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
       /**
        * Unreserve some balance from a user by force.
@@ -146,39 +149,18 @@
        **/
       forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
       /**
-       * Set the balances of a given account.
+       * Set the regular balance of a given account; it also takes a reserved balance but this
+       * must be the same as the account's current reserved balance.
        * 
-       * This will alter `FreeBalance` and `ReservedBalance` in storage. it will
-       * also alter the total issuance of the system (`TotalIssuance`) appropriately.
-       * If the new free or reserved balance is below the existential deposit,
-       * it will reset the account nonce (`frame_system::AccountNonce`).
+       * The dispatch origin for this call is `root`.
        * 
-       * The dispatch origin for this call is `root`.
+       * WARNING: This call is DEPRECATED! Use `force_set_balance` instead.
        **/
-      setBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, newReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;
+      setBalanceDeprecated: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, oldReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;
       /**
-       * Transfer some liquid free balance to another account.
+       * Alias for `transfer_allow_death`, provided only for name-wise compatibility.
        * 
-       * `transfer` will set the `FreeBalance` of the sender and receiver.
-       * If the sender's account is below the existential deposit as a result
-       * of the transfer, the account will be reaped.
-       * 
-       * The dispatch origin for this call must be `Signed` by the transactor.
-       * 
-       * ## Complexity
-       * - Dependent on arguments but not critical, given proper implementations for input config
-       * types. See related functions below.
-       * - It contains a limited number of reads and writes internally and no complex
-       * computation.
-       * 
-       * Related functions:
-       * 
-       * - `ensure_can_withdraw` is always called internally but has a bounded complexity.
-       * - Transferring balances to accounts that did not exist before will cause
-       * `T::OnNewAccount::on_new_account` to be called.
-       * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.
-       * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check
-       * that the transfer will not kill the origin account.
+       * WARNING: DEPRECATED! Will be released in approximately 3 months.
        **/
       transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
       /**
@@ -196,25 +178,39 @@
        * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
        * of the funds the account has, causing the sender account to be killed (false), or
        * transfer everything except at least the existential deposit, which will guarantee to
-       * keep the sender account alive (true). ## Complexity
-       * - O(1). Just like transfer, but reading the user's transferable balance first.
+       * keep the sender account alive (true).
        **/
       transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
       /**
-       * Same as the [`transfer`] call, but with a check that the transfer will not kill the
-       * origin account.
+       * Transfer some liquid free balance to another account.
+       * 
+       * `transfer_allow_death` will set the `FreeBalance` of the sender and receiver.
+       * If the sender's account is below the existential deposit as a result
+       * of the transfer, the account will be reaped.
+       * 
+       * The dispatch origin for this call must be `Signed` by the transactor.
+       **/
+      transferAllowDeath: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
+      /**
+       * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
+       * kill the origin account.
        * 
-       * 99% of the time you want [`transfer`] instead.
+       * 99% of the time you want [`transfer_allow_death`] instead.
        * 
-       * [`transfer`]: struct.Pallet.html#method.transfer
+       * [`transfer_allow_death`]: struct.Pallet.html#method.transfer
        **/
       transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
       /**
-       * Generic tx
+       * Upgrade a specified account.
+       * 
+       * - `origin`: Must be `Signed`.
+       * - `who`: The account to be upgraded.
+       * 
+       * This will waive the transaction fee if at least all but 10% of the accounts needed to
+       * be upgraded. (We let some not have to be upgraded just in order to allow for the
+       * possibililty of churn).
        **/
-      [key: string]: SubmittableExtrinsicFunction<ApiType>;
-    };
-    charging: {
+      upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
       /**
        * Generic tx
        **/
@@ -722,7 +718,28 @@
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
     parachainSystem: {
-      authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
+      /**
+       * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
+       * later.
+       * 
+       * The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
+       * version and name should be verified on upgrade. Since the authorization only has a hash,
+       * it cannot actually perform the verification.
+       * 
+       * This call requires Root origin.
+       **/
+      authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array, checkVersion: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, bool]>;
+      /**
+       * Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
+       * 
+       * If the authorization required a version check, this call will ensure the spec name
+       * remains unchanged and that the spec version has increased.
+       * 
+       * Note that this function will not apply the new `code`, but only attempt to schedule the
+       * upgrade with the Relay Chain.
+       * 
+       * All origins are allowed.
+       **/
       enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
       /**
        * Set the current validation data.
@@ -761,22 +778,29 @@
        * Set a safe XCM version (the version that XCM should be encoded with if the most recent
        * version a destination can accept is unknown).
        * 
-       * - `origin`: Must be Root.
+       * - `origin`: Must be an origin specified by AdminOrigin.
        * - `maybe_xcm_version`: The default XCM encoding version, or `None` to disable.
        **/
       forceDefaultXcmVersion: AugmentedSubmittable<(maybeXcmVersion: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
       /**
        * Ask a location to notify us regarding their XCM version and any changes to it.
        * 
-       * - `origin`: Must be Root.
+       * - `origin`: Must be an origin specified by AdminOrigin.
        * - `location`: The location to which we should subscribe for XCM version notifications.
        **/
       forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
       /**
+       * Set or unset the global suspension state of the XCM executor.
+       * 
+       * - `origin`: Must be an origin specified by AdminOrigin.
+       * - `suspended`: `true` to suspend, `false` to resume.
+       **/
+      forceSuspension: AugmentedSubmittable<(suspended: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
+      /**
        * Require that a particular destination should no longer notify us regarding any XCM
        * version changes.
        * 
-       * - `origin`: Must be Root.
+       * - `origin`: Must be an origin specified by AdminOrigin.
        * - `location`: The location to which we are currently subscribed for XCM version
        * notifications which we no longer desire.
        **/
@@ -785,7 +809,7 @@
        * Extoll that a particular destination can be communicated with through a particular
        * version of XCM.
        * 
-       * - `origin`: Must be Root.
+       * - `origin`: Must be an origin specified by AdminOrigin.
        * - `location`: The destination that is being described.
        * - `xcm_version`: The latest version of XCM that `location` supports.
        **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
before · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';47import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';48import type { StorageKind } from '@polkadot/types/interfaces/offchain';49import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';50import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';51import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';52import type { Approvals } from '@polkadot/types/interfaces/poll';53import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';54import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';55import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';56import type { RpcMethods } from '@polkadot/types/interfaces/rpc';57import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';58import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';59import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';60import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';61import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';62import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';63import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';64import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';65import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';66import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';67import type { Multiplier } from '@polkadot/types/interfaces/txpayment';68import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';69import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';70import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';71import type { VestingInfo } from '@polkadot/types/interfaces/vesting';72import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7374declare module '@polkadot/types/types/registry' {75  interface InterfaceTypes {76    AbridgedCandidateReceipt: AbridgedCandidateReceipt;77    AbridgedHostConfiguration: AbridgedHostConfiguration;78    AbridgedHrmpChannel: AbridgedHrmpChannel;79    AccountData: AccountData;80    AccountId: AccountId;81    AccountId20: AccountId20;82    AccountId32: AccountId32;83    AccountId33: AccountId33;84    AccountIdOf: AccountIdOf;85    AccountIndex: AccountIndex;86    AccountInfo: AccountInfo;87    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;88    AccountInfoWithProviders: AccountInfoWithProviders;89    AccountInfoWithRefCount: AccountInfoWithRefCount;90    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;91    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;92    AccountStatus: AccountStatus;93    AccountValidity: AccountValidity;94    AccountVote: AccountVote;95    AccountVoteSplit: AccountVoteSplit;96    AccountVoteStandard: AccountVoteStandard;97    ActiveEraInfo: ActiveEraInfo;98    ActiveGilt: ActiveGilt;99    ActiveGiltsTotal: ActiveGiltsTotal;100    ActiveIndex: ActiveIndex;101    ActiveRecovery: ActiveRecovery;102    Address: Address;103    AliveContractInfo: AliveContractInfo;104    AllowedSlots: AllowedSlots;105    AnySignature: AnySignature;106    ApiId: ApiId;107    ApplyExtrinsicResult: ApplyExtrinsicResult;108    ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;109    ApprovalFlag: ApprovalFlag;110    Approvals: Approvals;111    ArithmeticError: ArithmeticError;112    AssetApproval: AssetApproval;113    AssetApprovalKey: AssetApprovalKey;114    AssetBalance: AssetBalance;115    AssetDestroyWitness: AssetDestroyWitness;116    AssetDetails: AssetDetails;117    AssetId: AssetId;118    AssetInstance: AssetInstance;119    AssetInstanceV0: AssetInstanceV0;120    AssetInstanceV1: AssetInstanceV1;121    AssetInstanceV2: AssetInstanceV2;122    AssetMetadata: AssetMetadata;123    AssetOptions: AssetOptions;124    AssignmentId: AssignmentId;125    AssignmentKind: AssignmentKind;126    AttestedCandidate: AttestedCandidate;127    AuctionIndex: AuctionIndex;128    AuthIndex: AuthIndex;129    AuthorityDiscoveryId: AuthorityDiscoveryId;130    AuthorityId: AuthorityId;131    AuthorityIndex: AuthorityIndex;132    AuthorityList: AuthorityList;133    AuthoritySet: AuthoritySet;134    AuthoritySetChange: AuthoritySetChange;135    AuthoritySetChanges: AuthoritySetChanges;136    AuthoritySignature: AuthoritySignature;137    AuthorityWeight: AuthorityWeight;138    AvailabilityBitfield: AvailabilityBitfield;139    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;140    BabeAuthorityWeight: BabeAuthorityWeight;141    BabeBlockWeight: BabeBlockWeight;142    BabeEpochConfiguration: BabeEpochConfiguration;143    BabeEquivocationProof: BabeEquivocationProof;144    BabeGenesisConfiguration: BabeGenesisConfiguration;145    BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;146    BabeWeight: BabeWeight;147    BackedCandidate: BackedCandidate;148    Balance: Balance;149    BalanceLock: BalanceLock;150    BalanceLockTo212: BalanceLockTo212;151    BalanceOf: BalanceOf;152    BalanceStatus: BalanceStatus;153    BeefyAuthoritySet: BeefyAuthoritySet;154    BeefyCommitment: BeefyCommitment;155    BeefyEquivocationProof: BeefyEquivocationProof;156    BeefyId: BeefyId;157    BeefyKey: BeefyKey;158    BeefyNextAuthoritySet: BeefyNextAuthoritySet;159    BeefyPayload: BeefyPayload;160    BeefyPayloadId: BeefyPayloadId;161    BeefySignedCommitment: BeefySignedCommitment;162    BeefyVoteMessage: BeefyVoteMessage;163    BenchmarkBatch: BenchmarkBatch;164    BenchmarkConfig: BenchmarkConfig;165    BenchmarkList: BenchmarkList;166    BenchmarkMetadata: BenchmarkMetadata;167    BenchmarkParameter: BenchmarkParameter;168    BenchmarkResult: BenchmarkResult;169    Bid: Bid;170    Bidder: Bidder;171    BidKind: BidKind;172    BitVec: BitVec;173    Block: Block;174    BlockAttestations: BlockAttestations;175    BlockHash: BlockHash;176    BlockLength: BlockLength;177    BlockNumber: BlockNumber;178    BlockNumberFor: BlockNumberFor;179    BlockNumberOf: BlockNumberOf;180    BlockStats: BlockStats;181    BlockTrace: BlockTrace;182    BlockTraceEvent: BlockTraceEvent;183    BlockTraceEventData: BlockTraceEventData;184    BlockTraceSpan: BlockTraceSpan;185    BlockV0: BlockV0;186    BlockV1: BlockV1;187    BlockV2: BlockV2;188    BlockWeights: BlockWeights;189    BodyId: BodyId;190    BodyPart: BodyPart;191    bool: bool;192    Bool: Bool;193    Bounty: Bounty;194    BountyIndex: BountyIndex;195    BountyStatus: BountyStatus;196    BountyStatusActive: BountyStatusActive;197    BountyStatusCuratorProposed: BountyStatusCuratorProposed;198    BountyStatusPendingPayout: BountyStatusPendingPayout;199    BridgedBlockHash: BridgedBlockHash;200    BridgedBlockNumber: BridgedBlockNumber;201    BridgedHeader: BridgedHeader;202    BridgeMessageId: BridgeMessageId;203    BufferedSessionChange: BufferedSessionChange;204    Bytes: Bytes;205    Call: Call;206    CallHash: CallHash;207    CallHashOf: CallHashOf;208    CallIndex: CallIndex;209    CallOrigin: CallOrigin;210    CandidateCommitments: CandidateCommitments;211    CandidateDescriptor: CandidateDescriptor;212    CandidateEvent: CandidateEvent;213    CandidateHash: CandidateHash;214    CandidateInfo: CandidateInfo;215    CandidatePendingAvailability: CandidatePendingAvailability;216    CandidateReceipt: CandidateReceipt;217    ChainId: ChainId;218    ChainProperties: ChainProperties;219    ChainType: ChainType;220    ChangesTrieConfiguration: ChangesTrieConfiguration;221    ChangesTrieSignal: ChangesTrieSignal;222    CheckInherentsResult: CheckInherentsResult;223    ClassDetails: ClassDetails;224    ClassId: ClassId;225    ClassMetadata: ClassMetadata;226    CodecHash: CodecHash;227    CodeHash: CodeHash;228    CodeSource: CodeSource;229    CodeUploadRequest: CodeUploadRequest;230    CodeUploadResult: CodeUploadResult;231    CodeUploadResultValue: CodeUploadResultValue;232    CollationInfo: CollationInfo;233    CollationInfoV1: CollationInfoV1;234    CollatorId: CollatorId;235    CollatorSignature: CollatorSignature;236    CollectiveOrigin: CollectiveOrigin;237    CommittedCandidateReceipt: CommittedCandidateReceipt;238    CompactAssignments: CompactAssignments;239    CompactAssignmentsTo257: CompactAssignmentsTo257;240    CompactAssignmentsTo265: CompactAssignmentsTo265;241    CompactAssignmentsWith16: CompactAssignmentsWith16;242    CompactAssignmentsWith24: CompactAssignmentsWith24;243    CompactScore: CompactScore;244    CompactScoreCompact: CompactScoreCompact;245    ConfigData: ConfigData;246    Consensus: Consensus;247    ConsensusEngineId: ConsensusEngineId;248    ConsumedWeight: ConsumedWeight;249    ContractCallFlags: ContractCallFlags;250    ContractCallRequest: ContractCallRequest;251    ContractConstructorSpecLatest: ContractConstructorSpecLatest;252    ContractConstructorSpecV0: ContractConstructorSpecV0;253    ContractConstructorSpecV1: ContractConstructorSpecV1;254    ContractConstructorSpecV2: ContractConstructorSpecV2;255    ContractConstructorSpecV3: ContractConstructorSpecV3;256    ContractContractSpecV0: ContractContractSpecV0;257    ContractContractSpecV1: ContractContractSpecV1;258    ContractContractSpecV2: ContractContractSpecV2;259    ContractContractSpecV3: ContractContractSpecV3;260    ContractContractSpecV4: ContractContractSpecV4;261    ContractCryptoHasher: ContractCryptoHasher;262    ContractDiscriminant: ContractDiscriminant;263    ContractDisplayName: ContractDisplayName;264    ContractEventParamSpecLatest: ContractEventParamSpecLatest;265    ContractEventParamSpecV0: ContractEventParamSpecV0;266    ContractEventParamSpecV2: ContractEventParamSpecV2;267    ContractEventSpecLatest: ContractEventSpecLatest;268    ContractEventSpecV0: ContractEventSpecV0;269    ContractEventSpecV1: ContractEventSpecV1;270    ContractEventSpecV2: ContractEventSpecV2;271    ContractExecResult: ContractExecResult;272    ContractExecResultOk: ContractExecResultOk;273    ContractExecResultResult: ContractExecResultResult;274    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;275    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;276    ContractExecResultTo255: ContractExecResultTo255;277    ContractExecResultTo260: ContractExecResultTo260;278    ContractExecResultTo267: ContractExecResultTo267;279    ContractExecResultU64: ContractExecResultU64;280    ContractInfo: ContractInfo;281    ContractInstantiateResult: ContractInstantiateResult;282    ContractInstantiateResultTo267: ContractInstantiateResultTo267;283    ContractInstantiateResultTo299: ContractInstantiateResultTo299;284    ContractInstantiateResultU64: ContractInstantiateResultU64;285    ContractLayoutArray: ContractLayoutArray;286    ContractLayoutCell: ContractLayoutCell;287    ContractLayoutEnum: ContractLayoutEnum;288    ContractLayoutHash: ContractLayoutHash;289    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;290    ContractLayoutKey: ContractLayoutKey;291    ContractLayoutStruct: ContractLayoutStruct;292    ContractLayoutStructField: ContractLayoutStructField;293    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;294    ContractMessageParamSpecV0: ContractMessageParamSpecV0;295    ContractMessageParamSpecV2: ContractMessageParamSpecV2;296    ContractMessageSpecLatest: ContractMessageSpecLatest;297    ContractMessageSpecV0: ContractMessageSpecV0;298    ContractMessageSpecV1: ContractMessageSpecV1;299    ContractMessageSpecV2: ContractMessageSpecV2;300    ContractMetadata: ContractMetadata;301    ContractMetadataLatest: ContractMetadataLatest;302    ContractMetadataV0: ContractMetadataV0;303    ContractMetadataV1: ContractMetadataV1;304    ContractMetadataV2: ContractMetadataV2;305    ContractMetadataV3: ContractMetadataV3;306    ContractMetadataV4: ContractMetadataV4;307    ContractProject: ContractProject;308    ContractProjectContract: ContractProjectContract;309    ContractProjectInfo: ContractProjectInfo;310    ContractProjectSource: ContractProjectSource;311    ContractProjectV0: ContractProjectV0;312    ContractReturnFlags: ContractReturnFlags;313    ContractSelector: ContractSelector;314    ContractStorageKey: ContractStorageKey;315    ContractStorageLayout: ContractStorageLayout;316    ContractTypeSpec: ContractTypeSpec;317    Conviction: Conviction;318    CoreAssignment: CoreAssignment;319    CoreIndex: CoreIndex;320    CoreOccupied: CoreOccupied;321    CoreState: CoreState;322    CrateVersion: CrateVersion;323    CreatedBlock: CreatedBlock;324    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;325    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;326    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;327    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;328    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;329    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;330    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;331    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;332    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;333    CumulusPalletXcmCall: CumulusPalletXcmCall;334    CumulusPalletXcmError: CumulusPalletXcmError;335    CumulusPalletXcmEvent: CumulusPalletXcmEvent;336    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;337    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;338    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;339    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;340    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;341    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;342    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;343    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;344    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;345    Data: Data;346    DeferredOffenceOf: DeferredOffenceOf;347    DefunctVoter: DefunctVoter;348    DelayKind: DelayKind;349    DelayKindBest: DelayKindBest;350    Delegations: Delegations;351    DeletedContract: DeletedContract;352    DeliveredMessages: DeliveredMessages;353    DepositBalance: DepositBalance;354    DepositBalanceOf: DepositBalanceOf;355    DestroyWitness: DestroyWitness;356    Digest: Digest;357    DigestItem: DigestItem;358    DigestOf: DigestOf;359    DispatchClass: DispatchClass;360    DispatchError: DispatchError;361    DispatchErrorModule: DispatchErrorModule;362    DispatchErrorModulePre6: DispatchErrorModulePre6;363    DispatchErrorModuleU8: DispatchErrorModuleU8;364    DispatchErrorModuleU8a: DispatchErrorModuleU8a;365    DispatchErrorPre6: DispatchErrorPre6;366    DispatchErrorPre6First: DispatchErrorPre6First;367    DispatchErrorTo198: DispatchErrorTo198;368    DispatchFeePayment: DispatchFeePayment;369    DispatchInfo: DispatchInfo;370    DispatchInfoTo190: DispatchInfoTo190;371    DispatchInfoTo244: DispatchInfoTo244;372    DispatchOutcome: DispatchOutcome;373    DispatchOutcomePre6: DispatchOutcomePre6;374    DispatchResult: DispatchResult;375    DispatchResultOf: DispatchResultOf;376    DispatchResultTo198: DispatchResultTo198;377    DisputeLocation: DisputeLocation;378    DisputeResult: DisputeResult;379    DisputeState: DisputeState;380    DisputeStatement: DisputeStatement;381    DisputeStatementSet: DisputeStatementSet;382    DoubleEncodedCall: DoubleEncodedCall;383    DoubleVoteReport: DoubleVoteReport;384    DownwardMessage: DownwardMessage;385    EcdsaSignature: EcdsaSignature;386    Ed25519Signature: Ed25519Signature;387    EIP1559Transaction: EIP1559Transaction;388    EIP2930Transaction: EIP2930Transaction;389    ElectionCompute: ElectionCompute;390    ElectionPhase: ElectionPhase;391    ElectionResult: ElectionResult;392    ElectionScore: ElectionScore;393    ElectionSize: ElectionSize;394    ElectionStatus: ElectionStatus;395    EncodedFinalityProofs: EncodedFinalityProofs;396    EncodedJustification: EncodedJustification;397    Epoch: Epoch;398    EpochAuthorship: EpochAuthorship;399    Era: Era;400    EraIndex: EraIndex;401    EraPoints: EraPoints;402    EraRewardPoints: EraRewardPoints;403    EraRewards: EraRewards;404    ErrorMetadataLatest: ErrorMetadataLatest;405    ErrorMetadataV10: ErrorMetadataV10;406    ErrorMetadataV11: ErrorMetadataV11;407    ErrorMetadataV12: ErrorMetadataV12;408    ErrorMetadataV13: ErrorMetadataV13;409    ErrorMetadataV14: ErrorMetadataV14;410    ErrorMetadataV9: ErrorMetadataV9;411    EthAccessList: EthAccessList;412    EthAccessListItem: EthAccessListItem;413    EthAccount: EthAccount;414    EthAddress: EthAddress;415    EthBlock: EthBlock;416    EthBloom: EthBloom;417    EthbloomBloom: EthbloomBloom;418    EthCallRequest: EthCallRequest;419    EthereumAccountId: EthereumAccountId;420    EthereumAddress: EthereumAddress;421    EthereumBlock: EthereumBlock;422    EthereumHeader: EthereumHeader;423    EthereumLog: EthereumLog;424    EthereumLookupSource: EthereumLookupSource;425    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;426    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;427    EthereumSignature: EthereumSignature;428    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;429    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;430    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;431    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;432    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;433    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;434    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;435    EthereumTypesHashH64: EthereumTypesHashH64;436    EthFeeHistory: EthFeeHistory;437    EthFilter: EthFilter;438    EthFilterAddress: EthFilterAddress;439    EthFilterChanges: EthFilterChanges;440    EthFilterTopic: EthFilterTopic;441    EthFilterTopicEntry: EthFilterTopicEntry;442    EthFilterTopicInner: EthFilterTopicInner;443    EthHeader: EthHeader;444    EthLog: EthLog;445    EthReceipt: EthReceipt;446    EthReceiptV0: EthReceiptV0;447    EthReceiptV3: EthReceiptV3;448    EthRichBlock: EthRichBlock;449    EthRichHeader: EthRichHeader;450    EthStorageProof: EthStorageProof;451    EthSubKind: EthSubKind;452    EthSubParams: EthSubParams;453    EthSubResult: EthSubResult;454    EthSyncInfo: EthSyncInfo;455    EthSyncStatus: EthSyncStatus;456    EthTransaction: EthTransaction;457    EthTransactionAction: EthTransactionAction;458    EthTransactionCondition: EthTransactionCondition;459    EthTransactionRequest: EthTransactionRequest;460    EthTransactionSignature: EthTransactionSignature;461    EthTransactionStatus: EthTransactionStatus;462    EthWork: EthWork;463    Event: Event;464    EventId: EventId;465    EventIndex: EventIndex;466    EventMetadataLatest: EventMetadataLatest;467    EventMetadataV10: EventMetadataV10;468    EventMetadataV11: EventMetadataV11;469    EventMetadataV12: EventMetadataV12;470    EventMetadataV13: EventMetadataV13;471    EventMetadataV14: EventMetadataV14;472    EventMetadataV9: EventMetadataV9;473    EventRecord: EventRecord;474    EvmAccount: EvmAccount;475    EvmCallInfo: EvmCallInfo;476    EvmCoreErrorExitError: EvmCoreErrorExitError;477    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;478    EvmCoreErrorExitReason: EvmCoreErrorExitReason;479    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;480    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;481    EvmCreateInfo: EvmCreateInfo;482    EvmLog: EvmLog;483    EvmVicinity: EvmVicinity;484    ExecReturnValue: ExecReturnValue;485    ExecutorParam: ExecutorParam;486    ExecutorParams: ExecutorParams;487    ExecutorParamsHash: ExecutorParamsHash;488    ExitError: ExitError;489    ExitFatal: ExitFatal;490    ExitReason: ExitReason;491    ExitRevert: ExitRevert;492    ExitSucceed: ExitSucceed;493    ExplicitDisputeStatement: ExplicitDisputeStatement;494    Exposure: Exposure;495    ExtendedBalance: ExtendedBalance;496    Extrinsic: Extrinsic;497    ExtrinsicEra: ExtrinsicEra;498    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;499    ExtrinsicMetadataV11: ExtrinsicMetadataV11;500    ExtrinsicMetadataV12: ExtrinsicMetadataV12;501    ExtrinsicMetadataV13: ExtrinsicMetadataV13;502    ExtrinsicMetadataV14: ExtrinsicMetadataV14;503    ExtrinsicOrHash: ExtrinsicOrHash;504    ExtrinsicPayload: ExtrinsicPayload;505    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;506    ExtrinsicPayloadV4: ExtrinsicPayloadV4;507    ExtrinsicSignature: ExtrinsicSignature;508    ExtrinsicSignatureV4: ExtrinsicSignatureV4;509    ExtrinsicStatus: ExtrinsicStatus;510    ExtrinsicsWeight: ExtrinsicsWeight;511    ExtrinsicUnknown: ExtrinsicUnknown;512    ExtrinsicV4: ExtrinsicV4;513    f32: f32;514    F32: F32;515    f64: f64;516    F64: F64;517    FeeDetails: FeeDetails;518    Fixed128: Fixed128;519    Fixed64: Fixed64;520    FixedI128: FixedI128;521    FixedI64: FixedI64;522    FixedU128: FixedU128;523    FixedU64: FixedU64;524    Forcing: Forcing;525    ForkTreePendingChange: ForkTreePendingChange;526    ForkTreePendingChangeNode: ForkTreePendingChangeNode;527    FpRpcTransactionStatus: FpRpcTransactionStatus;528    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;529    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;530    FrameSupportDispatchPays: FrameSupportDispatchPays;531    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;532    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;533    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;534    FrameSupportPalletId: FrameSupportPalletId;535    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;536    FrameSystemAccountInfo: FrameSystemAccountInfo;537    FrameSystemCall: FrameSystemCall;538    FrameSystemError: FrameSystemError;539    FrameSystemEvent: FrameSystemEvent;540    FrameSystemEventRecord: FrameSystemEventRecord;541    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;542    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;543    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;544    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;545    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;546    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;547    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;548    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;549    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;550    FrameSystemPhase: FrameSystemPhase;551    FullIdentification: FullIdentification;552    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;553    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;554    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;555    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;556    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;557    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;558    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;559    FunctionMetadataLatest: FunctionMetadataLatest;560    FunctionMetadataV10: FunctionMetadataV10;561    FunctionMetadataV11: FunctionMetadataV11;562    FunctionMetadataV12: FunctionMetadataV12;563    FunctionMetadataV13: FunctionMetadataV13;564    FunctionMetadataV14: FunctionMetadataV14;565    FunctionMetadataV9: FunctionMetadataV9;566    FundIndex: FundIndex;567    FundInfo: FundInfo;568    Fungibility: Fungibility;569    FungibilityV0: FungibilityV0;570    FungibilityV1: FungibilityV1;571    FungibilityV2: FungibilityV2;572    Gas: Gas;573    GiltBid: GiltBid;574    GlobalValidationData: GlobalValidationData;575    GlobalValidationSchedule: GlobalValidationSchedule;576    GrandpaCommit: GrandpaCommit;577    GrandpaEquivocation: GrandpaEquivocation;578    GrandpaEquivocationProof: GrandpaEquivocationProof;579    GrandpaEquivocationValue: GrandpaEquivocationValue;580    GrandpaJustification: GrandpaJustification;581    GrandpaPrecommit: GrandpaPrecommit;582    GrandpaPrevote: GrandpaPrevote;583    GrandpaSignedPrecommit: GrandpaSignedPrecommit;584    GroupIndex: GroupIndex;585    GroupRotationInfo: GroupRotationInfo;586    H1024: H1024;587    H128: H128;588    H160: H160;589    H2048: H2048;590    H256: H256;591    H32: H32;592    H512: H512;593    H64: H64;594    Hash: Hash;595    HeadData: HeadData;596    Header: Header;597    HeaderPartial: HeaderPartial;598    Health: Health;599    Heartbeat: Heartbeat;600    HeartbeatTo244: HeartbeatTo244;601    HostConfiguration: HostConfiguration;602    HostFnWeights: HostFnWeights;603    HostFnWeightsTo264: HostFnWeightsTo264;604    HrmpChannel: HrmpChannel;605    HrmpChannelId: HrmpChannelId;606    HrmpOpenChannelRequest: HrmpOpenChannelRequest;607    i128: i128;608    I128: I128;609    i16: i16;610    I16: I16;611    i256: i256;612    I256: I256;613    i32: i32;614    I32: I32;615    I32F32: I32F32;616    i64: i64;617    I64: I64;618    i8: i8;619    I8: I8;620    IdentificationTuple: IdentificationTuple;621    IdentityFields: IdentityFields;622    IdentityInfo: IdentityInfo;623    IdentityInfoAdditional: IdentityInfoAdditional;624    IdentityInfoTo198: IdentityInfoTo198;625    IdentityJudgement: IdentityJudgement;626    ImmortalEra: ImmortalEra;627    ImportedAux: ImportedAux;628    InboundDownwardMessage: InboundDownwardMessage;629    InboundHrmpMessage: InboundHrmpMessage;630    InboundHrmpMessages: InboundHrmpMessages;631    InboundLaneData: InboundLaneData;632    InboundRelayer: InboundRelayer;633    InboundStatus: InboundStatus;634    IncludedBlocks: IncludedBlocks;635    InclusionFee: InclusionFee;636    IncomingParachain: IncomingParachain;637    IncomingParachainDeploy: IncomingParachainDeploy;638    IncomingParachainFixed: IncomingParachainFixed;639    Index: Index;640    IndicesLookupSource: IndicesLookupSource;641    IndividualExposure: IndividualExposure;642    InherentData: InherentData;643    InherentIdentifier: InherentIdentifier;644    InitializationData: InitializationData;645    InstanceDetails: InstanceDetails;646    InstanceId: InstanceId;647    InstanceMetadata: InstanceMetadata;648    InstantiateRequest: InstantiateRequest;649    InstantiateRequestV1: InstantiateRequestV1;650    InstantiateRequestV2: InstantiateRequestV2;651    InstantiateReturnValue: InstantiateReturnValue;652    InstantiateReturnValueOk: InstantiateReturnValueOk;653    InstantiateReturnValueTo267: InstantiateReturnValueTo267;654    InstructionV2: InstructionV2;655    InstructionWeights: InstructionWeights;656    InteriorMultiLocation: InteriorMultiLocation;657    InvalidDisputeStatementKind: InvalidDisputeStatementKind;658    InvalidTransaction: InvalidTransaction;659    isize: isize;660    ISize: ISize;661    Json: Json;662    Junction: Junction;663    Junctions: Junctions;664    JunctionsV1: JunctionsV1;665    JunctionsV2: JunctionsV2;666    JunctionV0: JunctionV0;667    JunctionV1: JunctionV1;668    JunctionV2: JunctionV2;669    Justification: Justification;670    JustificationNotification: JustificationNotification;671    Justifications: Justifications;672    Key: Key;673    KeyOwnerProof: KeyOwnerProof;674    Keys: Keys;675    KeyType: KeyType;676    KeyTypeId: KeyTypeId;677    KeyValue: KeyValue;678    KeyValueOption: KeyValueOption;679    Kind: Kind;680    LaneId: LaneId;681    LastContribution: LastContribution;682    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;683    LeasePeriod: LeasePeriod;684    LeasePeriodOf: LeasePeriodOf;685    LegacyTransaction: LegacyTransaction;686    Limits: Limits;687    LimitsTo264: LimitsTo264;688    LocalValidationData: LocalValidationData;689    LockIdentifier: LockIdentifier;690    LookupSource: LookupSource;691    LookupTarget: LookupTarget;692    LotteryConfig: LotteryConfig;693    MaybeRandomness: MaybeRandomness;694    MaybeVrf: MaybeVrf;695    MemberCount: MemberCount;696    MembershipProof: MembershipProof;697    MessageData: MessageData;698    MessageId: MessageId;699    MessageIngestionType: MessageIngestionType;700    MessageKey: MessageKey;701    MessageNonce: MessageNonce;702    MessageQueueChain: MessageQueueChain;703    MessagesDeliveryProofOf: MessagesDeliveryProofOf;704    MessagesProofOf: MessagesProofOf;705    MessagingStateSnapshot: MessagingStateSnapshot;706    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;707    MetadataAll: MetadataAll;708    MetadataLatest: MetadataLatest;709    MetadataV10: MetadataV10;710    MetadataV11: MetadataV11;711    MetadataV12: MetadataV12;712    MetadataV13: MetadataV13;713    MetadataV14: MetadataV14;714    MetadataV9: MetadataV9;715    MigrationStatusResult: MigrationStatusResult;716    MmrBatchProof: MmrBatchProof;717    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;718    MmrError: MmrError;719    MmrHash: MmrHash;720    MmrLeafBatchProof: MmrLeafBatchProof;721    MmrLeafIndex: MmrLeafIndex;722    MmrLeafProof: MmrLeafProof;723    MmrNodeIndex: MmrNodeIndex;724    MmrProof: MmrProof;725    MmrRootHash: MmrRootHash;726    ModuleConstantMetadataV10: ModuleConstantMetadataV10;727    ModuleConstantMetadataV11: ModuleConstantMetadataV11;728    ModuleConstantMetadataV12: ModuleConstantMetadataV12;729    ModuleConstantMetadataV13: ModuleConstantMetadataV13;730    ModuleConstantMetadataV9: ModuleConstantMetadataV9;731    ModuleId: ModuleId;732    ModuleMetadataV10: ModuleMetadataV10;733    ModuleMetadataV11: ModuleMetadataV11;734    ModuleMetadataV12: ModuleMetadataV12;735    ModuleMetadataV13: ModuleMetadataV13;736    ModuleMetadataV9: ModuleMetadataV9;737    Moment: Moment;738    MomentOf: MomentOf;739    MoreAttestations: MoreAttestations;740    MortalEra: MortalEra;741    MultiAddress: MultiAddress;742    MultiAsset: MultiAsset;743    MultiAssetFilter: MultiAssetFilter;744    MultiAssetFilterV1: MultiAssetFilterV1;745    MultiAssetFilterV2: MultiAssetFilterV2;746    MultiAssets: MultiAssets;747    MultiAssetsV1: MultiAssetsV1;748    MultiAssetsV2: MultiAssetsV2;749    MultiAssetV0: MultiAssetV0;750    MultiAssetV1: MultiAssetV1;751    MultiAssetV2: MultiAssetV2;752    MultiDisputeStatementSet: MultiDisputeStatementSet;753    MultiLocation: MultiLocation;754    MultiLocationV0: MultiLocationV0;755    MultiLocationV1: MultiLocationV1;756    MultiLocationV2: MultiLocationV2;757    Multiplier: Multiplier;758    Multisig: Multisig;759    MultiSignature: MultiSignature;760    MultiSigner: MultiSigner;761    NetworkId: NetworkId;762    NetworkState: NetworkState;763    NetworkStatePeerset: NetworkStatePeerset;764    NetworkStatePeersetInfo: NetworkStatePeersetInfo;765    NewBidder: NewBidder;766    NextAuthority: NextAuthority;767    NextConfigDescriptor: NextConfigDescriptor;768    NextConfigDescriptorV1: NextConfigDescriptorV1;769    NftCollectionId: NftCollectionId;770    NftItemId: NftItemId;771    NodeRole: NodeRole;772    Nominations: Nominations;773    NominatorIndex: NominatorIndex;774    NominatorIndexCompact: NominatorIndexCompact;775    NotConnectedPeer: NotConnectedPeer;776    NpApiError: NpApiError;777    NpPoolId: NpPoolId;778    Null: Null;779    OccupiedCore: OccupiedCore;780    OccupiedCoreAssumption: OccupiedCoreAssumption;781    OffchainAccuracy: OffchainAccuracy;782    OffchainAccuracyCompact: OffchainAccuracyCompact;783    OffenceDetails: OffenceDetails;784    Offender: Offender;785    OldV1SessionInfo: OldV1SessionInfo;786    OpalRuntimeRuntime: OpalRuntimeRuntime;787    OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;788    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;789    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;790    OpaqueCall: OpaqueCall;791    OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;792    OpaqueMetadata: OpaqueMetadata;793    OpaqueMultiaddr: OpaqueMultiaddr;794    OpaqueNetworkState: OpaqueNetworkState;795    OpaquePeerId: OpaquePeerId;796    OpaqueTimeSlot: OpaqueTimeSlot;797    OpenTip: OpenTip;798    OpenTipFinderTo225: OpenTipFinderTo225;799    OpenTipTip: OpenTipTip;800    OpenTipTo225: OpenTipTo225;801    OperatingMode: OperatingMode;802    OptionBool: OptionBool;803    Origin: Origin;804    OriginCaller: OriginCaller;805    OriginKindV0: OriginKindV0;806    OriginKindV1: OriginKindV1;807    OriginKindV2: OriginKindV2;808    OrmlTokensAccountData: OrmlTokensAccountData;809    OrmlTokensBalanceLock: OrmlTokensBalanceLock;810    OrmlTokensModuleCall: OrmlTokensModuleCall;811    OrmlTokensModuleError: OrmlTokensModuleError;812    OrmlTokensModuleEvent: OrmlTokensModuleEvent;813    OrmlTokensReserveData: OrmlTokensReserveData;814    OrmlVestingModuleCall: OrmlVestingModuleCall;815    OrmlVestingModuleError: OrmlVestingModuleError;816    OrmlVestingModuleEvent: OrmlVestingModuleEvent;817    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;818    OrmlXtokensModuleCall: OrmlXtokensModuleCall;819    OrmlXtokensModuleError: OrmlXtokensModuleError;820    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;821    OutboundHrmpMessage: OutboundHrmpMessage;822    OutboundLaneData: OutboundLaneData;823    OutboundMessageFee: OutboundMessageFee;824    OutboundPayload: OutboundPayload;825    OutboundStatus: OutboundStatus;826    Outcome: Outcome;827    OverweightIndex: OverweightIndex;828    Owner: Owner;829    PageCounter: PageCounter;830    PageIndexData: PageIndexData;831    PalletAppPromotionCall: PalletAppPromotionCall;832    PalletAppPromotionError: PalletAppPromotionError;833    PalletAppPromotionEvent: PalletAppPromotionEvent;834    PalletBalancesAccountData: PalletBalancesAccountData;835    PalletBalancesBalanceLock: PalletBalancesBalanceLock;836    PalletBalancesCall: PalletBalancesCall;837    PalletBalancesError: PalletBalancesError;838    PalletBalancesEvent: PalletBalancesEvent;839    PalletBalancesReasons: PalletBalancesReasons;840    PalletBalancesReserveData: PalletBalancesReserveData;841    PalletCallMetadataLatest: PalletCallMetadataLatest;842    PalletCallMetadataV14: PalletCallMetadataV14;843    PalletCollatorSelectionCall: PalletCollatorSelectionCall;844    PalletCollatorSelectionError: PalletCollatorSelectionError;845    PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;846    PalletCommonError: PalletCommonError;847    PalletCommonEvent: PalletCommonEvent;848    PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;849    PalletConfigurationCall: PalletConfigurationCall;850    PalletConfigurationError: PalletConfigurationError;851    PalletConfigurationEvent: PalletConfigurationEvent;852    PalletConstantMetadataLatest: PalletConstantMetadataLatest;853    PalletConstantMetadataV14: PalletConstantMetadataV14;854    PalletErrorMetadataLatest: PalletErrorMetadataLatest;855    PalletErrorMetadataV14: PalletErrorMetadataV14;856    PalletEthereumCall: PalletEthereumCall;857    PalletEthereumError: PalletEthereumError;858    PalletEthereumEvent: PalletEthereumEvent;859    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;860    PalletEventMetadataLatest: PalletEventMetadataLatest;861    PalletEventMetadataV14: PalletEventMetadataV14;862    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;863    PalletEvmCall: PalletEvmCall;864    PalletEvmCoderSubstrateCall: PalletEvmCoderSubstrateCall;865    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;866    PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;867    PalletEvmContractHelpersError: PalletEvmContractHelpersError;868    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;869    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;870    PalletEvmError: PalletEvmError;871    PalletEvmEvent: PalletEvmEvent;872    PalletEvmMigrationCall: PalletEvmMigrationCall;873    PalletEvmMigrationError: PalletEvmMigrationError;874    PalletEvmMigrationEvent: PalletEvmMigrationEvent;875    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;876    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;877    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;878    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;879    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;880    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;881    PalletFungibleError: PalletFungibleError;882    PalletId: PalletId;883    PalletIdentityBitFlags: PalletIdentityBitFlags;884    PalletIdentityCall: PalletIdentityCall;885    PalletIdentityError: PalletIdentityError;886    PalletIdentityEvent: PalletIdentityEvent;887    PalletIdentityIdentityField: PalletIdentityIdentityField;888    PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;889    PalletIdentityJudgement: PalletIdentityJudgement;890    PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;891    PalletIdentityRegistration: PalletIdentityRegistration;892    PalletInflationCall: PalletInflationCall;893    PalletMaintenanceCall: PalletMaintenanceCall;894    PalletMaintenanceError: PalletMaintenanceError;895    PalletMaintenanceEvent: PalletMaintenanceEvent;896    PalletMetadataLatest: PalletMetadataLatest;897    PalletMetadataV14: PalletMetadataV14;898    PalletNonfungibleError: PalletNonfungibleError;899    PalletNonfungibleItemData: PalletNonfungibleItemData;900    PalletPreimageCall: PalletPreimageCall;901    PalletPreimageError: PalletPreimageError;902    PalletPreimageEvent: PalletPreimageEvent;903    PalletPreimageRequestStatus: PalletPreimageRequestStatus;904    PalletRefungibleError: PalletRefungibleError;905    PalletSessionCall: PalletSessionCall;906    PalletSessionError: PalletSessionError;907    PalletSessionEvent: PalletSessionEvent;908    PalletsOrigin: PalletsOrigin;909    PalletStorageMetadataLatest: PalletStorageMetadataLatest;910    PalletStorageMetadataV14: PalletStorageMetadataV14;911    PalletStructureCall: PalletStructureCall;912    PalletStructureError: PalletStructureError;913    PalletStructureEvent: PalletStructureEvent;914    PalletSudoCall: PalletSudoCall;915    PalletSudoError: PalletSudoError;916    PalletSudoEvent: PalletSudoEvent;917    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;918    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;919    PalletTestUtilsCall: PalletTestUtilsCall;920    PalletTestUtilsError: PalletTestUtilsError;921    PalletTestUtilsEvent: PalletTestUtilsEvent;922    PalletTimestampCall: PalletTimestampCall;923    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;924    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;925    PalletTreasuryCall: PalletTreasuryCall;926    PalletTreasuryError: PalletTreasuryError;927    PalletTreasuryEvent: PalletTreasuryEvent;928    PalletTreasuryProposal: PalletTreasuryProposal;929    PalletUniqueCall: PalletUniqueCall;930    PalletUniqueError: PalletUniqueError;931    PalletVersion: PalletVersion;932    PalletXcmCall: PalletXcmCall;933    PalletXcmError: PalletXcmError;934    PalletXcmEvent: PalletXcmEvent;935    PalletXcmQueryStatus: PalletXcmQueryStatus;936    PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;937    PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;938    ParachainDispatchOrigin: ParachainDispatchOrigin;939    ParachainInfoCall: ParachainInfoCall;940    ParachainInherentData: ParachainInherentData;941    ParachainProposal: ParachainProposal;942    ParachainsInherentData: ParachainsInherentData;943    ParaGenesisArgs: ParaGenesisArgs;944    ParaId: ParaId;945    ParaInfo: ParaInfo;946    ParaLifecycle: ParaLifecycle;947    Parameter: Parameter;948    ParaPastCodeMeta: ParaPastCodeMeta;949    ParaScheduling: ParaScheduling;950    ParathreadClaim: ParathreadClaim;951    ParathreadClaimQueue: ParathreadClaimQueue;952    ParathreadEntry: ParathreadEntry;953    ParaValidatorIndex: ParaValidatorIndex;954    Pays: Pays;955    Peer: Peer;956    PeerEndpoint: PeerEndpoint;957    PeerEndpointAddr: PeerEndpointAddr;958    PeerInfo: PeerInfo;959    PeerPing: PeerPing;960    PendingChange: PendingChange;961    PendingPause: PendingPause;962    PendingResume: PendingResume;963    Perbill: Perbill;964    Percent: Percent;965    PerDispatchClassU32: PerDispatchClassU32;966    PerDispatchClassWeight: PerDispatchClassWeight;967    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;968    Period: Period;969    Permill: Permill;970    PermissionLatest: PermissionLatest;971    PermissionsV1: PermissionsV1;972    PermissionVersions: PermissionVersions;973    Perquintill: Perquintill;974    PersistedValidationData: PersistedValidationData;975    PerU16: PerU16;976    Phantom: Phantom;977    PhantomData: PhantomData;978    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;979    Phase: Phase;980    PhragmenScore: PhragmenScore;981    Points: Points;982    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;983    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;984    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;985    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;986    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;987    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;988    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;989    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;990    PortableType: PortableType;991    PortableTypeV14: PortableTypeV14;992    Precommits: Precommits;993    PrefabWasmModule: PrefabWasmModule;994    PrefixedStorageKey: PrefixedStorageKey;995    PreimageStatus: PreimageStatus;996    PreimageStatusAvailable: PreimageStatusAvailable;997    PreRuntime: PreRuntime;998    Prevotes: Prevotes;999    Priority: Priority;1000    PriorLock: PriorLock;1001    PropIndex: PropIndex;1002    Proposal: Proposal;1003    ProposalIndex: ProposalIndex;1004    ProxyAnnouncement: ProxyAnnouncement;1005    ProxyDefinition: ProxyDefinition;1006    ProxyState: ProxyState;1007    ProxyType: ProxyType;1008    PvfCheckStatement: PvfCheckStatement;1009    PvfExecTimeoutKind: PvfExecTimeoutKind;1010    PvfPrepTimeoutKind: PvfPrepTimeoutKind;1011    QueryId: QueryId;1012    QueryStatus: QueryStatus;1013    QueueConfigData: QueueConfigData;1014    QueuedParathread: QueuedParathread;1015    Randomness: Randomness;1016    Raw: Raw;1017    RawAuraPreDigest: RawAuraPreDigest;1018    RawBabePreDigest: RawBabePreDigest;1019    RawBabePreDigestCompat: RawBabePreDigestCompat;1020    RawBabePreDigestPrimary: RawBabePreDigestPrimary;1021    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;1022    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;1023    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;1024    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1025    RawBabePreDigestTo159: RawBabePreDigestTo159;1026    RawOrigin: RawOrigin;1027    RawSolution: RawSolution;1028    RawSolutionTo265: RawSolutionTo265;1029    RawSolutionWith16: RawSolutionWith16;1030    RawSolutionWith24: RawSolutionWith24;1031    RawVRFOutput: RawVRFOutput;1032    ReadProof: ReadProof;1033    ReadySolution: ReadySolution;1034    Reasons: Reasons;1035    RecoveryConfig: RecoveryConfig;1036    RefCount: RefCount;1037    RefCountTo259: RefCountTo259;1038    ReferendumIndex: ReferendumIndex;1039    ReferendumInfo: ReferendumInfo;1040    ReferendumInfoFinished: ReferendumInfoFinished;1041    ReferendumInfoTo239: ReferendumInfoTo239;1042    ReferendumStatus: ReferendumStatus;1043    RegisteredParachainInfo: RegisteredParachainInfo;1044    RegistrarIndex: RegistrarIndex;1045    RegistrarInfo: RegistrarInfo;1046    Registration: Registration;1047    RegistrationJudgement: RegistrationJudgement;1048    RegistrationTo198: RegistrationTo198;1049    RelayBlockNumber: RelayBlockNumber;1050    RelayChainBlockNumber: RelayChainBlockNumber;1051    RelayChainHash: RelayChainHash;1052    RelayerId: RelayerId;1053    RelayHash: RelayHash;1054    Releases: Releases;1055    Remark: Remark;1056    Renouncing: Renouncing;1057    RentProjection: RentProjection;1058    ReplacementTimes: ReplacementTimes;1059    ReportedRoundStates: ReportedRoundStates;1060    Reporter: Reporter;1061    ReportIdOf: ReportIdOf;1062    ReserveData: ReserveData;1063    ReserveIdentifier: ReserveIdentifier;1064    Response: Response;1065    ResponseV0: ResponseV0;1066    ResponseV1: ResponseV1;1067    ResponseV2: ResponseV2;1068    ResponseV2Error: ResponseV2Error;1069    ResponseV2Result: ResponseV2Result;1070    Retriable: Retriable;1071    RewardDestination: RewardDestination;1072    RewardPoint: RewardPoint;1073    RoundSnapshot: RoundSnapshot;1074    RoundState: RoundState;1075    RpcMethods: RpcMethods;1076    RuntimeCall: RuntimeCall;1077    RuntimeDbWeight: RuntimeDbWeight;1078    RuntimeDispatchInfo: RuntimeDispatchInfo;1079    RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1080    RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1081    RuntimeEvent: RuntimeEvent;1082    RuntimeVersion: RuntimeVersion;1083    RuntimeVersionApi: RuntimeVersionApi;1084    RuntimeVersionPartial: RuntimeVersionPartial;1085    RuntimeVersionPre3: RuntimeVersionPre3;1086    RuntimeVersionPre4: RuntimeVersionPre4;1087    Schedule: Schedule;1088    Scheduled: Scheduled;1089    ScheduledCore: ScheduledCore;1090    ScheduledTo254: ScheduledTo254;1091    SchedulePeriod: SchedulePeriod;1092    SchedulePriority: SchedulePriority;1093    ScheduleTo212: ScheduleTo212;1094    ScheduleTo258: ScheduleTo258;1095    ScheduleTo264: ScheduleTo264;1096    Scheduling: Scheduling;1097    ScrapedOnChainVotes: ScrapedOnChainVotes;1098    Seal: Seal;1099    SealV0: SealV0;1100    SeatHolder: SeatHolder;1101    SeedOf: SeedOf;1102    ServiceQuality: ServiceQuality;1103    SessionIndex: SessionIndex;1104    SessionInfo: SessionInfo;1105    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1106    SessionKeys1: SessionKeys1;1107    SessionKeys10: SessionKeys10;1108    SessionKeys10B: SessionKeys10B;1109    SessionKeys2: SessionKeys2;1110    SessionKeys3: SessionKeys3;1111    SessionKeys4: SessionKeys4;1112    SessionKeys5: SessionKeys5;1113    SessionKeys6: SessionKeys6;1114    SessionKeys6B: SessionKeys6B;1115    SessionKeys7: SessionKeys7;1116    SessionKeys7B: SessionKeys7B;1117    SessionKeys8: SessionKeys8;1118    SessionKeys8B: SessionKeys8B;1119    SessionKeys9: SessionKeys9;1120    SessionKeys9B: SessionKeys9B;1121    SetId: SetId;1122    SetIndex: SetIndex;1123    Si0Field: Si0Field;1124    Si0LookupTypeId: Si0LookupTypeId;1125    Si0Path: Si0Path;1126    Si0Type: Si0Type;1127    Si0TypeDef: Si0TypeDef;1128    Si0TypeDefArray: Si0TypeDefArray;1129    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1130    Si0TypeDefCompact: Si0TypeDefCompact;1131    Si0TypeDefComposite: Si0TypeDefComposite;1132    Si0TypeDefPhantom: Si0TypeDefPhantom;1133    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1134    Si0TypeDefSequence: Si0TypeDefSequence;1135    Si0TypeDefTuple: Si0TypeDefTuple;1136    Si0TypeDefVariant: Si0TypeDefVariant;1137    Si0TypeParameter: Si0TypeParameter;1138    Si0Variant: Si0Variant;1139    Si1Field: Si1Field;1140    Si1LookupTypeId: Si1LookupTypeId;1141    Si1Path: Si1Path;1142    Si1Type: Si1Type;1143    Si1TypeDef: Si1TypeDef;1144    Si1TypeDefArray: Si1TypeDefArray;1145    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1146    Si1TypeDefCompact: Si1TypeDefCompact;1147    Si1TypeDefComposite: Si1TypeDefComposite;1148    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1149    Si1TypeDefSequence: Si1TypeDefSequence;1150    Si1TypeDefTuple: Si1TypeDefTuple;1151    Si1TypeDefVariant: Si1TypeDefVariant;1152    Si1TypeParameter: Si1TypeParameter;1153    Si1Variant: Si1Variant;1154    SiField: SiField;1155    Signature: Signature;1156    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1157    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1158    SignedBlock: SignedBlock;1159    SignedBlockWithJustification: SignedBlockWithJustification;1160    SignedBlockWithJustifications: SignedBlockWithJustifications;1161    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1162    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1163    SignedSubmission: SignedSubmission;1164    SignedSubmissionOf: SignedSubmissionOf;1165    SignedSubmissionTo276: SignedSubmissionTo276;1166    SignerPayload: SignerPayload;1167    SigningContext: SigningContext;1168    SiLookupTypeId: SiLookupTypeId;1169    SiPath: SiPath;1170    SiType: SiType;1171    SiTypeDef: SiTypeDef;1172    SiTypeDefArray: SiTypeDefArray;1173    SiTypeDefBitSequence: SiTypeDefBitSequence;1174    SiTypeDefCompact: SiTypeDefCompact;1175    SiTypeDefComposite: SiTypeDefComposite;1176    SiTypeDefPrimitive: SiTypeDefPrimitive;1177    SiTypeDefSequence: SiTypeDefSequence;1178    SiTypeDefTuple: SiTypeDefTuple;1179    SiTypeDefVariant: SiTypeDefVariant;1180    SiTypeParameter: SiTypeParameter;1181    SiVariant: SiVariant;1182    SlashingSpans: SlashingSpans;1183    SlashingSpansTo204: SlashingSpansTo204;1184    SlashJournalEntry: SlashJournalEntry;1185    Slot: Slot;1186    SlotDuration: SlotDuration;1187    SlotNumber: SlotNumber;1188    SlotRange: SlotRange;1189    SlotRange10: SlotRange10;1190    SocietyJudgement: SocietyJudgement;1191    SocietyVote: SocietyVote;1192    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1193    SolutionSupport: SolutionSupport;1194    SolutionSupports: SolutionSupports;1195    SpanIndex: SpanIndex;1196    SpanRecord: SpanRecord;1197    SpArithmeticArithmeticError: SpArithmeticArithmeticError;1198    SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;1199    SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;1200    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1201    SpCoreEd25519Signature: SpCoreEd25519Signature;1202    SpCoreSr25519Public: SpCoreSr25519Public;1203    SpCoreSr25519Signature: SpCoreSr25519Signature;1204    SpecVersion: SpecVersion;1205    SpRuntimeDigest: SpRuntimeDigest;1206    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1207    SpRuntimeDispatchError: SpRuntimeDispatchError;1208    SpRuntimeModuleError: SpRuntimeModuleError;1209    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1210    SpRuntimeTokenError: SpRuntimeTokenError;1211    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1212    SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;1213    SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;1214    SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;1215    SpTrieStorageProof: SpTrieStorageProof;1216    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1217    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1218    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1219    Sr25519Signature: Sr25519Signature;1220    StakingLedger: StakingLedger;1221    StakingLedgerTo223: StakingLedgerTo223;1222    StakingLedgerTo240: StakingLedgerTo240;1223    Statement: Statement;1224    StatementKind: StatementKind;1225    StorageChangeSet: StorageChangeSet;1226    StorageData: StorageData;1227    StorageDeposit: StorageDeposit;1228    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1229    StorageEntryMetadataV10: StorageEntryMetadataV10;1230    StorageEntryMetadataV11: StorageEntryMetadataV11;1231    StorageEntryMetadataV12: StorageEntryMetadataV12;1232    StorageEntryMetadataV13: StorageEntryMetadataV13;1233    StorageEntryMetadataV14: StorageEntryMetadataV14;1234    StorageEntryMetadataV9: StorageEntryMetadataV9;1235    StorageEntryModifierLatest: StorageEntryModifierLatest;1236    StorageEntryModifierV10: StorageEntryModifierV10;1237    StorageEntryModifierV11: StorageEntryModifierV11;1238    StorageEntryModifierV12: StorageEntryModifierV12;1239    StorageEntryModifierV13: StorageEntryModifierV13;1240    StorageEntryModifierV14: StorageEntryModifierV14;1241    StorageEntryModifierV9: StorageEntryModifierV9;1242    StorageEntryTypeLatest: StorageEntryTypeLatest;1243    StorageEntryTypeV10: StorageEntryTypeV10;1244    StorageEntryTypeV11: StorageEntryTypeV11;1245    StorageEntryTypeV12: StorageEntryTypeV12;1246    StorageEntryTypeV13: StorageEntryTypeV13;1247    StorageEntryTypeV14: StorageEntryTypeV14;1248    StorageEntryTypeV9: StorageEntryTypeV9;1249    StorageHasher: StorageHasher;1250    StorageHasherV10: StorageHasherV10;1251    StorageHasherV11: StorageHasherV11;1252    StorageHasherV12: StorageHasherV12;1253    StorageHasherV13: StorageHasherV13;1254    StorageHasherV14: StorageHasherV14;1255    StorageHasherV9: StorageHasherV9;1256    StorageInfo: StorageInfo;1257    StorageKey: StorageKey;1258    StorageKind: StorageKind;1259    StorageMetadataV10: StorageMetadataV10;1260    StorageMetadataV11: StorageMetadataV11;1261    StorageMetadataV12: StorageMetadataV12;1262    StorageMetadataV13: StorageMetadataV13;1263    StorageMetadataV9: StorageMetadataV9;1264    StorageProof: StorageProof;1265    StoredPendingChange: StoredPendingChange;1266    StoredState: StoredState;1267    StrikeCount: StrikeCount;1268    SubId: SubId;1269    SubmissionIndicesOf: SubmissionIndicesOf;1270    Supports: Supports;1271    SyncState: SyncState;1272    SystemInherentData: SystemInherentData;1273    SystemOrigin: SystemOrigin;1274    Tally: Tally;1275    TaskAddress: TaskAddress;1276    TAssetBalance: TAssetBalance;1277    TAssetDepositBalance: TAssetDepositBalance;1278    Text: Text;1279    Timepoint: Timepoint;1280    TokenError: TokenError;1281    TombstoneContractInfo: TombstoneContractInfo;1282    TraceBlockResponse: TraceBlockResponse;1283    TraceError: TraceError;1284    TransactionalError: TransactionalError;1285    TransactionInfo: TransactionInfo;1286    TransactionLongevity: TransactionLongevity;1287    TransactionPriority: TransactionPriority;1288    TransactionSource: TransactionSource;1289    TransactionStorageProof: TransactionStorageProof;1290    TransactionTag: TransactionTag;1291    TransactionV0: TransactionV0;1292    TransactionV1: TransactionV1;1293    TransactionV2: TransactionV2;1294    TransactionValidity: TransactionValidity;1295    TransactionValidityError: TransactionValidityError;1296    TransientValidationData: TransientValidationData;1297    TreasuryProposal: TreasuryProposal;1298    TrieId: TrieId;1299    TrieIndex: TrieIndex;1300    Type: Type;1301    u128: u128;1302    U128: U128;1303    u16: u16;1304    U16: U16;1305    u256: u256;1306    U256: U256;1307    u32: u32;1308    U32: U32;1309    U32F32: U32F32;1310    u64: u64;1311    U64: U64;1312    u8: u8;1313    U8: U8;1314    UnappliedSlash: UnappliedSlash;1315    UnappliedSlashOther: UnappliedSlashOther;1316    UncleEntryItem: UncleEntryItem;1317    UnknownTransaction: UnknownTransaction;1318    UnlockChunk: UnlockChunk;1319    UnrewardedRelayer: UnrewardedRelayer;1320    UnrewardedRelayersState: UnrewardedRelayersState;1321    UpDataStructsAccessMode: UpDataStructsAccessMode;1322    UpDataStructsCollection: UpDataStructsCollection;1323    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1324    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1325    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1326    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1327    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1328    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1329    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1330    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1331    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1332    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1333    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1334    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1335    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1336    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1337    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1338    UpDataStructsProperties: UpDataStructsProperties;1339    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1340    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1341    UpDataStructsProperty: UpDataStructsProperty;1342    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1343    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1344    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1345    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1346    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1347    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1348    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1349    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1350    UpDataStructsTokenChild: UpDataStructsTokenChild;1351    UpDataStructsTokenData: UpDataStructsTokenData;1352    UpgradeGoAhead: UpgradeGoAhead;1353    UpgradeRestriction: UpgradeRestriction;1354    UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;1355    UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;1356    UpwardMessage: UpwardMessage;1357    usize: usize;1358    USize: USize;1359    ValidationCode: ValidationCode;1360    ValidationCodeHash: ValidationCodeHash;1361    ValidationData: ValidationData;1362    ValidationDataType: ValidationDataType;1363    ValidationFunctionParams: ValidationFunctionParams;1364    ValidatorCount: ValidatorCount;1365    ValidatorId: ValidatorId;1366    ValidatorIdOf: ValidatorIdOf;1367    ValidatorIndex: ValidatorIndex;1368    ValidatorIndexCompact: ValidatorIndexCompact;1369    ValidatorPrefs: ValidatorPrefs;1370    ValidatorPrefsTo145: ValidatorPrefsTo145;1371    ValidatorPrefsTo196: ValidatorPrefsTo196;1372    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1373    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1374    ValidatorSet: ValidatorSet;1375    ValidatorSetId: ValidatorSetId;1376    ValidatorSignature: ValidatorSignature;1377    ValidDisputeStatementKind: ValidDisputeStatementKind;1378    ValidityAttestation: ValidityAttestation;1379    ValidTransaction: ValidTransaction;1380    VecInboundHrmpMessage: VecInboundHrmpMessage;1381    VersionedMultiAsset: VersionedMultiAsset;1382    VersionedMultiAssets: VersionedMultiAssets;1383    VersionedMultiLocation: VersionedMultiLocation;1384    VersionedResponse: VersionedResponse;1385    VersionedXcm: VersionedXcm;1386    VersionMigrationStage: VersionMigrationStage;1387    VestingInfo: VestingInfo;1388    VestingSchedule: VestingSchedule;1389    Vote: Vote;1390    VoteIndex: VoteIndex;1391    Voter: Voter;1392    VoterInfo: VoterInfo;1393    Votes: Votes;1394    VotesTo230: VotesTo230;1395    VoteThreshold: VoteThreshold;1396    VoteWeight: VoteWeight;1397    Voting: Voting;1398    VotingDelegating: VotingDelegating;1399    VotingDirect: VotingDirect;1400    VotingDirectVote: VotingDirectVote;1401    VouchingStatus: VouchingStatus;1402    VrfData: VrfData;1403    VrfOutput: VrfOutput;1404    VrfProof: VrfProof;1405    Weight: Weight;1406    WeightLimitV2: WeightLimitV2;1407    WeightMultiplier: WeightMultiplier;1408    WeightPerClass: WeightPerClass;1409    WeightToFeeCoefficient: WeightToFeeCoefficient;1410    WeightV0: WeightV0;1411    WeightV1: WeightV1;1412    WeightV2: WeightV2;1413    WildFungibility: WildFungibility;1414    WildFungibilityV0: WildFungibilityV0;1415    WildFungibilityV1: WildFungibilityV1;1416    WildFungibilityV2: WildFungibilityV2;1417    WildMultiAsset: WildMultiAsset;1418    WildMultiAssetV1: WildMultiAssetV1;1419    WildMultiAssetV2: WildMultiAssetV2;1420    WinnersData: WinnersData;1421    WinnersData10: WinnersData10;1422    WinnersDataTuple: WinnersDataTuple;1423    WinnersDataTuple10: WinnersDataTuple10;1424    WinningData: WinningData;1425    WinningData10: WinningData10;1426    WinningDataEntry: WinningDataEntry;1427    WithdrawReasons: WithdrawReasons;1428    Xcm: Xcm;1429    XcmAssetId: XcmAssetId;1430    XcmDoubleEncoded: XcmDoubleEncoded;1431    XcmError: XcmError;1432    XcmErrorV0: XcmErrorV0;1433    XcmErrorV1: XcmErrorV1;1434    XcmErrorV2: XcmErrorV2;1435    XcmOrder: XcmOrder;1436    XcmOrderV0: XcmOrderV0;1437    XcmOrderV1: XcmOrderV1;1438    XcmOrderV2: XcmOrderV2;1439    XcmOrigin: XcmOrigin;1440    XcmOriginKind: XcmOriginKind;1441    XcmpMessageFormat: XcmpMessageFormat;1442    XcmV0: XcmV0;1443    XcmV1: XcmV1;1444    XcmV2: XcmV2;1445    XcmV2BodyId: XcmV2BodyId;1446    XcmV2BodyPart: XcmV2BodyPart;1447    XcmV2Instruction: XcmV2Instruction;1448    XcmV2Junction: XcmV2Junction;1449    XcmV2MultiAsset: XcmV2MultiAsset;1450    XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;1451    XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;1452    XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;1453    XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;1454    XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;1455    XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;1456    XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;1457    XcmV2MultiLocation: XcmV2MultiLocation;1458    XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;1459    XcmV2NetworkId: XcmV2NetworkId;1460    XcmV2OriginKind: XcmV2OriginKind;1461    XcmV2Response: XcmV2Response;1462    XcmV2TraitsError: XcmV2TraitsError;1463    XcmV2WeightLimit: XcmV2WeightLimit;1464    XcmV2Xcm: XcmV2Xcm;1465    XcmV3Instruction: XcmV3Instruction;1466    XcmV3Junction: XcmV3Junction;1467    XcmV3JunctionBodyId: XcmV3JunctionBodyId;1468    XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;1469    XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;1470    XcmV3Junctions: XcmV3Junctions;1471    XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;1472    XcmV3MultiAsset: XcmV3MultiAsset;1473    XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;1474    XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;1475    XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;1476    XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;1477    XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;1478    XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;1479    XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;1480    XcmV3MultiLocation: XcmV3MultiLocation;1481    XcmV3PalletInfo: XcmV3PalletInfo;1482    XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;1483    XcmV3Response: XcmV3Response;1484    XcmV3TraitsError: XcmV3TraitsError;1485    XcmV3TraitsOutcome: XcmV3TraitsOutcome;1486    XcmV3WeightLimit: XcmV3WeightLimit;1487    XcmV3Xcm: XcmV3Xcm;1488    XcmVersion: XcmVersion;1489    XcmVersionedAssetId: XcmVersionedAssetId;1490    XcmVersionedMultiAsset: XcmVersionedMultiAsset;1491    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1492    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1493    XcmVersionedResponse: XcmVersionedResponse;1494    XcmVersionedXcm: XcmVersionedXcm;1495  } // InterfaceTypes1496} // declare module
after · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { FungiblesAccessError } from '@polkadot/types/interfaces/fungibles';39import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';40import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';41import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';42import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';43import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';44import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';45import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMethodMetadataV15, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';46import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';47import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';48import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';49import type { StorageKind } from '@polkadot/types/interfaces/offchain';50import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';51import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';52import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';53import type { Approvals } from '@polkadot/types/interfaces/poll';54import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';55import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';56import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';57import type { RpcMethods } from '@polkadot/types/interfaces/rpc';58import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';59import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';60import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';61import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';62import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';63import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';64import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';65import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';66import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';67import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';68import type { Multiplier } from '@polkadot/types/interfaces/txpayment';69import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';70import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';71import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';72import type { VestingInfo } from '@polkadot/types/interfaces/vesting';73import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7475declare module '@polkadot/types/types/registry' {76  interface InterfaceTypes {77    AbridgedCandidateReceipt: AbridgedCandidateReceipt;78    AbridgedHostConfiguration: AbridgedHostConfiguration;79    AbridgedHrmpChannel: AbridgedHrmpChannel;80    AccountData: AccountData;81    AccountId: AccountId;82    AccountId20: AccountId20;83    AccountId32: AccountId32;84    AccountId33: AccountId33;85    AccountIdOf: AccountIdOf;86    AccountIndex: AccountIndex;87    AccountInfo: AccountInfo;88    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;89    AccountInfoWithProviders: AccountInfoWithProviders;90    AccountInfoWithRefCount: AccountInfoWithRefCount;91    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;92    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;93    AccountStatus: AccountStatus;94    AccountValidity: AccountValidity;95    AccountVote: AccountVote;96    AccountVoteSplit: AccountVoteSplit;97    AccountVoteStandard: AccountVoteStandard;98    ActiveEraInfo: ActiveEraInfo;99    ActiveGilt: ActiveGilt;100    ActiveGiltsTotal: ActiveGiltsTotal;101    ActiveIndex: ActiveIndex;102    ActiveRecovery: ActiveRecovery;103    Address: Address;104    AliveContractInfo: AliveContractInfo;105    AllowedSlots: AllowedSlots;106    AnySignature: AnySignature;107    ApiId: ApiId;108    ApplyExtrinsicResult: ApplyExtrinsicResult;109    ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;110    ApprovalFlag: ApprovalFlag;111    Approvals: Approvals;112    ArithmeticError: ArithmeticError;113    AssetApproval: AssetApproval;114    AssetApprovalKey: AssetApprovalKey;115    AssetBalance: AssetBalance;116    AssetDestroyWitness: AssetDestroyWitness;117    AssetDetails: AssetDetails;118    AssetId: AssetId;119    AssetInstance: AssetInstance;120    AssetInstanceV0: AssetInstanceV0;121    AssetInstanceV1: AssetInstanceV1;122    AssetInstanceV2: AssetInstanceV2;123    AssetMetadata: AssetMetadata;124    AssetOptions: AssetOptions;125    AssignmentId: AssignmentId;126    AssignmentKind: AssignmentKind;127    AttestedCandidate: AttestedCandidate;128    AuctionIndex: AuctionIndex;129    AuthIndex: AuthIndex;130    AuthorityDiscoveryId: AuthorityDiscoveryId;131    AuthorityId: AuthorityId;132    AuthorityIndex: AuthorityIndex;133    AuthorityList: AuthorityList;134    AuthoritySet: AuthoritySet;135    AuthoritySetChange: AuthoritySetChange;136    AuthoritySetChanges: AuthoritySetChanges;137    AuthoritySignature: AuthoritySignature;138    AuthorityWeight: AuthorityWeight;139    AvailabilityBitfield: AvailabilityBitfield;140    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;141    BabeAuthorityWeight: BabeAuthorityWeight;142    BabeBlockWeight: BabeBlockWeight;143    BabeEpochConfiguration: BabeEpochConfiguration;144    BabeEquivocationProof: BabeEquivocationProof;145    BabeGenesisConfiguration: BabeGenesisConfiguration;146    BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;147    BabeWeight: BabeWeight;148    BackedCandidate: BackedCandidate;149    Balance: Balance;150    BalanceLock: BalanceLock;151    BalanceLockTo212: BalanceLockTo212;152    BalanceOf: BalanceOf;153    BalanceStatus: BalanceStatus;154    BeefyAuthoritySet: BeefyAuthoritySet;155    BeefyCommitment: BeefyCommitment;156    BeefyEquivocationProof: BeefyEquivocationProof;157    BeefyId: BeefyId;158    BeefyKey: BeefyKey;159    BeefyNextAuthoritySet: BeefyNextAuthoritySet;160    BeefyPayload: BeefyPayload;161    BeefyPayloadId: BeefyPayloadId;162    BeefySignedCommitment: BeefySignedCommitment;163    BeefyVoteMessage: BeefyVoteMessage;164    BenchmarkBatch: BenchmarkBatch;165    BenchmarkConfig: BenchmarkConfig;166    BenchmarkList: BenchmarkList;167    BenchmarkMetadata: BenchmarkMetadata;168    BenchmarkParameter: BenchmarkParameter;169    BenchmarkResult: BenchmarkResult;170    Bid: Bid;171    Bidder: Bidder;172    BidKind: BidKind;173    BitVec: BitVec;174    Block: Block;175    BlockAttestations: BlockAttestations;176    BlockHash: BlockHash;177    BlockLength: BlockLength;178    BlockNumber: BlockNumber;179    BlockNumberFor: BlockNumberFor;180    BlockNumberOf: BlockNumberOf;181    BlockStats: BlockStats;182    BlockTrace: BlockTrace;183    BlockTraceEvent: BlockTraceEvent;184    BlockTraceEventData: BlockTraceEventData;185    BlockTraceSpan: BlockTraceSpan;186    BlockV0: BlockV0;187    BlockV1: BlockV1;188    BlockV2: BlockV2;189    BlockWeights: BlockWeights;190    BodyId: BodyId;191    BodyPart: BodyPart;192    bool: bool;193    Bool: Bool;194    Bounty: Bounty;195    BountyIndex: BountyIndex;196    BountyStatus: BountyStatus;197    BountyStatusActive: BountyStatusActive;198    BountyStatusCuratorProposed: BountyStatusCuratorProposed;199    BountyStatusPendingPayout: BountyStatusPendingPayout;200    BridgedBlockHash: BridgedBlockHash;201    BridgedBlockNumber: BridgedBlockNumber;202    BridgedHeader: BridgedHeader;203    BridgeMessageId: BridgeMessageId;204    BufferedSessionChange: BufferedSessionChange;205    Bytes: Bytes;206    Call: Call;207    CallHash: CallHash;208    CallHashOf: CallHashOf;209    CallIndex: CallIndex;210    CallOrigin: CallOrigin;211    CandidateCommitments: CandidateCommitments;212    CandidateDescriptor: CandidateDescriptor;213    CandidateEvent: CandidateEvent;214    CandidateHash: CandidateHash;215    CandidateInfo: CandidateInfo;216    CandidatePendingAvailability: CandidatePendingAvailability;217    CandidateReceipt: CandidateReceipt;218    ChainId: ChainId;219    ChainProperties: ChainProperties;220    ChainType: ChainType;221    ChangesTrieConfiguration: ChangesTrieConfiguration;222    ChangesTrieSignal: ChangesTrieSignal;223    CheckInherentsResult: CheckInherentsResult;224    ClassDetails: ClassDetails;225    ClassId: ClassId;226    ClassMetadata: ClassMetadata;227    CodecHash: CodecHash;228    CodeHash: CodeHash;229    CodeSource: CodeSource;230    CodeUploadRequest: CodeUploadRequest;231    CodeUploadResult: CodeUploadResult;232    CodeUploadResultValue: CodeUploadResultValue;233    CollationInfo: CollationInfo;234    CollationInfoV1: CollationInfoV1;235    CollatorId: CollatorId;236    CollatorSignature: CollatorSignature;237    CollectiveOrigin: CollectiveOrigin;238    CommittedCandidateReceipt: CommittedCandidateReceipt;239    CompactAssignments: CompactAssignments;240    CompactAssignmentsTo257: CompactAssignmentsTo257;241    CompactAssignmentsTo265: CompactAssignmentsTo265;242    CompactAssignmentsWith16: CompactAssignmentsWith16;243    CompactAssignmentsWith24: CompactAssignmentsWith24;244    CompactScore: CompactScore;245    CompactScoreCompact: CompactScoreCompact;246    ConfigData: ConfigData;247    Consensus: Consensus;248    ConsensusEngineId: ConsensusEngineId;249    ConsumedWeight: ConsumedWeight;250    ContractCallFlags: ContractCallFlags;251    ContractCallRequest: ContractCallRequest;252    ContractConstructorSpecLatest: ContractConstructorSpecLatest;253    ContractConstructorSpecV0: ContractConstructorSpecV0;254    ContractConstructorSpecV1: ContractConstructorSpecV1;255    ContractConstructorSpecV2: ContractConstructorSpecV2;256    ContractConstructorSpecV3: ContractConstructorSpecV3;257    ContractContractSpecV0: ContractContractSpecV0;258    ContractContractSpecV1: ContractContractSpecV1;259    ContractContractSpecV2: ContractContractSpecV2;260    ContractContractSpecV3: ContractContractSpecV3;261    ContractContractSpecV4: ContractContractSpecV4;262    ContractCryptoHasher: ContractCryptoHasher;263    ContractDiscriminant: ContractDiscriminant;264    ContractDisplayName: ContractDisplayName;265    ContractEventParamSpecLatest: ContractEventParamSpecLatest;266    ContractEventParamSpecV0: ContractEventParamSpecV0;267    ContractEventParamSpecV2: ContractEventParamSpecV2;268    ContractEventSpecLatest: ContractEventSpecLatest;269    ContractEventSpecV0: ContractEventSpecV0;270    ContractEventSpecV1: ContractEventSpecV1;271    ContractEventSpecV2: ContractEventSpecV2;272    ContractExecResult: ContractExecResult;273    ContractExecResultOk: ContractExecResultOk;274    ContractExecResultResult: ContractExecResultResult;275    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;276    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;277    ContractExecResultTo255: ContractExecResultTo255;278    ContractExecResultTo260: ContractExecResultTo260;279    ContractExecResultTo267: ContractExecResultTo267;280    ContractExecResultU64: ContractExecResultU64;281    ContractInfo: ContractInfo;282    ContractInstantiateResult: ContractInstantiateResult;283    ContractInstantiateResultTo267: ContractInstantiateResultTo267;284    ContractInstantiateResultTo299: ContractInstantiateResultTo299;285    ContractInstantiateResultU64: ContractInstantiateResultU64;286    ContractLayoutArray: ContractLayoutArray;287    ContractLayoutCell: ContractLayoutCell;288    ContractLayoutEnum: ContractLayoutEnum;289    ContractLayoutHash: ContractLayoutHash;290    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;291    ContractLayoutKey: ContractLayoutKey;292    ContractLayoutStruct: ContractLayoutStruct;293    ContractLayoutStructField: ContractLayoutStructField;294    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;295    ContractMessageParamSpecV0: ContractMessageParamSpecV0;296    ContractMessageParamSpecV2: ContractMessageParamSpecV2;297    ContractMessageSpecLatest: ContractMessageSpecLatest;298    ContractMessageSpecV0: ContractMessageSpecV0;299    ContractMessageSpecV1: ContractMessageSpecV1;300    ContractMessageSpecV2: ContractMessageSpecV2;301    ContractMetadata: ContractMetadata;302    ContractMetadataLatest: ContractMetadataLatest;303    ContractMetadataV0: ContractMetadataV0;304    ContractMetadataV1: ContractMetadataV1;305    ContractMetadataV2: ContractMetadataV2;306    ContractMetadataV3: ContractMetadataV3;307    ContractMetadataV4: ContractMetadataV4;308    ContractProject: ContractProject;309    ContractProjectContract: ContractProjectContract;310    ContractProjectInfo: ContractProjectInfo;311    ContractProjectSource: ContractProjectSource;312    ContractProjectV0: ContractProjectV0;313    ContractReturnFlags: ContractReturnFlags;314    ContractSelector: ContractSelector;315    ContractStorageKey: ContractStorageKey;316    ContractStorageLayout: ContractStorageLayout;317    ContractTypeSpec: ContractTypeSpec;318    Conviction: Conviction;319    CoreAssignment: CoreAssignment;320    CoreIndex: CoreIndex;321    CoreOccupied: CoreOccupied;322    CoreState: CoreState;323    CrateVersion: CrateVersion;324    CreatedBlock: CreatedBlock;325    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;326    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;327    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;328    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;329    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;330    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;331    CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;332    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;333    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;334    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;335    CumulusPalletXcmCall: CumulusPalletXcmCall;336    CumulusPalletXcmError: CumulusPalletXcmError;337    CumulusPalletXcmEvent: CumulusPalletXcmEvent;338    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;339    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;340    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;341    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;342    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;343    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;344    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;345    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;346    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;347    Data: Data;348    DeferredOffenceOf: DeferredOffenceOf;349    DefunctVoter: DefunctVoter;350    DelayKind: DelayKind;351    DelayKindBest: DelayKindBest;352    Delegations: Delegations;353    DeletedContract: DeletedContract;354    DeliveredMessages: DeliveredMessages;355    DepositBalance: DepositBalance;356    DepositBalanceOf: DepositBalanceOf;357    DestroyWitness: DestroyWitness;358    Digest: Digest;359    DigestItem: DigestItem;360    DigestOf: DigestOf;361    DispatchClass: DispatchClass;362    DispatchError: DispatchError;363    DispatchErrorModule: DispatchErrorModule;364    DispatchErrorModulePre6: DispatchErrorModulePre6;365    DispatchErrorModuleU8: DispatchErrorModuleU8;366    DispatchErrorModuleU8a: DispatchErrorModuleU8a;367    DispatchErrorPre6: DispatchErrorPre6;368    DispatchErrorPre6First: DispatchErrorPre6First;369    DispatchErrorTo198: DispatchErrorTo198;370    DispatchFeePayment: DispatchFeePayment;371    DispatchInfo: DispatchInfo;372    DispatchInfoTo190: DispatchInfoTo190;373    DispatchInfoTo244: DispatchInfoTo244;374    DispatchOutcome: DispatchOutcome;375    DispatchOutcomePre6: DispatchOutcomePre6;376    DispatchResult: DispatchResult;377    DispatchResultOf: DispatchResultOf;378    DispatchResultTo198: DispatchResultTo198;379    DisputeLocation: DisputeLocation;380    DisputeResult: DisputeResult;381    DisputeState: DisputeState;382    DisputeStatement: DisputeStatement;383    DisputeStatementSet: DisputeStatementSet;384    DoubleEncodedCall: DoubleEncodedCall;385    DoubleVoteReport: DoubleVoteReport;386    DownwardMessage: DownwardMessage;387    EcdsaSignature: EcdsaSignature;388    Ed25519Signature: Ed25519Signature;389    EIP1559Transaction: EIP1559Transaction;390    EIP2930Transaction: EIP2930Transaction;391    ElectionCompute: ElectionCompute;392    ElectionPhase: ElectionPhase;393    ElectionResult: ElectionResult;394    ElectionScore: ElectionScore;395    ElectionSize: ElectionSize;396    ElectionStatus: ElectionStatus;397    EncodedFinalityProofs: EncodedFinalityProofs;398    EncodedJustification: EncodedJustification;399    Epoch: Epoch;400    EpochAuthorship: EpochAuthorship;401    Era: Era;402    EraIndex: EraIndex;403    EraPoints: EraPoints;404    EraRewardPoints: EraRewardPoints;405    EraRewards: EraRewards;406    ErrorMetadataLatest: ErrorMetadataLatest;407    ErrorMetadataV10: ErrorMetadataV10;408    ErrorMetadataV11: ErrorMetadataV11;409    ErrorMetadataV12: ErrorMetadataV12;410    ErrorMetadataV13: ErrorMetadataV13;411    ErrorMetadataV14: ErrorMetadataV14;412    ErrorMetadataV9: ErrorMetadataV9;413    EthAccessList: EthAccessList;414    EthAccessListItem: EthAccessListItem;415    EthAccount: EthAccount;416    EthAddress: EthAddress;417    EthBlock: EthBlock;418    EthBloom: EthBloom;419    EthbloomBloom: EthbloomBloom;420    EthCallRequest: EthCallRequest;421    EthereumAccountId: EthereumAccountId;422    EthereumAddress: EthereumAddress;423    EthereumBlock: EthereumBlock;424    EthereumHeader: EthereumHeader;425    EthereumLog: EthereumLog;426    EthereumLookupSource: EthereumLookupSource;427    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;428    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;429    EthereumSignature: EthereumSignature;430    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;431    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;432    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;433    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;434    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;435    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;436    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;437    EthereumTypesHashH64: EthereumTypesHashH64;438    EthFeeHistory: EthFeeHistory;439    EthFilter: EthFilter;440    EthFilterAddress: EthFilterAddress;441    EthFilterChanges: EthFilterChanges;442    EthFilterTopic: EthFilterTopic;443    EthFilterTopicEntry: EthFilterTopicEntry;444    EthFilterTopicInner: EthFilterTopicInner;445    EthHeader: EthHeader;446    EthLog: EthLog;447    EthReceipt: EthReceipt;448    EthReceiptV0: EthReceiptV0;449    EthReceiptV3: EthReceiptV3;450    EthRichBlock: EthRichBlock;451    EthRichHeader: EthRichHeader;452    EthStorageProof: EthStorageProof;453    EthSubKind: EthSubKind;454    EthSubParams: EthSubParams;455    EthSubResult: EthSubResult;456    EthSyncInfo: EthSyncInfo;457    EthSyncStatus: EthSyncStatus;458    EthTransaction: EthTransaction;459    EthTransactionAction: EthTransactionAction;460    EthTransactionCondition: EthTransactionCondition;461    EthTransactionRequest: EthTransactionRequest;462    EthTransactionSignature: EthTransactionSignature;463    EthTransactionStatus: EthTransactionStatus;464    EthWork: EthWork;465    Event: Event;466    EventId: EventId;467    EventIndex: EventIndex;468    EventMetadataLatest: EventMetadataLatest;469    EventMetadataV10: EventMetadataV10;470    EventMetadataV11: EventMetadataV11;471    EventMetadataV12: EventMetadataV12;472    EventMetadataV13: EventMetadataV13;473    EventMetadataV14: EventMetadataV14;474    EventMetadataV9: EventMetadataV9;475    EventRecord: EventRecord;476    EvmAccount: EvmAccount;477    EvmCallInfo: EvmCallInfo;478    EvmCoreErrorExitError: EvmCoreErrorExitError;479    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;480    EvmCoreErrorExitReason: EvmCoreErrorExitReason;481    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;482    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;483    EvmCreateInfo: EvmCreateInfo;484    EvmLog: EvmLog;485    EvmVicinity: EvmVicinity;486    ExecReturnValue: ExecReturnValue;487    ExecutorParam: ExecutorParam;488    ExecutorParams: ExecutorParams;489    ExecutorParamsHash: ExecutorParamsHash;490    ExitError: ExitError;491    ExitFatal: ExitFatal;492    ExitReason: ExitReason;493    ExitRevert: ExitRevert;494    ExitSucceed: ExitSucceed;495    ExplicitDisputeStatement: ExplicitDisputeStatement;496    Exposure: Exposure;497    ExtendedBalance: ExtendedBalance;498    Extrinsic: Extrinsic;499    ExtrinsicEra: ExtrinsicEra;500    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;501    ExtrinsicMetadataV11: ExtrinsicMetadataV11;502    ExtrinsicMetadataV12: ExtrinsicMetadataV12;503    ExtrinsicMetadataV13: ExtrinsicMetadataV13;504    ExtrinsicMetadataV14: ExtrinsicMetadataV14;505    ExtrinsicOrHash: ExtrinsicOrHash;506    ExtrinsicPayload: ExtrinsicPayload;507    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;508    ExtrinsicPayloadV4: ExtrinsicPayloadV4;509    ExtrinsicSignature: ExtrinsicSignature;510    ExtrinsicSignatureV4: ExtrinsicSignatureV4;511    ExtrinsicStatus: ExtrinsicStatus;512    ExtrinsicsWeight: ExtrinsicsWeight;513    ExtrinsicUnknown: ExtrinsicUnknown;514    ExtrinsicV4: ExtrinsicV4;515    f32: f32;516    F32: F32;517    f64: f64;518    F64: F64;519    FeeDetails: FeeDetails;520    Fixed128: Fixed128;521    Fixed64: Fixed64;522    FixedI128: FixedI128;523    FixedI64: FixedI64;524    FixedU128: FixedU128;525    FixedU64: FixedU64;526    Forcing: Forcing;527    ForkTreePendingChange: ForkTreePendingChange;528    ForkTreePendingChangeNode: ForkTreePendingChangeNode;529    FpRpcTransactionStatus: FpRpcTransactionStatus;530    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;531    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;532    FrameSupportDispatchPays: FrameSupportDispatchPays;533    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;534    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;535    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;536    FrameSupportPalletId: FrameSupportPalletId;537    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;538    FrameSystemAccountInfo: FrameSystemAccountInfo;539    FrameSystemCall: FrameSystemCall;540    FrameSystemError: FrameSystemError;541    FrameSystemEvent: FrameSystemEvent;542    FrameSystemEventRecord: FrameSystemEventRecord;543    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;544    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;545    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;546    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;547    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;548    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;549    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;550    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;551    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;552    FrameSystemPhase: FrameSystemPhase;553    FullIdentification: FullIdentification;554    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;555    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;556    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;557    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;558    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;559    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;560    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;561    FunctionMetadataLatest: FunctionMetadataLatest;562    FunctionMetadataV10: FunctionMetadataV10;563    FunctionMetadataV11: FunctionMetadataV11;564    FunctionMetadataV12: FunctionMetadataV12;565    FunctionMetadataV13: FunctionMetadataV13;566    FunctionMetadataV14: FunctionMetadataV14;567    FunctionMetadataV9: FunctionMetadataV9;568    FundIndex: FundIndex;569    FundInfo: FundInfo;570    Fungibility: Fungibility;571    FungibilityV0: FungibilityV0;572    FungibilityV1: FungibilityV1;573    FungibilityV2: FungibilityV2;574    FungiblesAccessError: FungiblesAccessError;575    Gas: Gas;576    GiltBid: GiltBid;577    GlobalValidationData: GlobalValidationData;578    GlobalValidationSchedule: GlobalValidationSchedule;579    GrandpaCommit: GrandpaCommit;580    GrandpaEquivocation: GrandpaEquivocation;581    GrandpaEquivocationProof: GrandpaEquivocationProof;582    GrandpaEquivocationValue: GrandpaEquivocationValue;583    GrandpaJustification: GrandpaJustification;584    GrandpaPrecommit: GrandpaPrecommit;585    GrandpaPrevote: GrandpaPrevote;586    GrandpaSignedPrecommit: GrandpaSignedPrecommit;587    GroupIndex: GroupIndex;588    GroupRotationInfo: GroupRotationInfo;589    H1024: H1024;590    H128: H128;591    H160: H160;592    H2048: H2048;593    H256: H256;594    H32: H32;595    H512: H512;596    H64: H64;597    Hash: Hash;598    HeadData: HeadData;599    Header: Header;600    HeaderPartial: HeaderPartial;601    Health: Health;602    Heartbeat: Heartbeat;603    HeartbeatTo244: HeartbeatTo244;604    HostConfiguration: HostConfiguration;605    HostFnWeights: HostFnWeights;606    HostFnWeightsTo264: HostFnWeightsTo264;607    HrmpChannel: HrmpChannel;608    HrmpChannelId: HrmpChannelId;609    HrmpOpenChannelRequest: HrmpOpenChannelRequest;610    i128: i128;611    I128: I128;612    i16: i16;613    I16: I16;614    i256: i256;615    I256: I256;616    i32: i32;617    I32: I32;618    I32F32: I32F32;619    i64: i64;620    I64: I64;621    i8: i8;622    I8: I8;623    IdentificationTuple: IdentificationTuple;624    IdentityFields: IdentityFields;625    IdentityInfo: IdentityInfo;626    IdentityInfoAdditional: IdentityInfoAdditional;627    IdentityInfoTo198: IdentityInfoTo198;628    IdentityJudgement: IdentityJudgement;629    ImmortalEra: ImmortalEra;630    ImportedAux: ImportedAux;631    InboundDownwardMessage: InboundDownwardMessage;632    InboundHrmpMessage: InboundHrmpMessage;633    InboundHrmpMessages: InboundHrmpMessages;634    InboundLaneData: InboundLaneData;635    InboundRelayer: InboundRelayer;636    InboundStatus: InboundStatus;637    IncludedBlocks: IncludedBlocks;638    InclusionFee: InclusionFee;639    IncomingParachain: IncomingParachain;640    IncomingParachainDeploy: IncomingParachainDeploy;641    IncomingParachainFixed: IncomingParachainFixed;642    Index: Index;643    IndicesLookupSource: IndicesLookupSource;644    IndividualExposure: IndividualExposure;645    InherentData: InherentData;646    InherentIdentifier: InherentIdentifier;647    InitializationData: InitializationData;648    InstanceDetails: InstanceDetails;649    InstanceId: InstanceId;650    InstanceMetadata: InstanceMetadata;651    InstantiateRequest: InstantiateRequest;652    InstantiateRequestV1: InstantiateRequestV1;653    InstantiateRequestV2: InstantiateRequestV2;654    InstantiateReturnValue: InstantiateReturnValue;655    InstantiateReturnValueOk: InstantiateReturnValueOk;656    InstantiateReturnValueTo267: InstantiateReturnValueTo267;657    InstructionV2: InstructionV2;658    InstructionWeights: InstructionWeights;659    InteriorMultiLocation: InteriorMultiLocation;660    InvalidDisputeStatementKind: InvalidDisputeStatementKind;661    InvalidTransaction: InvalidTransaction;662    isize: isize;663    ISize: ISize;664    Json: Json;665    Junction: Junction;666    Junctions: Junctions;667    JunctionsV1: JunctionsV1;668    JunctionsV2: JunctionsV2;669    JunctionV0: JunctionV0;670    JunctionV1: JunctionV1;671    JunctionV2: JunctionV2;672    Justification: Justification;673    JustificationNotification: JustificationNotification;674    Justifications: Justifications;675    Key: Key;676    KeyOwnerProof: KeyOwnerProof;677    Keys: Keys;678    KeyType: KeyType;679    KeyTypeId: KeyTypeId;680    KeyValue: KeyValue;681    KeyValueOption: KeyValueOption;682    Kind: Kind;683    LaneId: LaneId;684    LastContribution: LastContribution;685    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;686    LeasePeriod: LeasePeriod;687    LeasePeriodOf: LeasePeriodOf;688    LegacyTransaction: LegacyTransaction;689    Limits: Limits;690    LimitsTo264: LimitsTo264;691    LocalValidationData: LocalValidationData;692    LockIdentifier: LockIdentifier;693    LookupSource: LookupSource;694    LookupTarget: LookupTarget;695    LotteryConfig: LotteryConfig;696    MaybeRandomness: MaybeRandomness;697    MaybeVrf: MaybeVrf;698    MemberCount: MemberCount;699    MembershipProof: MembershipProof;700    MessageData: MessageData;701    MessageId: MessageId;702    MessageIngestionType: MessageIngestionType;703    MessageKey: MessageKey;704    MessageNonce: MessageNonce;705    MessageQueueChain: MessageQueueChain;706    MessagesDeliveryProofOf: MessagesDeliveryProofOf;707    MessagesProofOf: MessagesProofOf;708    MessagingStateSnapshot: MessagingStateSnapshot;709    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;710    MetadataAll: MetadataAll;711    MetadataLatest: MetadataLatest;712    MetadataV10: MetadataV10;713    MetadataV11: MetadataV11;714    MetadataV12: MetadataV12;715    MetadataV13: MetadataV13;716    MetadataV14: MetadataV14;717    MetadataV15: MetadataV15;718    MetadataV9: MetadataV9;719    MigrationStatusResult: MigrationStatusResult;720    MmrBatchProof: MmrBatchProof;721    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;722    MmrError: MmrError;723    MmrHash: MmrHash;724    MmrLeafBatchProof: MmrLeafBatchProof;725    MmrLeafIndex: MmrLeafIndex;726    MmrLeafProof: MmrLeafProof;727    MmrNodeIndex: MmrNodeIndex;728    MmrProof: MmrProof;729    MmrRootHash: MmrRootHash;730    ModuleConstantMetadataV10: ModuleConstantMetadataV10;731    ModuleConstantMetadataV11: ModuleConstantMetadataV11;732    ModuleConstantMetadataV12: ModuleConstantMetadataV12;733    ModuleConstantMetadataV13: ModuleConstantMetadataV13;734    ModuleConstantMetadataV9: ModuleConstantMetadataV9;735    ModuleId: ModuleId;736    ModuleMetadataV10: ModuleMetadataV10;737    ModuleMetadataV11: ModuleMetadataV11;738    ModuleMetadataV12: ModuleMetadataV12;739    ModuleMetadataV13: ModuleMetadataV13;740    ModuleMetadataV9: ModuleMetadataV9;741    Moment: Moment;742    MomentOf: MomentOf;743    MoreAttestations: MoreAttestations;744    MortalEra: MortalEra;745    MultiAddress: MultiAddress;746    MultiAsset: MultiAsset;747    MultiAssetFilter: MultiAssetFilter;748    MultiAssetFilterV1: MultiAssetFilterV1;749    MultiAssetFilterV2: MultiAssetFilterV2;750    MultiAssets: MultiAssets;751    MultiAssetsV1: MultiAssetsV1;752    MultiAssetsV2: MultiAssetsV2;753    MultiAssetV0: MultiAssetV0;754    MultiAssetV1: MultiAssetV1;755    MultiAssetV2: MultiAssetV2;756    MultiDisputeStatementSet: MultiDisputeStatementSet;757    MultiLocation: MultiLocation;758    MultiLocationV0: MultiLocationV0;759    MultiLocationV1: MultiLocationV1;760    MultiLocationV2: MultiLocationV2;761    Multiplier: Multiplier;762    Multisig: Multisig;763    MultiSignature: MultiSignature;764    MultiSigner: MultiSigner;765    NetworkId: NetworkId;766    NetworkState: NetworkState;767    NetworkStatePeerset: NetworkStatePeerset;768    NetworkStatePeersetInfo: NetworkStatePeersetInfo;769    NewBidder: NewBidder;770    NextAuthority: NextAuthority;771    NextConfigDescriptor: NextConfigDescriptor;772    NextConfigDescriptorV1: NextConfigDescriptorV1;773    NftCollectionId: NftCollectionId;774    NftItemId: NftItemId;775    NodeRole: NodeRole;776    Nominations: Nominations;777    NominatorIndex: NominatorIndex;778    NominatorIndexCompact: NominatorIndexCompact;779    NotConnectedPeer: NotConnectedPeer;780    NpApiError: NpApiError;781    NpPoolId: NpPoolId;782    Null: Null;783    OccupiedCore: OccupiedCore;784    OccupiedCoreAssumption: OccupiedCoreAssumption;785    OffchainAccuracy: OffchainAccuracy;786    OffchainAccuracyCompact: OffchainAccuracyCompact;787    OffenceDetails: OffenceDetails;788    Offender: Offender;789    OldV1SessionInfo: OldV1SessionInfo;790    OpalRuntimeRuntime: OpalRuntimeRuntime;791    OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;792    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;793    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;794    OpaqueCall: OpaqueCall;795    OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;796    OpaqueMetadata: OpaqueMetadata;797    OpaqueMultiaddr: OpaqueMultiaddr;798    OpaqueNetworkState: OpaqueNetworkState;799    OpaquePeerId: OpaquePeerId;800    OpaqueTimeSlot: OpaqueTimeSlot;801    OpenTip: OpenTip;802    OpenTipFinderTo225: OpenTipFinderTo225;803    OpenTipTip: OpenTipTip;804    OpenTipTo225: OpenTipTo225;805    OperatingMode: OperatingMode;806    OptionBool: OptionBool;807    Origin: Origin;808    OriginCaller: OriginCaller;809    OriginKindV0: OriginKindV0;810    OriginKindV1: OriginKindV1;811    OriginKindV2: OriginKindV2;812    OrmlTokensAccountData: OrmlTokensAccountData;813    OrmlTokensBalanceLock: OrmlTokensBalanceLock;814    OrmlTokensModuleCall: OrmlTokensModuleCall;815    OrmlTokensModuleError: OrmlTokensModuleError;816    OrmlTokensModuleEvent: OrmlTokensModuleEvent;817    OrmlTokensReserveData: OrmlTokensReserveData;818    OrmlVestingModuleCall: OrmlVestingModuleCall;819    OrmlVestingModuleError: OrmlVestingModuleError;820    OrmlVestingModuleEvent: OrmlVestingModuleEvent;821    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;822    OrmlXtokensModuleCall: OrmlXtokensModuleCall;823    OrmlXtokensModuleError: OrmlXtokensModuleError;824    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;825    OutboundHrmpMessage: OutboundHrmpMessage;826    OutboundLaneData: OutboundLaneData;827    OutboundMessageFee: OutboundMessageFee;828    OutboundPayload: OutboundPayload;829    OutboundStatus: OutboundStatus;830    Outcome: Outcome;831    OverweightIndex: OverweightIndex;832    Owner: Owner;833    PageCounter: PageCounter;834    PageIndexData: PageIndexData;835    PalletAppPromotionCall: PalletAppPromotionCall;836    PalletAppPromotionError: PalletAppPromotionError;837    PalletAppPromotionEvent: PalletAppPromotionEvent;838    PalletBalancesAccountData: PalletBalancesAccountData;839    PalletBalancesBalanceLock: PalletBalancesBalanceLock;840    PalletBalancesCall: PalletBalancesCall;841    PalletBalancesError: PalletBalancesError;842    PalletBalancesEvent: PalletBalancesEvent;843    PalletBalancesIdAmount: PalletBalancesIdAmount;844    PalletBalancesReasons: PalletBalancesReasons;845    PalletBalancesReserveData: PalletBalancesReserveData;846    PalletCallMetadataLatest: PalletCallMetadataLatest;847    PalletCallMetadataV14: PalletCallMetadataV14;848    PalletCollatorSelectionCall: PalletCollatorSelectionCall;849    PalletCollatorSelectionError: PalletCollatorSelectionError;850    PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;851    PalletCommonError: PalletCommonError;852    PalletCommonEvent: PalletCommonEvent;853    PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;854    PalletConfigurationCall: PalletConfigurationCall;855    PalletConfigurationError: PalletConfigurationError;856    PalletConfigurationEvent: PalletConfigurationEvent;857    PalletConstantMetadataLatest: PalletConstantMetadataLatest;858    PalletConstantMetadataV14: PalletConstantMetadataV14;859    PalletErrorMetadataLatest: PalletErrorMetadataLatest;860    PalletErrorMetadataV14: PalletErrorMetadataV14;861    PalletEthereumCall: PalletEthereumCall;862    PalletEthereumError: PalletEthereumError;863    PalletEthereumEvent: PalletEthereumEvent;864    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;865    PalletEventMetadataLatest: PalletEventMetadataLatest;866    PalletEventMetadataV14: PalletEventMetadataV14;867    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;868    PalletEvmCall: PalletEvmCall;869    PalletEvmCoderSubstrateCall: PalletEvmCoderSubstrateCall;870    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;871    PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;872    PalletEvmContractHelpersError: PalletEvmContractHelpersError;873    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;874    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;875    PalletEvmError: PalletEvmError;876    PalletEvmEvent: PalletEvmEvent;877    PalletEvmMigrationCall: PalletEvmMigrationCall;878    PalletEvmMigrationError: PalletEvmMigrationError;879    PalletEvmMigrationEvent: PalletEvmMigrationEvent;880    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;881    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;882    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;883    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;884    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;885    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;886    PalletFungibleError: PalletFungibleError;887    PalletId: PalletId;888    PalletIdentityBitFlags: PalletIdentityBitFlags;889    PalletIdentityCall: PalletIdentityCall;890    PalletIdentityError: PalletIdentityError;891    PalletIdentityEvent: PalletIdentityEvent;892    PalletIdentityIdentityField: PalletIdentityIdentityField;893    PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;894    PalletIdentityJudgement: PalletIdentityJudgement;895    PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;896    PalletIdentityRegistration: PalletIdentityRegistration;897    PalletInflationCall: PalletInflationCall;898    PalletMaintenanceCall: PalletMaintenanceCall;899    PalletMaintenanceError: PalletMaintenanceError;900    PalletMaintenanceEvent: PalletMaintenanceEvent;901    PalletMetadataLatest: PalletMetadataLatest;902    PalletMetadataV14: PalletMetadataV14;903    PalletMetadataV15: PalletMetadataV15;904    PalletNonfungibleError: PalletNonfungibleError;905    PalletNonfungibleItemData: PalletNonfungibleItemData;906    PalletPreimageCall: PalletPreimageCall;907    PalletPreimageError: PalletPreimageError;908    PalletPreimageEvent: PalletPreimageEvent;909    PalletPreimageRequestStatus: PalletPreimageRequestStatus;910    PalletRefungibleError: PalletRefungibleError;911    PalletSessionCall: PalletSessionCall;912    PalletSessionError: PalletSessionError;913    PalletSessionEvent: PalletSessionEvent;914    PalletsOrigin: PalletsOrigin;915    PalletStorageMetadataLatest: PalletStorageMetadataLatest;916    PalletStorageMetadataV14: PalletStorageMetadataV14;917    PalletStructureCall: PalletStructureCall;918    PalletStructureError: PalletStructureError;919    PalletStructureEvent: PalletStructureEvent;920    PalletSudoCall: PalletSudoCall;921    PalletSudoError: PalletSudoError;922    PalletSudoEvent: PalletSudoEvent;923    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;924    PalletTestUtilsCall: PalletTestUtilsCall;925    PalletTestUtilsError: PalletTestUtilsError;926    PalletTestUtilsEvent: PalletTestUtilsEvent;927    PalletTimestampCall: PalletTimestampCall;928    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;929    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;930    PalletTreasuryCall: PalletTreasuryCall;931    PalletTreasuryError: PalletTreasuryError;932    PalletTreasuryEvent: PalletTreasuryEvent;933    PalletTreasuryProposal: PalletTreasuryProposal;934    PalletUniqueCall: PalletUniqueCall;935    PalletUniqueError: PalletUniqueError;936    PalletVersion: PalletVersion;937    PalletXcmCall: PalletXcmCall;938    PalletXcmError: PalletXcmError;939    PalletXcmEvent: PalletXcmEvent;940    PalletXcmQueryStatus: PalletXcmQueryStatus;941    PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;942    PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;943    ParachainDispatchOrigin: ParachainDispatchOrigin;944    ParachainInfoCall: ParachainInfoCall;945    ParachainInherentData: ParachainInherentData;946    ParachainProposal: ParachainProposal;947    ParachainsInherentData: ParachainsInherentData;948    ParaGenesisArgs: ParaGenesisArgs;949    ParaId: ParaId;950    ParaInfo: ParaInfo;951    ParaLifecycle: ParaLifecycle;952    Parameter: Parameter;953    ParaPastCodeMeta: ParaPastCodeMeta;954    ParaScheduling: ParaScheduling;955    ParathreadClaim: ParathreadClaim;956    ParathreadClaimQueue: ParathreadClaimQueue;957    ParathreadEntry: ParathreadEntry;958    ParaValidatorIndex: ParaValidatorIndex;959    Pays: Pays;960    Peer: Peer;961    PeerEndpoint: PeerEndpoint;962    PeerEndpointAddr: PeerEndpointAddr;963    PeerInfo: PeerInfo;964    PeerPing: PeerPing;965    PendingChange: PendingChange;966    PendingPause: PendingPause;967    PendingResume: PendingResume;968    Perbill: Perbill;969    Percent: Percent;970    PerDispatchClassU32: PerDispatchClassU32;971    PerDispatchClassWeight: PerDispatchClassWeight;972    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;973    Period: Period;974    Permill: Permill;975    PermissionLatest: PermissionLatest;976    PermissionsV1: PermissionsV1;977    PermissionVersions: PermissionVersions;978    Perquintill: Perquintill;979    PersistedValidationData: PersistedValidationData;980    PerU16: PerU16;981    Phantom: Phantom;982    PhantomData: PhantomData;983    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;984    Phase: Phase;985    PhragmenScore: PhragmenScore;986    Points: Points;987    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;988    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;989    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;990    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;991    PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;992    PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;993    PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;994    PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;995    PortableType: PortableType;996    PortableTypeV14: PortableTypeV14;997    Precommits: Precommits;998    PrefabWasmModule: PrefabWasmModule;999    PrefixedStorageKey: PrefixedStorageKey;1000    PreimageStatus: PreimageStatus;1001    PreimageStatusAvailable: PreimageStatusAvailable;1002    PreRuntime: PreRuntime;1003    Prevotes: Prevotes;1004    Priority: Priority;1005    PriorLock: PriorLock;1006    PropIndex: PropIndex;1007    Proposal: Proposal;1008    ProposalIndex: ProposalIndex;1009    ProxyAnnouncement: ProxyAnnouncement;1010    ProxyDefinition: ProxyDefinition;1011    ProxyState: ProxyState;1012    ProxyType: ProxyType;1013    PvfCheckStatement: PvfCheckStatement;1014    PvfExecTimeoutKind: PvfExecTimeoutKind;1015    PvfPrepTimeoutKind: PvfPrepTimeoutKind;1016    QueryId: QueryId;1017    QueryStatus: QueryStatus;1018    QueueConfigData: QueueConfigData;1019    QueuedParathread: QueuedParathread;1020    Randomness: Randomness;1021    Raw: Raw;1022    RawAuraPreDigest: RawAuraPreDigest;1023    RawBabePreDigest: RawBabePreDigest;1024    RawBabePreDigestCompat: RawBabePreDigestCompat;1025    RawBabePreDigestPrimary: RawBabePreDigestPrimary;1026    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;1027    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;1028    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;1029    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1030    RawBabePreDigestTo159: RawBabePreDigestTo159;1031    RawOrigin: RawOrigin;1032    RawSolution: RawSolution;1033    RawSolutionTo265: RawSolutionTo265;1034    RawSolutionWith16: RawSolutionWith16;1035    RawSolutionWith24: RawSolutionWith24;1036    RawVRFOutput: RawVRFOutput;1037    ReadProof: ReadProof;1038    ReadySolution: ReadySolution;1039    Reasons: Reasons;1040    RecoveryConfig: RecoveryConfig;1041    RefCount: RefCount;1042    RefCountTo259: RefCountTo259;1043    ReferendumIndex: ReferendumIndex;1044    ReferendumInfo: ReferendumInfo;1045    ReferendumInfoFinished: ReferendumInfoFinished;1046    ReferendumInfoTo239: ReferendumInfoTo239;1047    ReferendumStatus: ReferendumStatus;1048    RegisteredParachainInfo: RegisteredParachainInfo;1049    RegistrarIndex: RegistrarIndex;1050    RegistrarInfo: RegistrarInfo;1051    Registration: Registration;1052    RegistrationJudgement: RegistrationJudgement;1053    RegistrationTo198: RegistrationTo198;1054    RelayBlockNumber: RelayBlockNumber;1055    RelayChainBlockNumber: RelayChainBlockNumber;1056    RelayChainHash: RelayChainHash;1057    RelayerId: RelayerId;1058    RelayHash: RelayHash;1059    Releases: Releases;1060    Remark: Remark;1061    Renouncing: Renouncing;1062    RentProjection: RentProjection;1063    ReplacementTimes: ReplacementTimes;1064    ReportedRoundStates: ReportedRoundStates;1065    Reporter: Reporter;1066    ReportIdOf: ReportIdOf;1067    ReserveData: ReserveData;1068    ReserveIdentifier: ReserveIdentifier;1069    Response: Response;1070    ResponseV0: ResponseV0;1071    ResponseV1: ResponseV1;1072    ResponseV2: ResponseV2;1073    ResponseV2Error: ResponseV2Error;1074    ResponseV2Result: ResponseV2Result;1075    Retriable: Retriable;1076    RewardDestination: RewardDestination;1077    RewardPoint: RewardPoint;1078    RoundSnapshot: RoundSnapshot;1079    RoundState: RoundState;1080    RpcMethods: RpcMethods;1081    RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;1082    RuntimeApiMetadataV15: RuntimeApiMetadataV15;1083    RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;1084    RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;1085    RuntimeCall: RuntimeCall;1086    RuntimeDbWeight: RuntimeDbWeight;1087    RuntimeDispatchInfo: RuntimeDispatchInfo;1088    RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1089    RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1090    RuntimeEvent: RuntimeEvent;1091    RuntimeVersion: RuntimeVersion;1092    RuntimeVersionApi: RuntimeVersionApi;1093    RuntimeVersionPartial: RuntimeVersionPartial;1094    RuntimeVersionPre3: RuntimeVersionPre3;1095    RuntimeVersionPre4: RuntimeVersionPre4;1096    Schedule: Schedule;1097    Scheduled: Scheduled;1098    ScheduledCore: ScheduledCore;1099    ScheduledTo254: ScheduledTo254;1100    SchedulePeriod: SchedulePeriod;1101    SchedulePriority: SchedulePriority;1102    ScheduleTo212: ScheduleTo212;1103    ScheduleTo258: ScheduleTo258;1104    ScheduleTo264: ScheduleTo264;1105    Scheduling: Scheduling;1106    ScrapedOnChainVotes: ScrapedOnChainVotes;1107    Seal: Seal;1108    SealV0: SealV0;1109    SeatHolder: SeatHolder;1110    SeedOf: SeedOf;1111    ServiceQuality: ServiceQuality;1112    SessionIndex: SessionIndex;1113    SessionInfo: SessionInfo;1114    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1115    SessionKeys1: SessionKeys1;1116    SessionKeys10: SessionKeys10;1117    SessionKeys10B: SessionKeys10B;1118    SessionKeys2: SessionKeys2;1119    SessionKeys3: SessionKeys3;1120    SessionKeys4: SessionKeys4;1121    SessionKeys5: SessionKeys5;1122    SessionKeys6: SessionKeys6;1123    SessionKeys6B: SessionKeys6B;1124    SessionKeys7: SessionKeys7;1125    SessionKeys7B: SessionKeys7B;1126    SessionKeys8: SessionKeys8;1127    SessionKeys8B: SessionKeys8B;1128    SessionKeys9: SessionKeys9;1129    SessionKeys9B: SessionKeys9B;1130    SetId: SetId;1131    SetIndex: SetIndex;1132    Si0Field: Si0Field;1133    Si0LookupTypeId: Si0LookupTypeId;1134    Si0Path: Si0Path;1135    Si0Type: Si0Type;1136    Si0TypeDef: Si0TypeDef;1137    Si0TypeDefArray: Si0TypeDefArray;1138    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1139    Si0TypeDefCompact: Si0TypeDefCompact;1140    Si0TypeDefComposite: Si0TypeDefComposite;1141    Si0TypeDefPhantom: Si0TypeDefPhantom;1142    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1143    Si0TypeDefSequence: Si0TypeDefSequence;1144    Si0TypeDefTuple: Si0TypeDefTuple;1145    Si0TypeDefVariant: Si0TypeDefVariant;1146    Si0TypeParameter: Si0TypeParameter;1147    Si0Variant: Si0Variant;1148    Si1Field: Si1Field;1149    Si1LookupTypeId: Si1LookupTypeId;1150    Si1Path: Si1Path;1151    Si1Type: Si1Type;1152    Si1TypeDef: Si1TypeDef;1153    Si1TypeDefArray: Si1TypeDefArray;1154    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1155    Si1TypeDefCompact: Si1TypeDefCompact;1156    Si1TypeDefComposite: Si1TypeDefComposite;1157    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1158    Si1TypeDefSequence: Si1TypeDefSequence;1159    Si1TypeDefTuple: Si1TypeDefTuple;1160    Si1TypeDefVariant: Si1TypeDefVariant;1161    Si1TypeParameter: Si1TypeParameter;1162    Si1Variant: Si1Variant;1163    SiField: SiField;1164    Signature: Signature;1165    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1166    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1167    SignedBlock: SignedBlock;1168    SignedBlockWithJustification: SignedBlockWithJustification;1169    SignedBlockWithJustifications: SignedBlockWithJustifications;1170    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1171    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1172    SignedSubmission: SignedSubmission;1173    SignedSubmissionOf: SignedSubmissionOf;1174    SignedSubmissionTo276: SignedSubmissionTo276;1175    SignerPayload: SignerPayload;1176    SigningContext: SigningContext;1177    SiLookupTypeId: SiLookupTypeId;1178    SiPath: SiPath;1179    SiType: SiType;1180    SiTypeDef: SiTypeDef;1181    SiTypeDefArray: SiTypeDefArray;1182    SiTypeDefBitSequence: SiTypeDefBitSequence;1183    SiTypeDefCompact: SiTypeDefCompact;1184    SiTypeDefComposite: SiTypeDefComposite;1185    SiTypeDefPrimitive: SiTypeDefPrimitive;1186    SiTypeDefSequence: SiTypeDefSequence;1187    SiTypeDefTuple: SiTypeDefTuple;1188    SiTypeDefVariant: SiTypeDefVariant;1189    SiTypeParameter: SiTypeParameter;1190    SiVariant: SiVariant;1191    SlashingSpans: SlashingSpans;1192    SlashingSpansTo204: SlashingSpansTo204;1193    SlashJournalEntry: SlashJournalEntry;1194    Slot: Slot;1195    SlotDuration: SlotDuration;1196    SlotNumber: SlotNumber;1197    SlotRange: SlotRange;1198    SlotRange10: SlotRange10;1199    SocietyJudgement: SocietyJudgement;1200    SocietyVote: SocietyVote;1201    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1202    SolutionSupport: SolutionSupport;1203    SolutionSupports: SolutionSupports;1204    SpanIndex: SpanIndex;1205    SpanRecord: SpanRecord;1206    SpArithmeticArithmeticError: SpArithmeticArithmeticError;1207    SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;1208    SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;1209    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1210    SpCoreEd25519Signature: SpCoreEd25519Signature;1211    SpCoreSr25519Public: SpCoreSr25519Public;1212    SpCoreSr25519Signature: SpCoreSr25519Signature;1213    SpecVersion: SpecVersion;1214    SpRuntimeDigest: SpRuntimeDigest;1215    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1216    SpRuntimeDispatchError: SpRuntimeDispatchError;1217    SpRuntimeModuleError: SpRuntimeModuleError;1218    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1219    SpRuntimeTokenError: SpRuntimeTokenError;1220    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1221    SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;1222    SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;1223    SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;1224    SpTrieStorageProof: SpTrieStorageProof;1225    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1226    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1227    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1228    Sr25519Signature: Sr25519Signature;1229    StakingLedger: StakingLedger;1230    StakingLedgerTo223: StakingLedgerTo223;1231    StakingLedgerTo240: StakingLedgerTo240;1232    Statement: Statement;1233    StatementKind: StatementKind;1234    StorageChangeSet: StorageChangeSet;1235    StorageData: StorageData;1236    StorageDeposit: StorageDeposit;1237    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1238    StorageEntryMetadataV10: StorageEntryMetadataV10;1239    StorageEntryMetadataV11: StorageEntryMetadataV11;1240    StorageEntryMetadataV12: StorageEntryMetadataV12;1241    StorageEntryMetadataV13: StorageEntryMetadataV13;1242    StorageEntryMetadataV14: StorageEntryMetadataV14;1243    StorageEntryMetadataV9: StorageEntryMetadataV9;1244    StorageEntryModifierLatest: StorageEntryModifierLatest;1245    StorageEntryModifierV10: StorageEntryModifierV10;1246    StorageEntryModifierV11: StorageEntryModifierV11;1247    StorageEntryModifierV12: StorageEntryModifierV12;1248    StorageEntryModifierV13: StorageEntryModifierV13;1249    StorageEntryModifierV14: StorageEntryModifierV14;1250    StorageEntryModifierV9: StorageEntryModifierV9;1251    StorageEntryTypeLatest: StorageEntryTypeLatest;1252    StorageEntryTypeV10: StorageEntryTypeV10;1253    StorageEntryTypeV11: StorageEntryTypeV11;1254    StorageEntryTypeV12: StorageEntryTypeV12;1255    StorageEntryTypeV13: StorageEntryTypeV13;1256    StorageEntryTypeV14: StorageEntryTypeV14;1257    StorageEntryTypeV9: StorageEntryTypeV9;1258    StorageHasher: StorageHasher;1259    StorageHasherV10: StorageHasherV10;1260    StorageHasherV11: StorageHasherV11;1261    StorageHasherV12: StorageHasherV12;1262    StorageHasherV13: StorageHasherV13;1263    StorageHasherV14: StorageHasherV14;1264    StorageHasherV9: StorageHasherV9;1265    StorageInfo: StorageInfo;1266    StorageKey: StorageKey;1267    StorageKind: StorageKind;1268    StorageMetadataV10: StorageMetadataV10;1269    StorageMetadataV11: StorageMetadataV11;1270    StorageMetadataV12: StorageMetadataV12;1271    StorageMetadataV13: StorageMetadataV13;1272    StorageMetadataV9: StorageMetadataV9;1273    StorageProof: StorageProof;1274    StoredPendingChange: StoredPendingChange;1275    StoredState: StoredState;1276    StrikeCount: StrikeCount;1277    SubId: SubId;1278    SubmissionIndicesOf: SubmissionIndicesOf;1279    Supports: Supports;1280    SyncState: SyncState;1281    SystemInherentData: SystemInherentData;1282    SystemOrigin: SystemOrigin;1283    Tally: Tally;1284    TaskAddress: TaskAddress;1285    TAssetBalance: TAssetBalance;1286    TAssetDepositBalance: TAssetDepositBalance;1287    Text: Text;1288    Timepoint: Timepoint;1289    TokenError: TokenError;1290    TombstoneContractInfo: TombstoneContractInfo;1291    TraceBlockResponse: TraceBlockResponse;1292    TraceError: TraceError;1293    TransactionalError: TransactionalError;1294    TransactionInfo: TransactionInfo;1295    TransactionLongevity: TransactionLongevity;1296    TransactionPriority: TransactionPriority;1297    TransactionSource: TransactionSource;1298    TransactionStorageProof: TransactionStorageProof;1299    TransactionTag: TransactionTag;1300    TransactionV0: TransactionV0;1301    TransactionV1: TransactionV1;1302    TransactionV2: TransactionV2;1303    TransactionValidity: TransactionValidity;1304    TransactionValidityError: TransactionValidityError;1305    TransientValidationData: TransientValidationData;1306    TreasuryProposal: TreasuryProposal;1307    TrieId: TrieId;1308    TrieIndex: TrieIndex;1309    Type: Type;1310    u128: u128;1311    U128: U128;1312    u16: u16;1313    U16: U16;1314    u256: u256;1315    U256: U256;1316    u32: u32;1317    U32: U32;1318    U32F32: U32F32;1319    u64: u64;1320    U64: U64;1321    u8: u8;1322    U8: U8;1323    UnappliedSlash: UnappliedSlash;1324    UnappliedSlashOther: UnappliedSlashOther;1325    UncleEntryItem: UncleEntryItem;1326    UnknownTransaction: UnknownTransaction;1327    UnlockChunk: UnlockChunk;1328    UnrewardedRelayer: UnrewardedRelayer;1329    UnrewardedRelayersState: UnrewardedRelayersState;1330    UpDataStructsAccessMode: UpDataStructsAccessMode;1331    UpDataStructsCollection: UpDataStructsCollection;1332    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1333    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1334    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1335    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1336    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1337    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1338    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1339    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1340    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1341    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1342    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1343    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1344    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1345    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1346    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1347    UpDataStructsProperties: UpDataStructsProperties;1348    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1349    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1350    UpDataStructsProperty: UpDataStructsProperty;1351    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1352    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1353    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1354    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1355    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1356    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1357    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1358    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1359    UpDataStructsTokenChild: UpDataStructsTokenChild;1360    UpDataStructsTokenData: UpDataStructsTokenData;1361    UpgradeGoAhead: UpgradeGoAhead;1362    UpgradeRestriction: UpgradeRestriction;1363    UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;1364    UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;1365    UpwardMessage: UpwardMessage;1366    usize: usize;1367    USize: USize;1368    ValidationCode: ValidationCode;1369    ValidationCodeHash: ValidationCodeHash;1370    ValidationData: ValidationData;1371    ValidationDataType: ValidationDataType;1372    ValidationFunctionParams: ValidationFunctionParams;1373    ValidatorCount: ValidatorCount;1374    ValidatorId: ValidatorId;1375    ValidatorIdOf: ValidatorIdOf;1376    ValidatorIndex: ValidatorIndex;1377    ValidatorIndexCompact: ValidatorIndexCompact;1378    ValidatorPrefs: ValidatorPrefs;1379    ValidatorPrefsTo145: ValidatorPrefsTo145;1380    ValidatorPrefsTo196: ValidatorPrefsTo196;1381    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1382    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1383    ValidatorSet: ValidatorSet;1384    ValidatorSetId: ValidatorSetId;1385    ValidatorSignature: ValidatorSignature;1386    ValidDisputeStatementKind: ValidDisputeStatementKind;1387    ValidityAttestation: ValidityAttestation;1388    ValidTransaction: ValidTransaction;1389    VecInboundHrmpMessage: VecInboundHrmpMessage;1390    VersionedMultiAsset: VersionedMultiAsset;1391    VersionedMultiAssets: VersionedMultiAssets;1392    VersionedMultiLocation: VersionedMultiLocation;1393    VersionedResponse: VersionedResponse;1394    VersionedXcm: VersionedXcm;1395    VersionMigrationStage: VersionMigrationStage;1396    VestingInfo: VestingInfo;1397    VestingSchedule: VestingSchedule;1398    Vote: Vote;1399    VoteIndex: VoteIndex;1400    Voter: Voter;1401    VoterInfo: VoterInfo;1402    Votes: Votes;1403    VotesTo230: VotesTo230;1404    VoteThreshold: VoteThreshold;1405    VoteWeight: VoteWeight;1406    Voting: Voting;1407    VotingDelegating: VotingDelegating;1408    VotingDirect: VotingDirect;1409    VotingDirectVote: VotingDirectVote;1410    VouchingStatus: VouchingStatus;1411    VrfData: VrfData;1412    VrfOutput: VrfOutput;1413    VrfProof: VrfProof;1414    Weight: Weight;1415    WeightLimitV2: WeightLimitV2;1416    WeightMultiplier: WeightMultiplier;1417    WeightPerClass: WeightPerClass;1418    WeightToFeeCoefficient: WeightToFeeCoefficient;1419    WeightV0: WeightV0;1420    WeightV1: WeightV1;1421    WeightV2: WeightV2;1422    WildFungibility: WildFungibility;1423    WildFungibilityV0: WildFungibilityV0;1424    WildFungibilityV1: WildFungibilityV1;1425    WildFungibilityV2: WildFungibilityV2;1426    WildMultiAsset: WildMultiAsset;1427    WildMultiAssetV1: WildMultiAssetV1;1428    WildMultiAssetV2: WildMultiAssetV2;1429    WinnersData: WinnersData;1430    WinnersData10: WinnersData10;1431    WinnersDataTuple: WinnersDataTuple;1432    WinnersDataTuple10: WinnersDataTuple10;1433    WinningData: WinningData;1434    WinningData10: WinningData10;1435    WinningDataEntry: WinningDataEntry;1436    WithdrawReasons: WithdrawReasons;1437    Xcm: Xcm;1438    XcmAssetId: XcmAssetId;1439    XcmDoubleEncoded: XcmDoubleEncoded;1440    XcmError: XcmError;1441    XcmErrorV0: XcmErrorV0;1442    XcmErrorV1: XcmErrorV1;1443    XcmErrorV2: XcmErrorV2;1444    XcmOrder: XcmOrder;1445    XcmOrderV0: XcmOrderV0;1446    XcmOrderV1: XcmOrderV1;1447    XcmOrderV2: XcmOrderV2;1448    XcmOrigin: XcmOrigin;1449    XcmOriginKind: XcmOriginKind;1450    XcmpMessageFormat: XcmpMessageFormat;1451    XcmV0: XcmV0;1452    XcmV1: XcmV1;1453    XcmV2: XcmV2;1454    XcmV2BodyId: XcmV2BodyId;1455    XcmV2BodyPart: XcmV2BodyPart;1456    XcmV2Instruction: XcmV2Instruction;1457    XcmV2Junction: XcmV2Junction;1458    XcmV2MultiAsset: XcmV2MultiAsset;1459    XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;1460    XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;1461    XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;1462    XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;1463    XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;1464    XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;1465    XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;1466    XcmV2MultiLocation: XcmV2MultiLocation;1467    XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;1468    XcmV2NetworkId: XcmV2NetworkId;1469    XcmV2OriginKind: XcmV2OriginKind;1470    XcmV2Response: XcmV2Response;1471    XcmV2TraitsError: XcmV2TraitsError;1472    XcmV2WeightLimit: XcmV2WeightLimit;1473    XcmV2Xcm: XcmV2Xcm;1474    XcmV3Instruction: XcmV3Instruction;1475    XcmV3Junction: XcmV3Junction;1476    XcmV3JunctionBodyId: XcmV3JunctionBodyId;1477    XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;1478    XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;1479    XcmV3Junctions: XcmV3Junctions;1480    XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;1481    XcmV3MultiAsset: XcmV3MultiAsset;1482    XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;1483    XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;1484    XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;1485    XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;1486    XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;1487    XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;1488    XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;1489    XcmV3MultiLocation: XcmV3MultiLocation;1490    XcmV3PalletInfo: XcmV3PalletInfo;1491    XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;1492    XcmV3Response: XcmV3Response;1493    XcmV3TraitsError: XcmV3TraitsError;1494    XcmV3TraitsOutcome: XcmV3TraitsOutcome;1495    XcmV3WeightLimit: XcmV3WeightLimit;1496    XcmV3Xcm: XcmV3Xcm;1497    XcmVersion: XcmVersion;1498    XcmVersionedAssetId: XcmVersionedAssetId;1499    XcmVersionedMultiAsset: XcmVersionedMultiAsset;1500    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1501    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1502    XcmVersionedResponse: XcmVersionedResponse;1503    XcmVersionedXcm: XcmVersionedXcm;1504  } // InterfaceTypes1505} // declare module
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -88,6 +88,7 @@
   readonly isAuthorizeUpgrade: boolean;
   readonly asAuthorizeUpgrade: {
     readonly codeHash: H256;
+    readonly checkVersion: bool;
   } & Struct;
   readonly isEnactAuthorizedUpgrade: boolean;
   readonly asEnactAuthorizedUpgrade: {
@@ -96,6 +97,12 @@
   readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
 }
 
+/** @name CumulusPalletParachainSystemCodeUpgradeAuthorization */
+export interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {
+  readonly codeHash: H256;
+  readonly checkVersion: bool;
+}
+
 /** @name CumulusPalletParachainSystemError */
 export interface CumulusPalletParachainSystemError extends Enum {
   readonly isOverlappingUpgrades: boolean;
@@ -141,8 +148,8 @@
 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
   readonly dmqMqcHead: H256;
   readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
-  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
-  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
+  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
+  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
 }
 
 /** @name CumulusPalletXcmCall */
@@ -290,7 +297,7 @@
 
 /** @name CumulusPrimitivesParachainInherentParachainInherentData */
 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
-  readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
+  readonly validationData: PolkadotPrimitivesV4PersistedValidationData;
   readonly relayChainState: SpTrieStorageProof;
   readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
   readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
@@ -1087,8 +1094,8 @@
 export interface PalletBalancesAccountData extends Struct {
   readonly free: u128;
   readonly reserved: u128;
-  readonly miscFrozen: u128;
-  readonly feeFrozen: u128;
+  readonly frozen: u128;
+  readonly flags: u128;
 }
 
 /** @name PalletBalancesBalanceLock */
@@ -1100,16 +1107,16 @@
 
 /** @name PalletBalancesCall */
 export interface PalletBalancesCall extends Enum {
-  readonly isTransfer: boolean;
-  readonly asTransfer: {
+  readonly isTransferAllowDeath: boolean;
+  readonly asTransferAllowDeath: {
     readonly dest: MultiAddress;
     readonly value: Compact<u128>;
   } & Struct;
-  readonly isSetBalance: boolean;
-  readonly asSetBalance: {
+  readonly isSetBalanceDeprecated: boolean;
+  readonly asSetBalanceDeprecated: {
     readonly who: MultiAddress;
     readonly newFree: Compact<u128>;
-    readonly newReserved: Compact<u128>;
+    readonly oldReserved: Compact<u128>;
   } & Struct;
   readonly isForceTransfer: boolean;
   readonly asForceTransfer: {
@@ -1132,7 +1139,21 @@
     readonly who: MultiAddress;
     readonly amount: u128;
   } & Struct;
-  readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
+  readonly isUpgradeAccounts: boolean;
+  readonly asUpgradeAccounts: {
+    readonly who: Vec<AccountId32>;
+  } & Struct;
+  readonly isTransfer: boolean;
+  readonly asTransfer: {
+    readonly dest: MultiAddress;
+    readonly value: Compact<u128>;
+  } & Struct;
+  readonly isForceSetBalance: boolean;
+  readonly asForceSetBalance: {
+    readonly who: MultiAddress;
+    readonly newFree: Compact<u128>;
+  } & Struct;
+  readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';
 }
 
 /** @name PalletBalancesError */
@@ -1141,11 +1162,13 @@
   readonly isLiquidityRestrictions: boolean;
   readonly isInsufficientBalance: boolean;
   readonly isExistentialDeposit: boolean;
-  readonly isKeepAlive: boolean;
+  readonly isExpendability: boolean;
   readonly isExistingVestingSchedule: boolean;
   readonly isDeadAccount: boolean;
   readonly isTooManyReserves: boolean;
-  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
+  readonly isTooManyHolds: boolean;
+  readonly isTooManyFreezes: boolean;
+  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';
 }
 
 /** @name PalletBalancesEvent */
@@ -1170,7 +1193,6 @@
   readonly asBalanceSet: {
     readonly who: AccountId32;
     readonly free: u128;
-    readonly reserved: u128;
   } & Struct;
   readonly isReserved: boolean;
   readonly asReserved: {
@@ -1204,7 +1226,65 @@
     readonly who: AccountId32;
     readonly amount: u128;
   } & Struct;
-  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
+  readonly isMinted: boolean;
+  readonly asMinted: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isBurned: boolean;
+  readonly asBurned: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isSuspended: boolean;
+  readonly asSuspended: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isRestored: boolean;
+  readonly asRestored: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isUpgraded: boolean;
+  readonly asUpgraded: {
+    readonly who: AccountId32;
+  } & Struct;
+  readonly isIssued: boolean;
+  readonly asIssued: {
+    readonly amount: u128;
+  } & Struct;
+  readonly isRescinded: boolean;
+  readonly asRescinded: {
+    readonly amount: u128;
+  } & Struct;
+  readonly isLocked: boolean;
+  readonly asLocked: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isUnlocked: boolean;
+  readonly asUnlocked: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isFrozen: boolean;
+  readonly asFrozen: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isThawed: boolean;
+  readonly asThawed: {
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';
+}
+
+/** @name PalletBalancesIdAmount */
+export interface PalletBalancesIdAmount extends Struct {
+  readonly id: U8aFixed;
+  readonly amount: u128;
 }
 
 /** @name PalletBalancesReasons */
@@ -1466,6 +1546,7 @@
     readonly to: H160;
     readonly transactionHash: H256;
     readonly exitReason: EvmCoreErrorExitReason;
+    readonly extraData: Bytes;
   } & Struct;
   readonly type: 'Executed';
 }
@@ -2200,9 +2281,6 @@
   readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
 }
 
-/** @name PalletTemplateTransactionPaymentCall */
-export interface PalletTemplateTransactionPaymentCall extends Null {}
-
 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment */
 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
@@ -2608,7 +2686,11 @@
     readonly feeAssetItem: u32;
     readonly weightLimit: XcmV3WeightLimit;
   } & Struct;
-  readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
+  readonly isForceSuspension: boolean;
+  readonly asForceSuspension: {
+    readonly suspended: bool;
+  } & Struct;
+  readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';
 }
 
 /** @name PalletXcmError */
@@ -2759,8 +2841,8 @@
   readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
 }
 
-/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */
-export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
+/** @name PolkadotPrimitivesV4AbridgedHostConfiguration */
+export interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {
   readonly maxCodeSize: u32;
   readonly maxHeadDataSize: u32;
   readonly maxUpwardQueueCount: u32;
@@ -2772,8 +2854,8 @@
   readonly validationUpgradeDelay: u32;
 }
 
-/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */
-export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
+/** @name PolkadotPrimitivesV4AbridgedHrmpChannel */
+export interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {
   readonly maxCapacity: u32;
   readonly maxTotalSize: u32;
   readonly maxMessageSize: u32;
@@ -2782,16 +2864,16 @@
   readonly mqcHead: Option<H256>;
 }
 
-/** @name PolkadotPrimitivesV2PersistedValidationData */
-export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
+/** @name PolkadotPrimitivesV4PersistedValidationData */
+export interface PolkadotPrimitivesV4PersistedValidationData extends Struct {
   readonly parentHead: Bytes;
   readonly relayParentNumber: u32;
   readonly relayParentStorageRoot: H256;
   readonly maxPovSize: u32;
 }
 
-/** @name PolkadotPrimitivesV2UpgradeRestriction */
-export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
+/** @name PolkadotPrimitivesV4UpgradeRestriction */
+export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
   readonly isPresent: boolean;
   readonly type: 'Present';
 }
@@ -2882,14 +2964,16 @@
 
 /** @name SpRuntimeTokenError */
 export interface SpRuntimeTokenError extends Enum {
-  readonly isNoFunds: boolean;
-  readonly isWouldDie: boolean;
+  readonly isFundsUnavailable: boolean;
+  readonly isOnlyProvider: boolean;
   readonly isBelowMinimum: boolean;
   readonly isCannotCreate: boolean;
   readonly isUnknownAsset: boolean;
   readonly isFrozen: boolean;
   readonly isUnsupported: boolean;
-  readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
+  readonly isCannotCreateHold: boolean;
+  readonly isNotExpendable: boolean;
+  readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable';
 }
 
 /** @name SpRuntimeTransactionalError */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -5,7 +5,7 @@
 
 export default {
   /**
-   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
    **/
   FrameSystemAccountInfo: {
     nonce: 'u32',
@@ -15,16 +15,16 @@
     data: 'PalletBalancesAccountData'
   },
   /**
-   * Lookup5: pallet_balances::AccountData<Balance>
+   * Lookup5: pallet_balances::types::AccountData<Balance>
    **/
   PalletBalancesAccountData: {
     free: 'u128',
     reserved: 'u128',
-    miscFrozen: 'u128',
-    feeFrozen: 'u128'
+    frozen: 'u128',
+    flags: 'u128'
   },
   /**
-   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
+   * Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
    **/
   FrameSupportDispatchPerDispatchClassWeight: {
     normal: 'SpWeightsWeightV2Weight',
@@ -32,20 +32,20 @@
     mandatory: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup8: sp_weights::weight_v2::Weight
+   * Lookup9: sp_weights::weight_v2::Weight
    **/
   SpWeightsWeightV2Weight: {
     refTime: 'Compact<u64>',
     proofSize: 'Compact<u64>'
   },
   /**
-   * Lookup13: sp_runtime::generic::digest::Digest
+   * Lookup14: sp_runtime::generic::digest::Digest
    **/
   SpRuntimeDigest: {
     logs: 'Vec<SpRuntimeDigestDigestItem>'
   },
   /**
-   * Lookup15: sp_runtime::generic::digest::DigestItem
+   * Lookup16: sp_runtime::generic::digest::DigestItem
    **/
   SpRuntimeDigestDigestItem: {
     _enum: {
@@ -61,7 +61,7 @@
     }
   },
   /**
-   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
+   * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -69,7 +69,7 @@
     topics: 'Vec<H256>'
   },
   /**
-   * Lookup20: frame_system::pallet::Event<T>
+   * Lookup21: frame_system::pallet::Event<T>
    **/
   FrameSystemEvent: {
     _enum: {
@@ -97,7 +97,7 @@
     }
   },
   /**
-   * Lookup21: frame_support::dispatch::DispatchInfo
+   * Lookup22: frame_support::dispatch::DispatchInfo
    **/
   FrameSupportDispatchDispatchInfo: {
     weight: 'SpWeightsWeightV2Weight',
@@ -105,19 +105,19 @@
     paysFee: 'FrameSupportDispatchPays'
   },
   /**
-   * Lookup22: frame_support::dispatch::DispatchClass
+   * Lookup23: frame_support::dispatch::DispatchClass
    **/
   FrameSupportDispatchDispatchClass: {
     _enum: ['Normal', 'Operational', 'Mandatory']
   },
   /**
-   * Lookup23: frame_support::dispatch::Pays
+   * Lookup24: frame_support::dispatch::Pays
    **/
   FrameSupportDispatchPays: {
     _enum: ['Yes', 'No']
   },
   /**
-   * Lookup24: sp_runtime::DispatchError
+   * Lookup25: sp_runtime::DispatchError
    **/
   SpRuntimeDispatchError: {
     _enum: {
@@ -137,32 +137,32 @@
     }
   },
   /**
-   * Lookup25: sp_runtime::ModuleError
+   * Lookup26: sp_runtime::ModuleError
    **/
   SpRuntimeModuleError: {
     index: 'u8',
     error: '[u8;4]'
   },
   /**
-   * Lookup26: sp_runtime::TokenError
+   * Lookup27: sp_runtime::TokenError
    **/
   SpRuntimeTokenError: {
-    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
+    _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable']
   },
   /**
-   * Lookup27: sp_arithmetic::ArithmeticError
+   * Lookup28: sp_arithmetic::ArithmeticError
    **/
   SpArithmeticArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
-   * Lookup28: sp_runtime::TransactionalError
+   * Lookup29: sp_runtime::TransactionalError
    **/
   SpRuntimeTransactionalError: {
     _enum: ['LimitReached', 'NoLayer']
   },
   /**
-   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>
+   * Lookup30: cumulus_pallet_parachain_system::pallet::Event<T>
    **/
   CumulusPalletParachainSystemEvent: {
     _enum: {
@@ -187,7 +187,7 @@
     }
   },
   /**
-   * Lookup31: pallet_collator_selection::pallet::Event<T>
+   * Lookup32: pallet_collator_selection::pallet::Event<T>
    **/
   PalletCollatorSelectionEvent: {
     _enum: {
@@ -214,7 +214,7 @@
     }
   },
   /**
-   * Lookup32: pallet_session::pallet::Event
+   * Lookup33: pallet_session::pallet::Event
    **/
   PalletSessionEvent: {
     _enum: {
@@ -224,7 +224,7 @@
     }
   },
   /**
-   * Lookup33: pallet_balances::pallet::Event<T, I>
+   * Lookup34: pallet_balances::pallet::Event<T, I>
    **/
   PalletBalancesEvent: {
     _enum: {
@@ -244,7 +244,6 @@
       BalanceSet: {
         who: 'AccountId32',
         free: 'u128',
-        reserved: 'u128',
       },
       Reserved: {
         who: 'AccountId32',
@@ -270,18 +269,59 @@
       },
       Slashed: {
         who: 'AccountId32',
+        amount: 'u128',
+      },
+      Minted: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Burned: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Suspended: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Restored: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Upgraded: {
+        who: 'AccountId32',
+      },
+      Issued: {
+        amount: 'u128',
+      },
+      Rescinded: {
+        amount: 'u128',
+      },
+      Locked: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Unlocked: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Frozen: {
+        who: 'AccountId32',
+        amount: 'u128',
+      },
+      Thawed: {
+        who: 'AccountId32',
         amount: 'u128'
       }
     }
   },
   /**
-   * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
+   * Lookup35: frame_support::traits::tokens::misc::BalanceStatus
    **/
   FrameSupportTokensMiscBalanceStatus: {
     _enum: ['Free', 'Reserved']
   },
   /**
-   * Lookup35: pallet_transaction_payment::pallet::Event<T>
+   * Lookup36: pallet_transaction_payment::pallet::Event<T>
    **/
   PalletTransactionPaymentEvent: {
     _enum: {
@@ -293,7 +333,7 @@
     }
   },
   /**
-   * Lookup36: pallet_treasury::pallet::Event<T, I>
+   * Lookup37: pallet_treasury::pallet::Event<T, I>
    **/
   PalletTreasuryEvent: {
     _enum: {
@@ -333,7 +373,7 @@
     }
   },
   /**
-   * Lookup37: pallet_sudo::pallet::Event<T>
+   * Lookup38: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -349,7 +389,7 @@
     }
   },
   /**
-   * Lookup41: orml_vesting::module::Event<T>
+   * Lookup42: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -368,7 +408,7 @@
     }
   },
   /**
-   * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>
+   * Lookup43: orml_vesting::VestingSchedule<BlockNumber, Balance>
    **/
   OrmlVestingVestingSchedule: {
     start: 'u32',
@@ -377,7 +417,7 @@
     perPeriod: 'Compact<u128>'
   },
   /**
-   * Lookup44: orml_xtokens::module::Event<T>
+   * Lookup45: orml_xtokens::module::Event<T>
    **/
   OrmlXtokensModuleEvent: {
     _enum: {
@@ -390,18 +430,18 @@
     }
   },
   /**
-   * Lookup45: xcm::v3::multiasset::MultiAssets
+   * Lookup46: xcm::v3::multiasset::MultiAssets
    **/
   XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',
   /**
-   * Lookup47: xcm::v3::multiasset::MultiAsset
+   * Lookup48: xcm::v3::multiasset::MultiAsset
    **/
   XcmV3MultiAsset: {
     id: 'XcmV3MultiassetAssetId',
     fun: 'XcmV3MultiassetFungibility'
   },
   /**
-   * Lookup48: xcm::v3::multiasset::AssetId
+   * Lookup49: xcm::v3::multiasset::AssetId
    **/
   XcmV3MultiassetAssetId: {
     _enum: {
@@ -410,14 +450,14 @@
     }
   },
   /**
-   * Lookup49: xcm::v3::multilocation::MultiLocation
+   * Lookup50: xcm::v3::multilocation::MultiLocation
    **/
   XcmV3MultiLocation: {
     parents: 'u8',
     interior: 'XcmV3Junctions'
   },
   /**
-   * Lookup50: xcm::v3::junctions::Junctions
+   * Lookup51: xcm::v3::junctions::Junctions
    **/
   XcmV3Junctions: {
     _enum: {
@@ -433,7 +473,7 @@
     }
   },
   /**
-   * Lookup51: xcm::v3::junction::Junction
+   * Lookup52: xcm::v3::junction::Junction
    **/
   XcmV3Junction: {
     _enum: {
@@ -465,7 +505,7 @@
     }
   },
   /**
-   * Lookup54: xcm::v3::junction::NetworkId
+   * Lookup55: xcm::v3::junction::NetworkId
    **/
   XcmV3JunctionNetworkId: {
     _enum: {
@@ -487,7 +527,7 @@
     }
   },
   /**
-   * Lookup56: xcm::v3::junction::BodyId
+   * Lookup57: xcm::v3::junction::BodyId
    **/
   XcmV3JunctionBodyId: {
     _enum: {
@@ -504,7 +544,7 @@
     }
   },
   /**
-   * Lookup57: xcm::v3::junction::BodyPart
+   * Lookup58: xcm::v3::junction::BodyPart
    **/
   XcmV3JunctionBodyPart: {
     _enum: {
@@ -527,7 +567,7 @@
     }
   },
   /**
-   * Lookup58: xcm::v3::multiasset::Fungibility
+   * Lookup59: xcm::v3::multiasset::Fungibility
    **/
   XcmV3MultiassetFungibility: {
     _enum: {
@@ -536,7 +576,7 @@
     }
   },
   /**
-   * Lookup59: xcm::v3::multiasset::AssetInstance
+   * Lookup60: xcm::v3::multiasset::AssetInstance
    **/
   XcmV3MultiassetAssetInstance: {
     _enum: {
@@ -549,7 +589,7 @@
     }
   },
   /**
-   * Lookup62: orml_tokens::module::Event<T>
+   * Lookup63: orml_tokens::module::Event<T>
    **/
   OrmlTokensModuleEvent: {
     _enum: {
@@ -636,7 +676,7 @@
     }
   },
   /**
-   * Lookup63: pallet_foreign_assets::AssetIds
+   * Lookup64: pallet_foreign_assets::AssetIds
    **/
   PalletForeignAssetsAssetIds: {
     _enum: {
@@ -645,13 +685,13 @@
     }
   },
   /**
-   * Lookup64: pallet_foreign_assets::NativeCurrency
+   * Lookup65: pallet_foreign_assets::NativeCurrency
    **/
   PalletForeignAssetsNativeCurrency: {
     _enum: ['Here', 'Parent']
   },
   /**
-   * Lookup65: pallet_identity::pallet::Event<T>
+   * Lookup66: pallet_identity::pallet::Event<T>
    **/
   PalletIdentityEvent: {
     _enum: {
@@ -708,7 +748,7 @@
     }
   },
   /**
-   * Lookup66: pallet_preimage::pallet::Event<T>
+   * Lookup67: pallet_preimage::pallet::Event<T>
    **/
   PalletPreimageEvent: {
     _enum: {
@@ -733,7 +773,7 @@
     }
   },
   /**
-   * Lookup67: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   * Lookup68: cumulus_pallet_xcmp_queue::pallet::Event<T>
    **/
   CumulusPalletXcmpQueueEvent: {
     _enum: {
@@ -768,7 +808,7 @@
     }
   },
   /**
-   * Lookup68: xcm::v3::traits::Error
+   * Lookup69: xcm::v3::traits::Error
    **/
   XcmV3TraitsError: {
     _enum: {
@@ -815,7 +855,7 @@
     }
   },
   /**
-   * Lookup70: pallet_xcm::pallet::Event<T>
+   * Lookup71: pallet_xcm::pallet::Event<T>
    **/
   PalletXcmEvent: {
     _enum: {
@@ -845,7 +885,7 @@
     }
   },
   /**
-   * Lookup71: xcm::v3::traits::Outcome
+   * Lookup72: xcm::v3::traits::Outcome
    **/
   XcmV3TraitsOutcome: {
     _enum: {
@@ -855,11 +895,11 @@
     }
   },
   /**
-   * Lookup72: xcm::v3::Xcm<Call>
+   * Lookup73: xcm::v3::Xcm<Call>
    **/
   XcmV3Xcm: 'Vec<XcmV3Instruction>',
   /**
-   * Lookup74: xcm::v3::Instruction<Call>
+   * Lookup75: xcm::v3::Instruction<Call>
    **/
   XcmV3Instruction: {
     _enum: {
@@ -1001,7 +1041,7 @@
     }
   },
   /**
-   * Lookup75: xcm::v3::Response
+   * Lookup76: xcm::v3::Response
    **/
   XcmV3Response: {
     _enum: {
@@ -1014,7 +1054,7 @@
     }
   },
   /**
-   * Lookup79: xcm::v3::PalletInfo
+   * Lookup80: xcm::v3::PalletInfo
    **/
   XcmV3PalletInfo: {
     index: 'Compact<u32>',
@@ -1025,7 +1065,7 @@
     patch: 'Compact<u32>'
   },
   /**
-   * Lookup82: xcm::v3::MaybeErrorCode
+   * Lookup83: xcm::v3::MaybeErrorCode
    **/
   XcmV3MaybeErrorCode: {
     _enum: {
@@ -1035,19 +1075,19 @@
     }
   },
   /**
-   * Lookup85: xcm::v2::OriginKind
+   * Lookup86: xcm::v2::OriginKind
    **/
   XcmV2OriginKind: {
     _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
   },
   /**
-   * Lookup86: xcm::double_encoded::DoubleEncoded<T>
+   * Lookup87: xcm::double_encoded::DoubleEncoded<T>
    **/
   XcmDoubleEncoded: {
     encoded: 'Bytes'
   },
   /**
-   * Lookup87: xcm::v3::QueryResponseInfo
+   * Lookup88: xcm::v3::QueryResponseInfo
    **/
   XcmV3QueryResponseInfo: {
     destination: 'XcmV3MultiLocation',
@@ -1055,7 +1095,7 @@
     maxWeight: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup88: xcm::v3::multiasset::MultiAssetFilter
+   * Lookup89: xcm::v3::multiasset::MultiAssetFilter
    **/
   XcmV3MultiassetMultiAssetFilter: {
     _enum: {
@@ -1064,7 +1104,7 @@
     }
   },
   /**
-   * Lookup89: xcm::v3::multiasset::WildMultiAsset
+   * Lookup90: xcm::v3::multiasset::WildMultiAsset
    **/
   XcmV3MultiassetWildMultiAsset: {
     _enum: {
@@ -1082,13 +1122,13 @@
     }
   },
   /**
-   * Lookup90: xcm::v3::multiasset::WildFungibility
+   * Lookup91: xcm::v3::multiasset::WildFungibility
    **/
   XcmV3MultiassetWildFungibility: {
     _enum: ['Fungible', 'NonFungible']
   },
   /**
-   * Lookup92: xcm::v3::WeightLimit
+   * Lookup93: xcm::v3::WeightLimit
    **/
   XcmV3WeightLimit: {
     _enum: {
@@ -1097,7 +1137,7 @@
     }
   },
   /**
-   * Lookup93: xcm::VersionedMultiAssets
+   * Lookup94: xcm::VersionedMultiAssets
    **/
   XcmVersionedMultiAssets: {
     _enum: {
@@ -1108,18 +1148,18 @@
     }
   },
   /**
-   * Lookup94: xcm::v2::multiasset::MultiAssets
+   * Lookup95: xcm::v2::multiasset::MultiAssets
    **/
   XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',
   /**
-   * Lookup96: xcm::v2::multiasset::MultiAsset
+   * Lookup97: xcm::v2::multiasset::MultiAsset
    **/
   XcmV2MultiAsset: {
     id: 'XcmV2MultiassetAssetId',
     fun: 'XcmV2MultiassetFungibility'
   },
   /**
-   * Lookup97: xcm::v2::multiasset::AssetId
+   * Lookup98: xcm::v2::multiasset::AssetId
    **/
   XcmV2MultiassetAssetId: {
     _enum: {
@@ -1128,14 +1168,14 @@
     }
   },
   /**
-   * Lookup98: xcm::v2::multilocation::MultiLocation
+   * Lookup99: xcm::v2::multilocation::MultiLocation
    **/
   XcmV2MultiLocation: {
     parents: 'u8',
     interior: 'XcmV2MultilocationJunctions'
   },
   /**
-   * Lookup99: xcm::v2::multilocation::Junctions
+   * Lookup100: xcm::v2::multilocation::Junctions
    **/
   XcmV2MultilocationJunctions: {
     _enum: {
@@ -1151,7 +1191,7 @@
     }
   },
   /**
-   * Lookup100: xcm::v2::junction::Junction
+   * Lookup101: xcm::v2::junction::Junction
    **/
   XcmV2Junction: {
     _enum: {
@@ -1179,7 +1219,7 @@
     }
   },
   /**
-   * Lookup101: xcm::v2::NetworkId
+   * Lookup102: xcm::v2::NetworkId
    **/
   XcmV2NetworkId: {
     _enum: {
@@ -1190,7 +1230,7 @@
     }
   },
   /**
-   * Lookup103: xcm::v2::BodyId
+   * Lookup104: xcm::v2::BodyId
    **/
   XcmV2BodyId: {
     _enum: {
@@ -1207,7 +1247,7 @@
     }
   },
   /**
-   * Lookup104: xcm::v2::BodyPart
+   * Lookup105: xcm::v2::BodyPart
    **/
   XcmV2BodyPart: {
     _enum: {
@@ -1230,7 +1270,7 @@
     }
   },
   /**
-   * Lookup105: xcm::v2::multiasset::Fungibility
+   * Lookup106: xcm::v2::multiasset::Fungibility
    **/
   XcmV2MultiassetFungibility: {
     _enum: {
@@ -1239,7 +1279,7 @@
     }
   },
   /**
-   * Lookup106: xcm::v2::multiasset::AssetInstance
+   * Lookup107: xcm::v2::multiasset::AssetInstance
    **/
   XcmV2MultiassetAssetInstance: {
     _enum: {
@@ -1253,7 +1293,7 @@
     }
   },
   /**
-   * Lookup107: xcm::VersionedMultiLocation
+   * Lookup108: xcm::VersionedMultiLocation
    **/
   XcmVersionedMultiLocation: {
     _enum: {
@@ -1264,7 +1304,7 @@
     }
   },
   /**
-   * Lookup108: cumulus_pallet_xcm::pallet::Event<T>
+   * Lookup109: cumulus_pallet_xcm::pallet::Event<T>
    **/
   CumulusPalletXcmEvent: {
     _enum: {
@@ -1274,7 +1314,7 @@
     }
   },
   /**
-   * Lookup109: cumulus_pallet_dmp_queue::pallet::Event<T>
+   * Lookup110: cumulus_pallet_dmp_queue::pallet::Event<T>
    **/
   CumulusPalletDmpQueueEvent: {
     _enum: {
@@ -1308,7 +1348,7 @@
     }
   },
   /**
-   * Lookup110: pallet_configuration::pallet::Event<T>
+   * Lookup111: pallet_configuration::pallet::Event<T>
    **/
   PalletConfigurationEvent: {
     _enum: {
@@ -1324,7 +1364,7 @@
     }
   },
   /**
-   * Lookup113: pallet_common::pallet::Event<T>
+   * Lookup114: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -1353,7 +1393,7 @@
     }
   },
   /**
-   * Lookup116: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+   * Lookup117: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
    **/
   PalletEvmAccountBasicCrossAccountIdRepr: {
     _enum: {
@@ -1362,7 +1402,7 @@
     }
   },
   /**
-   * Lookup119: pallet_structure::pallet::Event<T>
+   * Lookup120: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
@@ -1370,7 +1410,7 @@
     }
   },
   /**
-   * Lookup120: pallet_app_promotion::pallet::Event<T>
+   * Lookup121: pallet_app_promotion::pallet::Event<T>
    **/
   PalletAppPromotionEvent: {
     _enum: {
@@ -1381,7 +1421,7 @@
     }
   },
   /**
-   * Lookup121: pallet_foreign_assets::module::Event<T>
+   * Lookup122: pallet_foreign_assets::module::Event<T>
    **/
   PalletForeignAssetsModuleEvent: {
     _enum: {
@@ -1406,7 +1446,7 @@
     }
   },
   /**
-   * Lookup122: pallet_foreign_assets::module::AssetMetadata<Balance>
+   * Lookup123: pallet_foreign_assets::module::AssetMetadata<Balance>
    **/
   PalletForeignAssetsModuleAssetMetadata: {
     name: 'Bytes',
@@ -1415,7 +1455,7 @@
     minimalBalance: 'u128'
   },
   /**
-   * Lookup125: pallet_evm::pallet::Event<T>
+   * Lookup126: pallet_evm::pallet::Event<T>
    **/
   PalletEvmEvent: {
     _enum: {
@@ -1437,7 +1477,7 @@
     }
   },
   /**
-   * Lookup126: ethereum::log::Log
+   * Lookup127: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -1445,7 +1485,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup128: pallet_ethereum::pallet::Event
+   * Lookup129: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -1453,12 +1493,13 @@
         from: 'H160',
         to: 'H160',
         transactionHash: 'H256',
-        exitReason: 'EvmCoreErrorExitReason'
+        exitReason: 'EvmCoreErrorExitReason',
+        extraData: 'Bytes'
       }
     }
   },
   /**
-   * Lookup129: evm_core::error::ExitReason
+   * Lookup130: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -1469,13 +1510,13 @@
     }
   },
   /**
-   * Lookup130: evm_core::error::ExitSucceed
+   * Lookup131: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup131: evm_core::error::ExitError
+   * Lookup132: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -1498,13 +1539,13 @@
     }
   },
   /**
-   * Lookup135: evm_core::error::ExitRevert
+   * Lookup136: evm_core::error::ExitRevert
    **/
   EvmCoreErrorExitRevert: {
     _enum: ['Reverted']
   },
   /**
-   * Lookup136: evm_core::error::ExitFatal
+   * Lookup137: evm_core::error::ExitFatal
    **/
   EvmCoreErrorExitFatal: {
     _enum: {
@@ -1515,7 +1556,7 @@
     }
   },
   /**
-   * Lookup137: pallet_evm_contract_helpers::pallet::Event<T>
+   * Lookup138: pallet_evm_contract_helpers::pallet::Event<T>
    **/
   PalletEvmContractHelpersEvent: {
     _enum: {
@@ -1525,25 +1566,25 @@
     }
   },
   /**
-   * Lookup138: pallet_evm_migration::pallet::Event<T>
+   * Lookup139: pallet_evm_migration::pallet::Event<T>
    **/
   PalletEvmMigrationEvent: {
     _enum: ['TestEvent']
   },
   /**
-   * Lookup139: pallet_maintenance::pallet::Event<T>
+   * Lookup140: pallet_maintenance::pallet::Event<T>
    **/
   PalletMaintenanceEvent: {
     _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
   },
   /**
-   * Lookup140: pallet_test_utils::pallet::Event<T>
+   * Lookup141: pallet_test_utils::pallet::Event<T>
    **/
   PalletTestUtilsEvent: {
     _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
   },
   /**
-   * Lookup141: frame_system::Phase
+   * Lookup142: frame_system::Phase
    **/
   FrameSystemPhase: {
     _enum: {
@@ -1553,14 +1594,14 @@
     }
   },
   /**
-   * Lookup144: frame_system::LastRuntimeUpgradeInfo
+   * Lookup145: frame_system::LastRuntimeUpgradeInfo
    **/
   FrameSystemLastRuntimeUpgradeInfo: {
     specVersion: 'Compact<u32>',
     specName: 'Text'
   },
   /**
-   * Lookup145: frame_system::pallet::Call<T>
+   * Lookup146: frame_system::pallet::Call<T>
    **/
   FrameSystemCall: {
     _enum: {
@@ -1595,7 +1636,7 @@
     }
   },
   /**
-   * Lookup149: frame_system::limits::BlockWeights
+   * Lookup150: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
     baseBlock: 'SpWeightsWeightV2Weight',
@@ -1603,7 +1644,7 @@
     perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
   },
   /**
-   * Lookup150: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+   * Lookup151: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
    **/
   FrameSupportDispatchPerDispatchClassWeightsPerClass: {
     normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1611,7 +1652,7 @@
     mandatory: 'FrameSystemLimitsWeightsPerClass'
   },
   /**
-   * Lookup151: frame_system::limits::WeightsPerClass
+   * Lookup152: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
     baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1620,13 +1661,13 @@
     reserved: 'Option<SpWeightsWeightV2Weight>'
   },
   /**
-   * Lookup153: frame_system::limits::BlockLength
+   * Lookup154: frame_system::limits::BlockLength
    **/
   FrameSystemLimitsBlockLength: {
     max: 'FrameSupportDispatchPerDispatchClassU32'
   },
   /**
-   * Lookup154: frame_support::dispatch::PerDispatchClass<T>
+   * Lookup155: frame_support::dispatch::PerDispatchClass<T>
    **/
   FrameSupportDispatchPerDispatchClassU32: {
     normal: 'u32',
@@ -1634,14 +1675,14 @@
     mandatory: 'u32'
   },
   /**
-   * Lookup155: sp_weights::RuntimeDbWeight
+   * Lookup156: sp_weights::RuntimeDbWeight
    **/
   SpWeightsRuntimeDbWeight: {
     read: 'u64',
     write: 'u64'
   },
   /**
-   * Lookup156: sp_version::RuntimeVersion
+   * Lookup157: sp_version::RuntimeVersion
    **/
   SpVersionRuntimeVersion: {
     specName: 'Text',
@@ -1654,45 +1695,45 @@
     stateVersion: 'u8'
   },
   /**
-   * Lookup161: frame_system::pallet::Error<T>
+   * Lookup162: frame_system::pallet::Error<T>
    **/
   FrameSystemError: {
     _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
   },
   /**
-   * Lookup162: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+   * Lookup163: polkadot_primitives::v4::PersistedValidationData<primitive_types::H256, N>
    **/
-  PolkadotPrimitivesV2PersistedValidationData: {
+  PolkadotPrimitivesV4PersistedValidationData: {
     parentHead: 'Bytes',
     relayParentNumber: 'u32',
     relayParentStorageRoot: 'H256',
     maxPovSize: 'u32'
   },
   /**
-   * Lookup165: polkadot_primitives::v2::UpgradeRestriction
+   * Lookup166: polkadot_primitives::v4::UpgradeRestriction
    **/
-  PolkadotPrimitivesV2UpgradeRestriction: {
+  PolkadotPrimitivesV4UpgradeRestriction: {
     _enum: ['Present']
   },
   /**
-   * Lookup166: sp_trie::storage_proof::StorageProof
+   * Lookup167: sp_trie::storage_proof::StorageProof
    **/
   SpTrieStorageProof: {
     trieNodes: 'BTreeSet<Bytes>'
   },
   /**
-   * Lookup168: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+   * Lookup169: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
    **/
   CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
     dmqMqcHead: 'H256',
     relayDispatchQueueSize: '(u32,u32)',
-    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
-    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
+    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>',
+    egressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>'
   },
   /**
-   * Lookup171: polkadot_primitives::v2::AbridgedHrmpChannel
+   * Lookup172: polkadot_primitives::v4::AbridgedHrmpChannel
    **/
-  PolkadotPrimitivesV2AbridgedHrmpChannel: {
+  PolkadotPrimitivesV4AbridgedHrmpChannel: {
     maxCapacity: 'u32',
     maxTotalSize: 'u32',
     maxMessageSize: 'u32',
@@ -1701,9 +1742,9 @@
     mqcHead: 'Option<H256>'
   },
   /**
-   * Lookup173: polkadot_primitives::v2::AbridgedHostConfiguration
+   * Lookup174: polkadot_primitives::v4::AbridgedHostConfiguration
    **/
-  PolkadotPrimitivesV2AbridgedHostConfiguration: {
+  PolkadotPrimitivesV4AbridgedHostConfiguration: {
     maxCodeSize: 'u32',
     maxHeadDataSize: 'u32',
     maxUpwardQueueCount: 'u32',
@@ -1715,15 +1756,22 @@
     validationUpgradeDelay: 'u32'
   },
   /**
-   * Lookup179: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+   * Lookup180: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
    **/
   PolkadotCorePrimitivesOutboundHrmpMessage: {
     recipient: 'u32',
     data: 'Bytes'
   },
   /**
-   * Lookup180: cumulus_pallet_parachain_system::pallet::Call<T>
+   * Lookup181: cumulus_pallet_parachain_system::CodeUpgradeAuthorization<T>
    **/
+  CumulusPalletParachainSystemCodeUpgradeAuthorization: {
+    codeHash: 'H256',
+    checkVersion: 'bool'
+  },
+  /**
+   * Lookup182: cumulus_pallet_parachain_system::pallet::Call<T>
+   **/
   CumulusPalletParachainSystemCall: {
     _enum: {
       set_validation_data: {
@@ -1734,6 +1782,7 @@
       },
       authorize_upgrade: {
         codeHash: 'H256',
+        checkVersion: 'bool',
       },
       enact_authorized_upgrade: {
         code: 'Bytes'
@@ -1741,40 +1790,40 @@
     }
   },
   /**
-   * Lookup181: cumulus_primitives_parachain_inherent::ParachainInherentData
+   * Lookup183: cumulus_primitives_parachain_inherent::ParachainInherentData
    **/
   CumulusPrimitivesParachainInherentParachainInherentData: {
-    validationData: 'PolkadotPrimitivesV2PersistedValidationData',
+    validationData: 'PolkadotPrimitivesV4PersistedValidationData',
     relayChainState: 'SpTrieStorageProof',
     downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
     horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
   },
   /**
-   * Lookup183: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+   * Lookup185: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
    **/
   PolkadotCorePrimitivesInboundDownwardMessage: {
     sentAt: 'u32',
     msg: 'Bytes'
   },
   /**
-   * Lookup186: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+   * Lookup188: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
    **/
   PolkadotCorePrimitivesInboundHrmpMessage: {
     sentAt: 'u32',
     data: 'Bytes'
   },
   /**
-   * Lookup189: cumulus_pallet_parachain_system::pallet::Error<T>
+   * Lookup191: cumulus_pallet_parachain_system::pallet::Error<T>
    **/
   CumulusPalletParachainSystemError: {
     _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
   },
   /**
-   * Lookup190: parachain_info::pallet::Call<T>
+   * Lookup192: parachain_info::pallet::Call<T>
    **/
   ParachainInfoCall: 'Null',
   /**
-   * Lookup193: pallet_collator_selection::pallet::Call<T>
+   * Lookup195: pallet_collator_selection::pallet::Call<T>
    **/
   PalletCollatorSelectionCall: {
     _enum: {
@@ -1797,31 +1846,31 @@
     }
   },
   /**
-   * Lookup194: pallet_collator_selection::pallet::Error<T>
+   * Lookup196: pallet_collator_selection::pallet::Error<T>
    **/
   PalletCollatorSelectionError: {
     _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
   },
   /**
-   * Lookup197: opal_runtime::runtime_common::SessionKeys
+   * Lookup199: opal_runtime::runtime_common::SessionKeys
    **/
   OpalRuntimeRuntimeCommonSessionKeys: {
     aura: 'SpConsensusAuraSr25519AppSr25519Public'
   },
   /**
-   * Lookup198: sp_consensus_aura::sr25519::app_sr25519::Public
+   * Lookup200: sp_consensus_aura::sr25519::app_sr25519::Public
    **/
   SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
   /**
-   * Lookup199: sp_core::sr25519::Public
+   * Lookup201: sp_core::sr25519::Public
    **/
   SpCoreSr25519Public: '[u8;32]',
   /**
-   * Lookup202: sp_core::crypto::KeyTypeId
+   * Lookup204: sp_core::crypto::KeyTypeId
    **/
   SpCoreCryptoKeyTypeId: '[u8;4]',
   /**
-   * Lookup203: pallet_session::pallet::Call<T>
+   * Lookup205: pallet_session::pallet::Call<T>
    **/
   PalletSessionCall: {
     _enum: {
@@ -1836,13 +1885,13 @@
     }
   },
   /**
-   * Lookup204: pallet_session::pallet::Error<T>
+   * Lookup206: pallet_session::pallet::Error<T>
    **/
   PalletSessionError: {
     _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
   },
   /**
-   * Lookup209: pallet_balances::BalanceLock<Balance>
+   * Lookup211: pallet_balances::types::BalanceLock<Balance>
    **/
   PalletBalancesBalanceLock: {
     id: '[u8;8]',
@@ -1850,31 +1899,38 @@
     reasons: 'PalletBalancesReasons'
   },
   /**
-   * Lookup210: pallet_balances::Reasons
+   * Lookup212: pallet_balances::types::Reasons
    **/
   PalletBalancesReasons: {
     _enum: ['Fee', 'Misc', 'All']
   },
   /**
-   * Lookup213: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+   * Lookup215: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
    **/
   PalletBalancesReserveData: {
     id: '[u8;16]',
     amount: 'u128'
   },
   /**
-   * Lookup215: pallet_balances::pallet::Call<T, I>
+   * Lookup218: pallet_balances::types::IdAmount<Id, Balance>
    **/
+  PalletBalancesIdAmount: {
+    id: '[u8;16]',
+    amount: 'u128'
+  },
+  /**
+   * Lookup220: pallet_balances::pallet::Call<T, I>
+   **/
   PalletBalancesCall: {
     _enum: {
-      transfer: {
+      transfer_allow_death: {
         dest: 'MultiAddress',
         value: 'Compact<u128>',
       },
-      set_balance: {
+      set_balance_deprecated: {
         who: 'MultiAddress',
         newFree: 'Compact<u128>',
-        newReserved: 'Compact<u128>',
+        oldReserved: 'Compact<u128>',
       },
       force_transfer: {
         source: 'MultiAddress',
@@ -1891,18 +1947,29 @@
       },
       force_unreserve: {
         who: 'MultiAddress',
-        amount: 'u128'
+        amount: 'u128',
+      },
+      upgrade_accounts: {
+        who: 'Vec<AccountId32>',
+      },
+      transfer: {
+        dest: 'MultiAddress',
+        value: 'Compact<u128>',
+      },
+      force_set_balance: {
+        who: 'MultiAddress',
+        newFree: 'Compact<u128>'
       }
     }
   },
   /**
-   * Lookup218: pallet_balances::pallet::Error<T, I>
+   * Lookup223: pallet_balances::pallet::Error<T, I>
    **/
   PalletBalancesError: {
-    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
+    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
   },
   /**
-   * Lookup219: pallet_timestamp::pallet::Call<T>
+   * Lookup224: pallet_timestamp::pallet::Call<T>
    **/
   PalletTimestampCall: {
     _enum: {
@@ -1912,13 +1979,13 @@
     }
   },
   /**
-   * Lookup221: pallet_transaction_payment::Releases
+   * Lookup226: pallet_transaction_payment::Releases
    **/
   PalletTransactionPaymentReleases: {
     _enum: ['V1Ancient', 'V2']
   },
   /**
-   * Lookup222: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+   * Lookup227: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
    **/
   PalletTreasuryProposal: {
     proposer: 'AccountId32',
@@ -1927,7 +1994,7 @@
     bond: 'u128'
   },
   /**
-   * Lookup224: pallet_treasury::pallet::Call<T, I>
+   * Lookup229: pallet_treasury::pallet::Call<T, I>
    **/
   PalletTreasuryCall: {
     _enum: {
@@ -1951,17 +2018,17 @@
     }
   },
   /**
-   * Lookup226: frame_support::PalletId
+   * Lookup231: frame_support::PalletId
    **/
   FrameSupportPalletId: '[u8;8]',
   /**
-   * Lookup227: pallet_treasury::pallet::Error<T, I>
+   * Lookup232: pallet_treasury::pallet::Error<T, I>
    **/
   PalletTreasuryError: {
     _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
   },
   /**
-   * Lookup228: pallet_sudo::pallet::Call<T>
+   * Lookup233: pallet_sudo::pallet::Call<T>
    **/
   PalletSudoCall: {
     _enum: {
@@ -1985,7 +2052,7 @@
     }
   },
   /**
-   * Lookup230: orml_vesting::module::Call<T>
+   * Lookup235: orml_vesting::module::Call<T>
    **/
   OrmlVestingModuleCall: {
     _enum: {
@@ -2004,7 +2071,7 @@
     }
   },
   /**
-   * Lookup232: orml_xtokens::module::Call<T>
+   * Lookup237: orml_xtokens::module::Call<T>
    **/
   OrmlXtokensModuleCall: {
     _enum: {
@@ -2047,7 +2114,7 @@
     }
   },
   /**
-   * Lookup233: xcm::VersionedMultiAsset
+   * Lookup238: xcm::VersionedMultiAsset
    **/
   XcmVersionedMultiAsset: {
     _enum: {
@@ -2058,7 +2125,7 @@
     }
   },
   /**
-   * Lookup236: orml_tokens::module::Call<T>
+   * Lookup241: orml_tokens::module::Call<T>
    **/
   OrmlTokensModuleCall: {
     _enum: {
@@ -2092,7 +2159,7 @@
     }
   },
   /**
-   * Lookup237: pallet_identity::pallet::Call<T>
+   * Lookup242: pallet_identity::pallet::Call<T>
    **/
   PalletIdentityCall: {
     _enum: {
@@ -2161,7 +2228,7 @@
     }
   },
   /**
-   * Lookup238: pallet_identity::types::IdentityInfo<FieldLimit>
+   * Lookup243: pallet_identity::types::IdentityInfo<FieldLimit>
    **/
   PalletIdentityIdentityInfo: {
     additional: 'Vec<(Data,Data)>',
@@ -2175,7 +2242,7 @@
     twitter: 'Data'
   },
   /**
-   * Lookup274: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
+   * Lookup279: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
    **/
   PalletIdentityBitFlags: {
     _bitLength: 64,
@@ -2189,13 +2256,13 @@
     Twitter: 128
   },
   /**
-   * Lookup275: pallet_identity::types::IdentityField
+   * Lookup280: pallet_identity::types::IdentityField
    **/
   PalletIdentityIdentityField: {
     _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']
   },
   /**
-   * Lookup276: pallet_identity::types::Judgement<Balance>
+   * Lookup281: pallet_identity::types::Judgement<Balance>
    **/
   PalletIdentityJudgement: {
     _enum: {
@@ -2209,7 +2276,7 @@
     }
   },
   /**
-   * Lookup279: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
+   * Lookup284: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
    **/
   PalletIdentityRegistration: {
     judgements: 'Vec<(u32,PalletIdentityJudgement)>',
@@ -2217,7 +2284,7 @@
     info: 'PalletIdentityIdentityInfo'
   },
   /**
-   * Lookup287: pallet_preimage::pallet::Call<T>
+   * Lookup292: pallet_preimage::pallet::Call<T>
    **/
   PalletPreimageCall: {
     _enum: {
@@ -2245,7 +2312,7 @@
     }
   },
   /**
-   * Lookup288: cumulus_pallet_xcmp_queue::pallet::Call<T>
+   * Lookup293: cumulus_pallet_xcmp_queue::pallet::Call<T>
    **/
   CumulusPalletXcmpQueueCall: {
     _enum: {
@@ -2294,7 +2361,7 @@
     }
   },
   /**
-   * Lookup289: pallet_xcm::pallet::Call<T>
+   * Lookup294: pallet_xcm::pallet::Call<T>
    **/
   PalletXcmCall: {
     _enum: {
@@ -2343,12 +2410,15 @@
         beneficiary: 'XcmVersionedMultiLocation',
         assets: 'XcmVersionedMultiAssets',
         feeAssetItem: 'u32',
-        weightLimit: 'XcmV3WeightLimit'
+        weightLimit: 'XcmV3WeightLimit',
+      },
+      force_suspension: {
+        suspended: 'bool'
       }
     }
   },
   /**
-   * Lookup290: xcm::VersionedXcm<RuntimeCall>
+   * Lookup295: xcm::VersionedXcm<RuntimeCall>
    **/
   XcmVersionedXcm: {
     _enum: {
@@ -2359,11 +2429,11 @@
     }
   },
   /**
-   * Lookup291: xcm::v2::Xcm<RuntimeCall>
+   * Lookup296: xcm::v2::Xcm<RuntimeCall>
    **/
   XcmV2Xcm: 'Vec<XcmV2Instruction>',
   /**
-   * Lookup293: xcm::v2::Instruction<RuntimeCall>
+   * Lookup298: xcm::v2::Instruction<RuntimeCall>
    **/
   XcmV2Instruction: {
     _enum: {
@@ -2461,7 +2531,7 @@
     }
   },
   /**
-   * Lookup294: xcm::v2::Response
+   * Lookup299: xcm::v2::Response
    **/
   XcmV2Response: {
     _enum: {
@@ -2472,7 +2542,7 @@
     }
   },
   /**
-   * Lookup297: xcm::v2::traits::Error
+   * Lookup302: xcm::v2::traits::Error
    **/
   XcmV2TraitsError: {
     _enum: {
@@ -2505,7 +2575,7 @@
     }
   },
   /**
-   * Lookup298: xcm::v2::multiasset::MultiAssetFilter
+   * Lookup303: xcm::v2::multiasset::MultiAssetFilter
    **/
   XcmV2MultiassetMultiAssetFilter: {
     _enum: {
@@ -2514,7 +2584,7 @@
     }
   },
   /**
-   * Lookup299: xcm::v2::multiasset::WildMultiAsset
+   * Lookup304: xcm::v2::multiasset::WildMultiAsset
    **/
   XcmV2MultiassetWildMultiAsset: {
     _enum: {
@@ -2526,13 +2596,13 @@
     }
   },
   /**
-   * Lookup300: xcm::v2::multiasset::WildFungibility
+   * Lookup305: xcm::v2::multiasset::WildFungibility
    **/
   XcmV2MultiassetWildFungibility: {
     _enum: ['Fungible', 'NonFungible']
   },
   /**
-   * Lookup301: xcm::v2::WeightLimit
+   * Lookup306: xcm::v2::WeightLimit
    **/
   XcmV2WeightLimit: {
     _enum: {
@@ -2541,11 +2611,11 @@
     }
   },
   /**
-   * Lookup310: cumulus_pallet_xcm::pallet::Call<T>
+   * Lookup315: cumulus_pallet_xcm::pallet::Call<T>
    **/
   CumulusPalletXcmCall: 'Null',
   /**
-   * Lookup311: cumulus_pallet_dmp_queue::pallet::Call<T>
+   * Lookup316: cumulus_pallet_dmp_queue::pallet::Call<T>
    **/
   CumulusPalletDmpQueueCall: {
     _enum: {
@@ -2556,7 +2626,7 @@
     }
   },
   /**
-   * Lookup312: pallet_inflation::pallet::Call<T>
+   * Lookup317: pallet_inflation::pallet::Call<T>
    **/
   PalletInflationCall: {
     _enum: {
@@ -2566,7 +2636,7 @@
     }
   },
   /**
-   * Lookup313: pallet_unique::Call<T>
+   * Lookup318: pallet_unique::pallet::Call<T>
    **/
   PalletUniqueCall: {
     _enum: {
@@ -2717,7 +2787,7 @@
     }
   },
   /**
-   * Lookup318: up_data_structs::CollectionMode
+   * Lookup323: up_data_structs::CollectionMode
    **/
   UpDataStructsCollectionMode: {
     _enum: {
@@ -2727,7 +2797,7 @@
     }
   },
   /**
-   * Lookup319: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+   * Lookup324: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCreateCollectionData: {
     mode: 'UpDataStructsCollectionMode',
@@ -2742,13 +2812,13 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup321: up_data_structs::AccessMode
+   * Lookup326: up_data_structs::AccessMode
    **/
   UpDataStructsAccessMode: {
     _enum: ['Normal', 'AllowList']
   },
   /**
-   * Lookup323: up_data_structs::CollectionLimits
+   * Lookup328: up_data_structs::CollectionLimits
    **/
   UpDataStructsCollectionLimits: {
     accountTokenOwnershipLimit: 'Option<u32>',
@@ -2762,7 +2832,7 @@
     transfersEnabled: 'Option<bool>'
   },
   /**
-   * Lookup325: up_data_structs::SponsoringRateLimit
+   * Lookup330: up_data_structs::SponsoringRateLimit
    **/
   UpDataStructsSponsoringRateLimit: {
     _enum: {
@@ -2771,7 +2841,7 @@
     }
   },
   /**
-   * Lookup328: up_data_structs::CollectionPermissions
+   * Lookup333: up_data_structs::CollectionPermissions
    **/
   UpDataStructsCollectionPermissions: {
     access: 'Option<UpDataStructsAccessMode>',
@@ -2779,7 +2849,7 @@
     nesting: 'Option<UpDataStructsNestingPermissions>'
   },
   /**
-   * Lookup330: up_data_structs::NestingPermissions
+   * Lookup335: up_data_structs::NestingPermissions
    **/
   UpDataStructsNestingPermissions: {
     tokenOwner: 'bool',
@@ -2787,18 +2857,18 @@
     restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
   },
   /**
-   * Lookup332: up_data_structs::OwnerRestrictedSet
+   * Lookup337: up_data_structs::OwnerRestrictedSet
    **/
   UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
   /**
-   * Lookup337: up_data_structs::PropertyKeyPermission
+   * Lookup342: up_data_structs::PropertyKeyPermission
    **/
   UpDataStructsPropertyKeyPermission: {
     key: 'Bytes',
     permission: 'UpDataStructsPropertyPermission'
   },
   /**
-   * Lookup338: up_data_structs::PropertyPermission
+   * Lookup343: up_data_structs::PropertyPermission
    **/
   UpDataStructsPropertyPermission: {
     mutable: 'bool',
@@ -2806,14 +2876,14 @@
     tokenOwner: 'bool'
   },
   /**
-   * Lookup341: up_data_structs::Property
+   * Lookup346: up_data_structs::Property
    **/
   UpDataStructsProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup344: up_data_structs::CreateItemData
+   * Lookup349: up_data_structs::CreateItemData
    **/
   UpDataStructsCreateItemData: {
     _enum: {
@@ -2823,26 +2893,26 @@
     }
   },
   /**
-   * Lookup345: up_data_structs::CreateNftData
+   * Lookup350: up_data_structs::CreateNftData
    **/
   UpDataStructsCreateNftData: {
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup346: up_data_structs::CreateFungibleData
+   * Lookup351: up_data_structs::CreateFungibleData
    **/
   UpDataStructsCreateFungibleData: {
     value: 'u128'
   },
   /**
-   * Lookup347: up_data_structs::CreateReFungibleData
+   * Lookup352: up_data_structs::CreateReFungibleData
    **/
   UpDataStructsCreateReFungibleData: {
     pieces: 'u128',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup350: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup355: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateItemExData: {
     _enum: {
@@ -2853,14 +2923,14 @@
     }
   },
   /**
-   * Lookup352: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup357: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateNftExData: {
     properties: 'Vec<UpDataStructsProperty>',
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup359: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup364: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExSingleOwner: {
     user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2868,14 +2938,14 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup361: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup366: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExMultipleOwners: {
     users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup362: pallet_configuration::pallet::Call<T>
+   * Lookup367: pallet_configuration::pallet::Call<T>
    **/
   PalletConfigurationCall: {
     _enum: {
@@ -2901,7 +2971,7 @@
     }
   },
   /**
-   * Lookup364: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+   * Lookup369: pallet_configuration::AppPromotionConfiguration<BlockNumber>
    **/
   PalletConfigurationAppPromotionConfiguration: {
     recalculationInterval: 'Option<u32>',
@@ -2910,15 +2980,11 @@
     maxStakersPerCalculation: 'Option<u8>'
   },
   /**
-   * Lookup368: pallet_template_transaction_payment::Call<T>
-   **/
-  PalletTemplateTransactionPaymentCall: 'Null',
-  /**
-   * Lookup369: pallet_structure::pallet::Call<T>
+   * Lookup373: pallet_structure::pallet::Call<T>
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup370: pallet_app_promotion::pallet::Call<T>
+   * Lookup374: pallet_app_promotion::pallet::Call<T>
    **/
   PalletAppPromotionCall: {
     _enum: {
@@ -2950,7 +3016,7 @@
     }
   },
   /**
-   * Lookup371: pallet_foreign_assets::module::Call<T>
+   * Lookup375: pallet_foreign_assets::module::Call<T>
    **/
   PalletForeignAssetsModuleCall: {
     _enum: {
@@ -2967,7 +3033,7 @@
     }
   },
   /**
-   * Lookup372: pallet_evm::pallet::Call<T>
+   * Lookup376: pallet_evm::pallet::Call<T>
    **/
   PalletEvmCall: {
     _enum: {
@@ -3010,7 +3076,7 @@
     }
   },
   /**
-   * Lookup378: pallet_ethereum::pallet::Call<T>
+   * Lookup382: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -3020,7 +3086,7 @@
     }
   },
   /**
-   * Lookup379: ethereum::transaction::TransactionV2
+   * Lookup383: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -3030,7 +3096,7 @@
     }
   },
   /**
-   * Lookup380: ethereum::transaction::LegacyTransaction
+   * Lookup384: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -3042,7 +3108,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup381: ethereum::transaction::TransactionAction
+   * Lookup385: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -3051,7 +3117,7 @@
     }
   },
   /**
-   * Lookup382: ethereum::transaction::TransactionSignature
+   * Lookup386: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -3059,7 +3125,7 @@
     s: 'H256'
   },
   /**
-   * Lookup384: ethereum::transaction::EIP2930Transaction
+   * Lookup388: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -3075,14 +3141,14 @@
     s: 'H256'
   },
   /**
-   * Lookup386: ethereum::transaction::AccessListItem
+   * Lookup390: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup387: ethereum::transaction::EIP1559Transaction
+   * Lookup391: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -3099,13 +3165,13 @@
     s: 'H256'
   },
   /**
-   * Lookup388: pallet_evm_coder_substrate::pallet::Call<T>
+   * Lookup392: pallet_evm_coder_substrate::pallet::Call<T>
    **/
   PalletEvmCoderSubstrateCall: {
     _enum: ['empty_call']
   },
   /**
-   * Lookup389: pallet_evm_contract_helpers::pallet::Call<T>
+   * Lookup393: pallet_evm_contract_helpers::pallet::Call<T>
    **/
   PalletEvmContractHelpersCall: {
     _enum: {
@@ -3115,7 +3181,7 @@
     }
   },
   /**
-   * Lookup391: pallet_evm_migration::pallet::Call<T>
+   * Lookup395: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -3140,7 +3206,7 @@
     }
   },
   /**
-   * Lookup395: pallet_maintenance::pallet::Call<T>
+   * Lookup399: pallet_maintenance::pallet::Call<T>
    **/
   PalletMaintenanceCall: {
     _enum: {
@@ -3156,7 +3222,7 @@
     }
   },
   /**
-   * Lookup396: pallet_test_utils::pallet::Call<T>
+   * Lookup400: pallet_test_utils::pallet::Call<T>
    **/
   PalletTestUtilsCall: {
     _enum: {
@@ -3175,32 +3241,32 @@
     }
   },
   /**
-   * Lookup398: pallet_sudo::pallet::Error<T>
+   * Lookup402: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup400: orml_vesting::module::Error<T>
+   * Lookup404: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup401: orml_xtokens::module::Error<T>
+   * Lookup405: orml_xtokens::module::Error<T>
    **/
   OrmlXtokensModuleError: {
     _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
   },
   /**
-   * Lookup404: orml_tokens::BalanceLock<Balance>
+   * Lookup408: orml_tokens::BalanceLock<Balance>
    **/
   OrmlTokensBalanceLock: {
     id: '[u8;8]',
     amount: 'u128'
   },
   /**
-   * Lookup406: orml_tokens::AccountData<Balance>
+   * Lookup410: orml_tokens::AccountData<Balance>
    **/
   OrmlTokensAccountData: {
     free: 'u128',
@@ -3208,20 +3274,20 @@
     frozen: 'u128'
   },
   /**
-   * Lookup408: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+   * Lookup412: orml_tokens::ReserveData<ReserveIdentifier, Balance>
    **/
   OrmlTokensReserveData: {
     id: 'Null',
     amount: 'u128'
   },
   /**
-   * Lookup410: orml_tokens::module::Error<T>
+   * Lookup414: orml_tokens::module::Error<T>
    **/
   OrmlTokensModuleError: {
     _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
   },
   /**
-   * Lookup415: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
+   * Lookup419: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
    **/
   PalletIdentityRegistrarInfo: {
     account: 'AccountId32',
@@ -3229,13 +3295,13 @@
     fields: 'PalletIdentityBitFlags'
   },
   /**
-   * Lookup417: pallet_identity::pallet::Error<T>
+   * Lookup421: pallet_identity::pallet::Error<T>
    **/
   PalletIdentityError: {
     _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
   },
   /**
-   * Lookup418: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
+   * Lookup422: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
    **/
   PalletPreimageRequestStatus: {
     _enum: {
@@ -3251,13 +3317,13 @@
     }
   },
   /**
-   * Lookup423: pallet_preimage::pallet::Error<T>
+   * Lookup427: pallet_preimage::pallet::Error<T>
    **/
   PalletPreimageError: {
     _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
   },
   /**
-   * Lookup425: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup429: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -3265,19 +3331,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup426: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup430: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup429: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup433: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup432: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup436: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -3287,13 +3353,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup433: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup437: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup435: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup439: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -3304,13 +3370,13 @@
     xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup437: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup441: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup438: pallet_xcm::pallet::QueryStatus<BlockNumber>
+   * Lookup442: pallet_xcm::pallet::QueryStatus<BlockNumber>
    **/
   PalletXcmQueryStatus: {
     _enum: {
@@ -3331,7 +3397,7 @@
     }
   },
   /**
-   * Lookup442: xcm::VersionedResponse
+   * Lookup446: xcm::VersionedResponse
    **/
   XcmVersionedResponse: {
     _enum: {
@@ -3342,7 +3408,7 @@
     }
   },
   /**
-   * Lookup448: pallet_xcm::pallet::VersionMigrationStage
+   * Lookup452: pallet_xcm::pallet::VersionMigrationStage
    **/
   PalletXcmVersionMigrationStage: {
     _enum: {
@@ -3353,7 +3419,7 @@
     }
   },
   /**
-   * Lookup451: xcm::VersionedAssetId
+   * Lookup455: xcm::VersionedAssetId
    **/
   XcmVersionedAssetId: {
     _enum: {
@@ -3364,7 +3430,7 @@
     }
   },
   /**
-   * Lookup452: pallet_xcm::pallet::RemoteLockedFungibleRecord
+   * Lookup456: pallet_xcm::pallet::RemoteLockedFungibleRecord
    **/
   PalletXcmRemoteLockedFungibleRecord: {
     amount: 'u128',
@@ -3373,23 +3439,23 @@
     users: 'u32'
   },
   /**
-   * Lookup456: pallet_xcm::pallet::Error<T>
+   * Lookup460: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']
   },
   /**
-   * Lookup457: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup461: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup458: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup462: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup459: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup463: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -3397,25 +3463,25 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup462: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup466: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup466: pallet_unique::Error<T>
+   * Lookup470: pallet_unique::pallet::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
   },
   /**
-   * Lookup467: pallet_configuration::pallet::Error<T>
+   * Lookup471: pallet_configuration::pallet::Error<T>
    **/
   PalletConfigurationError: {
     _enum: ['InconsistentConfiguration']
   },
   /**
-   * Lookup468: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup472: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -3429,7 +3495,7 @@
     flags: '[u8;1]'
   },
   /**
-   * Lookup469: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup473: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipStateAccountId32: {
     _enum: {
@@ -3439,7 +3505,7 @@
     }
   },
   /**
-   * Lookup470: up_data_structs::Properties
+   * Lookup474: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3447,15 +3513,15 @@
     reserved: 'u32'
   },
   /**
-   * Lookup471: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>
+   * Lookup475: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup476: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup480: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup483: up_data_structs::CollectionStats
+   * Lookup487: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -3463,18 +3529,18 @@
     alive: 'u32'
   },
   /**
-   * Lookup484: up_data_structs::TokenChild
+   * Lookup488: up_data_structs::TokenChild
    **/
   UpDataStructsTokenChild: {
     token: 'u32',
     collection: 'u32'
   },
   /**
-   * Lookup485: PhantomType::up_data_structs<T>
+   * Lookup489: PhantomType::up_data_structs<T>
    **/
   PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',
   /**
-   * Lookup487: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup491: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     properties: 'Vec<UpDataStructsProperty>',
@@ -3482,7 +3548,7 @@
     pieces: 'u128'
   },
   /**
-   * Lookup489: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup493: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -3499,14 +3565,14 @@
     flags: 'UpDataStructsRpcCollectionFlags'
   },
   /**
-   * Lookup490: up_data_structs::RpcCollectionFlags
+   * Lookup494: up_data_structs::RpcCollectionFlags
    **/
   UpDataStructsRpcCollectionFlags: {
     foreign: 'bool',
     erc721metadata: 'bool'
   },
   /**
-   * Lookup491: up_pov_estimate_rpc::PovInfo
+   * Lookup495: up_pov_estimate_rpc::PovInfo
    **/
   UpPovEstimateRpcPovInfo: {
     proofSize: 'u64',
@@ -3516,7 +3582,7 @@
     keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
   },
   /**
-   * Lookup494: sp_runtime::transaction_validity::TransactionValidityError
+   * Lookup498: sp_runtime::transaction_validity::TransactionValidityError
    **/
   SpRuntimeTransactionValidityTransactionValidityError: {
     _enum: {
@@ -3525,7 +3591,7 @@
     }
   },
   /**
-   * Lookup495: sp_runtime::transaction_validity::InvalidTransaction
+   * Lookup499: sp_runtime::transaction_validity::InvalidTransaction
    **/
   SpRuntimeTransactionValidityInvalidTransaction: {
     _enum: {
@@ -3543,7 +3609,7 @@
     }
   },
   /**
-   * Lookup496: sp_runtime::transaction_validity::UnknownTransaction
+   * Lookup500: sp_runtime::transaction_validity::UnknownTransaction
    **/
   SpRuntimeTransactionValidityUnknownTransaction: {
     _enum: {
@@ -3553,74 +3619,74 @@
     }
   },
   /**
-   * Lookup498: up_pov_estimate_rpc::TrieKeyValue
+   * Lookup502: up_pov_estimate_rpc::TrieKeyValue
    **/
   UpPovEstimateRpcTrieKeyValue: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup500: pallet_common::pallet::Error<T>
+   * Lookup504: pallet_common::pallet::Error<T>
    **/
   PalletCommonError: {
     _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
   },
   /**
-   * Lookup502: pallet_fungible::pallet::Error<T>
+   * Lookup506: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
   },
   /**
-   * Lookup507: pallet_refungible::pallet::Error<T>
+   * Lookup511: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup508: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup512: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup510: up_data_structs::PropertyScope
+   * Lookup514: up_data_structs::PropertyScope
    **/
   UpDataStructsPropertyScope: {
     _enum: ['None', 'Rmrk']
   },
   /**
-   * Lookup513: pallet_nonfungible::pallet::Error<T>
+   * Lookup517: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
   },
   /**
-   * Lookup514: pallet_structure::pallet::Error<T>
+   * Lookup518: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']
   },
   /**
-   * Lookup519: pallet_app_promotion::pallet::Error<T>
+   * Lookup523: pallet_app_promotion::pallet::Error<T>
    **/
   PalletAppPromotionError: {
     _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']
   },
   /**
-   * Lookup520: pallet_foreign_assets::module::Error<T>
+   * Lookup524: pallet_foreign_assets::module::Error<T>
    **/
   PalletForeignAssetsModuleError: {
     _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
   },
   /**
-   * Lookup522: pallet_evm::pallet::Error<T>
+   * Lookup526: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
   },
   /**
-   * Lookup525: fp_rpc::TransactionStatus
+   * Lookup529: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -3632,11 +3698,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup527: ethbloom::Bloom
+   * Lookup531: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup529: ethereum::receipt::ReceiptV3
+   * Lookup533: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -3646,7 +3712,7 @@
     }
   },
   /**
-   * Lookup530: ethereum::receipt::EIP658ReceiptData
+   * Lookup534: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -3655,7 +3721,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup531: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup535: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -3663,7 +3729,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup532: ethereum::header::Header
+   * Lookup536: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -3683,23 +3749,23 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup533: ethereum_types::hash::H64
+   * Lookup537: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup538: pallet_ethereum::pallet::Error<T>
+   * Lookup542: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup539: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup543: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup540: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup544: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
     _enum: {
@@ -3709,35 +3775,35 @@
     }
   },
   /**
-   * Lookup541: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup545: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup547: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup551: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
   },
   /**
-   * Lookup548: pallet_evm_migration::pallet::Error<T>
+   * Lookup552: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
   },
   /**
-   * Lookup549: pallet_maintenance::pallet::Error<T>
+   * Lookup553: pallet_maintenance::pallet::Error<T>
    **/
   PalletMaintenanceError: 'Null',
   /**
-   * Lookup550: pallet_test_utils::pallet::Error<T>
+   * Lookup554: pallet_test_utils::pallet::Error<T>
    **/
   PalletTestUtilsError: {
     _enum: ['TestPalletDisabled', 'TriggerRollback']
   },
   /**
-   * Lookup552: sp_runtime::MultiSignature
+   * Lookup556: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -3747,55 +3813,55 @@
     }
   },
   /**
-   * Lookup553: sp_core::ed25519::Signature
+   * Lookup557: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup555: sp_core::sr25519::Signature
+   * Lookup559: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup556: sp_core::ecdsa::Signature
+   * Lookup560: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup559: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup563: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup560: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+   * Lookup564: frame_system::extensions::check_tx_version::CheckTxVersion<T>
    **/
   FrameSystemExtensionsCheckTxVersion: 'Null',
   /**
-   * Lookup561: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup565: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup564: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup568: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup565: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup569: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup566: opal_runtime::runtime_common::maintenance::CheckMaintenance
+   * Lookup570: opal_runtime::runtime_common::maintenance::CheckMaintenance
    **/
   OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
   /**
-   * Lookup567: opal_runtime::runtime_common::identity::DisableIdentityCalls
+   * Lookup571: opal_runtime::runtime_common::identity::DisableIdentityCalls
    **/
   OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
   /**
-   * Lookup568: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup572: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup569: opal_runtime::Runtime
+   * Lookup573: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup570: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup574: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
   PalletEthereumFakeTransactionFinalizer: 'Null'
 };
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   interface InterfaceTypes {
@@ -15,6 +15,7 @@
     CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;
     CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;
     CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
+    CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;
     CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
     CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
     CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
@@ -98,6 +99,7 @@
     PalletBalancesCall: PalletBalancesCall;
     PalletBalancesError: PalletBalancesError;
     PalletBalancesEvent: PalletBalancesEvent;
+    PalletBalancesIdAmount: PalletBalancesIdAmount;
     PalletBalancesReasons: PalletBalancesReasons;
     PalletBalancesReserveData: PalletBalancesReserveData;
     PalletCollatorSelectionCall: PalletCollatorSelectionCall;
@@ -162,7 +164,6 @@
     PalletSudoCall: PalletSudoCall;
     PalletSudoError: PalletSudoError;
     PalletSudoEvent: PalletSudoEvent;
-    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
     PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
     PalletTestUtilsCall: PalletTestUtilsCall;
     PalletTestUtilsError: PalletTestUtilsError;
@@ -188,10 +189,10 @@
     PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
     PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
     PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
-    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;
-    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
-    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
-    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
+    PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;
+    PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
+    PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
+    PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
     SpArithmeticArithmeticError: SpArithmeticArithmeticError;
     SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
     SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -25,29 +25,29 @@
   interface PalletBalancesAccountData extends Struct {
     readonly free: u128;
     readonly reserved: u128;
-    readonly miscFrozen: u128;
-    readonly feeFrozen: u128;
+    readonly frozen: u128;
+    readonly flags: u128;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassWeight (7) */
+  /** @name FrameSupportDispatchPerDispatchClassWeight (8) */
   interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
     readonly normal: SpWeightsWeightV2Weight;
     readonly operational: SpWeightsWeightV2Weight;
     readonly mandatory: SpWeightsWeightV2Weight;
   }
 
-  /** @name SpWeightsWeightV2Weight (8) */
+  /** @name SpWeightsWeightV2Weight (9) */
   interface SpWeightsWeightV2Weight extends Struct {
     readonly refTime: Compact<u64>;
     readonly proofSize: Compact<u64>;
   }
 
-  /** @name SpRuntimeDigest (13) */
+  /** @name SpRuntimeDigest (14) */
   interface SpRuntimeDigest extends Struct {
     readonly logs: Vec<SpRuntimeDigestDigestItem>;
   }
 
-  /** @name SpRuntimeDigestDigestItem (15) */
+  /** @name SpRuntimeDigestDigestItem (16) */
   interface SpRuntimeDigestDigestItem extends Enum {
     readonly isOther: boolean;
     readonly asOther: Bytes;
@@ -61,14 +61,14 @@
     readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
   }
 
-  /** @name FrameSystemEventRecord (18) */
+  /** @name FrameSystemEventRecord (19) */
   interface FrameSystemEventRecord extends Struct {
     readonly phase: FrameSystemPhase;
     readonly event: Event;
     readonly topics: Vec<H256>;
   }
 
-  /** @name FrameSystemEvent (20) */
+  /** @name FrameSystemEvent (21) */
   interface FrameSystemEvent extends Enum {
     readonly isExtrinsicSuccess: boolean;
     readonly asExtrinsicSuccess: {
@@ -96,14 +96,14 @@
     readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
   }
 
-  /** @name FrameSupportDispatchDispatchInfo (21) */
+  /** @name FrameSupportDispatchDispatchInfo (22) */
   interface FrameSupportDispatchDispatchInfo extends Struct {
     readonly weight: SpWeightsWeightV2Weight;
     readonly class: FrameSupportDispatchDispatchClass;
     readonly paysFee: FrameSupportDispatchPays;
   }
 
-  /** @name FrameSupportDispatchDispatchClass (22) */
+  /** @name FrameSupportDispatchDispatchClass (23) */
   interface FrameSupportDispatchDispatchClass extends Enum {
     readonly isNormal: boolean;
     readonly isOperational: boolean;
@@ -111,14 +111,14 @@
     readonly type: 'Normal' | 'Operational' | 'Mandatory';
   }
 
-  /** @name FrameSupportDispatchPays (23) */
+  /** @name FrameSupportDispatchPays (24) */
   interface FrameSupportDispatchPays extends Enum {
     readonly isYes: boolean;
     readonly isNo: boolean;
     readonly type: 'Yes' | 'No';
   }
 
-  /** @name SpRuntimeDispatchError (24) */
+  /** @name SpRuntimeDispatchError (25) */
   interface SpRuntimeDispatchError extends Enum {
     readonly isOther: boolean;
     readonly isCannotLookup: boolean;
@@ -140,25 +140,27 @@
     readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
   }
 
-  /** @name SpRuntimeModuleError (25) */
+  /** @name SpRuntimeModuleError (26) */
   interface SpRuntimeModuleError extends Struct {
     readonly index: u8;
     readonly error: U8aFixed;
   }
 
-  /** @name SpRuntimeTokenError (26) */
+  /** @name SpRuntimeTokenError (27) */
   interface SpRuntimeTokenError extends Enum {
-    readonly isNoFunds: boolean;
-    readonly isWouldDie: boolean;
+    readonly isFundsUnavailable: boolean;
+    readonly isOnlyProvider: boolean;
     readonly isBelowMinimum: boolean;
     readonly isCannotCreate: boolean;
     readonly isUnknownAsset: boolean;
     readonly isFrozen: boolean;
     readonly isUnsupported: boolean;
-    readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
+    readonly isCannotCreateHold: boolean;
+    readonly isNotExpendable: boolean;
+    readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable';
   }
 
-  /** @name SpArithmeticArithmeticError (27) */
+  /** @name SpArithmeticArithmeticError (28) */
   interface SpArithmeticArithmeticError extends Enum {
     readonly isUnderflow: boolean;
     readonly isOverflow: boolean;
@@ -166,14 +168,14 @@
     readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
   }
 
-  /** @name SpRuntimeTransactionalError (28) */
+  /** @name SpRuntimeTransactionalError (29) */
   interface SpRuntimeTransactionalError extends Enum {
     readonly isLimitReached: boolean;
     readonly isNoLayer: boolean;
     readonly type: 'LimitReached' | 'NoLayer';
   }
 
-  /** @name CumulusPalletParachainSystemEvent (29) */
+  /** @name CumulusPalletParachainSystemEvent (30) */
   interface CumulusPalletParachainSystemEvent extends Enum {
     readonly isValidationFunctionStored: boolean;
     readonly isValidationFunctionApplied: boolean;
@@ -201,7 +203,7 @@
     readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
   }
 
-  /** @name PalletCollatorSelectionEvent (31) */
+  /** @name PalletCollatorSelectionEvent (32) */
   interface PalletCollatorSelectionEvent extends Enum {
     readonly isInvulnerableAdded: boolean;
     readonly asInvulnerableAdded: {
@@ -232,7 +234,7 @@
     readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
   }
 
-  /** @name PalletSessionEvent (32) */
+  /** @name PalletSessionEvent (33) */
   interface PalletSessionEvent extends Enum {
     readonly isNewSession: boolean;
     readonly asNewSession: {
@@ -241,7 +243,7 @@
     readonly type: 'NewSession';
   }
 
-  /** @name PalletBalancesEvent (33) */
+  /** @name PalletBalancesEvent (34) */
   interface PalletBalancesEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -263,7 +265,6 @@
     readonly asBalanceSet: {
       readonly who: AccountId32;
       readonly free: u128;
-      readonly reserved: u128;
     } & Struct;
     readonly isReserved: boolean;
     readonly asReserved: {
@@ -297,17 +298,69 @@
       readonly who: AccountId32;
       readonly amount: u128;
     } & Struct;
-    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
+    readonly isMinted: boolean;
+    readonly asMinted: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isBurned: boolean;
+    readonly asBurned: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isSuspended: boolean;
+    readonly asSuspended: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isRestored: boolean;
+    readonly asRestored: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isUpgraded: boolean;
+    readonly asUpgraded: {
+      readonly who: AccountId32;
+    } & Struct;
+    readonly isIssued: boolean;
+    readonly asIssued: {
+      readonly amount: u128;
+    } & Struct;
+    readonly isRescinded: boolean;
+    readonly asRescinded: {
+      readonly amount: u128;
+    } & Struct;
+    readonly isLocked: boolean;
+    readonly asLocked: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isUnlocked: boolean;
+    readonly asUnlocked: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isFrozen: boolean;
+    readonly asFrozen: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isThawed: boolean;
+    readonly asThawed: {
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';
   }
 
-  /** @name FrameSupportTokensMiscBalanceStatus (34) */
+  /** @name FrameSupportTokensMiscBalanceStatus (35) */
   interface FrameSupportTokensMiscBalanceStatus extends Enum {
     readonly isFree: boolean;
     readonly isReserved: boolean;
     readonly type: 'Free' | 'Reserved';
   }
 
-  /** @name PalletTransactionPaymentEvent (35) */
+  /** @name PalletTransactionPaymentEvent (36) */
   interface PalletTransactionPaymentEvent extends Enum {
     readonly isTransactionFeePaid: boolean;
     readonly asTransactionFeePaid: {
@@ -318,7 +371,7 @@
     readonly type: 'TransactionFeePaid';
   }
 
-  /** @name PalletTreasuryEvent (36) */
+  /** @name PalletTreasuryEvent (37) */
   interface PalletTreasuryEvent extends Enum {
     readonly isProposed: boolean;
     readonly asProposed: {
@@ -365,7 +418,7 @@
     readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';
   }
 
-  /** @name PalletSudoEvent (37) */
+  /** @name PalletSudoEvent (38) */
   interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -382,7 +435,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name OrmlVestingModuleEvent (41) */
+  /** @name OrmlVestingModuleEvent (42) */
   interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -402,7 +455,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name OrmlVestingVestingSchedule (42) */
+  /** @name OrmlVestingVestingSchedule (43) */
   interface OrmlVestingVestingSchedule extends Struct {
     readonly start: u32;
     readonly period: u32;
@@ -410,7 +463,7 @@
     readonly perPeriod: Compact<u128>;
   }
 
-  /** @name OrmlXtokensModuleEvent (44) */
+  /** @name OrmlXtokensModuleEvent (45) */
   interface OrmlXtokensModuleEvent extends Enum {
     readonly isTransferredMultiAssets: boolean;
     readonly asTransferredMultiAssets: {
@@ -422,16 +475,16 @@
     readonly type: 'TransferredMultiAssets';
   }
 
-  /** @name XcmV3MultiassetMultiAssets (45) */
+  /** @name XcmV3MultiassetMultiAssets (46) */
   interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
 
-  /** @name XcmV3MultiAsset (47) */
+  /** @name XcmV3MultiAsset (48) */
   interface XcmV3MultiAsset extends Struct {
     readonly id: XcmV3MultiassetAssetId;
     readonly fun: XcmV3MultiassetFungibility;
   }
 
-  /** @name XcmV3MultiassetAssetId (48) */
+  /** @name XcmV3MultiassetAssetId (49) */
   interface XcmV3MultiassetAssetId extends Enum {
     readonly isConcrete: boolean;
     readonly asConcrete: XcmV3MultiLocation;
@@ -440,13 +493,13 @@
     readonly type: 'Concrete' | 'Abstract';
   }
 
-  /** @name XcmV3MultiLocation (49) */
+  /** @name XcmV3MultiLocation (50) */
   interface XcmV3MultiLocation extends Struct {
     readonly parents: u8;
     readonly interior: XcmV3Junctions;
   }
 
-  /** @name XcmV3Junctions (50) */
+  /** @name XcmV3Junctions (51) */
   interface XcmV3Junctions extends Enum {
     readonly isHere: boolean;
     readonly isX1: boolean;
@@ -468,7 +521,7 @@
     readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV3Junction (51) */
+  /** @name XcmV3Junction (52) */
   interface XcmV3Junction extends Enum {
     readonly isParachain: boolean;
     readonly asParachain: Compact<u32>;
@@ -507,7 +560,7 @@
     readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
   }
 
-  /** @name XcmV3JunctionNetworkId (54) */
+  /** @name XcmV3JunctionNetworkId (55) */
   interface XcmV3JunctionNetworkId extends Enum {
     readonly isByGenesis: boolean;
     readonly asByGenesis: U8aFixed;
@@ -530,7 +583,7 @@
     readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
   }
 
-  /** @name XcmV3JunctionBodyId (56) */
+  /** @name XcmV3JunctionBodyId (57) */
   interface XcmV3JunctionBodyId extends Enum {
     readonly isUnit: boolean;
     readonly isMoniker: boolean;
@@ -547,7 +600,7 @@
     readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
   }
 
-  /** @name XcmV3JunctionBodyPart (57) */
+  /** @name XcmV3JunctionBodyPart (58) */
   interface XcmV3JunctionBodyPart extends Enum {
     readonly isVoice: boolean;
     readonly isMembers: boolean;
@@ -572,7 +625,7 @@
     readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
   }
 
-  /** @name XcmV3MultiassetFungibility (58) */
+  /** @name XcmV3MultiassetFungibility (59) */
   interface XcmV3MultiassetFungibility extends Enum {
     readonly isFungible: boolean;
     readonly asFungible: Compact<u128>;
@@ -581,7 +634,7 @@
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV3MultiassetAssetInstance (59) */
+  /** @name XcmV3MultiassetAssetInstance (60) */
   interface XcmV3MultiassetAssetInstance extends Enum {
     readonly isUndefined: boolean;
     readonly isIndex: boolean;
@@ -597,7 +650,7 @@
     readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
   }
 
-  /** @name OrmlTokensModuleEvent (62) */
+  /** @name OrmlTokensModuleEvent (63) */
   interface OrmlTokensModuleEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -697,7 +750,7 @@
     readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
   }
 
-  /** @name PalletForeignAssetsAssetIds (63) */
+  /** @name PalletForeignAssetsAssetIds (64) */
   interface PalletForeignAssetsAssetIds extends Enum {
     readonly isForeignAssetId: boolean;
     readonly asForeignAssetId: u32;
@@ -706,14 +759,14 @@
     readonly type: 'ForeignAssetId' | 'NativeAssetId';
   }
 
-  /** @name PalletForeignAssetsNativeCurrency (64) */
+  /** @name PalletForeignAssetsNativeCurrency (65) */
   interface PalletForeignAssetsNativeCurrency extends Enum {
     readonly isHere: boolean;
     readonly isParent: boolean;
     readonly type: 'Here' | 'Parent';
   }
 
-  /** @name PalletIdentityEvent (65) */
+  /** @name PalletIdentityEvent (66) */
   interface PalletIdentityEvent extends Enum {
     readonly isIdentitySet: boolean;
     readonly asIdentitySet: {
@@ -781,7 +834,7 @@
     readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';
   }
 
-  /** @name PalletPreimageEvent (66) */
+  /** @name PalletPreimageEvent (67) */
   interface PalletPreimageEvent extends Enum {
     readonly isNoted: boolean;
     readonly asNoted: {
@@ -798,7 +851,7 @@
     readonly type: 'Noted' | 'Requested' | 'Cleared';
   }
 
-  /** @name CumulusPalletXcmpQueueEvent (67) */
+  /** @name CumulusPalletXcmpQueueEvent (68) */
   interface CumulusPalletXcmpQueueEvent extends Enum {
     readonly isSuccess: boolean;
     readonly asSuccess: {
@@ -838,7 +891,7 @@
     readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name XcmV3TraitsError (68) */
+  /** @name XcmV3TraitsError (69) */
   interface XcmV3TraitsError extends Enum {
     readonly isOverflow: boolean;
     readonly isUnimplemented: boolean;
@@ -885,7 +938,7 @@
     readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
   }
 
-  /** @name PalletXcmEvent (70) */
+  /** @name PalletXcmEvent (71) */
   interface PalletXcmEvent extends Enum {
     readonly isAttempted: boolean;
     readonly asAttempted: XcmV3TraitsOutcome;
@@ -936,7 +989,7 @@
     readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
   }
 
-  /** @name XcmV3TraitsOutcome (71) */
+  /** @name XcmV3TraitsOutcome (72) */
   interface XcmV3TraitsOutcome extends Enum {
     readonly isComplete: boolean;
     readonly asComplete: SpWeightsWeightV2Weight;
@@ -947,10 +1000,10 @@
     readonly type: 'Complete' | 'Incomplete' | 'Error';
   }
 
-  /** @name XcmV3Xcm (72) */
+  /** @name XcmV3Xcm (73) */
   interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
 
-  /** @name XcmV3Instruction (74) */
+  /** @name XcmV3Instruction (75) */
   interface XcmV3Instruction extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
@@ -1132,7 +1185,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
   }
 
-  /** @name XcmV3Response (75) */
+  /** @name XcmV3Response (76) */
   interface XcmV3Response extends Enum {
     readonly isNull: boolean;
     readonly isAssets: boolean;
@@ -1148,7 +1201,7 @@
     readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
   }
 
-  /** @name XcmV3PalletInfo (79) */
+  /** @name XcmV3PalletInfo (80) */
   interface XcmV3PalletInfo extends Struct {
     readonly index: Compact<u32>;
     readonly name: Bytes;
@@ -1158,7 +1211,7 @@
     readonly patch: Compact<u32>;
   }
 
-  /** @name XcmV3MaybeErrorCode (82) */
+  /** @name XcmV3MaybeErrorCode (83) */
   interface XcmV3MaybeErrorCode extends Enum {
     readonly isSuccess: boolean;
     readonly isError: boolean;
@@ -1168,7 +1221,7 @@
     readonly type: 'Success' | 'Error' | 'TruncatedError';
   }
 
-  /** @name XcmV2OriginKind (85) */
+  /** @name XcmV2OriginKind (86) */
   interface XcmV2OriginKind extends Enum {
     readonly isNative: boolean;
     readonly isSovereignAccount: boolean;
@@ -1177,19 +1230,19 @@
     readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
   }
 
-  /** @name XcmDoubleEncoded (86) */
+  /** @name XcmDoubleEncoded (87) */
   interface XcmDoubleEncoded extends Struct {
     readonly encoded: Bytes;
   }
 
-  /** @name XcmV3QueryResponseInfo (87) */
+  /** @name XcmV3QueryResponseInfo (88) */
   interface XcmV3QueryResponseInfo extends Struct {
     readonly destination: XcmV3MultiLocation;
     readonly queryId: Compact<u64>;
     readonly maxWeight: SpWeightsWeightV2Weight;
   }
 
-  /** @name XcmV3MultiassetMultiAssetFilter (88) */
+  /** @name XcmV3MultiassetMultiAssetFilter (89) */
   interface XcmV3MultiassetMultiAssetFilter extends Enum {
     readonly isDefinite: boolean;
     readonly asDefinite: XcmV3MultiassetMultiAssets;
@@ -1198,7 +1251,7 @@
     readonly type: 'Definite' | 'Wild';
   }
 
-  /** @name XcmV3MultiassetWildMultiAsset (89) */
+  /** @name XcmV3MultiassetWildMultiAsset (90) */
   interface XcmV3MultiassetWildMultiAsset extends Enum {
     readonly isAll: boolean;
     readonly isAllOf: boolean;
@@ -1217,14 +1270,14 @@
     readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
   }
 
-  /** @name XcmV3MultiassetWildFungibility (90) */
+  /** @name XcmV3MultiassetWildFungibility (91) */
   interface XcmV3MultiassetWildFungibility extends Enum {
     readonly isFungible: boolean;
     readonly isNonFungible: boolean;
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV3WeightLimit (92) */
+  /** @name XcmV3WeightLimit (93) */
   interface XcmV3WeightLimit extends Enum {
     readonly isUnlimited: boolean;
     readonly isLimited: boolean;
@@ -1232,7 +1285,7 @@
     readonly type: 'Unlimited' | 'Limited';
   }
 
-  /** @name XcmVersionedMultiAssets (93) */
+  /** @name XcmVersionedMultiAssets (94) */
   interface XcmVersionedMultiAssets extends Enum {
     readonly isV2: boolean;
     readonly asV2: XcmV2MultiassetMultiAssets;
@@ -1241,16 +1294,16 @@
     readonly type: 'V2' | 'V3';
   }
 
-  /** @name XcmV2MultiassetMultiAssets (94) */
+  /** @name XcmV2MultiassetMultiAssets (95) */
   interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
 
-  /** @name XcmV2MultiAsset (96) */
+  /** @name XcmV2MultiAsset (97) */
   interface XcmV2MultiAsset extends Struct {
     readonly id: XcmV2MultiassetAssetId;
     readonly fun: XcmV2MultiassetFungibility;
   }
 
-  /** @name XcmV2MultiassetAssetId (97) */
+  /** @name XcmV2MultiassetAssetId (98) */
   interface XcmV2MultiassetAssetId extends Enum {
     readonly isConcrete: boolean;
     readonly asConcrete: XcmV2MultiLocation;
@@ -1259,13 +1312,13 @@
     readonly type: 'Concrete' | 'Abstract';
   }
 
-  /** @name XcmV2MultiLocation (98) */
+  /** @name XcmV2MultiLocation (99) */
   interface XcmV2MultiLocation extends Struct {
     readonly parents: u8;
     readonly interior: XcmV2MultilocationJunctions;
   }
 
-  /** @name XcmV2MultilocationJunctions (99) */
+  /** @name XcmV2MultilocationJunctions (100) */
   interface XcmV2MultilocationJunctions extends Enum {
     readonly isHere: boolean;
     readonly isX1: boolean;
@@ -1287,7 +1340,7 @@
     readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV2Junction (100) */
+  /** @name XcmV2Junction (101) */
   interface XcmV2Junction extends Enum {
     readonly isParachain: boolean;
     readonly asParachain: Compact<u32>;
@@ -1321,7 +1374,7 @@
     readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
   }
 
-  /** @name XcmV2NetworkId (101) */
+  /** @name XcmV2NetworkId (102) */
   interface XcmV2NetworkId extends Enum {
     readonly isAny: boolean;
     readonly isNamed: boolean;
@@ -1331,7 +1384,7 @@
     readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
   }
 
-  /** @name XcmV2BodyId (103) */
+  /** @name XcmV2BodyId (104) */
   interface XcmV2BodyId extends Enum {
     readonly isUnit: boolean;
     readonly isNamed: boolean;
@@ -1348,7 +1401,7 @@
     readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
   }
 
-  /** @name XcmV2BodyPart (104) */
+  /** @name XcmV2BodyPart (105) */
   interface XcmV2BodyPart extends Enum {
     readonly isVoice: boolean;
     readonly isMembers: boolean;
@@ -1373,7 +1426,7 @@
     readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
   }
 
-  /** @name XcmV2MultiassetFungibility (105) */
+  /** @name XcmV2MultiassetFungibility (106) */
   interface XcmV2MultiassetFungibility extends Enum {
     readonly isFungible: boolean;
     readonly asFungible: Compact<u128>;
@@ -1382,7 +1435,7 @@
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV2MultiassetAssetInstance (106) */
+  /** @name XcmV2MultiassetAssetInstance (107) */
   interface XcmV2MultiassetAssetInstance extends Enum {
     readonly isUndefined: boolean;
     readonly isIndex: boolean;
@@ -1400,7 +1453,7 @@
     readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
   }
 
-  /** @name XcmVersionedMultiLocation (107) */
+  /** @name XcmVersionedMultiLocation (108) */
   interface XcmVersionedMultiLocation extends Enum {
     readonly isV2: boolean;
     readonly asV2: XcmV2MultiLocation;
@@ -1409,7 +1462,7 @@
     readonly type: 'V2' | 'V3';
   }
 
-  /** @name CumulusPalletXcmEvent (108) */
+  /** @name CumulusPalletXcmEvent (109) */
   interface CumulusPalletXcmEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -1420,7 +1473,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
   }
 
-  /** @name CumulusPalletDmpQueueEvent (109) */
+  /** @name CumulusPalletDmpQueueEvent (110) */
   interface CumulusPalletDmpQueueEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: {
@@ -1459,7 +1512,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
   }
 
-  /** @name PalletConfigurationEvent (110) */
+  /** @name PalletConfigurationEvent (111) */
   interface PalletConfigurationEvent extends Enum {
     readonly isNewDesiredCollators: boolean;
     readonly asNewDesiredCollators: {
@@ -1476,7 +1529,7 @@
     readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
   }
 
-  /** @name PalletCommonEvent (113) */
+  /** @name PalletCommonEvent (114) */
   interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1525,7 +1578,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
   }
 
-  /** @name PalletEvmAccountBasicCrossAccountIdRepr (116) */
+  /** @name PalletEvmAccountBasicCrossAccountIdRepr (117) */
   interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
     readonly isSubstrate: boolean;
     readonly asSubstrate: AccountId32;
@@ -1534,14 +1587,14 @@
     readonly type: 'Substrate' | 'Ethereum';
   }
 
-  /** @name PalletStructureEvent (119) */
+  /** @name PalletStructureEvent (120) */
   interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletAppPromotionEvent (120) */
+  /** @name PalletAppPromotionEvent (121) */
   interface PalletAppPromotionEvent extends Enum {
     readonly isStakingRecalculation: boolean;
     readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1554,7 +1607,7 @@
     readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
   }
 
-  /** @name PalletForeignAssetsModuleEvent (121) */
+  /** @name PalletForeignAssetsModuleEvent (122) */
   interface PalletForeignAssetsModuleEvent extends Enum {
     readonly isForeignAssetRegistered: boolean;
     readonly asForeignAssetRegistered: {
@@ -1581,7 +1634,7 @@
     readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
   }
 
-  /** @name PalletForeignAssetsModuleAssetMetadata (122) */
+  /** @name PalletForeignAssetsModuleAssetMetadata (123) */
   interface PalletForeignAssetsModuleAssetMetadata extends Struct {
     readonly name: Bytes;
     readonly symbol: Bytes;
@@ -1589,7 +1642,7 @@
     readonly minimalBalance: u128;
   }
 
-  /** @name PalletEvmEvent (125) */
+  /** @name PalletEvmEvent (126) */
   interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: {
@@ -1614,14 +1667,14 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
   }
 
-  /** @name EthereumLog (126) */
+  /** @name EthereumLog (127) */
   interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (128) */
+  /** @name PalletEthereumEvent (129) */
   interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: {
@@ -1629,11 +1682,12 @@
       readonly to: H160;
       readonly transactionHash: H256;
       readonly exitReason: EvmCoreErrorExitReason;
+      readonly extraData: Bytes;
     } & Struct;
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (129) */
+  /** @name EvmCoreErrorExitReason (130) */
   interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1646,7 +1700,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (130) */
+  /** @name EvmCoreErrorExitSucceed (131) */
   interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -1654,7 +1708,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (131) */
+  /** @name EvmCoreErrorExitError (132) */
   interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -1676,13 +1730,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (135) */
+  /** @name EvmCoreErrorExitRevert (136) */
   interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (136) */
+  /** @name EvmCoreErrorExitFatal (137) */
   interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -1693,7 +1747,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name PalletEvmContractHelpersEvent (137) */
+  /** @name PalletEvmContractHelpersEvent (138) */
   interface PalletEvmContractHelpersEvent extends Enum {
     readonly isContractSponsorSet: boolean;
     readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1704,20 +1758,20 @@
     readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
   }
 
-  /** @name PalletEvmMigrationEvent (138) */
+  /** @name PalletEvmMigrationEvent (139) */
   interface PalletEvmMigrationEvent extends Enum {
     readonly isTestEvent: boolean;
     readonly type: 'TestEvent';
   }
 
-  /** @name PalletMaintenanceEvent (139) */
+  /** @name PalletMaintenanceEvent (140) */
   interface PalletMaintenanceEvent extends Enum {
     readonly isMaintenanceEnabled: boolean;
     readonly isMaintenanceDisabled: boolean;
     readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
   }
 
-  /** @name PalletTestUtilsEvent (140) */
+  /** @name PalletTestUtilsEvent (141) */
   interface PalletTestUtilsEvent extends Enum {
     readonly isValueIsSet: boolean;
     readonly isShouldRollback: boolean;
@@ -1725,7 +1779,7 @@
     readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
   }
 
-  /** @name FrameSystemPhase (141) */
+  /** @name FrameSystemPhase (142) */
   interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -1734,13 +1788,13 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (144) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (145) */
   interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemCall (145) */
+  /** @name FrameSystemCall (146) */
   interface FrameSystemCall extends Enum {
     readonly isRemark: boolean;
     readonly asRemark: {
@@ -1778,21 +1832,21 @@
     readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
   }
 
-  /** @name FrameSystemLimitsBlockWeights (149) */
+  /** @name FrameSystemLimitsBlockWeights (150) */
   interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: SpWeightsWeightV2Weight;
     readonly maxBlock: SpWeightsWeightV2Weight;
     readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (150) */
+  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (151) */
   interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (151) */
+  /** @name FrameSystemLimitsWeightsPerClass (152) */
   interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: SpWeightsWeightV2Weight;
     readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1800,25 +1854,25 @@
     readonly reserved: Option<SpWeightsWeightV2Weight>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (153) */
+  /** @name FrameSystemLimitsBlockLength (154) */
   interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportDispatchPerDispatchClassU32;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassU32 (154) */
+  /** @name FrameSupportDispatchPerDispatchClassU32 (155) */
   interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name SpWeightsRuntimeDbWeight (155) */
+  /** @name SpWeightsRuntimeDbWeight (156) */
   interface SpWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (156) */
+  /** @name SpVersionRuntimeVersion (157) */
   interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -1830,7 +1884,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (161) */
+  /** @name FrameSystemError (162) */
   interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1841,35 +1895,35 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name PolkadotPrimitivesV2PersistedValidationData (162) */
-  interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
+  /** @name PolkadotPrimitivesV4PersistedValidationData (163) */
+  interface PolkadotPrimitivesV4PersistedValidationData extends Struct {
     readonly parentHead: Bytes;
     readonly relayParentNumber: u32;
     readonly relayParentStorageRoot: H256;
     readonly maxPovSize: u32;
   }
 
-  /** @name PolkadotPrimitivesV2UpgradeRestriction (165) */
-  interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
+  /** @name PolkadotPrimitivesV4UpgradeRestriction (166) */
+  interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
     readonly isPresent: boolean;
     readonly type: 'Present';
   }
 
-  /** @name SpTrieStorageProof (166) */
+  /** @name SpTrieStorageProof (167) */
   interface SpTrieStorageProof extends Struct {
     readonly trieNodes: BTreeSet<Bytes>;
   }
 
-  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (168) */
+  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (169) */
   interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
     readonly dmqMqcHead: H256;
     readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
-    readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
-    readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
+    readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
+    readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (171) */
-  interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
+  /** @name PolkadotPrimitivesV4AbridgedHrmpChannel (172) */
+  interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {
     readonly maxCapacity: u32;
     readonly maxTotalSize: u32;
     readonly maxMessageSize: u32;
@@ -1878,8 +1932,8 @@
     readonly mqcHead: Option<H256>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (173) */
-  interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
+  /** @name PolkadotPrimitivesV4AbridgedHostConfiguration (174) */
+  interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {
     readonly maxCodeSize: u32;
     readonly maxHeadDataSize: u32;
     readonly maxUpwardQueueCount: u32;
@@ -1891,13 +1945,19 @@
     readonly validationUpgradeDelay: u32;
   }
 
-  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (179) */
+  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (180) */
   interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
     readonly recipient: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemCall (180) */
+  /** @name CumulusPalletParachainSystemCodeUpgradeAuthorization (181) */
+  interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {
+    readonly codeHash: H256;
+    readonly checkVersion: bool;
+  }
+
+  /** @name CumulusPalletParachainSystemCall (182) */
   interface CumulusPalletParachainSystemCall extends Enum {
     readonly isSetValidationData: boolean;
     readonly asSetValidationData: {
@@ -1910,6 +1970,7 @@
     readonly isAuthorizeUpgrade: boolean;
     readonly asAuthorizeUpgrade: {
       readonly codeHash: H256;
+      readonly checkVersion: bool;
     } & Struct;
     readonly isEnactAuthorizedUpgrade: boolean;
     readonly asEnactAuthorizedUpgrade: {
@@ -1918,27 +1979,27 @@
     readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
   }
 
-  /** @name CumulusPrimitivesParachainInherentParachainInherentData (181) */
+  /** @name CumulusPrimitivesParachainInherentParachainInherentData (183) */
   interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
-    readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
+    readonly validationData: PolkadotPrimitivesV4PersistedValidationData;
     readonly relayChainState: SpTrieStorageProof;
     readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
     readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
   }
 
-  /** @name PolkadotCorePrimitivesInboundDownwardMessage (183) */
+  /** @name PolkadotCorePrimitivesInboundDownwardMessage (185) */
   interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
     readonly sentAt: u32;
     readonly msg: Bytes;
   }
 
-  /** @name PolkadotCorePrimitivesInboundHrmpMessage (186) */
+  /** @name PolkadotCorePrimitivesInboundHrmpMessage (188) */
   interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
     readonly sentAt: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemError (189) */
+  /** @name CumulusPalletParachainSystemError (191) */
   interface CumulusPalletParachainSystemError extends Enum {
     readonly isOverlappingUpgrades: boolean;
     readonly isProhibitedByPolkadot: boolean;
@@ -1951,10 +2012,10 @@
     readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
   }
 
-  /** @name ParachainInfoCall (190) */
+  /** @name ParachainInfoCall (192) */
   type ParachainInfoCall = Null;
 
-  /** @name PalletCollatorSelectionCall (193) */
+  /** @name PalletCollatorSelectionCall (195) */
   interface PalletCollatorSelectionCall extends Enum {
     readonly isAddInvulnerable: boolean;
     readonly asAddInvulnerable: {
@@ -1975,7 +2036,7 @@
     readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
   }
 
-  /** @name PalletCollatorSelectionError (194) */
+  /** @name PalletCollatorSelectionError (196) */
   interface PalletCollatorSelectionError extends Enum {
     readonly isTooManyCandidates: boolean;
     readonly isUnknown: boolean;
@@ -1993,21 +2054,21 @@
     readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
   }
 
-  /** @name OpalRuntimeRuntimeCommonSessionKeys (197) */
+  /** @name OpalRuntimeRuntimeCommonSessionKeys (199) */
   interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
     readonly aura: SpConsensusAuraSr25519AppSr25519Public;
   }
 
-  /** @name SpConsensusAuraSr25519AppSr25519Public (198) */
+  /** @name SpConsensusAuraSr25519AppSr25519Public (200) */
   interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
 
-  /** @name SpCoreSr25519Public (199) */
+  /** @name SpCoreSr25519Public (201) */
   interface SpCoreSr25519Public extends U8aFixed {}
 
-  /** @name SpCoreCryptoKeyTypeId (202) */
+  /** @name SpCoreCryptoKeyTypeId (204) */
   interface SpCoreCryptoKeyTypeId extends U8aFixed {}
 
-  /** @name PalletSessionCall (203) */
+  /** @name PalletSessionCall (205) */
   interface PalletSessionCall extends Enum {
     readonly isSetKeys: boolean;
     readonly asSetKeys: {
@@ -2018,7 +2079,7 @@
     readonly type: 'SetKeys' | 'PurgeKeys';
   }
 
-  /** @name PalletSessionError (204) */
+  /** @name PalletSessionError (206) */
   interface PalletSessionError extends Enum {
     readonly isInvalidProof: boolean;
     readonly isNoAssociatedValidatorId: boolean;
@@ -2028,14 +2089,14 @@
     readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
   }
 
-  /** @name PalletBalancesBalanceLock (209) */
+  /** @name PalletBalancesBalanceLock (211) */
   interface PalletBalancesBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
     readonly reasons: PalletBalancesReasons;
   }
 
-  /** @name PalletBalancesReasons (210) */
+  /** @name PalletBalancesReasons (212) */
   interface PalletBalancesReasons extends Enum {
     readonly isFee: boolean;
     readonly isMisc: boolean;
@@ -2043,24 +2104,30 @@
     readonly type: 'Fee' | 'Misc' | 'All';
   }
 
-  /** @name PalletBalancesReserveData (213) */
+  /** @name PalletBalancesReserveData (215) */
   interface PalletBalancesReserveData extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name PalletBalancesCall (215) */
+  /** @name PalletBalancesIdAmount (218) */
+  interface PalletBalancesIdAmount extends Struct {
+    readonly id: U8aFixed;
+    readonly amount: u128;
+  }
+
+  /** @name PalletBalancesCall (220) */
   interface PalletBalancesCall extends Enum {
-    readonly isTransfer: boolean;
-    readonly asTransfer: {
+    readonly isTransferAllowDeath: boolean;
+    readonly asTransferAllowDeath: {
       readonly dest: MultiAddress;
       readonly value: Compact<u128>;
     } & Struct;
-    readonly isSetBalance: boolean;
-    readonly asSetBalance: {
+    readonly isSetBalanceDeprecated: boolean;
+    readonly asSetBalanceDeprecated: {
       readonly who: MultiAddress;
       readonly newFree: Compact<u128>;
-      readonly newReserved: Compact<u128>;
+      readonly oldReserved: Compact<u128>;
     } & Struct;
     readonly isForceTransfer: boolean;
     readonly asForceTransfer: {
@@ -2083,23 +2150,39 @@
       readonly who: MultiAddress;
       readonly amount: u128;
     } & Struct;
-    readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
+    readonly isUpgradeAccounts: boolean;
+    readonly asUpgradeAccounts: {
+      readonly who: Vec<AccountId32>;
+    } & Struct;
+    readonly isTransfer: boolean;
+    readonly asTransfer: {
+      readonly dest: MultiAddress;
+      readonly value: Compact<u128>;
+    } & Struct;
+    readonly isForceSetBalance: boolean;
+    readonly asForceSetBalance: {
+      readonly who: MultiAddress;
+      readonly newFree: Compact<u128>;
+    } & Struct;
+    readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';
   }
 
-  /** @name PalletBalancesError (218) */
+  /** @name PalletBalancesError (223) */
   interface PalletBalancesError extends Enum {
     readonly isVestingBalance: boolean;
     readonly isLiquidityRestrictions: boolean;
     readonly isInsufficientBalance: boolean;
     readonly isExistentialDeposit: boolean;
-    readonly isKeepAlive: boolean;
+    readonly isExpendability: boolean;
     readonly isExistingVestingSchedule: boolean;
     readonly isDeadAccount: boolean;
     readonly isTooManyReserves: boolean;
-    readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
+    readonly isTooManyHolds: boolean;
+    readonly isTooManyFreezes: boolean;
+    readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';
   }
 
-  /** @name PalletTimestampCall (219) */
+  /** @name PalletTimestampCall (224) */
   interface PalletTimestampCall extends Enum {
     readonly isSet: boolean;
     readonly asSet: {
@@ -2108,14 +2191,14 @@
     readonly type: 'Set';
   }
 
-  /** @name PalletTransactionPaymentReleases (221) */
+  /** @name PalletTransactionPaymentReleases (226) */
   interface PalletTransactionPaymentReleases extends Enum {
     readonly isV1Ancient: boolean;
     readonly isV2: boolean;
     readonly type: 'V1Ancient' | 'V2';
   }
 
-  /** @name PalletTreasuryProposal (222) */
+  /** @name PalletTreasuryProposal (227) */
   interface PalletTreasuryProposal extends Struct {
     readonly proposer: AccountId32;
     readonly value: u128;
@@ -2123,7 +2206,7 @@
     readonly bond: u128;
   }
 
-  /** @name PalletTreasuryCall (224) */
+  /** @name PalletTreasuryCall (229) */
   interface PalletTreasuryCall extends Enum {
     readonly isProposeSpend: boolean;
     readonly asProposeSpend: {
@@ -2150,10 +2233,10 @@
     readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
   }
 
-  /** @name FrameSupportPalletId (226) */
+  /** @name FrameSupportPalletId (231) */
   interface FrameSupportPalletId extends U8aFixed {}
 
-  /** @name PalletTreasuryError (227) */
+  /** @name PalletTreasuryError (232) */
   interface PalletTreasuryError extends Enum {
     readonly isInsufficientProposersBalance: boolean;
     readonly isInvalidIndex: boolean;
@@ -2163,7 +2246,7 @@
     readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
   }
 
-  /** @name PalletSudoCall (228) */
+  /** @name PalletSudoCall (233) */
   interface PalletSudoCall extends Enum {
     readonly isSudo: boolean;
     readonly asSudo: {
@@ -2186,7 +2269,7 @@
     readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
   }
 
-  /** @name OrmlVestingModuleCall (230) */
+  /** @name OrmlVestingModuleCall (235) */
   interface OrmlVestingModuleCall extends Enum {
     readonly isClaim: boolean;
     readonly isVestedTransfer: boolean;
@@ -2206,7 +2289,7 @@
     readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
   }
 
-  /** @name OrmlXtokensModuleCall (232) */
+  /** @name OrmlXtokensModuleCall (237) */
   interface OrmlXtokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -2253,7 +2336,7 @@
     readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
   }
 
-  /** @name XcmVersionedMultiAsset (233) */
+  /** @name XcmVersionedMultiAsset (238) */
   interface XcmVersionedMultiAsset extends Enum {
     readonly isV2: boolean;
     readonly asV2: XcmV2MultiAsset;
@@ -2262,7 +2345,7 @@
     readonly type: 'V2' | 'V3';
   }
 
-  /** @name OrmlTokensModuleCall (236) */
+  /** @name OrmlTokensModuleCall (241) */
   interface OrmlTokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -2299,7 +2382,7 @@
     readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
   }
 
-  /** @name PalletIdentityCall (237) */
+  /** @name PalletIdentityCall (242) */
   interface PalletIdentityCall extends Enum {
     readonly isAddRegistrar: boolean;
     readonly asAddRegistrar: {
@@ -2379,7 +2462,7 @@
     readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';
   }
 
-  /** @name PalletIdentityIdentityInfo (238) */
+  /** @name PalletIdentityIdentityInfo (243) */
   interface PalletIdentityIdentityInfo extends Struct {
     readonly additional: Vec<ITuple<[Data, Data]>>;
     readonly display: Data;
@@ -2392,7 +2475,7 @@
     readonly twitter: Data;
   }
 
-  /** @name PalletIdentityBitFlags (274) */
+  /** @name PalletIdentityBitFlags (279) */
   interface PalletIdentityBitFlags extends Set {
     readonly isDisplay: boolean;
     readonly isLegal: boolean;
@@ -2404,7 +2487,7 @@
     readonly isTwitter: boolean;
   }
 
-  /** @name PalletIdentityIdentityField (275) */
+  /** @name PalletIdentityIdentityField (280) */
   interface PalletIdentityIdentityField extends Enum {
     readonly isDisplay: boolean;
     readonly isLegal: boolean;
@@ -2417,7 +2500,7 @@
     readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
   }
 
-  /** @name PalletIdentityJudgement (276) */
+  /** @name PalletIdentityJudgement (281) */
   interface PalletIdentityJudgement extends Enum {
     readonly isUnknown: boolean;
     readonly isFeePaid: boolean;
@@ -2430,14 +2513,14 @@
     readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
   }
 
-  /** @name PalletIdentityRegistration (279) */
+  /** @name PalletIdentityRegistration (284) */
   interface PalletIdentityRegistration extends Struct {
     readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
     readonly deposit: u128;
     readonly info: PalletIdentityIdentityInfo;
   }
 
-  /** @name PalletPreimageCall (287) */
+  /** @name PalletPreimageCall (292) */
   interface PalletPreimageCall extends Enum {
     readonly isNotePreimage: boolean;
     readonly asNotePreimage: {
@@ -2458,7 +2541,7 @@
     readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
   }
 
-  /** @name CumulusPalletXcmpQueueCall (288) */
+  /** @name CumulusPalletXcmpQueueCall (293) */
   interface CumulusPalletXcmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
@@ -2494,7 +2577,7 @@
     readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
   }
 
-  /** @name PalletXcmCall (289) */
+  /** @name PalletXcmCall (294) */
   interface PalletXcmCall extends Enum {
     readonly isSend: boolean;
     readonly asSend: {
@@ -2553,10 +2636,14 @@
       readonly feeAssetItem: u32;
       readonly weightLimit: XcmV3WeightLimit;
     } & Struct;
-    readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
+    readonly isForceSuspension: boolean;
+    readonly asForceSuspension: {
+      readonly suspended: bool;
+    } & Struct;
+    readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';
   }
 
-  /** @name XcmVersionedXcm (290) */
+  /** @name XcmVersionedXcm (295) */
   interface XcmVersionedXcm extends Enum {
     readonly isV2: boolean;
     readonly asV2: XcmV2Xcm;
@@ -2565,10 +2652,10 @@
     readonly type: 'V2' | 'V3';
   }
 
-  /** @name XcmV2Xcm (291) */
+  /** @name XcmV2Xcm (296) */
   interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
 
-  /** @name XcmV2Instruction (293) */
+  /** @name XcmV2Instruction (298) */
   interface XcmV2Instruction extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
@@ -2688,7 +2775,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
   }
 
-  /** @name XcmV2Response (294) */
+  /** @name XcmV2Response (299) */
   interface XcmV2Response extends Enum {
     readonly isNull: boolean;
     readonly isAssets: boolean;
@@ -2700,7 +2787,7 @@
     readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
   }
 
-  /** @name XcmV2TraitsError (297) */
+  /** @name XcmV2TraitsError (302) */
   interface XcmV2TraitsError extends Enum {
     readonly isOverflow: boolean;
     readonly isUnimplemented: boolean;
@@ -2733,7 +2820,7 @@
     readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
   }
 
-  /** @name XcmV2MultiassetMultiAssetFilter (298) */
+  /** @name XcmV2MultiassetMultiAssetFilter (303) */
   interface XcmV2MultiassetMultiAssetFilter extends Enum {
     readonly isDefinite: boolean;
     readonly asDefinite: XcmV2MultiassetMultiAssets;
@@ -2742,7 +2829,7 @@
     readonly type: 'Definite' | 'Wild';
   }
 
-  /** @name XcmV2MultiassetWildMultiAsset (299) */
+  /** @name XcmV2MultiassetWildMultiAsset (304) */
   interface XcmV2MultiassetWildMultiAsset extends Enum {
     readonly isAll: boolean;
     readonly isAllOf: boolean;
@@ -2753,14 +2840,14 @@
     readonly type: 'All' | 'AllOf';
   }
 
-  /** @name XcmV2MultiassetWildFungibility (300) */
+  /** @name XcmV2MultiassetWildFungibility (305) */
   interface XcmV2MultiassetWildFungibility extends Enum {
     readonly isFungible: boolean;
     readonly isNonFungible: boolean;
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV2WeightLimit (301) */
+  /** @name XcmV2WeightLimit (306) */
   interface XcmV2WeightLimit extends Enum {
     readonly isUnlimited: boolean;
     readonly isLimited: boolean;
@@ -2768,10 +2855,10 @@
     readonly type: 'Unlimited' | 'Limited';
   }
 
-  /** @name CumulusPalletXcmCall (310) */
+  /** @name CumulusPalletXcmCall (315) */
   type CumulusPalletXcmCall = Null;
 
-  /** @name CumulusPalletDmpQueueCall (311) */
+  /** @name CumulusPalletDmpQueueCall (316) */
   interface CumulusPalletDmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
@@ -2781,7 +2868,7 @@
     readonly type: 'ServiceOverweight';
   }
 
-  /** @name PalletInflationCall (312) */
+  /** @name PalletInflationCall (317) */
   interface PalletInflationCall extends Enum {
     readonly isStartInflation: boolean;
     readonly asStartInflation: {
@@ -2790,7 +2877,7 @@
     readonly type: 'StartInflation';
   }
 
-  /** @name PalletUniqueCall (313) */
+  /** @name PalletUniqueCall (318) */
   interface PalletUniqueCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2971,7 +3058,7 @@
     readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
   }
 
-  /** @name UpDataStructsCollectionMode (318) */
+  /** @name UpDataStructsCollectionMode (323) */
   interface UpDataStructsCollectionMode extends Enum {
     readonly isNft: boolean;
     readonly isFungible: boolean;
@@ -2980,7 +3067,7 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateCollectionData (319) */
+  /** @name UpDataStructsCreateCollectionData (324) */
   interface UpDataStructsCreateCollectionData extends Struct {
     readonly mode: UpDataStructsCollectionMode;
     readonly access: Option<UpDataStructsAccessMode>;
@@ -2994,14 +3081,14 @@
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsAccessMode (321) */
+  /** @name UpDataStructsAccessMode (326) */
   interface UpDataStructsAccessMode extends Enum {
     readonly isNormal: boolean;
     readonly isAllowList: boolean;
     readonly type: 'Normal' | 'AllowList';
   }
 
-  /** @name UpDataStructsCollectionLimits (323) */
+  /** @name UpDataStructsCollectionLimits (328) */
   interface UpDataStructsCollectionLimits extends Struct {
     readonly accountTokenOwnershipLimit: Option<u32>;
     readonly sponsoredDataSize: Option<u32>;
@@ -3014,7 +3101,7 @@
     readonly transfersEnabled: Option<bool>;
   }
 
-  /** @name UpDataStructsSponsoringRateLimit (325) */
+  /** @name UpDataStructsSponsoringRateLimit (330) */
   interface UpDataStructsSponsoringRateLimit extends Enum {
     readonly isSponsoringDisabled: boolean;
     readonly isBlocks: boolean;
@@ -3022,43 +3109,43 @@
     readonly type: 'SponsoringDisabled' | 'Blocks';
   }
 
-  /** @name UpDataStructsCollectionPermissions (328) */
+  /** @name UpDataStructsCollectionPermissions (333) */
   interface UpDataStructsCollectionPermissions extends Struct {
     readonly access: Option<UpDataStructsAccessMode>;
     readonly mintMode: Option<bool>;
     readonly nesting: Option<UpDataStructsNestingPermissions>;
   }
 
-  /** @name UpDataStructsNestingPermissions (330) */
+  /** @name UpDataStructsNestingPermissions (335) */
   interface UpDataStructsNestingPermissions extends Struct {
     readonly tokenOwner: bool;
     readonly collectionAdmin: bool;
     readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
   }
 
-  /** @name UpDataStructsOwnerRestrictedSet (332) */
+  /** @name UpDataStructsOwnerRestrictedSet (337) */
   interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
 
-  /** @name UpDataStructsPropertyKeyPermission (337) */
+  /** @name UpDataStructsPropertyKeyPermission (342) */
   interface UpDataStructsPropertyKeyPermission extends Struct {
     readonly key: Bytes;
     readonly permission: UpDataStructsPropertyPermission;
   }
 
-  /** @name UpDataStructsPropertyPermission (338) */
+  /** @name UpDataStructsPropertyPermission (343) */
   interface UpDataStructsPropertyPermission extends Struct {
     readonly mutable: bool;
     readonly collectionAdmin: bool;
     readonly tokenOwner: bool;
   }
 
-  /** @name UpDataStructsProperty (341) */
+  /** @name UpDataStructsProperty (346) */
   interface UpDataStructsProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name UpDataStructsCreateItemData (344) */
+  /** @name UpDataStructsCreateItemData (349) */
   interface UpDataStructsCreateItemData extends Enum {
     readonly isNft: boolean;
     readonly asNft: UpDataStructsCreateNftData;
@@ -3069,23 +3156,23 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateNftData (345) */
+  /** @name UpDataStructsCreateNftData (350) */
   interface UpDataStructsCreateNftData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateFungibleData (346) */
+  /** @name UpDataStructsCreateFungibleData (351) */
   interface UpDataStructsCreateFungibleData extends Struct {
     readonly value: u128;
   }
 
-  /** @name UpDataStructsCreateReFungibleData (347) */
+  /** @name UpDataStructsCreateReFungibleData (352) */
   interface UpDataStructsCreateReFungibleData extends Struct {
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateItemExData (350) */
+  /** @name UpDataStructsCreateItemExData (355) */
   interface UpDataStructsCreateItemExData extends Enum {
     readonly isNft: boolean;
     readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -3098,26 +3185,26 @@
     readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
   }
 
-  /** @name UpDataStructsCreateNftExData (352) */
+  /** @name UpDataStructsCreateNftExData (357) */
   interface UpDataStructsCreateNftExData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsCreateRefungibleExSingleOwner (359) */
+  /** @name UpDataStructsCreateRefungibleExSingleOwner (364) */
   interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
     readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateRefungibleExMultipleOwners (361) */
+  /** @name UpDataStructsCreateRefungibleExMultipleOwners (366) */
   interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
     readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name PalletConfigurationCall (362) */
+  /** @name PalletConfigurationCall (367) */
   interface PalletConfigurationCall extends Enum {
     readonly isSetWeightToFeeCoefficientOverride: boolean;
     readonly asSetWeightToFeeCoefficientOverride: {
@@ -3146,21 +3233,18 @@
     readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
   }
 
-  /** @name PalletConfigurationAppPromotionConfiguration (364) */
+  /** @name PalletConfigurationAppPromotionConfiguration (369) */
   interface PalletConfigurationAppPromotionConfiguration extends Struct {
     readonly recalculationInterval: Option<u32>;
     readonly pendingInterval: Option<u32>;
     readonly intervalIncome: Option<Perbill>;
     readonly maxStakersPerCalculation: Option<u8>;
   }
-
-  /** @name PalletTemplateTransactionPaymentCall (368) */
-  type PalletTemplateTransactionPaymentCall = Null;
 
-  /** @name PalletStructureCall (369) */
+  /** @name PalletStructureCall (373) */
   type PalletStructureCall = Null;
 
-  /** @name PalletAppPromotionCall (370) */
+  /** @name PalletAppPromotionCall (374) */
   interface PalletAppPromotionCall extends Enum {
     readonly isSetAdminAddress: boolean;
     readonly asSetAdminAddress: {
@@ -3198,7 +3282,7 @@
     readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';
   }
 
-  /** @name PalletForeignAssetsModuleCall (371) */
+  /** @name PalletForeignAssetsModuleCall (375) */
   interface PalletForeignAssetsModuleCall extends Enum {
     readonly isRegisterForeignAsset: boolean;
     readonly asRegisterForeignAsset: {
@@ -3215,7 +3299,7 @@
     readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
   }
 
-  /** @name PalletEvmCall (372) */
+  /** @name PalletEvmCall (376) */
   interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -3260,7 +3344,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (378) */
+  /** @name PalletEthereumCall (382) */
   interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -3269,7 +3353,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (379) */
+  /** @name EthereumTransactionTransactionV2 (383) */
   interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3280,7 +3364,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (380) */
+  /** @name EthereumTransactionLegacyTransaction (384) */
   interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -3291,7 +3375,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (381) */
+  /** @name EthereumTransactionTransactionAction (385) */
   interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -3299,14 +3383,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (382) */
+  /** @name EthereumTransactionTransactionSignature (386) */
   interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (384) */
+  /** @name EthereumTransactionEip2930Transaction (388) */
   interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3321,13 +3405,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (386) */
+  /** @name EthereumTransactionAccessListItem (390) */
   interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (387) */
+  /** @name EthereumTransactionEip1559Transaction (391) */
   interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3343,13 +3427,13 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmCoderSubstrateCall (388) */
+  /** @name PalletEvmCoderSubstrateCall (392) */
   interface PalletEvmCoderSubstrateCall extends Enum {
     readonly isEmptyCall: boolean;
     readonly type: 'EmptyCall';
   }
 
-  /** @name PalletEvmContractHelpersCall (389) */
+  /** @name PalletEvmContractHelpersCall (393) */
   interface PalletEvmContractHelpersCall extends Enum {
     readonly isMigrateFromSelfSponsoring: boolean;
     readonly asMigrateFromSelfSponsoring: {
@@ -3358,7 +3442,7 @@
     readonly type: 'MigrateFromSelfSponsoring';
   }
 
-  /** @name PalletEvmMigrationCall (391) */
+  /** @name PalletEvmMigrationCall (395) */
   interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -3386,7 +3470,7 @@
     readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';
   }
 
-  /** @name PalletMaintenanceCall (395) */
+  /** @name PalletMaintenanceCall (399) */
   interface PalletMaintenanceCall extends Enum {
     readonly isEnable: boolean;
     readonly isDisable: boolean;
@@ -3398,7 +3482,7 @@
     readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
   }
 
-  /** @name PalletTestUtilsCall (396) */
+  /** @name PalletTestUtilsCall (400) */
   interface PalletTestUtilsCall extends Enum {
     readonly isEnable: boolean;
     readonly isSetTestValue: boolean;
@@ -3418,13 +3502,13 @@
     readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
   }
 
-  /** @name PalletSudoError (398) */
+  /** @name PalletSudoError (402) */
   interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name OrmlVestingModuleError (400) */
+  /** @name OrmlVestingModuleError (404) */
   interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -3435,7 +3519,7 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name OrmlXtokensModuleError (401) */
+  /** @name OrmlXtokensModuleError (405) */
   interface OrmlXtokensModuleError extends Enum {
     readonly isAssetHasNoReserve: boolean;
     readonly isNotCrossChainTransfer: boolean;
@@ -3459,26 +3543,26 @@
     readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
   }
 
-  /** @name OrmlTokensBalanceLock (404) */
+  /** @name OrmlTokensBalanceLock (408) */
   interface OrmlTokensBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensAccountData (406) */
+  /** @name OrmlTokensAccountData (410) */
   interface OrmlTokensAccountData extends Struct {
     readonly free: u128;
     readonly reserved: u128;
     readonly frozen: u128;
   }
 
-  /** @name OrmlTokensReserveData (408) */
+  /** @name OrmlTokensReserveData (412) */
   interface OrmlTokensReserveData extends Struct {
     readonly id: Null;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensModuleError (410) */
+  /** @name OrmlTokensModuleError (414) */
   interface OrmlTokensModuleError extends Enum {
     readonly isBalanceTooLow: boolean;
     readonly isAmountIntoBalanceFailed: boolean;
@@ -3491,14 +3575,14 @@
     readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name PalletIdentityRegistrarInfo (415) */
+  /** @name PalletIdentityRegistrarInfo (419) */
   interface PalletIdentityRegistrarInfo extends Struct {
     readonly account: AccountId32;
     readonly fee: u128;
     readonly fields: PalletIdentityBitFlags;
   }
 
-  /** @name PalletIdentityError (417) */
+  /** @name PalletIdentityError (421) */
   interface PalletIdentityError extends Enum {
     readonly isTooManySubAccounts: boolean;
     readonly isNotFound: boolean;
@@ -3521,7 +3605,7 @@
     readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
   }
 
-  /** @name PalletPreimageRequestStatus (418) */
+  /** @name PalletPreimageRequestStatus (422) */
   interface PalletPreimageRequestStatus extends Enum {
     readonly isUnrequested: boolean;
     readonly asUnrequested: {
@@ -3537,7 +3621,7 @@
     readonly type: 'Unrequested' | 'Requested';
   }
 
-  /** @name PalletPreimageError (423) */
+  /** @name PalletPreimageError (427) */
   interface PalletPreimageError extends Enum {
     readonly isTooBig: boolean;
     readonly isAlreadyNoted: boolean;
@@ -3548,21 +3632,21 @@
     readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (425) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (429) */
   interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (426) */
+  /** @name CumulusPalletXcmpQueueInboundState (430) */
   interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (429) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (433) */
   interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -3570,7 +3654,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (432) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (436) */
   interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3579,14 +3663,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (433) */
+  /** @name CumulusPalletXcmpQueueOutboundState (437) */
   interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (435) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (439) */
   interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -3596,7 +3680,7 @@
     readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletXcmpQueueError (437) */
+  /** @name CumulusPalletXcmpQueueError (441) */
   interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -3606,7 +3690,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmQueryStatus (438) */
+  /** @name PalletXcmQueryStatus (442) */
   interface PalletXcmQueryStatus extends Enum {
     readonly isPending: boolean;
     readonly asPending: {
@@ -3628,7 +3712,7 @@
     readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
   }
 
-  /** @name XcmVersionedResponse (442) */
+  /** @name XcmVersionedResponse (446) */
   interface XcmVersionedResponse extends Enum {
     readonly isV2: boolean;
     readonly asV2: XcmV2Response;
@@ -3637,7 +3721,7 @@
     readonly type: 'V2' | 'V3';
   }
 
-  /** @name PalletXcmVersionMigrationStage (448) */
+  /** @name PalletXcmVersionMigrationStage (452) */
   interface PalletXcmVersionMigrationStage extends Enum {
     readonly isMigrateSupportedVersion: boolean;
     readonly isMigrateVersionNotifiers: boolean;
@@ -3647,14 +3731,14 @@
     readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
   }
 
-  /** @name XcmVersionedAssetId (451) */
+  /** @name XcmVersionedAssetId (455) */
   interface XcmVersionedAssetId extends Enum {
     readonly isV3: boolean;
     readonly asV3: XcmV3MultiassetAssetId;
     readonly type: 'V3';
   }
 
-  /** @name PalletXcmRemoteLockedFungibleRecord (452) */
+  /** @name PalletXcmRemoteLockedFungibleRecord (456) */
   interface PalletXcmRemoteLockedFungibleRecord extends Struct {
     readonly amount: u128;
     readonly owner: XcmVersionedMultiLocation;
@@ -3662,7 +3746,7 @@
     readonly users: u32;
   }
 
-  /** @name PalletXcmError (456) */
+  /** @name PalletXcmError (460) */
   interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -3687,29 +3771,29 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
   }
 
-  /** @name CumulusPalletXcmError (457) */
+  /** @name CumulusPalletXcmError (461) */
   type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (458) */
+  /** @name CumulusPalletDmpQueueConfigData (462) */
   interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (459) */
+  /** @name CumulusPalletDmpQueuePageIndexData (463) */
   interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (462) */
+  /** @name CumulusPalletDmpQueueError (466) */
   interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (466) */
+  /** @name PalletUniqueError (470) */
   interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isEmptyArgument: boolean;
@@ -3717,13 +3801,13 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
   }
 
-  /** @name PalletConfigurationError (467) */
+  /** @name PalletConfigurationError (471) */
   interface PalletConfigurationError extends Enum {
     readonly isInconsistentConfiguration: boolean;
     readonly type: 'InconsistentConfiguration';
   }
 
-  /** @name UpDataStructsCollection (468) */
+  /** @name UpDataStructsCollection (472) */
   interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3736,7 +3820,7 @@
     readonly flags: U8aFixed;
   }
 
-  /** @name UpDataStructsSponsorshipStateAccountId32 (469) */
+  /** @name UpDataStructsSponsorshipStateAccountId32 (473) */
   interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3746,43 +3830,43 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (470) */
+  /** @name UpDataStructsProperties (474) */
   interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly reserved: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (471) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (475) */
   interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (476) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (480) */
   interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (483) */
+  /** @name UpDataStructsCollectionStats (487) */
   interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name UpDataStructsTokenChild (484) */
+  /** @name UpDataStructsTokenChild (488) */
   interface UpDataStructsTokenChild extends Struct {
     readonly token: u32;
     readonly collection: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (485) */
+  /** @name PhantomTypeUpDataStructs (489) */
   interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
 
-  /** @name UpDataStructsTokenData (487) */
+  /** @name UpDataStructsTokenData (491) */
   interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
     readonly pieces: u128;
   }
 
-  /** @name UpDataStructsRpcCollection (489) */
+  /** @name UpDataStructsRpcCollection (493) */
   interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3798,13 +3882,13 @@
     readonly flags: UpDataStructsRpcCollectionFlags;
   }
 
-  /** @name UpDataStructsRpcCollectionFlags (490) */
+  /** @name UpDataStructsRpcCollectionFlags (494) */
   interface UpDataStructsRpcCollectionFlags extends Struct {
     readonly foreign: bool;
     readonly erc721metadata: bool;
   }
 
-  /** @name UpPovEstimateRpcPovInfo (491) */
+  /** @name UpPovEstimateRpcPovInfo (495) */
   interface UpPovEstimateRpcPovInfo extends Struct {
     readonly proofSize: u64;
     readonly compactProofSize: u64;
@@ -3813,7 +3897,7 @@
     readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
   }
 
-  /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */
+  /** @name SpRuntimeTransactionValidityTransactionValidityError (498) */
   interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
     readonly isInvalid: boolean;
     readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
@@ -3822,7 +3906,7 @@
     readonly type: 'Invalid' | 'Unknown';
   }
 
-  /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */
+  /** @name SpRuntimeTransactionValidityInvalidTransaction (499) */
   interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
     readonly isCall: boolean;
     readonly isPayment: boolean;
@@ -3839,7 +3923,7 @@
     readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
   }
 
-  /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */
+  /** @name SpRuntimeTransactionValidityUnknownTransaction (500) */
   interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
     readonly isCannotLookup: boolean;
     readonly isNoUnsignedValidator: boolean;
@@ -3848,13 +3932,13 @@
     readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
   }
 
-  /** @name UpPovEstimateRpcTrieKeyValue (498) */
+  /** @name UpPovEstimateRpcTrieKeyValue (502) */
   interface UpPovEstimateRpcTrieKeyValue extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PalletCommonError (500) */
+  /** @name PalletCommonError (504) */
   interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -3896,7 +3980,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
   }
 
-  /** @name PalletFungibleError (502) */
+  /** @name PalletFungibleError (506) */
   interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -3908,7 +3992,7 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
   }
 
-  /** @name PalletRefungibleError (507) */
+  /** @name PalletRefungibleError (511) */
   interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -3918,19 +4002,19 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (508) */
+  /** @name PalletNonfungibleItemData (512) */
   interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsPropertyScope (510) */
+  /** @name UpDataStructsPropertyScope (514) */
   interface UpDataStructsPropertyScope extends Enum {
     readonly isNone: boolean;
     readonly isRmrk: boolean;
     readonly type: 'None' | 'Rmrk';
   }
 
-  /** @name PalletNonfungibleError (513) */
+  /** @name PalletNonfungibleError (517) */
   interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3938,7 +4022,7 @@
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (514) */
+  /** @name PalletStructureError (518) */
   interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -3948,7 +4032,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';
   }
 
-  /** @name PalletAppPromotionError (519) */
+  /** @name PalletAppPromotionError (523) */
   interface PalletAppPromotionError extends Enum {
     readonly isAdminNotSet: boolean;
     readonly isNoPermission: boolean;
@@ -3960,7 +4044,7 @@
     readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';
   }
 
-  /** @name PalletForeignAssetsModuleError (520) */
+  /** @name PalletForeignAssetsModuleError (524) */
   interface PalletForeignAssetsModuleError extends Enum {
     readonly isBadLocation: boolean;
     readonly isMultiLocationExisted: boolean;
@@ -3969,7 +4053,7 @@
     readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
   }
 
-  /** @name PalletEvmError (522) */
+  /** @name PalletEvmError (526) */
   interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -3985,7 +4069,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
   }
 
-  /** @name FpRpcTransactionStatus (525) */
+  /** @name FpRpcTransactionStatus (529) */
   interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -3996,10 +4080,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (527) */
+  /** @name EthbloomBloom (531) */
   interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (529) */
+  /** @name EthereumReceiptReceiptV3 (533) */
   interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -4010,7 +4094,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (530) */
+  /** @name EthereumReceiptEip658ReceiptData (534) */
   interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -4018,14 +4102,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (531) */
+  /** @name EthereumBlock (535) */
   interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (532) */
+  /** @name EthereumHeader (536) */
   interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -4044,24 +4128,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (533) */
+  /** @name EthereumTypesHashH64 (537) */
   interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (538) */
+  /** @name PalletEthereumError (542) */
   interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (539) */
+  /** @name PalletEvmCoderSubstrateError (543) */
   interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */
+  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (544) */
   interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -4071,7 +4155,7 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (541) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (545) */
   interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -4079,7 +4163,7 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (547) */
+  /** @name PalletEvmContractHelpersError (551) */
   interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly isNoPendingSponsor: boolean;
@@ -4087,7 +4171,7 @@
     readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
   }
 
-  /** @name PalletEvmMigrationError (548) */
+  /** @name PalletEvmMigrationError (552) */
   interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
@@ -4095,17 +4179,17 @@
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
   }
 
-  /** @name PalletMaintenanceError (549) */
+  /** @name PalletMaintenanceError (553) */
   type PalletMaintenanceError = Null;
 
-  /** @name PalletTestUtilsError (550) */
+  /** @name PalletTestUtilsError (554) */
   interface PalletTestUtilsError extends Enum {
     readonly isTestPalletDisabled: boolean;
     readonly isTriggerRollback: boolean;
     readonly type: 'TestPalletDisabled' | 'TriggerRollback';
   }
 
-  /** @name SpRuntimeMultiSignature (552) */
+  /** @name SpRuntimeMultiSignature (556) */
   interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -4116,43 +4200,43 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (553) */
+  /** @name SpCoreEd25519Signature (557) */
   interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (555) */
+  /** @name SpCoreSr25519Signature (559) */
   interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (556) */
+  /** @name SpCoreEcdsaSignature (560) */
   interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (559) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (563) */
   type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckTxVersion (560) */
+  /** @name FrameSystemExtensionsCheckTxVersion (564) */
   type FrameSystemExtensionsCheckTxVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (561) */
+  /** @name FrameSystemExtensionsCheckGenesis (565) */
   type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (564) */
+  /** @name FrameSystemExtensionsCheckNonce (568) */
   interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (565) */
+  /** @name FrameSystemExtensionsCheckWeight (569) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */
+  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (570) */
   type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
 
-  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (567) */
+  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (571) */
   type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (572) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (569) */
+  /** @name OpalRuntimeRuntime (573) */
   type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (570) */
+  /** @name PalletEthereumFakeTransactionFinalizer (574) */
   type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module