git.delta.rocks / unique-network / refs/commits / 9d0f344e127b

difftreelog

fixup generate ts types

PraetorP2022-08-26parent: #a06730e.patch.diff
in: master

11 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5306,6 +5306,7 @@
  "pallet-balances",
  "pallet-common",
  "pallet-evm",
+ "pallet-evm-contract-helpers",
  "pallet-randomness-collective-flip",
  "pallet-timestamp",
  "pallet-unique",
modifiedpallets/app-promotion/Cargo.tomldiffbeforeafterboth
--- a/pallets/app-promotion/Cargo.toml
+++ b/pallets/app-promotion/Cargo.toml
@@ -118,6 +118,9 @@
 default-features = false
 path =  "../unique"
 
+[dependencies.pallet-evm-contract-helpers]
+default-features = false
+path =  "../evm-contract-helpers"
 ################################################################################
 
 [dependencies]
modifiedpallets/app-promotion/src/types.rsdiffbeforeafterboth
--- a/pallets/app-promotion/src/types.rs
+++ b/pallets/app-promotion/src/types.rs
@@ -2,7 +2,7 @@
 use frame_support::{
 	traits::LockableCurrency, WeakBoundedVec, Parameter, dispatch::DispatchResult, ensure,
 };
-use frame_system::Config;
+
 use pallet_balances::{BalanceLock, Config as BalancesConfig, Pallet as PalletBalances};
 use pallet_common::CollectionHandle;
 use pallet_unique::{Event as UniqueEvent, Error as UniqueError};
@@ -10,6 +10,7 @@
 use up_data_structs::{CollectionId, SponsorshipState};
 use sp_std::borrow::ToOwned;
 
+
 pub trait ExtendedLockableCurrency<AccountId: Parameter>: LockableCurrency<AccountId> {
 	fn locks<KArg>(who: KArg) -> WeakBoundedVec<BalanceLock<Self::Balance>, Self::MaxLocks>
 	where
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -265,7 +265,11 @@
     };
     evmContractHelpers: {
       /**
-       * This method is only executable by owner
+       * No pending sponsor for contract.
+       **/
+      NoPendingSponsor: AugmentedError<ApiType>;
+      /**
+       * This method is only executable by owner.
        **/
       NoPermission: AugmentedError<ApiType>;
       /**
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -9,7 +9,7 @@
 import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } 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, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsTokenChild } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -194,12 +194,66 @@
       [key: string]: QueryableStorageEntry<ApiType>;
     };
     evmContractHelpers: {
+      /**
+       * Storage for users that allowed for sponsorship.
+       * 
+       * ### Usage
+       * Prefer to delete record from storage if user no more allowed for sponsorship.
+       * 
+       * * **Key1** - contract address.
+       * * **Key2** - user that allowed for sponsorship.
+       * * **Value** - allowance for sponsorship.
+       **/
       allowlist: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H160 | string | Uint8Array) => Observable<bool>, [H160, H160]> & QueryableStorageEntry<ApiType, [H160, H160]>;
+      /**
+       * Storege for contracts with [`Allowlisted`](SponsoringModeT::Allowlisted) sponsoring mode.
+       * 
+       * ### Usage
+       * Prefer to delete collection from storage if mode chaged to non `Allowlisted`, than set **Value** to **false**.
+       * 
+       * * **Key** - contract address.
+       * * **Value** - is contract in [`Allowlisted`](SponsoringModeT::Allowlisted) mode.
+       **/
       allowlistEnabled: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
+      /**
+       * Store owner for contract.
+       * 
+       * * **Key** - contract address.
+       * * **Value** - owner for contract.
+       **/
       owner: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<H160>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
       selfSponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
+      /**
+       * Storage for last sponsored block.
+       * 
+       * * **Key1** - contract address.
+       * * **Key2** - sponsored user address.
+       * * **Value** - last sponsored block number.
+       **/
       sponsorBasket: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H160 | string | Uint8Array) => Observable<Option<u32>>, [H160, H160]> & QueryableStorageEntry<ApiType, [H160, H160]>;
+      /**
+       * Store for contract sponsorship state.
+       * 
+       * * **Key** - contract address.
+       * * **Value** - sponsorship state.
+       **/
+      sponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<UpDataStructsSponsorshipStateBasicCrossAccountIdRepr>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
+      /**
+       * Store for sponsoring mode.
+       * 
+       * ### Usage
+       * Prefer to delete collection from storage if mode chaged to [`Disabled`](SponsoringModeT::Disabled).
+       * 
+       * * **Key** - contract address.
+       * * **Value** - [`sponsoring mode`](SponsoringModeT).
+       **/
       sponsoringMode: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<Option<PalletEvmContractHelpersSponsoringModeT>>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
+      /**
+       * Storage for sponsoring rate limit in blocks.
+       * 
+       * * **Key** - contract address.
+       * * **Value** - amount of sponsored blocks.
+       **/
       sponsoringRateLimit: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<u32>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
       /**
        * Generic query
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, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, 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, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, 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, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, 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, 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, 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, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import 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, 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, 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';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, 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, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';57import 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';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import 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';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import 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';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import 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';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import 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';7273declare module '@polkadot/types/types/registry' {74  interface InterfaceTypes {75    AbridgedCandidateReceipt: AbridgedCandidateReceipt;76    AbridgedHostConfiguration: AbridgedHostConfiguration;77    AbridgedHrmpChannel: AbridgedHrmpChannel;78    AccountData: AccountData;79    AccountId: AccountId;80    AccountId20: AccountId20;81    AccountId32: AccountId32;82    AccountIdOf: AccountIdOf;83    AccountIndex: AccountIndex;84    AccountInfo: AccountInfo;85    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;86    AccountInfoWithProviders: AccountInfoWithProviders;87    AccountInfoWithRefCount: AccountInfoWithRefCount;88    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;89    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;90    AccountStatus: AccountStatus;91    AccountValidity: AccountValidity;92    AccountVote: AccountVote;93    AccountVoteSplit: AccountVoteSplit;94    AccountVoteStandard: AccountVoteStandard;95    ActiveEraInfo: ActiveEraInfo;96    ActiveGilt: ActiveGilt;97    ActiveGiltsTotal: ActiveGiltsTotal;98    ActiveIndex: ActiveIndex;99    ActiveRecovery: ActiveRecovery;100    Address: Address;101    AliveContractInfo: AliveContractInfo;102    AllowedSlots: AllowedSlots;103    AnySignature: AnySignature;104    ApiId: ApiId;105    ApplyExtrinsicResult: ApplyExtrinsicResult;106    ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;107    ApprovalFlag: ApprovalFlag;108    Approvals: Approvals;109    ArithmeticError: ArithmeticError;110    AssetApproval: AssetApproval;111    AssetApprovalKey: AssetApprovalKey;112    AssetBalance: AssetBalance;113    AssetDestroyWitness: AssetDestroyWitness;114    AssetDetails: AssetDetails;115    AssetId: AssetId;116    AssetInstance: AssetInstance;117    AssetInstanceV0: AssetInstanceV0;118    AssetInstanceV1: AssetInstanceV1;119    AssetInstanceV2: AssetInstanceV2;120    AssetMetadata: AssetMetadata;121    AssetOptions: AssetOptions;122    AssignmentId: AssignmentId;123    AssignmentKind: AssignmentKind;124    AttestedCandidate: AttestedCandidate;125    AuctionIndex: AuctionIndex;126    AuthIndex: AuthIndex;127    AuthorityDiscoveryId: AuthorityDiscoveryId;128    AuthorityId: AuthorityId;129    AuthorityIndex: AuthorityIndex;130    AuthorityList: AuthorityList;131    AuthoritySet: AuthoritySet;132    AuthoritySetChange: AuthoritySetChange;133    AuthoritySetChanges: AuthoritySetChanges;134    AuthoritySignature: AuthoritySignature;135    AuthorityWeight: AuthorityWeight;136    AvailabilityBitfield: AvailabilityBitfield;137    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;138    BabeAuthorityWeight: BabeAuthorityWeight;139    BabeBlockWeight: BabeBlockWeight;140    BabeEpochConfiguration: BabeEpochConfiguration;141    BabeEquivocationProof: BabeEquivocationProof;142    BabeGenesisConfiguration: BabeGenesisConfiguration;143    BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;144    BabeWeight: BabeWeight;145    BackedCandidate: BackedCandidate;146    Balance: Balance;147    BalanceLock: BalanceLock;148    BalanceLockTo212: BalanceLockTo212;149    BalanceOf: BalanceOf;150    BalanceStatus: BalanceStatus;151    BeefyAuthoritySet: BeefyAuthoritySet;152    BeefyCommitment: BeefyCommitment;153    BeefyId: BeefyId;154    BeefyKey: BeefyKey;155    BeefyNextAuthoritySet: BeefyNextAuthoritySet;156    BeefyPayload: BeefyPayload;157    BeefyPayloadId: BeefyPayloadId;158    BeefySignedCommitment: BeefySignedCommitment;159    BenchmarkBatch: BenchmarkBatch;160    BenchmarkConfig: BenchmarkConfig;161    BenchmarkList: BenchmarkList;162    BenchmarkMetadata: BenchmarkMetadata;163    BenchmarkParameter: BenchmarkParameter;164    BenchmarkResult: BenchmarkResult;165    Bid: Bid;166    Bidder: Bidder;167    BidKind: BidKind;168    BitVec: BitVec;169    Block: Block;170    BlockAttestations: BlockAttestations;171    BlockHash: BlockHash;172    BlockLength: BlockLength;173    BlockNumber: BlockNumber;174    BlockNumberFor: BlockNumberFor;175    BlockNumberOf: BlockNumberOf;176    BlockStats: BlockStats;177    BlockTrace: BlockTrace;178    BlockTraceEvent: BlockTraceEvent;179    BlockTraceEventData: BlockTraceEventData;180    BlockTraceSpan: BlockTraceSpan;181    BlockV0: BlockV0;182    BlockV1: BlockV1;183    BlockV2: BlockV2;184    BlockWeights: BlockWeights;185    BodyId: BodyId;186    BodyPart: BodyPart;187    bool: bool;188    Bool: Bool;189    Bounty: Bounty;190    BountyIndex: BountyIndex;191    BountyStatus: BountyStatus;192    BountyStatusActive: BountyStatusActive;193    BountyStatusCuratorProposed: BountyStatusCuratorProposed;194    BountyStatusPendingPayout: BountyStatusPendingPayout;195    BridgedBlockHash: BridgedBlockHash;196    BridgedBlockNumber: BridgedBlockNumber;197    BridgedHeader: BridgedHeader;198    BridgeMessageId: BridgeMessageId;199    BufferedSessionChange: BufferedSessionChange;200    Bytes: Bytes;201    Call: Call;202    CallHash: CallHash;203    CallHashOf: CallHashOf;204    CallIndex: CallIndex;205    CallOrigin: CallOrigin;206    CandidateCommitments: CandidateCommitments;207    CandidateDescriptor: CandidateDescriptor;208    CandidateEvent: CandidateEvent;209    CandidateHash: CandidateHash;210    CandidateInfo: CandidateInfo;211    CandidatePendingAvailability: CandidatePendingAvailability;212    CandidateReceipt: CandidateReceipt;213    ChainId: ChainId;214    ChainProperties: ChainProperties;215    ChainType: ChainType;216    ChangesTrieConfiguration: ChangesTrieConfiguration;217    ChangesTrieSignal: ChangesTrieSignal;218    CheckInherentsResult: CheckInherentsResult;219    ClassDetails: ClassDetails;220    ClassId: ClassId;221    ClassMetadata: ClassMetadata;222    CodecHash: CodecHash;223    CodeHash: CodeHash;224    CodeSource: CodeSource;225    CodeUploadRequest: CodeUploadRequest;226    CodeUploadResult: CodeUploadResult;227    CodeUploadResultValue: CodeUploadResultValue;228    CollationInfo: CollationInfo;229    CollationInfoV1: CollationInfoV1;230    CollatorId: CollatorId;231    CollatorSignature: CollatorSignature;232    CollectiveOrigin: CollectiveOrigin;233    CommittedCandidateReceipt: CommittedCandidateReceipt;234    CompactAssignments: CompactAssignments;235    CompactAssignmentsTo257: CompactAssignmentsTo257;236    CompactAssignmentsTo265: CompactAssignmentsTo265;237    CompactAssignmentsWith16: CompactAssignmentsWith16;238    CompactAssignmentsWith24: CompactAssignmentsWith24;239    CompactScore: CompactScore;240    CompactScoreCompact: CompactScoreCompact;241    ConfigData: ConfigData;242    Consensus: Consensus;243    ConsensusEngineId: ConsensusEngineId;244    ConsumedWeight: ConsumedWeight;245    ContractCallFlags: ContractCallFlags;246    ContractCallRequest: ContractCallRequest;247    ContractConstructorSpecLatest: ContractConstructorSpecLatest;248    ContractConstructorSpecV0: ContractConstructorSpecV0;249    ContractConstructorSpecV1: ContractConstructorSpecV1;250    ContractConstructorSpecV2: ContractConstructorSpecV2;251    ContractConstructorSpecV3: ContractConstructorSpecV3;252    ContractContractSpecV0: ContractContractSpecV0;253    ContractContractSpecV1: ContractContractSpecV1;254    ContractContractSpecV2: ContractContractSpecV2;255    ContractContractSpecV3: ContractContractSpecV3;256    ContractCryptoHasher: ContractCryptoHasher;257    ContractDiscriminant: ContractDiscriminant;258    ContractDisplayName: ContractDisplayName;259    ContractEventParamSpecLatest: ContractEventParamSpecLatest;260    ContractEventParamSpecV0: ContractEventParamSpecV0;261    ContractEventParamSpecV2: ContractEventParamSpecV2;262    ContractEventSpecLatest: ContractEventSpecLatest;263    ContractEventSpecV0: ContractEventSpecV0;264    ContractEventSpecV1: ContractEventSpecV1;265    ContractEventSpecV2: ContractEventSpecV2;266    ContractExecResult: ContractExecResult;267    ContractExecResultOk: ContractExecResultOk;268    ContractExecResultResult: ContractExecResultResult;269    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;270    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;271    ContractExecResultTo255: ContractExecResultTo255;272    ContractExecResultTo260: ContractExecResultTo260;273    ContractExecResultTo267: ContractExecResultTo267;274    ContractInfo: ContractInfo;275    ContractInstantiateResult: ContractInstantiateResult;276    ContractInstantiateResultTo267: ContractInstantiateResultTo267;277    ContractInstantiateResultTo299: ContractInstantiateResultTo299;278    ContractLayoutArray: ContractLayoutArray;279    ContractLayoutCell: ContractLayoutCell;280    ContractLayoutEnum: ContractLayoutEnum;281    ContractLayoutHash: ContractLayoutHash;282    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;283    ContractLayoutKey: ContractLayoutKey;284    ContractLayoutStruct: ContractLayoutStruct;285    ContractLayoutStructField: ContractLayoutStructField;286    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;287    ContractMessageParamSpecV0: ContractMessageParamSpecV0;288    ContractMessageParamSpecV2: ContractMessageParamSpecV2;289    ContractMessageSpecLatest: ContractMessageSpecLatest;290    ContractMessageSpecV0: ContractMessageSpecV0;291    ContractMessageSpecV1: ContractMessageSpecV1;292    ContractMessageSpecV2: ContractMessageSpecV2;293    ContractMetadata: ContractMetadata;294    ContractMetadataLatest: ContractMetadataLatest;295    ContractMetadataV0: ContractMetadataV0;296    ContractMetadataV1: ContractMetadataV1;297    ContractMetadataV2: ContractMetadataV2;298    ContractMetadataV3: ContractMetadataV3;299    ContractProject: ContractProject;300    ContractProjectContract: ContractProjectContract;301    ContractProjectInfo: ContractProjectInfo;302    ContractProjectSource: ContractProjectSource;303    ContractProjectV0: ContractProjectV0;304    ContractReturnFlags: ContractReturnFlags;305    ContractSelector: ContractSelector;306    ContractStorageKey: ContractStorageKey;307    ContractStorageLayout: ContractStorageLayout;308    ContractTypeSpec: ContractTypeSpec;309    Conviction: Conviction;310    CoreAssignment: CoreAssignment;311    CoreIndex: CoreIndex;312    CoreOccupied: CoreOccupied;313    CoreState: CoreState;314    CrateVersion: CrateVersion;315    CreatedBlock: CreatedBlock;316    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;317    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;318    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;319    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;320    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;321    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;322    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;323    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;324    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;325    CumulusPalletXcmCall: CumulusPalletXcmCall;326    CumulusPalletXcmError: CumulusPalletXcmError;327    CumulusPalletXcmEvent: CumulusPalletXcmEvent;328    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;329    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;330    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;331    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;332    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;333    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;334    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;335    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;336    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;337    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;338    Data: Data;339    DeferredOffenceOf: DeferredOffenceOf;340    DefunctVoter: DefunctVoter;341    DelayKind: DelayKind;342    DelayKindBest: DelayKindBest;343    Delegations: Delegations;344    DeletedContract: DeletedContract;345    DeliveredMessages: DeliveredMessages;346    DepositBalance: DepositBalance;347    DepositBalanceOf: DepositBalanceOf;348    DestroyWitness: DestroyWitness;349    Digest: Digest;350    DigestItem: DigestItem;351    DigestOf: DigestOf;352    DispatchClass: DispatchClass;353    DispatchError: DispatchError;354    DispatchErrorModule: DispatchErrorModule;355    DispatchErrorModulePre6: DispatchErrorModulePre6;356    DispatchErrorModuleU8: DispatchErrorModuleU8;357    DispatchErrorModuleU8a: DispatchErrorModuleU8a;358    DispatchErrorPre6: DispatchErrorPre6;359    DispatchErrorPre6First: DispatchErrorPre6First;360    DispatchErrorTo198: DispatchErrorTo198;361    DispatchFeePayment: DispatchFeePayment;362    DispatchInfo: DispatchInfo;363    DispatchInfoTo190: DispatchInfoTo190;364    DispatchInfoTo244: DispatchInfoTo244;365    DispatchOutcome: DispatchOutcome;366    DispatchOutcomePre6: DispatchOutcomePre6;367    DispatchResult: DispatchResult;368    DispatchResultOf: DispatchResultOf;369    DispatchResultTo198: DispatchResultTo198;370    DisputeLocation: DisputeLocation;371    DisputeResult: DisputeResult;372    DisputeState: DisputeState;373    DisputeStatement: DisputeStatement;374    DisputeStatementSet: DisputeStatementSet;375    DoubleEncodedCall: DoubleEncodedCall;376    DoubleVoteReport: DoubleVoteReport;377    DownwardMessage: DownwardMessage;378    EcdsaSignature: EcdsaSignature;379    Ed25519Signature: Ed25519Signature;380    EIP1559Transaction: EIP1559Transaction;381    EIP2930Transaction: EIP2930Transaction;382    ElectionCompute: ElectionCompute;383    ElectionPhase: ElectionPhase;384    ElectionResult: ElectionResult;385    ElectionScore: ElectionScore;386    ElectionSize: ElectionSize;387    ElectionStatus: ElectionStatus;388    EncodedFinalityProofs: EncodedFinalityProofs;389    EncodedJustification: EncodedJustification;390    Epoch: Epoch;391    EpochAuthorship: EpochAuthorship;392    Era: Era;393    EraIndex: EraIndex;394    EraPoints: EraPoints;395    EraRewardPoints: EraRewardPoints;396    EraRewards: EraRewards;397    ErrorMetadataLatest: ErrorMetadataLatest;398    ErrorMetadataV10: ErrorMetadataV10;399    ErrorMetadataV11: ErrorMetadataV11;400    ErrorMetadataV12: ErrorMetadataV12;401    ErrorMetadataV13: ErrorMetadataV13;402    ErrorMetadataV14: ErrorMetadataV14;403    ErrorMetadataV9: ErrorMetadataV9;404    EthAccessList: EthAccessList;405    EthAccessListItem: EthAccessListItem;406    EthAccount: EthAccount;407    EthAddress: EthAddress;408    EthBlock: EthBlock;409    EthBloom: EthBloom;410    EthbloomBloom: EthbloomBloom;411    EthCallRequest: EthCallRequest;412    EthereumAccountId: EthereumAccountId;413    EthereumAddress: EthereumAddress;414    EthereumBlock: EthereumBlock;415    EthereumHeader: EthereumHeader;416    EthereumLog: EthereumLog;417    EthereumLookupSource: EthereumLookupSource;418    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;419    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;420    EthereumSignature: EthereumSignature;421    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;422    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;423    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;424    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;425    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;426    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;427    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;428    EthereumTypesHashH64: EthereumTypesHashH64;429    EthFeeHistory: EthFeeHistory;430    EthFilter: EthFilter;431    EthFilterAddress: EthFilterAddress;432    EthFilterChanges: EthFilterChanges;433    EthFilterTopic: EthFilterTopic;434    EthFilterTopicEntry: EthFilterTopicEntry;435    EthFilterTopicInner: EthFilterTopicInner;436    EthHeader: EthHeader;437    EthLog: EthLog;438    EthReceipt: EthReceipt;439    EthReceiptV0: EthReceiptV0;440    EthReceiptV3: EthReceiptV3;441    EthRichBlock: EthRichBlock;442    EthRichHeader: EthRichHeader;443    EthStorageProof: EthStorageProof;444    EthSubKind: EthSubKind;445    EthSubParams: EthSubParams;446    EthSubResult: EthSubResult;447    EthSyncInfo: EthSyncInfo;448    EthSyncStatus: EthSyncStatus;449    EthTransaction: EthTransaction;450    EthTransactionAction: EthTransactionAction;451    EthTransactionCondition: EthTransactionCondition;452    EthTransactionRequest: EthTransactionRequest;453    EthTransactionSignature: EthTransactionSignature;454    EthTransactionStatus: EthTransactionStatus;455    EthWork: EthWork;456    Event: Event;457    EventId: EventId;458    EventIndex: EventIndex;459    EventMetadataLatest: EventMetadataLatest;460    EventMetadataV10: EventMetadataV10;461    EventMetadataV11: EventMetadataV11;462    EventMetadataV12: EventMetadataV12;463    EventMetadataV13: EventMetadataV13;464    EventMetadataV14: EventMetadataV14;465    EventMetadataV9: EventMetadataV9;466    EventRecord: EventRecord;467    EvmAccount: EvmAccount;468    EvmCallInfo: EvmCallInfo;469    EvmCoreErrorExitError: EvmCoreErrorExitError;470    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;471    EvmCoreErrorExitReason: EvmCoreErrorExitReason;472    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;473    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;474    EvmCreateInfo: EvmCreateInfo;475    EvmLog: EvmLog;476    EvmVicinity: EvmVicinity;477    ExecReturnValue: ExecReturnValue;478    ExitError: ExitError;479    ExitFatal: ExitFatal;480    ExitReason: ExitReason;481    ExitRevert: ExitRevert;482    ExitSucceed: ExitSucceed;483    ExplicitDisputeStatement: ExplicitDisputeStatement;484    Exposure: Exposure;485    ExtendedBalance: ExtendedBalance;486    Extrinsic: Extrinsic;487    ExtrinsicEra: ExtrinsicEra;488    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;489    ExtrinsicMetadataV11: ExtrinsicMetadataV11;490    ExtrinsicMetadataV12: ExtrinsicMetadataV12;491    ExtrinsicMetadataV13: ExtrinsicMetadataV13;492    ExtrinsicMetadataV14: ExtrinsicMetadataV14;493    ExtrinsicOrHash: ExtrinsicOrHash;494    ExtrinsicPayload: ExtrinsicPayload;495    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;496    ExtrinsicPayloadV4: ExtrinsicPayloadV4;497    ExtrinsicSignature: ExtrinsicSignature;498    ExtrinsicSignatureV4: ExtrinsicSignatureV4;499    ExtrinsicStatus: ExtrinsicStatus;500    ExtrinsicsWeight: ExtrinsicsWeight;501    ExtrinsicUnknown: ExtrinsicUnknown;502    ExtrinsicV4: ExtrinsicV4;503    f32: f32;504    F32: F32;505    f64: f64;506    F64: F64;507    FeeDetails: FeeDetails;508    Fixed128: Fixed128;509    Fixed64: Fixed64;510    FixedI128: FixedI128;511    FixedI64: FixedI64;512    FixedU128: FixedU128;513    FixedU64: FixedU64;514    Forcing: Forcing;515    ForkTreePendingChange: ForkTreePendingChange;516    ForkTreePendingChangeNode: ForkTreePendingChangeNode;517    FpRpcTransactionStatus: FpRpcTransactionStatus;518    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;519    FrameSupportPalletId: FrameSupportPalletId;520    FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;521    FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;522    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;523    FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;524    FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;525    FrameSupportWeightsPays: FrameSupportWeightsPays;526    FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;527    FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;528    FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;529    FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;530    FrameSystemAccountInfo: FrameSystemAccountInfo;531    FrameSystemCall: FrameSystemCall;532    FrameSystemError: FrameSystemError;533    FrameSystemEvent: FrameSystemEvent;534    FrameSystemEventRecord: FrameSystemEventRecord;535    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;539    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;540    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;541    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;542    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;543    FrameSystemPhase: FrameSystemPhase;544    FullIdentification: FullIdentification;545    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;546    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;547    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;548    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;549    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;550    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;551    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;552    FunctionMetadataLatest: FunctionMetadataLatest;553    FunctionMetadataV10: FunctionMetadataV10;554    FunctionMetadataV11: FunctionMetadataV11;555    FunctionMetadataV12: FunctionMetadataV12;556    FunctionMetadataV13: FunctionMetadataV13;557    FunctionMetadataV14: FunctionMetadataV14;558    FunctionMetadataV9: FunctionMetadataV9;559    FundIndex: FundIndex;560    FundInfo: FundInfo;561    Fungibility: Fungibility;562    FungibilityV0: FungibilityV0;563    FungibilityV1: FungibilityV1;564    FungibilityV2: FungibilityV2;565    Gas: Gas;566    GiltBid: GiltBid;567    GlobalValidationData: GlobalValidationData;568    GlobalValidationSchedule: GlobalValidationSchedule;569    GrandpaCommit: GrandpaCommit;570    GrandpaEquivocation: GrandpaEquivocation;571    GrandpaEquivocationProof: GrandpaEquivocationProof;572    GrandpaEquivocationValue: GrandpaEquivocationValue;573    GrandpaJustification: GrandpaJustification;574    GrandpaPrecommit: GrandpaPrecommit;575    GrandpaPrevote: GrandpaPrevote;576    GrandpaSignedPrecommit: GrandpaSignedPrecommit;577    GroupIndex: GroupIndex;578    GroupRotationInfo: GroupRotationInfo;579    H1024: H1024;580    H128: H128;581    H160: H160;582    H2048: H2048;583    H256: H256;584    H32: H32;585    H512: H512;586    H64: H64;587    Hash: Hash;588    HeadData: HeadData;589    Header: Header;590    HeaderPartial: HeaderPartial;591    Health: Health;592    Heartbeat: Heartbeat;593    HeartbeatTo244: HeartbeatTo244;594    HostConfiguration: HostConfiguration;595    HostFnWeights: HostFnWeights;596    HostFnWeightsTo264: HostFnWeightsTo264;597    HrmpChannel: HrmpChannel;598    HrmpChannelId: HrmpChannelId;599    HrmpOpenChannelRequest: HrmpOpenChannelRequest;600    i128: i128;601    I128: I128;602    i16: i16;603    I16: I16;604    i256: i256;605    I256: I256;606    i32: i32;607    I32: I32;608    I32F32: I32F32;609    i64: i64;610    I64: I64;611    i8: i8;612    I8: I8;613    IdentificationTuple: IdentificationTuple;614    IdentityFields: IdentityFields;615    IdentityInfo: IdentityInfo;616    IdentityInfoAdditional: IdentityInfoAdditional;617    IdentityInfoTo198: IdentityInfoTo198;618    IdentityJudgement: IdentityJudgement;619    ImmortalEra: ImmortalEra;620    ImportedAux: ImportedAux;621    InboundDownwardMessage: InboundDownwardMessage;622    InboundHrmpMessage: InboundHrmpMessage;623    InboundHrmpMessages: InboundHrmpMessages;624    InboundLaneData: InboundLaneData;625    InboundRelayer: InboundRelayer;626    InboundStatus: InboundStatus;627    IncludedBlocks: IncludedBlocks;628    InclusionFee: InclusionFee;629    IncomingParachain: IncomingParachain;630    IncomingParachainDeploy: IncomingParachainDeploy;631    IncomingParachainFixed: IncomingParachainFixed;632    Index: Index;633    IndicesLookupSource: IndicesLookupSource;634    IndividualExposure: IndividualExposure;635    InherentData: InherentData;636    InherentIdentifier: InherentIdentifier;637    InitializationData: InitializationData;638    InstanceDetails: InstanceDetails;639    InstanceId: InstanceId;640    InstanceMetadata: InstanceMetadata;641    InstantiateRequest: InstantiateRequest;642    InstantiateRequestV1: InstantiateRequestV1;643    InstantiateRequestV2: InstantiateRequestV2;644    InstantiateReturnValue: InstantiateReturnValue;645    InstantiateReturnValueOk: InstantiateReturnValueOk;646    InstantiateReturnValueTo267: InstantiateReturnValueTo267;647    InstructionV2: InstructionV2;648    InstructionWeights: InstructionWeights;649    InteriorMultiLocation: InteriorMultiLocation;650    InvalidDisputeStatementKind: InvalidDisputeStatementKind;651    InvalidTransaction: InvalidTransaction;652    Json: Json;653    Junction: Junction;654    Junctions: Junctions;655    JunctionsV1: JunctionsV1;656    JunctionsV2: JunctionsV2;657    JunctionV0: JunctionV0;658    JunctionV1: JunctionV1;659    JunctionV2: JunctionV2;660    Justification: Justification;661    JustificationNotification: JustificationNotification;662    Justifications: Justifications;663    Key: Key;664    KeyOwnerProof: KeyOwnerProof;665    Keys: Keys;666    KeyType: KeyType;667    KeyTypeId: KeyTypeId;668    KeyValue: KeyValue;669    KeyValueOption: KeyValueOption;670    Kind: Kind;671    LaneId: LaneId;672    LastContribution: LastContribution;673    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;674    LeasePeriod: LeasePeriod;675    LeasePeriodOf: LeasePeriodOf;676    LegacyTransaction: LegacyTransaction;677    Limits: Limits;678    LimitsTo264: LimitsTo264;679    LocalValidationData: LocalValidationData;680    LockIdentifier: LockIdentifier;681    LookupSource: LookupSource;682    LookupTarget: LookupTarget;683    LotteryConfig: LotteryConfig;684    MaybeRandomness: MaybeRandomness;685    MaybeVrf: MaybeVrf;686    MemberCount: MemberCount;687    MembershipProof: MembershipProof;688    MessageData: MessageData;689    MessageId: MessageId;690    MessageIngestionType: MessageIngestionType;691    MessageKey: MessageKey;692    MessageNonce: MessageNonce;693    MessageQueueChain: MessageQueueChain;694    MessagesDeliveryProofOf: MessagesDeliveryProofOf;695    MessagesProofOf: MessagesProofOf;696    MessagingStateSnapshot: MessagingStateSnapshot;697    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;698    MetadataAll: MetadataAll;699    MetadataLatest: MetadataLatest;700    MetadataV10: MetadataV10;701    MetadataV11: MetadataV11;702    MetadataV12: MetadataV12;703    MetadataV13: MetadataV13;704    MetadataV14: MetadataV14;705    MetadataV9: MetadataV9;706    MigrationStatusResult: MigrationStatusResult;707    MmrBatchProof: MmrBatchProof;708    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;709    MmrError: MmrError;710    MmrLeafBatchProof: MmrLeafBatchProof;711    MmrLeafIndex: MmrLeafIndex;712    MmrLeafProof: MmrLeafProof;713    MmrNodeIndex: MmrNodeIndex;714    MmrProof: MmrProof;715    MmrRootHash: MmrRootHash;716    ModuleConstantMetadataV10: ModuleConstantMetadataV10;717    ModuleConstantMetadataV11: ModuleConstantMetadataV11;718    ModuleConstantMetadataV12: ModuleConstantMetadataV12;719    ModuleConstantMetadataV13: ModuleConstantMetadataV13;720    ModuleConstantMetadataV9: ModuleConstantMetadataV9;721    ModuleId: ModuleId;722    ModuleMetadataV10: ModuleMetadataV10;723    ModuleMetadataV11: ModuleMetadataV11;724    ModuleMetadataV12: ModuleMetadataV12;725    ModuleMetadataV13: ModuleMetadataV13;726    ModuleMetadataV9: ModuleMetadataV9;727    Moment: Moment;728    MomentOf: MomentOf;729    MoreAttestations: MoreAttestations;730    MortalEra: MortalEra;731    MultiAddress: MultiAddress;732    MultiAsset: MultiAsset;733    MultiAssetFilter: MultiAssetFilter;734    MultiAssetFilterV1: MultiAssetFilterV1;735    MultiAssetFilterV2: MultiAssetFilterV2;736    MultiAssets: MultiAssets;737    MultiAssetsV1: MultiAssetsV1;738    MultiAssetsV2: MultiAssetsV2;739    MultiAssetV0: MultiAssetV0;740    MultiAssetV1: MultiAssetV1;741    MultiAssetV2: MultiAssetV2;742    MultiDisputeStatementSet: MultiDisputeStatementSet;743    MultiLocation: MultiLocation;744    MultiLocationV0: MultiLocationV0;745    MultiLocationV1: MultiLocationV1;746    MultiLocationV2: MultiLocationV2;747    Multiplier: Multiplier;748    Multisig: Multisig;749    MultiSignature: MultiSignature;750    MultiSigner: MultiSigner;751    NetworkId: NetworkId;752    NetworkState: NetworkState;753    NetworkStatePeerset: NetworkStatePeerset;754    NetworkStatePeersetInfo: NetworkStatePeersetInfo;755    NewBidder: NewBidder;756    NextAuthority: NextAuthority;757    NextConfigDescriptor: NextConfigDescriptor;758    NextConfigDescriptorV1: NextConfigDescriptorV1;759    NodeRole: NodeRole;760    Nominations: Nominations;761    NominatorIndex: NominatorIndex;762    NominatorIndexCompact: NominatorIndexCompact;763    NotConnectedPeer: NotConnectedPeer;764    NpApiError: NpApiError;765    Null: Null;766    OccupiedCore: OccupiedCore;767    OccupiedCoreAssumption: OccupiedCoreAssumption;768    OffchainAccuracy: OffchainAccuracy;769    OffchainAccuracyCompact: OffchainAccuracyCompact;770    OffenceDetails: OffenceDetails;771    Offender: Offender;772    OldV1SessionInfo: OldV1SessionInfo;773    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;774    OpalRuntimeRuntime: OpalRuntimeRuntime;775    OpaqueCall: OpaqueCall;776    OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;777    OpaqueMetadata: OpaqueMetadata;778    OpaqueMultiaddr: OpaqueMultiaddr;779    OpaqueNetworkState: OpaqueNetworkState;780    OpaquePeerId: OpaquePeerId;781    OpaqueTimeSlot: OpaqueTimeSlot;782    OpenTip: OpenTip;783    OpenTipFinderTo225: OpenTipFinderTo225;784    OpenTipTip: OpenTipTip;785    OpenTipTo225: OpenTipTo225;786    OperatingMode: OperatingMode;787    OptionBool: OptionBool;788    Origin: Origin;789    OriginCaller: OriginCaller;790    OriginKindV0: OriginKindV0;791    OriginKindV1: OriginKindV1;792    OriginKindV2: OriginKindV2;793    OrmlVestingModuleCall: OrmlVestingModuleCall;794    OrmlVestingModuleError: OrmlVestingModuleError;795    OrmlVestingModuleEvent: OrmlVestingModuleEvent;796    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;797    OutboundHrmpMessage: OutboundHrmpMessage;798    OutboundLaneData: OutboundLaneData;799    OutboundMessageFee: OutboundMessageFee;800    OutboundPayload: OutboundPayload;801    OutboundStatus: OutboundStatus;802    Outcome: Outcome;803    OverweightIndex: OverweightIndex;804    Owner: Owner;805    PageCounter: PageCounter;806    PageIndexData: PageIndexData;807    PalletAppPromotionCall: PalletAppPromotionCall;808    PalletAppPromotionError: PalletAppPromotionError;809    PalletAppPromotionEvent: PalletAppPromotionEvent;810    PalletBalancesAccountData: PalletBalancesAccountData;811    PalletBalancesBalanceLock: PalletBalancesBalanceLock;812    PalletBalancesCall: PalletBalancesCall;813    PalletBalancesError: PalletBalancesError;814    PalletBalancesEvent: PalletBalancesEvent;815    PalletBalancesReasons: PalletBalancesReasons;816    PalletBalancesReleases: PalletBalancesReleases;817    PalletBalancesReserveData: PalletBalancesReserveData;818    PalletCallMetadataLatest: PalletCallMetadataLatest;819    PalletCallMetadataV14: PalletCallMetadataV14;820    PalletCommonError: PalletCommonError;821    PalletCommonEvent: PalletCommonEvent;822    PalletConfigurationCall: PalletConfigurationCall;823    PalletConstantMetadataLatest: PalletConstantMetadataLatest;824    PalletConstantMetadataV14: PalletConstantMetadataV14;825    PalletErrorMetadataLatest: PalletErrorMetadataLatest;826    PalletErrorMetadataV14: PalletErrorMetadataV14;827    PalletEthereumCall: PalletEthereumCall;828    PalletEthereumError: PalletEthereumError;829    PalletEthereumEvent: PalletEthereumEvent;830    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;831    PalletEthereumRawOrigin: PalletEthereumRawOrigin;832    PalletEventMetadataLatest: PalletEventMetadataLatest;833    PalletEventMetadataV14: PalletEventMetadataV14;834    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;835    PalletEvmCall: PalletEvmCall;836    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;837    PalletEvmContractHelpersError: PalletEvmContractHelpersError;838    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;839    PalletEvmError: PalletEvmError;840    PalletEvmEvent: PalletEvmEvent;841    PalletEvmMigrationCall: PalletEvmMigrationCall;842    PalletEvmMigrationError: PalletEvmMigrationError;843    PalletFungibleError: PalletFungibleError;844    PalletId: PalletId;845    PalletInflationCall: PalletInflationCall;846    PalletMetadataLatest: PalletMetadataLatest;847    PalletMetadataV14: PalletMetadataV14;848    PalletNonfungibleError: PalletNonfungibleError;849    PalletNonfungibleItemData: PalletNonfungibleItemData;850    PalletRefungibleError: PalletRefungibleError;851    PalletRefungibleItemData: PalletRefungibleItemData;852    PalletRmrkCoreCall: PalletRmrkCoreCall;853    PalletRmrkCoreError: PalletRmrkCoreError;854    PalletRmrkCoreEvent: PalletRmrkCoreEvent;855    PalletRmrkEquipCall: PalletRmrkEquipCall;856    PalletRmrkEquipError: PalletRmrkEquipError;857    PalletRmrkEquipEvent: PalletRmrkEquipEvent;858    PalletsOrigin: PalletsOrigin;859    PalletStorageMetadataLatest: PalletStorageMetadataLatest;860    PalletStorageMetadataV14: PalletStorageMetadataV14;861    PalletStructureCall: PalletStructureCall;862    PalletStructureError: PalletStructureError;863    PalletStructureEvent: PalletStructureEvent;864    PalletSudoCall: PalletSudoCall;865    PalletSudoError: PalletSudoError;866    PalletSudoEvent: PalletSudoEvent;867    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;868    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;869    PalletTimestampCall: PalletTimestampCall;870    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;871    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;872    PalletTreasuryCall: PalletTreasuryCall;873    PalletTreasuryError: PalletTreasuryError;874    PalletTreasuryEvent: PalletTreasuryEvent;875    PalletTreasuryProposal: PalletTreasuryProposal;876    PalletUniqueCall: PalletUniqueCall;877    PalletUniqueError: PalletUniqueError;878    PalletUniqueRawEvent: PalletUniqueRawEvent;879    PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;880    PalletUniqueSchedulerError: PalletUniqueSchedulerError;881    PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;882    PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;883    PalletVersion: PalletVersion;884    PalletXcmCall: PalletXcmCall;885    PalletXcmError: PalletXcmError;886    PalletXcmEvent: PalletXcmEvent;887    PalletXcmOrigin: PalletXcmOrigin;888    ParachainDispatchOrigin: ParachainDispatchOrigin;889    ParachainInherentData: ParachainInherentData;890    ParachainProposal: ParachainProposal;891    ParachainsInherentData: ParachainsInherentData;892    ParaGenesisArgs: ParaGenesisArgs;893    ParaId: ParaId;894    ParaInfo: ParaInfo;895    ParaLifecycle: ParaLifecycle;896    Parameter: Parameter;897    ParaPastCodeMeta: ParaPastCodeMeta;898    ParaScheduling: ParaScheduling;899    ParathreadClaim: ParathreadClaim;900    ParathreadClaimQueue: ParathreadClaimQueue;901    ParathreadEntry: ParathreadEntry;902    ParaValidatorIndex: ParaValidatorIndex;903    Pays: Pays;904    Peer: Peer;905    PeerEndpoint: PeerEndpoint;906    PeerEndpointAddr: PeerEndpointAddr;907    PeerInfo: PeerInfo;908    PeerPing: PeerPing;909    PendingChange: PendingChange;910    PendingPause: PendingPause;911    PendingResume: PendingResume;912    Perbill: Perbill;913    Percent: Percent;914    PerDispatchClassU32: PerDispatchClassU32;915    PerDispatchClassWeight: PerDispatchClassWeight;916    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;917    Period: Period;918    Permill: Permill;919    PermissionLatest: PermissionLatest;920    PermissionsV1: PermissionsV1;921    PermissionVersions: PermissionVersions;922    Perquintill: Perquintill;923    PersistedValidationData: PersistedValidationData;924    PerU16: PerU16;925    Phantom: Phantom;926    PhantomData: PhantomData;927    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;928    Phase: Phase;929    PhragmenScore: PhragmenScore;930    Points: Points;931    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;932    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;933    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;934    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;935    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;936    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;937    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;938    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;939    PortableType: PortableType;940    PortableTypeV14: PortableTypeV14;941    Precommits: Precommits;942    PrefabWasmModule: PrefabWasmModule;943    PrefixedStorageKey: PrefixedStorageKey;944    PreimageStatus: PreimageStatus;945    PreimageStatusAvailable: PreimageStatusAvailable;946    PreRuntime: PreRuntime;947    Prevotes: Prevotes;948    Priority: Priority;949    PriorLock: PriorLock;950    PropIndex: PropIndex;951    Proposal: Proposal;952    ProposalIndex: ProposalIndex;953    ProxyAnnouncement: ProxyAnnouncement;954    ProxyDefinition: ProxyDefinition;955    ProxyState: ProxyState;956    ProxyType: ProxyType;957    PvfCheckStatement: PvfCheckStatement;958    QueryId: QueryId;959    QueryStatus: QueryStatus;960    QueueConfigData: QueueConfigData;961    QueuedParathread: QueuedParathread;962    Randomness: Randomness;963    Raw: Raw;964    RawAuraPreDigest: RawAuraPreDigest;965    RawBabePreDigest: RawBabePreDigest;966    RawBabePreDigestCompat: RawBabePreDigestCompat;967    RawBabePreDigestPrimary: RawBabePreDigestPrimary;968    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;969    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;970    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;971    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;972    RawBabePreDigestTo159: RawBabePreDigestTo159;973    RawOrigin: RawOrigin;974    RawSolution: RawSolution;975    RawSolutionTo265: RawSolutionTo265;976    RawSolutionWith16: RawSolutionWith16;977    RawSolutionWith24: RawSolutionWith24;978    RawVRFOutput: RawVRFOutput;979    ReadProof: ReadProof;980    ReadySolution: ReadySolution;981    Reasons: Reasons;982    RecoveryConfig: RecoveryConfig;983    RefCount: RefCount;984    RefCountTo259: RefCountTo259;985    ReferendumIndex: ReferendumIndex;986    ReferendumInfo: ReferendumInfo;987    ReferendumInfoFinished: ReferendumInfoFinished;988    ReferendumInfoTo239: ReferendumInfoTo239;989    ReferendumStatus: ReferendumStatus;990    RegisteredParachainInfo: RegisteredParachainInfo;991    RegistrarIndex: RegistrarIndex;992    RegistrarInfo: RegistrarInfo;993    Registration: Registration;994    RegistrationJudgement: RegistrationJudgement;995    RegistrationTo198: RegistrationTo198;996    RelayBlockNumber: RelayBlockNumber;997    RelayChainBlockNumber: RelayChainBlockNumber;998    RelayChainHash: RelayChainHash;999    RelayerId: RelayerId;1000    RelayHash: RelayHash;1001    Releases: Releases;1002    Remark: Remark;1003    Renouncing: Renouncing;1004    RentProjection: RentProjection;1005    ReplacementTimes: ReplacementTimes;1006    ReportedRoundStates: ReportedRoundStates;1007    Reporter: Reporter;1008    ReportIdOf: ReportIdOf;1009    ReserveData: ReserveData;1010    ReserveIdentifier: ReserveIdentifier;1011    Response: Response;1012    ResponseV0: ResponseV0;1013    ResponseV1: ResponseV1;1014    ResponseV2: ResponseV2;1015    ResponseV2Error: ResponseV2Error;1016    ResponseV2Result: ResponseV2Result;1017    Retriable: Retriable;1018    RewardDestination: RewardDestination;1019    RewardPoint: RewardPoint;1020    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1021    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1022    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1023    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1024    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1025    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1026    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1027    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1028    RmrkTraitsPartPartType: RmrkTraitsPartPartType;1029    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1030    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1031    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1032    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1033    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1034    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1035    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1036    RmrkTraitsTheme: RmrkTraitsTheme;1037    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1038    RoundSnapshot: RoundSnapshot;1039    RoundState: RoundState;1040    RpcMethods: RpcMethods;1041    RuntimeDbWeight: RuntimeDbWeight;1042    RuntimeDispatchInfo: RuntimeDispatchInfo;1043    RuntimeVersion: RuntimeVersion;1044    RuntimeVersionApi: RuntimeVersionApi;1045    RuntimeVersionPartial: RuntimeVersionPartial;1046    RuntimeVersionPre3: RuntimeVersionPre3;1047    RuntimeVersionPre4: RuntimeVersionPre4;1048    Schedule: Schedule;1049    Scheduled: Scheduled;1050    ScheduledCore: ScheduledCore;1051    ScheduledTo254: ScheduledTo254;1052    SchedulePeriod: SchedulePeriod;1053    SchedulePriority: SchedulePriority;1054    ScheduleTo212: ScheduleTo212;1055    ScheduleTo258: ScheduleTo258;1056    ScheduleTo264: ScheduleTo264;1057    Scheduling: Scheduling;1058    ScrapedOnChainVotes: ScrapedOnChainVotes;1059    Seal: Seal;1060    SealV0: SealV0;1061    SeatHolder: SeatHolder;1062    SeedOf: SeedOf;1063    ServiceQuality: ServiceQuality;1064    SessionIndex: SessionIndex;1065    SessionInfo: SessionInfo;1066    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1067    SessionKeys1: SessionKeys1;1068    SessionKeys10: SessionKeys10;1069    SessionKeys10B: SessionKeys10B;1070    SessionKeys2: SessionKeys2;1071    SessionKeys3: SessionKeys3;1072    SessionKeys4: SessionKeys4;1073    SessionKeys5: SessionKeys5;1074    SessionKeys6: SessionKeys6;1075    SessionKeys6B: SessionKeys6B;1076    SessionKeys7: SessionKeys7;1077    SessionKeys7B: SessionKeys7B;1078    SessionKeys8: SessionKeys8;1079    SessionKeys8B: SessionKeys8B;1080    SessionKeys9: SessionKeys9;1081    SessionKeys9B: SessionKeys9B;1082    SetId: SetId;1083    SetIndex: SetIndex;1084    Si0Field: Si0Field;1085    Si0LookupTypeId: Si0LookupTypeId;1086    Si0Path: Si0Path;1087    Si0Type: Si0Type;1088    Si0TypeDef: Si0TypeDef;1089    Si0TypeDefArray: Si0TypeDefArray;1090    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1091    Si0TypeDefCompact: Si0TypeDefCompact;1092    Si0TypeDefComposite: Si0TypeDefComposite;1093    Si0TypeDefPhantom: Si0TypeDefPhantom;1094    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1095    Si0TypeDefSequence: Si0TypeDefSequence;1096    Si0TypeDefTuple: Si0TypeDefTuple;1097    Si0TypeDefVariant: Si0TypeDefVariant;1098    Si0TypeParameter: Si0TypeParameter;1099    Si0Variant: Si0Variant;1100    Si1Field: Si1Field;1101    Si1LookupTypeId: Si1LookupTypeId;1102    Si1Path: Si1Path;1103    Si1Type: Si1Type;1104    Si1TypeDef: Si1TypeDef;1105    Si1TypeDefArray: Si1TypeDefArray;1106    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1107    Si1TypeDefCompact: Si1TypeDefCompact;1108    Si1TypeDefComposite: Si1TypeDefComposite;1109    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1110    Si1TypeDefSequence: Si1TypeDefSequence;1111    Si1TypeDefTuple: Si1TypeDefTuple;1112    Si1TypeDefVariant: Si1TypeDefVariant;1113    Si1TypeParameter: Si1TypeParameter;1114    Si1Variant: Si1Variant;1115    SiField: SiField;1116    Signature: Signature;1117    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1118    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1119    SignedBlock: SignedBlock;1120    SignedBlockWithJustification: SignedBlockWithJustification;1121    SignedBlockWithJustifications: SignedBlockWithJustifications;1122    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1123    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1124    SignedSubmission: SignedSubmission;1125    SignedSubmissionOf: SignedSubmissionOf;1126    SignedSubmissionTo276: SignedSubmissionTo276;1127    SignerPayload: SignerPayload;1128    SigningContext: SigningContext;1129    SiLookupTypeId: SiLookupTypeId;1130    SiPath: SiPath;1131    SiType: SiType;1132    SiTypeDef: SiTypeDef;1133    SiTypeDefArray: SiTypeDefArray;1134    SiTypeDefBitSequence: SiTypeDefBitSequence;1135    SiTypeDefCompact: SiTypeDefCompact;1136    SiTypeDefComposite: SiTypeDefComposite;1137    SiTypeDefPrimitive: SiTypeDefPrimitive;1138    SiTypeDefSequence: SiTypeDefSequence;1139    SiTypeDefTuple: SiTypeDefTuple;1140    SiTypeDefVariant: SiTypeDefVariant;1141    SiTypeParameter: SiTypeParameter;1142    SiVariant: SiVariant;1143    SlashingSpans: SlashingSpans;1144    SlashingSpansTo204: SlashingSpansTo204;1145    SlashJournalEntry: SlashJournalEntry;1146    Slot: Slot;1147    SlotDuration: SlotDuration;1148    SlotNumber: SlotNumber;1149    SlotRange: SlotRange;1150    SlotRange10: SlotRange10;1151    SocietyJudgement: SocietyJudgement;1152    SocietyVote: SocietyVote;1153    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1154    SolutionSupport: SolutionSupport;1155    SolutionSupports: SolutionSupports;1156    SpanIndex: SpanIndex;1157    SpanRecord: SpanRecord;1158    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1159    SpCoreEd25519Signature: SpCoreEd25519Signature;1160    SpCoreSr25519Signature: SpCoreSr25519Signature;1161    SpCoreVoid: SpCoreVoid;1162    SpecVersion: SpecVersion;1163    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1164    SpRuntimeDigest: SpRuntimeDigest;1165    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1166    SpRuntimeDispatchError: SpRuntimeDispatchError;1167    SpRuntimeModuleError: SpRuntimeModuleError;1168    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1169    SpRuntimeTokenError: SpRuntimeTokenError;1170    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1171    SpTrieStorageProof: SpTrieStorageProof;1172    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1173    Sr25519Signature: Sr25519Signature;1174    StakingLedger: StakingLedger;1175    StakingLedgerTo223: StakingLedgerTo223;1176    StakingLedgerTo240: StakingLedgerTo240;1177    Statement: Statement;1178    StatementKind: StatementKind;1179    StorageChangeSet: StorageChangeSet;1180    StorageData: StorageData;1181    StorageDeposit: StorageDeposit;1182    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1183    StorageEntryMetadataV10: StorageEntryMetadataV10;1184    StorageEntryMetadataV11: StorageEntryMetadataV11;1185    StorageEntryMetadataV12: StorageEntryMetadataV12;1186    StorageEntryMetadataV13: StorageEntryMetadataV13;1187    StorageEntryMetadataV14: StorageEntryMetadataV14;1188    StorageEntryMetadataV9: StorageEntryMetadataV9;1189    StorageEntryModifierLatest: StorageEntryModifierLatest;1190    StorageEntryModifierV10: StorageEntryModifierV10;1191    StorageEntryModifierV11: StorageEntryModifierV11;1192    StorageEntryModifierV12: StorageEntryModifierV12;1193    StorageEntryModifierV13: StorageEntryModifierV13;1194    StorageEntryModifierV14: StorageEntryModifierV14;1195    StorageEntryModifierV9: StorageEntryModifierV9;1196    StorageEntryTypeLatest: StorageEntryTypeLatest;1197    StorageEntryTypeV10: StorageEntryTypeV10;1198    StorageEntryTypeV11: StorageEntryTypeV11;1199    StorageEntryTypeV12: StorageEntryTypeV12;1200    StorageEntryTypeV13: StorageEntryTypeV13;1201    StorageEntryTypeV14: StorageEntryTypeV14;1202    StorageEntryTypeV9: StorageEntryTypeV9;1203    StorageHasher: StorageHasher;1204    StorageHasherV10: StorageHasherV10;1205    StorageHasherV11: StorageHasherV11;1206    StorageHasherV12: StorageHasherV12;1207    StorageHasherV13: StorageHasherV13;1208    StorageHasherV14: StorageHasherV14;1209    StorageHasherV9: StorageHasherV9;1210    StorageInfo: StorageInfo;1211    StorageKey: StorageKey;1212    StorageKind: StorageKind;1213    StorageMetadataV10: StorageMetadataV10;1214    StorageMetadataV11: StorageMetadataV11;1215    StorageMetadataV12: StorageMetadataV12;1216    StorageMetadataV13: StorageMetadataV13;1217    StorageMetadataV9: StorageMetadataV9;1218    StorageProof: StorageProof;1219    StoredPendingChange: StoredPendingChange;1220    StoredState: StoredState;1221    StrikeCount: StrikeCount;1222    SubId: SubId;1223    SubmissionIndicesOf: SubmissionIndicesOf;1224    Supports: Supports;1225    SyncState: SyncState;1226    SystemInherentData: SystemInherentData;1227    SystemOrigin: SystemOrigin;1228    Tally: Tally;1229    TaskAddress: TaskAddress;1230    TAssetBalance: TAssetBalance;1231    TAssetDepositBalance: TAssetDepositBalance;1232    Text: Text;1233    Timepoint: Timepoint;1234    TokenError: TokenError;1235    TombstoneContractInfo: TombstoneContractInfo;1236    TraceBlockResponse: TraceBlockResponse;1237    TraceError: TraceError;1238    TransactionalError: TransactionalError;1239    TransactionInfo: TransactionInfo;1240    TransactionLongevity: TransactionLongevity;1241    TransactionPriority: TransactionPriority;1242    TransactionSource: TransactionSource;1243    TransactionStorageProof: TransactionStorageProof;1244    TransactionTag: TransactionTag;1245    TransactionV0: TransactionV0;1246    TransactionV1: TransactionV1;1247    TransactionV2: TransactionV2;1248    TransactionValidity: TransactionValidity;1249    TransactionValidityError: TransactionValidityError;1250    TransientValidationData: TransientValidationData;1251    TreasuryProposal: TreasuryProposal;1252    TrieId: TrieId;1253    TrieIndex: TrieIndex;1254    Type: Type;1255    u128: u128;1256    U128: U128;1257    u16: u16;1258    U16: U16;1259    u256: u256;1260    U256: U256;1261    u32: u32;1262    U32: U32;1263    U32F32: U32F32;1264    u64: u64;1265    U64: U64;1266    u8: u8;1267    U8: U8;1268    UnappliedSlash: UnappliedSlash;1269    UnappliedSlashOther: UnappliedSlashOther;1270    UncleEntryItem: UncleEntryItem;1271    UnknownTransaction: UnknownTransaction;1272    UnlockChunk: UnlockChunk;1273    UnrewardedRelayer: UnrewardedRelayer;1274    UnrewardedRelayersState: UnrewardedRelayersState;1275    UpDataStructsAccessMode: UpDataStructsAccessMode;1276    UpDataStructsCollection: UpDataStructsCollection;1277    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1278    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1279    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1280    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1281    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1282    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1283    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1284    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1285    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1286    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1287    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1288    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1289    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1290    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1291    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1292    UpDataStructsProperties: UpDataStructsProperties;1293    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1294    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1295    UpDataStructsProperty: UpDataStructsProperty;1296    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1297    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1298    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1299    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1300    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1301    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1302    UpDataStructsTokenChild: UpDataStructsTokenChild;1303    UpDataStructsTokenData: UpDataStructsTokenData;1304    UpgradeGoAhead: UpgradeGoAhead;1305    UpgradeRestriction: UpgradeRestriction;1306    UpwardMessage: UpwardMessage;1307    usize: usize;1308    USize: USize;1309    ValidationCode: ValidationCode;1310    ValidationCodeHash: ValidationCodeHash;1311    ValidationData: ValidationData;1312    ValidationDataType: ValidationDataType;1313    ValidationFunctionParams: ValidationFunctionParams;1314    ValidatorCount: ValidatorCount;1315    ValidatorId: ValidatorId;1316    ValidatorIdOf: ValidatorIdOf;1317    ValidatorIndex: ValidatorIndex;1318    ValidatorIndexCompact: ValidatorIndexCompact;1319    ValidatorPrefs: ValidatorPrefs;1320    ValidatorPrefsTo145: ValidatorPrefsTo145;1321    ValidatorPrefsTo196: ValidatorPrefsTo196;1322    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1323    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1324    ValidatorSet: ValidatorSet;1325    ValidatorSetId: ValidatorSetId;1326    ValidatorSignature: ValidatorSignature;1327    ValidDisputeStatementKind: ValidDisputeStatementKind;1328    ValidityAttestation: ValidityAttestation;1329    ValidTransaction: ValidTransaction;1330    VecInboundHrmpMessage: VecInboundHrmpMessage;1331    VersionedMultiAsset: VersionedMultiAsset;1332    VersionedMultiAssets: VersionedMultiAssets;1333    VersionedMultiLocation: VersionedMultiLocation;1334    VersionedResponse: VersionedResponse;1335    VersionedXcm: VersionedXcm;1336    VersionMigrationStage: VersionMigrationStage;1337    VestingInfo: VestingInfo;1338    VestingSchedule: VestingSchedule;1339    Vote: Vote;1340    VoteIndex: VoteIndex;1341    Voter: Voter;1342    VoterInfo: VoterInfo;1343    Votes: Votes;1344    VotesTo230: VotesTo230;1345    VoteThreshold: VoteThreshold;1346    VoteWeight: VoteWeight;1347    Voting: Voting;1348    VotingDelegating: VotingDelegating;1349    VotingDirect: VotingDirect;1350    VotingDirectVote: VotingDirectVote;1351    VouchingStatus: VouchingStatus;1352    VrfData: VrfData;1353    VrfOutput: VrfOutput;1354    VrfProof: VrfProof;1355    Weight: Weight;1356    WeightLimitV2: WeightLimitV2;1357    WeightMultiplier: WeightMultiplier;1358    WeightPerClass: WeightPerClass;1359    WeightToFeeCoefficient: WeightToFeeCoefficient;1360    WildFungibility: WildFungibility;1361    WildFungibilityV0: WildFungibilityV0;1362    WildFungibilityV1: WildFungibilityV1;1363    WildFungibilityV2: WildFungibilityV2;1364    WildMultiAsset: WildMultiAsset;1365    WildMultiAssetV1: WildMultiAssetV1;1366    WildMultiAssetV2: WildMultiAssetV2;1367    WinnersData: WinnersData;1368    WinnersData10: WinnersData10;1369    WinnersDataTuple: WinnersDataTuple;1370    WinnersDataTuple10: WinnersDataTuple10;1371    WinningData: WinningData;1372    WinningData10: WinningData10;1373    WinningDataEntry: WinningDataEntry;1374    WithdrawReasons: WithdrawReasons;1375    Xcm: Xcm;1376    XcmAssetId: XcmAssetId;1377    XcmDoubleEncoded: XcmDoubleEncoded;1378    XcmError: XcmError;1379    XcmErrorV0: XcmErrorV0;1380    XcmErrorV1: XcmErrorV1;1381    XcmErrorV2: XcmErrorV2;1382    XcmOrder: XcmOrder;1383    XcmOrderV0: XcmOrderV0;1384    XcmOrderV1: XcmOrderV1;1385    XcmOrderV2: XcmOrderV2;1386    XcmOrigin: XcmOrigin;1387    XcmOriginKind: XcmOriginKind;1388    XcmpMessageFormat: XcmpMessageFormat;1389    XcmV0: XcmV0;1390    XcmV0Junction: XcmV0Junction;1391    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1392    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1393    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1394    XcmV0MultiAsset: XcmV0MultiAsset;1395    XcmV0MultiLocation: XcmV0MultiLocation;1396    XcmV0Order: XcmV0Order;1397    XcmV0OriginKind: XcmV0OriginKind;1398    XcmV0Response: XcmV0Response;1399    XcmV0Xcm: XcmV0Xcm;1400    XcmV1: XcmV1;1401    XcmV1Junction: XcmV1Junction;1402    XcmV1MultiAsset: XcmV1MultiAsset;1403    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1404    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1405    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1406    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1407    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1408    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1409    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1410    XcmV1MultiLocation: XcmV1MultiLocation;1411    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1412    XcmV1Order: XcmV1Order;1413    XcmV1Response: XcmV1Response;1414    XcmV1Xcm: XcmV1Xcm;1415    XcmV2: XcmV2;1416    XcmV2Instruction: XcmV2Instruction;1417    XcmV2Response: XcmV2Response;1418    XcmV2TraitsError: XcmV2TraitsError;1419    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1420    XcmV2WeightLimit: XcmV2WeightLimit;1421    XcmV2Xcm: XcmV2Xcm;1422    XcmVersion: XcmVersion;1423    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1424    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1425    XcmVersionedXcm: XcmVersionedXcm;1426  } // InterfaceTypes1427} // declare module
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1173,7 +1173,8 @@
 /** @name PalletEvmContractHelpersError */
 export interface PalletEvmContractHelpersError extends Enum {
   readonly isNoPermission: boolean;
-  readonly type: 'NoPermission';
+  readonly isNoPendingSponsor: boolean;
+  readonly type: 'NoPermission' | 'NoPendingSponsor';
 }
 
 /** @name PalletEvmContractHelpersSponsoringModeT */
@@ -2465,7 +2466,7 @@
   readonly name: Vec<u16>;
   readonly description: Vec<u16>;
   readonly tokenPrefix: Bytes;
-  readonly sponsorship: UpDataStructsSponsorshipState;
+  readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;
   readonly limits: UpDataStructsCollectionLimits;
   readonly permissions: UpDataStructsCollectionPermissions;
   readonly externalCollection: bool;
@@ -2637,7 +2638,7 @@
   readonly name: Vec<u16>;
   readonly description: Vec<u16>;
   readonly tokenPrefix: Bytes;
-  readonly sponsorship: UpDataStructsSponsorshipState;
+  readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;
   readonly limits: UpDataStructsCollectionLimits;
   readonly permissions: UpDataStructsCollectionPermissions;
   readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
@@ -2653,8 +2654,8 @@
   readonly type: 'SponsoringDisabled' | 'Blocks';
 }
 
-/** @name UpDataStructsSponsorshipState */
-export interface UpDataStructsSponsorshipState extends Enum {
+/** @name UpDataStructsSponsorshipStateAccountId32 */
+export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
   readonly isDisabled: boolean;
   readonly isUnconfirmed: boolean;
   readonly asUnconfirmed: AccountId32;
@@ -2663,6 +2664,16 @@
   readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
 }
 
+/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */
+export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
+  readonly isDisabled: boolean;
+  readonly isUnconfirmed: boolean;
+  readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;
+  readonly isConfirmed: boolean;
+  readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;
+  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
+}
+
 /** @name UpDataStructsTokenChild */
 export interface UpDataStructsTokenChild extends Struct {
   readonly token: u32;
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -2902,7 +2902,7 @@
     name: 'Vec<u16>',
     description: 'Vec<u16>',
     tokenPrefix: 'Bytes',
-    sponsorship: 'UpDataStructsSponsorshipState',
+    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',
     limits: 'UpDataStructsCollectionLimits',
     permissions: 'UpDataStructsCollectionPermissions',
     externalCollection: 'bool'
@@ -2910,7 +2910,7 @@
   /**
    * Lookup361: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
-  UpDataStructsSponsorshipState: {
+  UpDataStructsSponsorshipStateAccountId32: {
     _enum: {
       Disabled: 'Null',
       Unconfirmed: 'AccountId32',
@@ -2969,7 +2969,7 @@
     name: 'Vec<u16>',
     description: 'Vec<u16>',
     tokenPrefix: 'Bytes',
-    sponsorship: 'UpDataStructsSponsorshipState',
+    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',
     limits: 'UpDataStructsCollectionLimits',
     permissions: 'UpDataStructsCollectionPermissions',
     tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
@@ -3186,25 +3186,35 @@
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup431: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup431: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
+  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
+    _enum: {
+      Disabled: 'Null',
+      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
+      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
+    }
+  },
+  /**
+   * Lookup432: pallet_evm_contract_helpers::SponsoringModeT
+   **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup433: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup434: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
-    _enum: ['NoPermission']
+    _enum: ['NoPermission', 'NoPendingSponsor']
   },
   /**
-   * Lookup434: pallet_evm_migration::pallet::Error<T>
+   * Lookup435: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
   },
   /**
-   * Lookup436: sp_runtime::MultiSignature
+   * Lookup437: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -3214,43 +3224,43 @@
     }
   },
   /**
-   * Lookup437: sp_core::ed25519::Signature
+   * Lookup438: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup439: sp_core::sr25519::Signature
+   * Lookup440: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup440: sp_core::ecdsa::Signature
+   * Lookup441: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup443: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup444: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup444: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup445: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup447: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup448: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup448: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup449: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup449: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup450: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup450: opal_runtime::Runtime
+   * Lookup451: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup451: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup452: 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, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   interface InterfaceTypes {
@@ -216,7 +216,8 @@
     UpDataStructsPropertyScope: UpDataStructsPropertyScope;
     UpDataStructsRpcCollection: UpDataStructsRpcCollection;
     UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
-    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;
+    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;
+    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;
     UpDataStructsTokenChild: UpDataStructsTokenChild;
     UpDataStructsTokenData: UpDataStructsTokenData;
     XcmDoubleEncoded: XcmDoubleEncoded;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -3034,14 +3034,14 @@
     readonly name: Vec<u16>;
     readonly description: Vec<u16>;
     readonly tokenPrefix: Bytes;
-    readonly sponsorship: UpDataStructsSponsorshipState;
+    readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;
     readonly limits: UpDataStructsCollectionLimits;
     readonly permissions: UpDataStructsCollectionPermissions;
     readonly externalCollection: bool;
   }
 
-  /** @name UpDataStructsSponsorshipState (361) */
-  interface UpDataStructsSponsorshipState extends Enum {
+  /** @name UpDataStructsSponsorshipStateAccountId32 (361) */
+  interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
     readonly asUnconfirmed: AccountId32;
@@ -3093,7 +3093,7 @@
     readonly name: Vec<u16>;
     readonly description: Vec<u16>;
     readonly tokenPrefix: Bytes;
-    readonly sponsorship: UpDataStructsSponsorshipState;
+    readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;
     readonly limits: UpDataStructsCollectionLimits;
     readonly permissions: UpDataStructsCollectionPermissions;
     readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
@@ -3379,7 +3379,17 @@
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (431) */
+  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (431) */
+  interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
+    readonly isDisabled: boolean;
+    readonly isUnconfirmed: boolean;
+    readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;
+    readonly isConfirmed: boolean;
+    readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;
+    readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
+  }
+
+  /** @name PalletEvmContractHelpersSponsoringModeT (432) */
   interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -3387,20 +3397,21 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (433) */
+  /** @name PalletEvmContractHelpersError (434) */
   interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
-    readonly type: 'NoPermission';
+    readonly isNoPendingSponsor: boolean;
+    readonly type: 'NoPermission' | 'NoPendingSponsor';
   }
 
-  /** @name PalletEvmMigrationError (434) */
+  /** @name PalletEvmMigrationError (435) */
   interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
   }
 
-  /** @name SpRuntimeMultiSignature (436) */
+  /** @name SpRuntimeMultiSignature (437) */
   interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -3411,34 +3422,34 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (437) */
+  /** @name SpCoreEd25519Signature (438) */
   interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (439) */
+  /** @name SpCoreSr25519Signature (440) */
   interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (440) */
+  /** @name SpCoreEcdsaSignature (441) */
   interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (443) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (444) */
   type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (444) */
+  /** @name FrameSystemExtensionsCheckGenesis (445) */
   type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (447) */
+  /** @name FrameSystemExtensionsCheckNonce (448) */
   interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (448) */
+  /** @name FrameSystemExtensionsCheckWeight (449) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (449) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (450) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (450) */
+  /** @name OpalRuntimeRuntime (451) */
   type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (451) */
+  /** @name PalletEthereumFakeTransactionFinalizer (452) */
   type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module
modifiedtests/src/util/playgrounds/index.tsdiffbeforeafterboth
--- a/tests/src/util/playgrounds/index.ts
+++ b/tests/src/util/playgrounds/index.ts
@@ -4,9 +4,7 @@
 import {IKeyringPair} from '@polkadot/types/types';
 import config from '../../config';
 import '../../interfaces/augment-api-events';
-import * as defs from '../../interfaces/definitions';
-import {ApiPromise, WsProvider} from '@polkadot/api';
-import { UniqueHelper } from './unique';
+import {DevUniqueHelper} from './unique.dev';
 
 
 class SilentLogger {
@@ -19,45 +17,9 @@
 }
 
 
-class DevUniqueHelper extends UniqueHelper {
-  async connect(wsEndpoint: string, listeners?: any): Promise<void> {
-    const wsProvider = new WsProvider(wsEndpoint);
-    this.api = new ApiPromise({
-      provider: wsProvider, 
-      signedExtensions: {
-        ContractHelpers: {
-          extrinsic: {},
-          payload: {},
-        },
-        FakeTransactionFinalizer: {
-          extrinsic: {},
-          payload: {},
-        },
-      },
-      rpc: {
-        unique: defs.unique.rpc,
-        rmrk: defs.rmrk.rpc,
-        eth: {
-          feeHistory: {
-            description: 'Dummy',
-            params: [],
-            type: 'u8',
-          },
-          maxPriorityFeePerGas: {
-            description: 'Dummy',
-            params: [],
-            type: 'u8',
-          },
-        },
-      },
-    });
-    await this.api.isReadyOrError;
-    this.network = await UniqueHelper.detectNetwork(this.api);
-  }
-}
 
 
-export const usingPlaygrounds = async <T = void> (code: (helper: UniqueHelper, privateKey: (seed: string) => IKeyringPair) => Promise<T>) => {
+export const usingPlaygrounds = async <T = void> (code: (helper: DevUniqueHelper, privateKey: (seed: string) => IKeyringPair) => Promise<T>) => {
   // TODO: Remove, this is temporary: Filter unneeded API output
   // (Jaco promised it will be removed in the next version)
   const consoleErr = console.error;