git.delta.rocks / unique-network / refs/commits / 07f2d6c70bce

difftreelog

fix regenerate tests types

Daniel Shiposha2022-05-14parent: #3db00dc.patch.diff
in: master

6 files changed

modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -157,10 +157,6 @@
        **/
       TokenValueTooLow: AugmentedError<ApiType>;
       /**
-       * variable_data exceeded data limit.
-       **/
-      TokenVariableDataLimitExceeded: AugmentedError<ApiType>;
-      /**
        * Total collections bound exceeded.
        **/
       TotalCollectionsLimitExceeded: 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
@@ -586,11 +586,6 @@
        **/
       reFungibleTransferBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
       /**
-       * Variable metadata sponsoring
-       * Collection id (controlled?2), token id (controlled?2)
-       **/
-      variableMetaDataBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
-      /**
        * Generic query
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -3,7 +3,7 @@
 
 import type { ApiTypes } from '@polkadot/api-base/types';
 import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
-import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
+import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
 import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsMetaUpdatePermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
@@ -378,7 +378,7 @@
        * - Weight of derivative `call` execution + 10,000.
        * # </weight>
        **/
-      sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
+      sudo: AugmentedSubmittable<(call: Call) => SubmittableExtrinsic<ApiType>, [Call]>;
       /**
        * Authenticates the sudo key and dispatches a function call with `Signed` origin from
        * a given account.
@@ -392,7 +392,7 @@
        * - Weight of derivative `call` execution + 10,000.
        * # </weight>
        **/
-      sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
+      sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
       /**
        * Authenticates the sudo key and dispatches a function call with `Root` origin.
        * This function does not check the weight of the call, and instead allows the
@@ -405,7 +405,7 @@
        * - The weight of this call is defined by the caller.
        * # </weight>
        **/
-      sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
+      sudoUncheckedWeight: AugmentedSubmittable<(call: Call, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
       /**
        * Generic tx
        **/
@@ -779,7 +779,7 @@
        * * address.
        **/
       removeFromAllowList: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, address: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
-      setCollectionLimits: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newLimit: UpDataStructsCollectionLimits | { accountTokenOwnershipLimit?: any; sponsoredDataSize?: any; sponsoredDataRateLimit?: any; tokenLimit?: any; sponsorTransferTimeout?: any; sponsorApproveTimeout?: any; ownerCanTransfer?: any; ownerCanDestroy?: any; transfersEnabled?: any; nestingRule?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsCollectionLimits]>;
+      setCollectionLimits: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newLimit: UpDataStructsCollectionLimits | { accountTokenOwnershipLimit?: any; sponsoredDataSize?: any; tokenLimit?: any; sponsorTransferTimeout?: any; sponsorApproveTimeout?: any; ownerCanTransfer?: any; ownerCanDestroy?: any; transfersEnabled?: any; nestingRule?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsCollectionLimits]>;
       setCollectionProperties: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, properties: Vec<UpDataStructsProperty> | (UpDataStructsProperty | { key?: any; value?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, Vec<UpDataStructsProperty>]>;
       /**
        * # Permissions
@@ -900,21 +900,6 @@
        * * value: New flag value.
        **/
       setTransfersEnabledFlag: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, value: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, bool]>;
-      /**
-       * Set off-chain data schema.
-       * 
-       * # Permissions
-       * 
-       * * Collection Owner
-       * * Collection Admin
-       * 
-       * # Arguments
-       * 
-       * * collection_id.
-       * 
-       * * schema: String representing the offchain data schema.
-       **/
-      setVariableMetaData: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, data: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes]>;
       /**
        * Change ownership of the token.
        * 
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1360,11 +1360,6 @@
         itemId: 'u32',
         value: 'u128',
       },
-      set_variable_meta_data: {
-        collectionId: 'u32',
-        itemId: 'u32',
-        data: 'Bytes',
-      },
       set_meta_update_permission_flag: {
         collectionId: 'u32',
         value: 'UpDataStructsMetaUpdatePermission',
@@ -1433,7 +1428,6 @@
   UpDataStructsCollectionLimits: {
     accountTokenOwnershipLimit: 'Option<u32>',
     sponsoredDataSize: 'Option<u32>',
-    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',
     tokenLimit: 'Option<u32>',
     sponsorTransferTimeout: 'Option<u32>',
     sponsorApproveTimeout: 'Option<u32>',
@@ -1443,39 +1437,34 @@
     nestingRule: 'Option<UpDataStructsNestingRule>'
   },
   /**
-   * Lookup167: up_data_structs::SponsoringRateLimit
-   **/
-  UpDataStructsSponsoringRateLimit: {
-    _enum: {
-      SponsoringDisabled: 'Null',
-      Blocks: 'u32'
-    }
-  },
-  /**
-   * Lookup170: up_data_structs::NestingRule
+   * Lookup168: up_data_structs::NestingRule
    **/
   UpDataStructsNestingRule: {
     _enum: {
       Disabled: 'Null',
       Owner: 'Null',
-      OwnerRestricted: 'BTreeSet<u32>'
+      OwnerRestricted: 'FrameSupportStorageBoundedBTreeSet'
     }
   },
   /**
-   * Lookup177: up_data_structs::MetaUpdatePermission
+   * Lookup169: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>
    **/
+  FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',
+  /**
+   * Lookup175: up_data_structs::MetaUpdatePermission
+   **/
   UpDataStructsMetaUpdatePermission: {
     _enum: ['ItemOwner', 'Admin', 'None']
   },
   /**
-   * Lookup179: up_data_structs::PropertyKeyPermission
+   * Lookup177: up_data_structs::PropertyKeyPermission
    **/
   UpDataStructsPropertyKeyPermission: {
     key: 'Bytes',
     permission: 'UpDataStructsPropertyPermission'
   },
   /**
-   * Lookup181: up_data_structs::PropertyPermission
+   * Lookup179: up_data_structs::PropertyPermission
    **/
   UpDataStructsPropertyPermission: {
     mutable: 'bool',
@@ -1483,14 +1472,14 @@
     tokenOwner: 'bool'
   },
   /**
-   * Lookup184: up_data_structs::Property
+   * Lookup182: up_data_structs::Property
    **/
   UpDataStructsProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup186: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+   * Lookup184: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
    **/
   PalletEvmAccountBasicCrossAccountIdRepr: {
     _enum: {
@@ -1499,7 +1488,7 @@
     }
   },
   /**
-   * Lookup188: up_data_structs::CreateItemData
+   * Lookup186: up_data_structs::CreateItemData
    **/
   UpDataStructsCreateItemData: {
     _enum: {
@@ -1509,29 +1498,27 @@
     }
   },
   /**
-   * Lookup189: up_data_structs::CreateNftData
+   * Lookup187: up_data_structs::CreateNftData
    **/
   UpDataStructsCreateNftData: {
     constData: 'Bytes',
-    variableData: 'Bytes',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup191: up_data_structs::CreateFungibleData
+   * Lookup189: up_data_structs::CreateFungibleData
    **/
   UpDataStructsCreateFungibleData: {
     value: 'u128'
   },
   /**
-   * Lookup192: up_data_structs::CreateReFungibleData
+   * Lookup190: up_data_structs::CreateReFungibleData
    **/
   UpDataStructsCreateReFungibleData: {
     constData: 'Bytes',
-    variableData: 'Bytes',
     pieces: 'u128'
   },
   /**
-   * Lookup196: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup194: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateItemExData: {
     _enum: {
@@ -1542,32 +1529,30 @@
     }
   },
   /**
-   * Lookup198: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup196: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateNftExData: {
     constData: 'Bytes',
-    variableData: 'Bytes',
     properties: 'Vec<UpDataStructsProperty>',
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup205: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup203: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExData: {
     constData: 'Bytes',
-    variableData: 'Bytes',
     users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'
   },
   /**
-   * Lookup207: pallet_template_transaction_payment::Call<T>
+   * Lookup205: pallet_template_transaction_payment::Call<T>
    **/
   PalletTemplateTransactionPaymentCall: 'Null',
   /**
-   * Lookup208: pallet_structure::pallet::Call<T>
+   * Lookup206: pallet_structure::pallet::Call<T>
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup209: pallet_evm::pallet::Call<T>
+   * Lookup207: pallet_evm::pallet::Call<T>
    **/
   PalletEvmCall: {
     _enum: {
@@ -1610,7 +1595,7 @@
     }
   },
   /**
-   * Lookup215: pallet_ethereum::pallet::Call<T>
+   * Lookup213: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -1620,7 +1605,7 @@
     }
   },
   /**
-   * Lookup216: ethereum::transaction::TransactionV2
+   * Lookup214: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -1630,7 +1615,7 @@
     }
   },
   /**
-   * Lookup217: ethereum::transaction::LegacyTransaction
+   * Lookup215: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -1642,7 +1627,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup218: ethereum::transaction::TransactionAction
+   * Lookup216: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -1651,7 +1636,7 @@
     }
   },
   /**
-   * Lookup219: ethereum::transaction::TransactionSignature
+   * Lookup217: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -1659,7 +1644,7 @@
     s: 'H256'
   },
   /**
-   * Lookup221: ethereum::transaction::EIP2930Transaction
+   * Lookup219: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -1675,14 +1660,14 @@
     s: 'H256'
   },
   /**
-   * Lookup223: ethereum::transaction::AccessListItem
+   * Lookup221: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup224: ethereum::transaction::EIP1559Transaction
+   * Lookup222: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -1699,7 +1684,7 @@
     s: 'H256'
   },
   /**
-   * Lookup225: pallet_evm_migration::pallet::Call<T>
+   * Lookup223: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -1717,7 +1702,7 @@
     }
   },
   /**
-   * Lookup228: pallet_sudo::pallet::Event<T>
+   * Lookup226: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -1733,7 +1718,7 @@
     }
   },
   /**
-   * Lookup230: sp_runtime::DispatchError
+   * Lookup228: sp_runtime::DispatchError
    **/
   SpRuntimeDispatchError: {
     _enum: {
@@ -1750,38 +1735,38 @@
     }
   },
   /**
-   * Lookup231: sp_runtime::ModuleError
+   * Lookup229: sp_runtime::ModuleError
    **/
   SpRuntimeModuleError: {
     index: 'u8',
     error: '[u8;4]'
   },
   /**
-   * Lookup232: sp_runtime::TokenError
+   * Lookup230: sp_runtime::TokenError
    **/
   SpRuntimeTokenError: {
     _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
   },
   /**
-   * Lookup233: sp_runtime::ArithmeticError
+   * Lookup231: sp_runtime::ArithmeticError
    **/
   SpRuntimeArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
-   * Lookup234: sp_runtime::TransactionalError
+   * Lookup232: sp_runtime::TransactionalError
    **/
   SpRuntimeTransactionalError: {
     _enum: ['LimitReached', 'NoLayer']
   },
   /**
-   * Lookup235: pallet_sudo::pallet::Error<T>
+   * Lookup233: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup236: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+   * Lookup234: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
    **/
   FrameSystemAccountInfo: {
     nonce: 'u32',
@@ -1791,7 +1776,7 @@
     data: 'PalletBalancesAccountData'
   },
   /**
-   * Lookup237: frame_support::weights::PerDispatchClass<T>
+   * Lookup235: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU64: {
     normal: 'u64',
@@ -1799,13 +1784,13 @@
     mandatory: 'u64'
   },
   /**
-   * Lookup238: sp_runtime::generic::digest::Digest
+   * Lookup236: sp_runtime::generic::digest::Digest
    **/
   SpRuntimeDigest: {
     logs: 'Vec<SpRuntimeDigestDigestItem>'
   },
   /**
-   * Lookup240: sp_runtime::generic::digest::DigestItem
+   * Lookup238: sp_runtime::generic::digest::DigestItem
    **/
   SpRuntimeDigestDigestItem: {
     _enum: {
@@ -1821,7 +1806,7 @@
     }
   },
   /**
-   * Lookup242: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+   * Lookup240: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -1829,7 +1814,7 @@
     topics: 'Vec<H256>'
   },
   /**
-   * Lookup244: frame_system::pallet::Event<T>
+   * Lookup242: frame_system::pallet::Event<T>
    **/
   FrameSystemEvent: {
     _enum: {
@@ -1857,7 +1842,7 @@
     }
   },
   /**
-   * Lookup245: frame_support::weights::DispatchInfo
+   * Lookup243: frame_support::weights::DispatchInfo
    **/
   FrameSupportWeightsDispatchInfo: {
     weight: 'u64',
@@ -1865,19 +1850,19 @@
     paysFee: 'FrameSupportWeightsPays'
   },
   /**
-   * Lookup246: frame_support::weights::DispatchClass
+   * Lookup244: frame_support::weights::DispatchClass
    **/
   FrameSupportWeightsDispatchClass: {
     _enum: ['Normal', 'Operational', 'Mandatory']
   },
   /**
-   * Lookup247: frame_support::weights::Pays
+   * Lookup245: frame_support::weights::Pays
    **/
   FrameSupportWeightsPays: {
     _enum: ['Yes', 'No']
   },
   /**
-   * Lookup248: orml_vesting::module::Event<T>
+   * Lookup246: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -1896,7 +1881,7 @@
     }
   },
   /**
-   * Lookup249: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   * Lookup247: cumulus_pallet_xcmp_queue::pallet::Event<T>
    **/
   CumulusPalletXcmpQueueEvent: {
     _enum: {
@@ -1911,7 +1896,7 @@
     }
   },
   /**
-   * Lookup250: pallet_xcm::pallet::Event<T>
+   * Lookup248: pallet_xcm::pallet::Event<T>
    **/
   PalletXcmEvent: {
     _enum: {
@@ -1934,7 +1919,7 @@
     }
   },
   /**
-   * Lookup251: xcm::v2::traits::Outcome
+   * Lookup249: xcm::v2::traits::Outcome
    **/
   XcmV2TraitsOutcome: {
     _enum: {
@@ -1944,7 +1929,7 @@
     }
   },
   /**
-   * Lookup253: cumulus_pallet_xcm::pallet::Event<T>
+   * Lookup251: cumulus_pallet_xcm::pallet::Event<T>
    **/
   CumulusPalletXcmEvent: {
     _enum: {
@@ -1954,7 +1939,7 @@
     }
   },
   /**
-   * Lookup254: cumulus_pallet_dmp_queue::pallet::Event<T>
+   * Lookup252: cumulus_pallet_dmp_queue::pallet::Event<T>
    **/
   CumulusPalletDmpQueueEvent: {
     _enum: {
@@ -1967,7 +1952,7 @@
     }
   },
   /**
-   * Lookup255: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup253: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletUniqueRawEvent: {
     _enum: {
@@ -1988,7 +1973,7 @@
     }
   },
   /**
-   * Lookup256: pallet_common::pallet::Event<T>
+   * Lookup254: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -2006,7 +1991,7 @@
     }
   },
   /**
-   * Lookup257: pallet_structure::pallet::Event<T>
+   * Lookup255: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
@@ -2014,7 +1999,7 @@
     }
   },
   /**
-   * Lookup258: pallet_evm::pallet::Event<T>
+   * Lookup256: pallet_evm::pallet::Event<T>
    **/
   PalletEvmEvent: {
     _enum: {
@@ -2028,7 +2013,7 @@
     }
   },
   /**
-   * Lookup259: ethereum::log::Log
+   * Lookup257: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -2036,7 +2021,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup260: pallet_ethereum::pallet::Event
+   * Lookup258: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -2044,7 +2029,7 @@
     }
   },
   /**
-   * Lookup261: evm_core::error::ExitReason
+   * Lookup259: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -2055,13 +2040,13 @@
     }
   },
   /**
-   * Lookup262: evm_core::error::ExitSucceed
+   * Lookup260: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup263: evm_core::error::ExitError
+   * Lookup261: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -2083,13 +2068,13 @@
     }
   },
   /**
-   * Lookup266: evm_core::error::ExitRevert
+   * Lookup264: evm_core::error::ExitRevert
    **/
   EvmCoreErrorExitRevert: {
     _enum: ['Reverted']
   },
   /**
-   * Lookup267: evm_core::error::ExitFatal
+   * Lookup265: evm_core::error::ExitFatal
    **/
   EvmCoreErrorExitFatal: {
     _enum: {
@@ -2100,7 +2085,7 @@
     }
   },
   /**
-   * Lookup268: frame_system::Phase
+   * Lookup266: frame_system::Phase
    **/
   FrameSystemPhase: {
     _enum: {
@@ -2110,14 +2095,14 @@
     }
   },
   /**
-   * Lookup270: frame_system::LastRuntimeUpgradeInfo
+   * Lookup268: frame_system::LastRuntimeUpgradeInfo
    **/
   FrameSystemLastRuntimeUpgradeInfo: {
     specVersion: 'Compact<u32>',
     specName: 'Text'
   },
   /**
-   * Lookup271: frame_system::limits::BlockWeights
+   * Lookup269: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
     baseBlock: 'u64',
@@ -2125,7 +2110,7 @@
     perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
   },
   /**
-   * Lookup272: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+   * Lookup270: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
    **/
   FrameSupportWeightsPerDispatchClassWeightsPerClass: {
     normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2133,7 +2118,7 @@
     mandatory: 'FrameSystemLimitsWeightsPerClass'
   },
   /**
-   * Lookup273: frame_system::limits::WeightsPerClass
+   * Lookup271: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
     baseExtrinsic: 'u64',
@@ -2142,13 +2127,13 @@
     reserved: 'Option<u64>'
   },
   /**
-   * Lookup275: frame_system::limits::BlockLength
+   * Lookup273: frame_system::limits::BlockLength
    **/
   FrameSystemLimitsBlockLength: {
     max: 'FrameSupportWeightsPerDispatchClassU32'
   },
   /**
-   * Lookup276: frame_support::weights::PerDispatchClass<T>
+   * Lookup274: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU32: {
     normal: 'u32',
@@ -2156,14 +2141,14 @@
     mandatory: 'u32'
   },
   /**
-   * Lookup277: frame_support::weights::RuntimeDbWeight
+   * Lookup275: frame_support::weights::RuntimeDbWeight
    **/
   FrameSupportWeightsRuntimeDbWeight: {
     read: 'u64',
     write: 'u64'
   },
   /**
-   * Lookup278: sp_version::RuntimeVersion
+   * Lookup276: sp_version::RuntimeVersion
    **/
   SpVersionRuntimeVersion: {
     specName: 'Text',
@@ -2176,19 +2161,19 @@
     stateVersion: 'u8'
   },
   /**
-   * Lookup282: frame_system::pallet::Error<T>
+   * Lookup280: frame_system::pallet::Error<T>
    **/
   FrameSystemError: {
     _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
   },
   /**
-   * Lookup284: orml_vesting::module::Error<T>
+   * Lookup282: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup286: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup284: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -2196,19 +2181,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup287: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup285: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup290: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup288: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup293: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup291: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -2218,13 +2203,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup294: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup292: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup296: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup294: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -2235,29 +2220,29 @@
     xcmpMaxIndividualWeight: 'u64'
   },
   /**
-   * Lookup298: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup296: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup299: pallet_xcm::pallet::Error<T>
+   * Lookup297: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup300: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup298: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup301: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup299: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'u64'
   },
   /**
-   * Lookup302: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup300: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -2265,19 +2250,19 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup305: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup303: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup309: pallet_unique::Error<T>
+   * Lookup307: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
   },
   /**
-   * Lookup310: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup308: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -2293,7 +2278,7 @@
     metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'
   },
   /**
-   * Lookup311: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup309: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipState: {
     _enum: {
@@ -2303,7 +2288,7 @@
     }
   },
   /**
-   * Lookup312: up_data_structs::Properties
+   * Lookup310: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2311,21 +2296,21 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup313: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup311: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup318: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup316: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup324: up_data_structs::CollectionField
+   * Lookup322: up_data_structs::CollectionField
    **/
   UpDataStructsCollectionField: {
     _enum: ['ConstOnChainSchema', 'OffchainSchema']
   },
   /**
-   * Lookup327: up_data_structs::CollectionStats
+   * Lookup325: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -2333,11 +2318,11 @@
     alive: 'u32'
   },
   /**
-   * Lookup328: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+   * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
    **/
-  PhantomTypeUpDataStructsTokenData: '[Lookup329;0]',
+  PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
   /**
-   * Lookup329: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     constData: 'Bytes',
@@ -2345,11 +2330,11 @@
     owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
   },
   /**
-   * Lookup332: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+   * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
    **/
-  PhantomTypeUpDataStructsRpcCollection: '[Lookup333;0]',
+  PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
   /**
-   * Lookup333: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -2369,58 +2354,56 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup335: pallet_common::pallet::Error<T>
+   * Lookup333: pallet_common::pallet::Error<T>
    **/
   PalletCommonError: {
-    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'UnableToReadUnboundedKeys', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
+    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'UnableToReadUnboundedKeys', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
   },
   /**
-   * Lookup337: pallet_fungible::pallet::Error<T>
+   * Lookup335: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup338: pallet_refungible::ItemData
+   * Lookup336: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
-    constData: 'Bytes',
-    variableData: 'Bytes'
+    constData: 'Bytes'
   },
   /**
-   * Lookup342: pallet_refungible::pallet::Error<T>
+   * Lookup340: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup343: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     constData: 'Bytes',
-    variableData: 'Bytes',
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup344: pallet_nonfungible::pallet::Error<T>
+   * Lookup342: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
   },
   /**
-   * Lookup345: pallet_structure::pallet::Error<T>
+   * Lookup343: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup348: pallet_evm::pallet::Error<T>
+   * Lookup346: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
   },
   /**
-   * Lookup351: fp_rpc::TransactionStatus
+   * Lookup349: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -2432,11 +2415,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup353: ethbloom::Bloom
+   * Lookup351: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup355: ethereum::receipt::ReceiptV3
+   * Lookup353: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -2446,7 +2429,7 @@
     }
   },
   /**
-   * Lookup356: ethereum::receipt::EIP658ReceiptData
+   * Lookup354: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -2455,7 +2438,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup357: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -2463,7 +2446,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup358: ethereum::header::Header
+   * Lookup356: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -2483,41 +2466,41 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup359: ethereum_types::hash::H64
+   * Lookup357: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup364: pallet_ethereum::pallet::Error<T>
+   * Lookup362: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup365: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup366: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup364: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup368: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission']
   },
   /**
-   * Lookup369: pallet_evm_migration::pallet::Error<T>
+   * Lookup367: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
   },
   /**
-   * Lookup371: sp_runtime::MultiSignature
+   * Lookup369: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -2527,39 +2510,43 @@
     }
   },
   /**
-   * Lookup372: sp_core::ed25519::Signature
+   * Lookup370: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup374: sp_core::sr25519::Signature
+   * Lookup372: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup375: sp_core::ecdsa::Signature
+   * Lookup373: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup378: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup379: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup382: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup383: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup384: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup385: opal_runtime::Runtime
+   * Lookup383: opal_runtime::Runtime
+   **/
+  OpalRuntimeRuntime: 'Null',
+  /**
+   * Lookup384: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
-  OpalRuntimeRuntime: 'Null'
+  PalletEthereumFakeTransactionFinalizer: 'Null'
 };
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, 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, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsorshipState, 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' {
   export interface InterfaceTypes {
@@ -47,6 +47,7 @@
     EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
     FpRpcTransactionStatus: FpRpcTransactionStatus;
     FrameSupportPalletId: FrameSupportPalletId;
+    FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
     FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
     FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
     FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -88,6 +89,7 @@
     PalletEthereumCall: PalletEthereumCall;
     PalletEthereumError: PalletEthereumError;
     PalletEthereumEvent: PalletEthereumEvent;
+    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
     PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
     PalletEvmCall: PalletEvmCall;
     PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -170,7 +172,6 @@
     UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
     UpDataStructsRpcCollection: UpDataStructsRpcCollection;
     UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;
-    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
     UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;
     UpDataStructsTokenData: UpDataStructsTokenData;
     XcmDoubleEncoded: XcmDoubleEncoded;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1493 readonly itemId: u32;1493 readonly itemId: u32;
1494 readonly value: u128;1494 readonly value: u128;
1495 } & Struct;1495 } & Struct;
1496 readonly isSetVariableMetaData: boolean;
1497 readonly asSetVariableMetaData: {
1498 readonly collectionId: u32;
1499 readonly itemId: u32;
1500 readonly data: Bytes;
1501 } & Struct;
1502 readonly isSetMetaUpdatePermissionFlag: boolean;1496 readonly isSetMetaUpdatePermissionFlag: boolean;
1503 readonly asSetMetaUpdatePermissionFlag: {1497 readonly asSetMetaUpdatePermissionFlag: {
1504 readonly collectionId: u32;1498 readonly collectionId: u32;
1524 readonly collectionId: u32;1518 readonly collectionId: u32;
1525 readonly newLimit: UpDataStructsCollectionLimits;1519 readonly newLimit: UpDataStructsCollectionLimits;
1526 } & Struct;1520 } & Struct;
1527 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';1521 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';
1528 }1522 }
15291523
1530 /** @name UpDataStructsCollectionMode (156) */1524 /** @name UpDataStructsCollectionMode (156) */
1571 export interface UpDataStructsCollectionLimits extends Struct {1565 export interface UpDataStructsCollectionLimits extends Struct {
1572 readonly accountTokenOwnershipLimit: Option<u32>;1566 readonly accountTokenOwnershipLimit: Option<u32>;
1573 readonly sponsoredDataSize: Option<u32>;1567 readonly sponsoredDataSize: Option<u32>;
1574 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;
1575 readonly tokenLimit: Option<u32>;1568 readonly tokenLimit: Option<u32>;
1576 readonly sponsorTransferTimeout: Option<u32>;1569 readonly sponsorTransferTimeout: Option<u32>;
1577 readonly sponsorApproveTimeout: Option<u32>;1570 readonly sponsorApproveTimeout: Option<u32>;
1581 readonly nestingRule: Option<UpDataStructsNestingRule>;1574 readonly nestingRule: Option<UpDataStructsNestingRule>;
1582 }1575 }
1583
1584 /** @name UpDataStructsSponsoringRateLimit (167) */
1585 export interface UpDataStructsSponsoringRateLimit extends Enum {
1586 readonly isSponsoringDisabled: boolean;
1587 readonly isBlocks: boolean;
1588 readonly asBlocks: u32;
1589 readonly type: 'SponsoringDisabled' | 'Blocks';
1590 }
15911576
1592 /** @name UpDataStructsNestingRule (170) */1577 /** @name UpDataStructsNestingRule (168) */
1593 export interface UpDataStructsNestingRule extends Enum {1578 export interface UpDataStructsNestingRule extends Enum {
1594 readonly isDisabled: boolean;1579 readonly isDisabled: boolean;
1595 readonly isOwner: boolean;1580 readonly isOwner: boolean;
1596 readonly isOwnerRestricted: boolean;1581 readonly isOwnerRestricted: boolean;
1597 readonly asOwnerRestricted: BTreeSet<u32>;1582 readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;
1598 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1583 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';
1599 }1584 }
1585
1586 /** @name FrameSupportStorageBoundedBTreeSet (169) */
1587 export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}
16001588
1601 /** @name UpDataStructsMetaUpdatePermission (177) */1589 /** @name UpDataStructsMetaUpdatePermission (175) */
1602 export interface UpDataStructsMetaUpdatePermission extends Enum {1590 export interface UpDataStructsMetaUpdatePermission extends Enum {
1603 readonly isItemOwner: boolean;1591 readonly isItemOwner: boolean;
1604 readonly isAdmin: boolean;1592 readonly isAdmin: boolean;
1605 readonly isNone: boolean;1593 readonly isNone: boolean;
1606 readonly type: 'ItemOwner' | 'Admin' | 'None';1594 readonly type: 'ItemOwner' | 'Admin' | 'None';
1607 }1595 }
16081596
1609 /** @name UpDataStructsPropertyKeyPermission (179) */1597 /** @name UpDataStructsPropertyKeyPermission (177) */
1610 export interface UpDataStructsPropertyKeyPermission extends Struct {1598 export interface UpDataStructsPropertyKeyPermission extends Struct {
1611 readonly key: Bytes;1599 readonly key: Bytes;
1612 readonly permission: UpDataStructsPropertyPermission;1600 readonly permission: UpDataStructsPropertyPermission;
1613 }1601 }
16141602
1615 /** @name UpDataStructsPropertyPermission (181) */1603 /** @name UpDataStructsPropertyPermission (179) */
1616 export interface UpDataStructsPropertyPermission extends Struct {1604 export interface UpDataStructsPropertyPermission extends Struct {
1617 readonly mutable: bool;1605 readonly mutable: bool;
1618 readonly collectionAdmin: bool;1606 readonly collectionAdmin: bool;
1619 readonly tokenOwner: bool;1607 readonly tokenOwner: bool;
1620 }1608 }
16211609
1622 /** @name UpDataStructsProperty (184) */1610 /** @name UpDataStructsProperty (182) */
1623 export interface UpDataStructsProperty extends Struct {1611 export interface UpDataStructsProperty extends Struct {
1624 readonly key: Bytes;1612 readonly key: Bytes;
1625 readonly value: Bytes;1613 readonly value: Bytes;
1626 }1614 }
16271615
1628 /** @name PalletEvmAccountBasicCrossAccountIdRepr (186) */1616 /** @name PalletEvmAccountBasicCrossAccountIdRepr (184) */
1629 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1617 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1630 readonly isSubstrate: boolean;1618 readonly isSubstrate: boolean;
1631 readonly asSubstrate: AccountId32;1619 readonly asSubstrate: AccountId32;
1634 readonly type: 'Substrate' | 'Ethereum';1622 readonly type: 'Substrate' | 'Ethereum';
1635 }1623 }
16361624
1637 /** @name UpDataStructsCreateItemData (188) */1625 /** @name UpDataStructsCreateItemData (186) */
1638 export interface UpDataStructsCreateItemData extends Enum {1626 export interface UpDataStructsCreateItemData extends Enum {
1639 readonly isNft: boolean;1627 readonly isNft: boolean;
1640 readonly asNft: UpDataStructsCreateNftData;1628 readonly asNft: UpDataStructsCreateNftData;
1645 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1633 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
1646 }1634 }
16471635
1648 /** @name UpDataStructsCreateNftData (189) */1636 /** @name UpDataStructsCreateNftData (187) */
1649 export interface UpDataStructsCreateNftData extends Struct {1637 export interface UpDataStructsCreateNftData extends Struct {
1650 readonly constData: Bytes;1638 readonly constData: Bytes;
1651 readonly variableData: Bytes;
1652 readonly properties: Vec<UpDataStructsProperty>;1639 readonly properties: Vec<UpDataStructsProperty>;
1653 }1640 }
16541641
1655 /** @name UpDataStructsCreateFungibleData (191) */1642 /** @name UpDataStructsCreateFungibleData (189) */
1656 export interface UpDataStructsCreateFungibleData extends Struct {1643 export interface UpDataStructsCreateFungibleData extends Struct {
1657 readonly value: u128;1644 readonly value: u128;
1658 }1645 }
16591646
1660 /** @name UpDataStructsCreateReFungibleData (192) */1647 /** @name UpDataStructsCreateReFungibleData (190) */
1661 export interface UpDataStructsCreateReFungibleData extends Struct {1648 export interface UpDataStructsCreateReFungibleData extends Struct {
1662 readonly constData: Bytes;1649 readonly constData: Bytes;
1663 readonly variableData: Bytes;
1664 readonly pieces: u128;1650 readonly pieces: u128;
1665 }1651 }
16661652
1667 /** @name UpDataStructsCreateItemExData (196) */1653 /** @name UpDataStructsCreateItemExData (194) */
1668 export interface UpDataStructsCreateItemExData extends Enum {1654 export interface UpDataStructsCreateItemExData extends Enum {
1669 readonly isNft: boolean;1655 readonly isNft: boolean;
1670 readonly asNft: Vec<UpDataStructsCreateNftExData>;1656 readonly asNft: Vec<UpDataStructsCreateNftExData>;
1677 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1663 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
1678 }1664 }
16791665
1680 /** @name UpDataStructsCreateNftExData (198) */1666 /** @name UpDataStructsCreateNftExData (196) */
1681 export interface UpDataStructsCreateNftExData extends Struct {1667 export interface UpDataStructsCreateNftExData extends Struct {
1682 readonly constData: Bytes;1668 readonly constData: Bytes;
1683 readonly variableData: Bytes;
1684 readonly properties: Vec<UpDataStructsProperty>;1669 readonly properties: Vec<UpDataStructsProperty>;
1685 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1670 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
1686 }1671 }
16871672
1688 /** @name UpDataStructsCreateRefungibleExData (205) */1673 /** @name UpDataStructsCreateRefungibleExData (203) */
1689 export interface UpDataStructsCreateRefungibleExData extends Struct {1674 export interface UpDataStructsCreateRefungibleExData extends Struct {
1690 readonly constData: Bytes;1675 readonly constData: Bytes;
1691 readonly variableData: Bytes;
1692 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1676 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
1693 }1677 }
16941678
1695 /** @name PalletTemplateTransactionPaymentCall (207) */1679 /** @name PalletTemplateTransactionPaymentCall (205) */
1696 export type PalletTemplateTransactionPaymentCall = Null;1680 export type PalletTemplateTransactionPaymentCall = Null;
16971681
1698 /** @name PalletStructureCall (208) */1682 /** @name PalletStructureCall (206) */
1699 export type PalletStructureCall = Null;1683 export type PalletStructureCall = Null;
17001684
1701 /** @name PalletEvmCall (209) */1685 /** @name PalletEvmCall (207) */
1702 export interface PalletEvmCall extends Enum {1686 export interface PalletEvmCall extends Enum {
1703 readonly isWithdraw: boolean;1687 readonly isWithdraw: boolean;
1704 readonly asWithdraw: {1688 readonly asWithdraw: {
1743 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1727 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
1744 }1728 }
17451729
1746 /** @name PalletEthereumCall (215) */1730 /** @name PalletEthereumCall (213) */
1747 export interface PalletEthereumCall extends Enum {1731 export interface PalletEthereumCall extends Enum {
1748 readonly isTransact: boolean;1732 readonly isTransact: boolean;
1749 readonly asTransact: {1733 readonly asTransact: {
1752 readonly type: 'Transact';1736 readonly type: 'Transact';
1753 }1737 }
17541738
1755 /** @name EthereumTransactionTransactionV2 (216) */1739 /** @name EthereumTransactionTransactionV2 (214) */
1756 export interface EthereumTransactionTransactionV2 extends Enum {1740 export interface EthereumTransactionTransactionV2 extends Enum {
1757 readonly isLegacy: boolean;1741 readonly isLegacy: boolean;
1758 readonly asLegacy: EthereumTransactionLegacyTransaction;1742 readonly asLegacy: EthereumTransactionLegacyTransaction;
1763 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1747 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
1764 }1748 }
17651749
1766 /** @name EthereumTransactionLegacyTransaction (217) */1750 /** @name EthereumTransactionLegacyTransaction (215) */
1767 export interface EthereumTransactionLegacyTransaction extends Struct {1751 export interface EthereumTransactionLegacyTransaction extends Struct {
1768 readonly nonce: U256;1752 readonly nonce: U256;
1769 readonly gasPrice: U256;1753 readonly gasPrice: U256;
1774 readonly signature: EthereumTransactionTransactionSignature;1758 readonly signature: EthereumTransactionTransactionSignature;
1775 }1759 }
17761760
1777 /** @name EthereumTransactionTransactionAction (218) */1761 /** @name EthereumTransactionTransactionAction (216) */
1778 export interface EthereumTransactionTransactionAction extends Enum {1762 export interface EthereumTransactionTransactionAction extends Enum {
1779 readonly isCall: boolean;1763 readonly isCall: boolean;
1780 readonly asCall: H160;1764 readonly asCall: H160;
1781 readonly isCreate: boolean;1765 readonly isCreate: boolean;
1782 readonly type: 'Call' | 'Create';1766 readonly type: 'Call' | 'Create';
1783 }1767 }
17841768
1785 /** @name EthereumTransactionTransactionSignature (219) */1769 /** @name EthereumTransactionTransactionSignature (217) */
1786 export interface EthereumTransactionTransactionSignature extends Struct {1770 export interface EthereumTransactionTransactionSignature extends Struct {
1787 readonly v: u64;1771 readonly v: u64;
1788 readonly r: H256;1772 readonly r: H256;
1789 readonly s: H256;1773 readonly s: H256;
1790 }1774 }
17911775
1792 /** @name EthereumTransactionEip2930Transaction (221) */1776 /** @name EthereumTransactionEip2930Transaction (219) */
1793 export interface EthereumTransactionEip2930Transaction extends Struct {1777 export interface EthereumTransactionEip2930Transaction extends Struct {
1794 readonly chainId: u64;1778 readonly chainId: u64;
1795 readonly nonce: U256;1779 readonly nonce: U256;
1804 readonly s: H256;1788 readonly s: H256;
1805 }1789 }
18061790
1807 /** @name EthereumTransactionAccessListItem (223) */1791 /** @name EthereumTransactionAccessListItem (221) */
1808 export interface EthereumTransactionAccessListItem extends Struct {1792 export interface EthereumTransactionAccessListItem extends Struct {
1809 readonly address: H160;1793 readonly address: H160;
1810 readonly storageKeys: Vec<H256>;1794 readonly storageKeys: Vec<H256>;
1811 }1795 }
18121796
1813 /** @name EthereumTransactionEip1559Transaction (224) */1797 /** @name EthereumTransactionEip1559Transaction (222) */
1814 export interface EthereumTransactionEip1559Transaction extends Struct {1798 export interface EthereumTransactionEip1559Transaction extends Struct {
1815 readonly chainId: u64;1799 readonly chainId: u64;
1816 readonly nonce: U256;1800 readonly nonce: U256;
1826 readonly s: H256;1810 readonly s: H256;
1827 }1811 }
18281812
1829 /** @name PalletEvmMigrationCall (225) */1813 /** @name PalletEvmMigrationCall (223) */
1830 export interface PalletEvmMigrationCall extends Enum {1814 export interface PalletEvmMigrationCall extends Enum {
1831 readonly isBegin: boolean;1815 readonly isBegin: boolean;
1832 readonly asBegin: {1816 readonly asBegin: {
1845 readonly type: 'Begin' | 'SetData' | 'Finish';1829 readonly type: 'Begin' | 'SetData' | 'Finish';
1846 }1830 }
18471831
1848 /** @name PalletSudoEvent (228) */1832 /** @name PalletSudoEvent (226) */
1849 export interface PalletSudoEvent extends Enum {1833 export interface PalletSudoEvent extends Enum {
1850 readonly isSudid: boolean;1834 readonly isSudid: boolean;
1851 readonly asSudid: {1835 readonly asSudid: {
1862 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1846 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
1863 }1847 }
18641848
1865 /** @name SpRuntimeDispatchError (230) */1849 /** @name SpRuntimeDispatchError (228) */
1866 export interface SpRuntimeDispatchError extends Enum {1850 export interface SpRuntimeDispatchError extends Enum {
1867 readonly isOther: boolean;1851 readonly isOther: boolean;
1868 readonly isCannotLookup: boolean;1852 readonly isCannotLookup: boolean;
1881 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1865 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
1882 }1866 }
18831867
1884 /** @name SpRuntimeModuleError (231) */1868 /** @name SpRuntimeModuleError (229) */
1885 export interface SpRuntimeModuleError extends Struct {1869 export interface SpRuntimeModuleError extends Struct {
1886 readonly index: u8;1870 readonly index: u8;
1887 readonly error: U8aFixed;1871 readonly error: U8aFixed;
1888 }1872 }
18891873
1890 /** @name SpRuntimeTokenError (232) */1874 /** @name SpRuntimeTokenError (230) */
1891 export interface SpRuntimeTokenError extends Enum {1875 export interface SpRuntimeTokenError extends Enum {
1892 readonly isNoFunds: boolean;1876 readonly isNoFunds: boolean;
1893 readonly isWouldDie: boolean;1877 readonly isWouldDie: boolean;
1899 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1883 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
1900 }1884 }
19011885
1902 /** @name SpRuntimeArithmeticError (233) */1886 /** @name SpRuntimeArithmeticError (231) */
1903 export interface SpRuntimeArithmeticError extends Enum {1887 export interface SpRuntimeArithmeticError extends Enum {
1904 readonly isUnderflow: boolean;1888 readonly isUnderflow: boolean;
1905 readonly isOverflow: boolean;1889 readonly isOverflow: boolean;
1906 readonly isDivisionByZero: boolean;1890 readonly isDivisionByZero: boolean;
1907 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1891 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
1908 }1892 }
19091893
1910 /** @name SpRuntimeTransactionalError (234) */1894 /** @name SpRuntimeTransactionalError (232) */
1911 export interface SpRuntimeTransactionalError extends Enum {1895 export interface SpRuntimeTransactionalError extends Enum {
1912 readonly isLimitReached: boolean;1896 readonly isLimitReached: boolean;
1913 readonly isNoLayer: boolean;1897 readonly isNoLayer: boolean;
1914 readonly type: 'LimitReached' | 'NoLayer';1898 readonly type: 'LimitReached' | 'NoLayer';
1915 }1899 }
19161900
1917 /** @name PalletSudoError (235) */1901 /** @name PalletSudoError (233) */
1918 export interface PalletSudoError extends Enum {1902 export interface PalletSudoError extends Enum {
1919 readonly isRequireSudo: boolean;1903 readonly isRequireSudo: boolean;
1920 readonly type: 'RequireSudo';1904 readonly type: 'RequireSudo';
1921 }1905 }
19221906
1923 /** @name FrameSystemAccountInfo (236) */1907 /** @name FrameSystemAccountInfo (234) */
1924 export interface FrameSystemAccountInfo extends Struct {1908 export interface FrameSystemAccountInfo extends Struct {
1925 readonly nonce: u32;1909 readonly nonce: u32;
1926 readonly consumers: u32;1910 readonly consumers: u32;
1929 readonly data: PalletBalancesAccountData;1913 readonly data: PalletBalancesAccountData;
1930 }1914 }
19311915
1932 /** @name FrameSupportWeightsPerDispatchClassU64 (237) */1916 /** @name FrameSupportWeightsPerDispatchClassU64 (235) */
1933 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1917 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
1934 readonly normal: u64;1918 readonly normal: u64;
1935 readonly operational: u64;1919 readonly operational: u64;
1936 readonly mandatory: u64;1920 readonly mandatory: u64;
1937 }1921 }
19381922
1939 /** @name SpRuntimeDigest (238) */1923 /** @name SpRuntimeDigest (236) */
1940 export interface SpRuntimeDigest extends Struct {1924 export interface SpRuntimeDigest extends Struct {
1941 readonly logs: Vec<SpRuntimeDigestDigestItem>;1925 readonly logs: Vec<SpRuntimeDigestDigestItem>;
1942 }1926 }
19431927
1944 /** @name SpRuntimeDigestDigestItem (240) */1928 /** @name SpRuntimeDigestDigestItem (238) */
1945 export interface SpRuntimeDigestDigestItem extends Enum {1929 export interface SpRuntimeDigestDigestItem extends Enum {
1946 readonly isOther: boolean;1930 readonly isOther: boolean;
1947 readonly asOther: Bytes;1931 readonly asOther: Bytes;
1955 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1939 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
1956 }1940 }
19571941
1958 /** @name FrameSystemEventRecord (242) */1942 /** @name FrameSystemEventRecord (240) */
1959 export interface FrameSystemEventRecord extends Struct {1943 export interface FrameSystemEventRecord extends Struct {
1960 readonly phase: FrameSystemPhase;1944 readonly phase: FrameSystemPhase;
1961 readonly event: Event;1945 readonly event: Event;
1962 readonly topics: Vec<H256>;1946 readonly topics: Vec<H256>;
1963 }1947 }
19641948
1965 /** @name FrameSystemEvent (244) */1949 /** @name FrameSystemEvent (242) */
1966 export interface FrameSystemEvent extends Enum {1950 export interface FrameSystemEvent extends Enum {
1967 readonly isExtrinsicSuccess: boolean;1951 readonly isExtrinsicSuccess: boolean;
1968 readonly asExtrinsicSuccess: {1952 readonly asExtrinsicSuccess: {
1990 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1974 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
1991 }1975 }
19921976
1993 /** @name FrameSupportWeightsDispatchInfo (245) */1977 /** @name FrameSupportWeightsDispatchInfo (243) */
1994 export interface FrameSupportWeightsDispatchInfo extends Struct {1978 export interface FrameSupportWeightsDispatchInfo extends Struct {
1995 readonly weight: u64;1979 readonly weight: u64;
1996 readonly class: FrameSupportWeightsDispatchClass;1980 readonly class: FrameSupportWeightsDispatchClass;
1997 readonly paysFee: FrameSupportWeightsPays;1981 readonly paysFee: FrameSupportWeightsPays;
1998 }1982 }
19991983
2000 /** @name FrameSupportWeightsDispatchClass (246) */1984 /** @name FrameSupportWeightsDispatchClass (244) */
2001 export interface FrameSupportWeightsDispatchClass extends Enum {1985 export interface FrameSupportWeightsDispatchClass extends Enum {
2002 readonly isNormal: boolean;1986 readonly isNormal: boolean;
2003 readonly isOperational: boolean;1987 readonly isOperational: boolean;
2004 readonly isMandatory: boolean;1988 readonly isMandatory: boolean;
2005 readonly type: 'Normal' | 'Operational' | 'Mandatory';1989 readonly type: 'Normal' | 'Operational' | 'Mandatory';
2006 }1990 }
20071991
2008 /** @name FrameSupportWeightsPays (247) */1992 /** @name FrameSupportWeightsPays (245) */
2009 export interface FrameSupportWeightsPays extends Enum {1993 export interface FrameSupportWeightsPays extends Enum {
2010 readonly isYes: boolean;1994 readonly isYes: boolean;
2011 readonly isNo: boolean;1995 readonly isNo: boolean;
2012 readonly type: 'Yes' | 'No';1996 readonly type: 'Yes' | 'No';
2013 }1997 }
20141998
2015 /** @name OrmlVestingModuleEvent (248) */1999 /** @name OrmlVestingModuleEvent (246) */
2016 export interface OrmlVestingModuleEvent extends Enum {2000 export interface OrmlVestingModuleEvent extends Enum {
2017 readonly isVestingScheduleAdded: boolean;2001 readonly isVestingScheduleAdded: boolean;
2018 readonly asVestingScheduleAdded: {2002 readonly asVestingScheduleAdded: {
2032 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2016 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
2033 }2017 }
20342018
2035 /** @name CumulusPalletXcmpQueueEvent (249) */2019 /** @name CumulusPalletXcmpQueueEvent (247) */
2036 export interface CumulusPalletXcmpQueueEvent extends Enum {2020 export interface CumulusPalletXcmpQueueEvent extends Enum {
2037 readonly isSuccess: boolean;2021 readonly isSuccess: boolean;
2038 readonly asSuccess: Option<H256>;2022 readonly asSuccess: Option<H256>;
2053 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2037 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
2054 }2038 }
20552039
2056 /** @name PalletXcmEvent (250) */2040 /** @name PalletXcmEvent (248) */
2057 export interface PalletXcmEvent extends Enum {2041 export interface PalletXcmEvent extends Enum {
2058 readonly isAttempted: boolean;2042 readonly isAttempted: boolean;
2059 readonly asAttempted: XcmV2TraitsOutcome;2043 readonly asAttempted: XcmV2TraitsOutcome;
2090 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2074 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
2091 }2075 }
20922076
2093 /** @name XcmV2TraitsOutcome (251) */2077 /** @name XcmV2TraitsOutcome (249) */
2094 export interface XcmV2TraitsOutcome extends Enum {2078 export interface XcmV2TraitsOutcome extends Enum {
2095 readonly isComplete: boolean;2079 readonly isComplete: boolean;
2096 readonly asComplete: u64;2080 readonly asComplete: u64;
2101 readonly type: 'Complete' | 'Incomplete' | 'Error';2085 readonly type: 'Complete' | 'Incomplete' | 'Error';
2102 }2086 }
21032087
2104 /** @name CumulusPalletXcmEvent (253) */2088 /** @name CumulusPalletXcmEvent (251) */
2105 export interface CumulusPalletXcmEvent extends Enum {2089 export interface CumulusPalletXcmEvent extends Enum {
2106 readonly isInvalidFormat: boolean;2090 readonly isInvalidFormat: boolean;
2107 readonly asInvalidFormat: U8aFixed;2091 readonly asInvalidFormat: U8aFixed;
2112 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2096 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
2113 }2097 }
21142098
2115 /** @name CumulusPalletDmpQueueEvent (254) */2099 /** @name CumulusPalletDmpQueueEvent (252) */
2116 export interface CumulusPalletDmpQueueEvent extends Enum {2100 export interface CumulusPalletDmpQueueEvent extends Enum {
2117 readonly isInvalidFormat: boolean;2101 readonly isInvalidFormat: boolean;
2118 readonly asInvalidFormat: U8aFixed;2102 readonly asInvalidFormat: U8aFixed;
2129 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2113 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
2130 }2114 }
21312115
2132 /** @name PalletUniqueRawEvent (255) */2116 /** @name PalletUniqueRawEvent (253) */
2133 export interface PalletUniqueRawEvent extends Enum {2117 export interface PalletUniqueRawEvent extends Enum {
2134 readonly isCollectionSponsorRemoved: boolean;2118 readonly isCollectionSponsorRemoved: boolean;
2135 readonly asCollectionSponsorRemoved: u32;2119 readonly asCollectionSponsorRemoved: u32;
2162 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';2146 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';
2163 }2147 }
21642148
2165 /** @name PalletCommonEvent (256) */2149 /** @name PalletCommonEvent (254) */
2166 export interface PalletCommonEvent extends Enum {2150 export interface PalletCommonEvent extends Enum {
2167 readonly isCollectionCreated: boolean;2151 readonly isCollectionCreated: boolean;
2168 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2152 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
2189 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2173 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
2190 }2174 }
21912175
2192 /** @name PalletStructureEvent (257) */2176 /** @name PalletStructureEvent (255) */
2193 export interface PalletStructureEvent extends Enum {2177 export interface PalletStructureEvent extends Enum {
2194 readonly isExecuted: boolean;2178 readonly isExecuted: boolean;
2195 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2179 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
2196 readonly type: 'Executed';2180 readonly type: 'Executed';
2197 }2181 }
21982182
2199 /** @name PalletEvmEvent (258) */2183 /** @name PalletEvmEvent (256) */
2200 export interface PalletEvmEvent extends Enum {2184 export interface PalletEvmEvent extends Enum {
2201 readonly isLog: boolean;2185 readonly isLog: boolean;
2202 readonly asLog: EthereumLog;2186 readonly asLog: EthereumLog;
2215 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2199 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
2216 }2200 }
22172201
2218 /** @name EthereumLog (259) */2202 /** @name EthereumLog (257) */
2219 export interface EthereumLog extends Struct {2203 export interface EthereumLog extends Struct {
2220 readonly address: H160;2204 readonly address: H160;
2221 readonly topics: Vec<H256>;2205 readonly topics: Vec<H256>;
2222 readonly data: Bytes;2206 readonly data: Bytes;
2223 }2207 }
22242208
2225 /** @name PalletEthereumEvent (260) */2209 /** @name PalletEthereumEvent (258) */
2226 export interface PalletEthereumEvent extends Enum {2210 export interface PalletEthereumEvent extends Enum {
2227 readonly isExecuted: boolean;2211 readonly isExecuted: boolean;
2228 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2212 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
2229 readonly type: 'Executed';2213 readonly type: 'Executed';
2230 }2214 }
22312215
2232 /** @name EvmCoreErrorExitReason (261) */2216 /** @name EvmCoreErrorExitReason (259) */
2233 export interface EvmCoreErrorExitReason extends Enum {2217 export interface EvmCoreErrorExitReason extends Enum {
2234 readonly isSucceed: boolean;2218 readonly isSucceed: boolean;
2235 readonly asSucceed: EvmCoreErrorExitSucceed;2219 readonly asSucceed: EvmCoreErrorExitSucceed;
2242 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2226 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
2243 }2227 }
22442228
2245 /** @name EvmCoreErrorExitSucceed (262) */2229 /** @name EvmCoreErrorExitSucceed (260) */
2246 export interface EvmCoreErrorExitSucceed extends Enum {2230 export interface EvmCoreErrorExitSucceed extends Enum {
2247 readonly isStopped: boolean;2231 readonly isStopped: boolean;
2248 readonly isReturned: boolean;2232 readonly isReturned: boolean;
2249 readonly isSuicided: boolean;2233 readonly isSuicided: boolean;
2250 readonly type: 'Stopped' | 'Returned' | 'Suicided';2234 readonly type: 'Stopped' | 'Returned' | 'Suicided';
2251 }2235 }
22522236
2253 /** @name EvmCoreErrorExitError (263) */2237 /** @name EvmCoreErrorExitError (261) */
2254 export interface EvmCoreErrorExitError extends Enum {2238 export interface EvmCoreErrorExitError extends Enum {
2255 readonly isStackUnderflow: boolean;2239 readonly isStackUnderflow: boolean;
2256 readonly isStackOverflow: boolean;2240 readonly isStackOverflow: boolean;
2271 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2255 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
2272 }2256 }
22732257
2274 /** @name EvmCoreErrorExitRevert (266) */2258 /** @name EvmCoreErrorExitRevert (264) */
2275 export interface EvmCoreErrorExitRevert extends Enum {2259 export interface EvmCoreErrorExitRevert extends Enum {
2276 readonly isReverted: boolean;2260 readonly isReverted: boolean;
2277 readonly type: 'Reverted';2261 readonly type: 'Reverted';
2278 }2262 }
22792263
2280 /** @name EvmCoreErrorExitFatal (267) */2264 /** @name EvmCoreErrorExitFatal (265) */
2281 export interface EvmCoreErrorExitFatal extends Enum {2265 export interface EvmCoreErrorExitFatal extends Enum {
2282 readonly isNotSupported: boolean;2266 readonly isNotSupported: boolean;
2283 readonly isUnhandledInterrupt: boolean;2267 readonly isUnhandledInterrupt: boolean;
2288 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2272 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
2289 }2273 }
22902274
2291 /** @name FrameSystemPhase (268) */2275 /** @name FrameSystemPhase (266) */
2292 export interface FrameSystemPhase extends Enum {2276 export interface FrameSystemPhase extends Enum {
2293 readonly isApplyExtrinsic: boolean;2277 readonly isApplyExtrinsic: boolean;
2294 readonly asApplyExtrinsic: u32;2278 readonly asApplyExtrinsic: u32;
2297 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2281 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
2298 }2282 }
22992283
2300 /** @name FrameSystemLastRuntimeUpgradeInfo (270) */2284 /** @name FrameSystemLastRuntimeUpgradeInfo (268) */
2301 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2285 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2302 readonly specVersion: Compact<u32>;2286 readonly specVersion: Compact<u32>;
2303 readonly specName: Text;2287 readonly specName: Text;
2304 }2288 }
23052289
2306 /** @name FrameSystemLimitsBlockWeights (271) */2290 /** @name FrameSystemLimitsBlockWeights (269) */
2307 export interface FrameSystemLimitsBlockWeights extends Struct {2291 export interface FrameSystemLimitsBlockWeights extends Struct {
2308 readonly baseBlock: u64;2292 readonly baseBlock: u64;
2309 readonly maxBlock: u64;2293 readonly maxBlock: u64;
2310 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2294 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
2311 }2295 }
23122296
2313 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (272) */2297 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (270) */
2314 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2298 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
2315 readonly normal: FrameSystemLimitsWeightsPerClass;2299 readonly normal: FrameSystemLimitsWeightsPerClass;
2316 readonly operational: FrameSystemLimitsWeightsPerClass;2300 readonly operational: FrameSystemLimitsWeightsPerClass;
2317 readonly mandatory: FrameSystemLimitsWeightsPerClass;2301 readonly mandatory: FrameSystemLimitsWeightsPerClass;
2318 }2302 }
23192303
2320 /** @name FrameSystemLimitsWeightsPerClass (273) */2304 /** @name FrameSystemLimitsWeightsPerClass (271) */
2321 export interface FrameSystemLimitsWeightsPerClass extends Struct {2305 export interface FrameSystemLimitsWeightsPerClass extends Struct {
2322 readonly baseExtrinsic: u64;2306 readonly baseExtrinsic: u64;
2323 readonly maxExtrinsic: Option<u64>;2307 readonly maxExtrinsic: Option<u64>;
2324 readonly maxTotal: Option<u64>;2308 readonly maxTotal: Option<u64>;
2325 readonly reserved: Option<u64>;2309 readonly reserved: Option<u64>;
2326 }2310 }
23272311
2328 /** @name FrameSystemLimitsBlockLength (275) */2312 /** @name FrameSystemLimitsBlockLength (273) */
2329 export interface FrameSystemLimitsBlockLength extends Struct {2313 export interface FrameSystemLimitsBlockLength extends Struct {
2330 readonly max: FrameSupportWeightsPerDispatchClassU32;2314 readonly max: FrameSupportWeightsPerDispatchClassU32;
2331 }2315 }
23322316
2333 /** @name FrameSupportWeightsPerDispatchClassU32 (276) */2317 /** @name FrameSupportWeightsPerDispatchClassU32 (274) */
2334 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2318 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
2335 readonly normal: u32;2319 readonly normal: u32;
2336 readonly operational: u32;2320 readonly operational: u32;
2337 readonly mandatory: u32;2321 readonly mandatory: u32;
2338 }2322 }
23392323
2340 /** @name FrameSupportWeightsRuntimeDbWeight (277) */2324 /** @name FrameSupportWeightsRuntimeDbWeight (275) */
2341 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2325 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
2342 readonly read: u64;2326 readonly read: u64;
2343 readonly write: u64;2327 readonly write: u64;
2344 }2328 }
23452329
2346 /** @name SpVersionRuntimeVersion (278) */2330 /** @name SpVersionRuntimeVersion (276) */
2347 export interface SpVersionRuntimeVersion extends Struct {2331 export interface SpVersionRuntimeVersion extends Struct {
2348 readonly specName: Text;2332 readonly specName: Text;
2349 readonly implName: Text;2333 readonly implName: Text;
2355 readonly stateVersion: u8;2339 readonly stateVersion: u8;
2356 }2340 }
23572341
2358 /** @name FrameSystemError (282) */2342 /** @name FrameSystemError (280) */
2359 export interface FrameSystemError extends Enum {2343 export interface FrameSystemError extends Enum {
2360 readonly isInvalidSpecName: boolean;2344 readonly isInvalidSpecName: boolean;
2361 readonly isSpecVersionNeedsToIncrease: boolean;2345 readonly isSpecVersionNeedsToIncrease: boolean;
2366 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2350 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
2367 }2351 }
23682352
2369 /** @name OrmlVestingModuleError (284) */2353 /** @name OrmlVestingModuleError (282) */
2370 export interface OrmlVestingModuleError extends Enum {2354 export interface OrmlVestingModuleError extends Enum {
2371 readonly isZeroVestingPeriod: boolean;2355 readonly isZeroVestingPeriod: boolean;
2372 readonly isZeroVestingPeriodCount: boolean;2356 readonly isZeroVestingPeriodCount: boolean;
2377 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2361 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
2378 }2362 }
23792363
2380 /** @name CumulusPalletXcmpQueueInboundChannelDetails (286) */2364 /** @name CumulusPalletXcmpQueueInboundChannelDetails (284) */
2381 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2365 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
2382 readonly sender: u32;2366 readonly sender: u32;
2383 readonly state: CumulusPalletXcmpQueueInboundState;2367 readonly state: CumulusPalletXcmpQueueInboundState;
2384 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2368 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
2385 }2369 }
23862370
2387 /** @name CumulusPalletXcmpQueueInboundState (287) */2371 /** @name CumulusPalletXcmpQueueInboundState (285) */
2388 export interface CumulusPalletXcmpQueueInboundState extends Enum {2372 export interface CumulusPalletXcmpQueueInboundState extends Enum {
2389 readonly isOk: boolean;2373 readonly isOk: boolean;
2390 readonly isSuspended: boolean;2374 readonly isSuspended: boolean;
2391 readonly type: 'Ok' | 'Suspended';2375 readonly type: 'Ok' | 'Suspended';
2392 }2376 }
23932377
2394 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (290) */2378 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (288) */
2395 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2379 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
2396 readonly isConcatenatedVersionedXcm: boolean;2380 readonly isConcatenatedVersionedXcm: boolean;
2397 readonly isConcatenatedEncodedBlob: boolean;2381 readonly isConcatenatedEncodedBlob: boolean;
2398 readonly isSignals: boolean;2382 readonly isSignals: boolean;
2399 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2383 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
2400 }2384 }
24012385
2402 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (293) */2386 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (291) */
2403 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2387 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
2404 readonly recipient: u32;2388 readonly recipient: u32;
2405 readonly state: CumulusPalletXcmpQueueOutboundState;2389 readonly state: CumulusPalletXcmpQueueOutboundState;
2408 readonly lastIndex: u16;2392 readonly lastIndex: u16;
2409 }2393 }
24102394
2411 /** @name CumulusPalletXcmpQueueOutboundState (294) */2395 /** @name CumulusPalletXcmpQueueOutboundState (292) */
2412 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2396 export interface CumulusPalletXcmpQueueOutboundState extends Enum {
2413 readonly isOk: boolean;2397 readonly isOk: boolean;
2414 readonly isSuspended: boolean;2398 readonly isSuspended: boolean;
2415 readonly type: 'Ok' | 'Suspended';2399 readonly type: 'Ok' | 'Suspended';
2416 }2400 }
24172401
2418 /** @name CumulusPalletXcmpQueueQueueConfigData (296) */2402 /** @name CumulusPalletXcmpQueueQueueConfigData (294) */
2419 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2403 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
2420 readonly suspendThreshold: u32;2404 readonly suspendThreshold: u32;
2421 readonly dropThreshold: u32;2405 readonly dropThreshold: u32;
2425 readonly xcmpMaxIndividualWeight: u64;2409 readonly xcmpMaxIndividualWeight: u64;
2426 }2410 }
24272411
2428 /** @name CumulusPalletXcmpQueueError (298) */2412 /** @name CumulusPalletXcmpQueueError (296) */
2429 export interface CumulusPalletXcmpQueueError extends Enum {2413 export interface CumulusPalletXcmpQueueError extends Enum {
2430 readonly isFailedToSend: boolean;2414 readonly isFailedToSend: boolean;
2431 readonly isBadXcmOrigin: boolean;2415 readonly isBadXcmOrigin: boolean;
2435 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2419 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
2436 }2420 }
24372421
2438 /** @name PalletXcmError (299) */2422 /** @name PalletXcmError (297) */
2439 export interface PalletXcmError extends Enum {2423 export interface PalletXcmError extends Enum {
2440 readonly isUnreachable: boolean;2424 readonly isUnreachable: boolean;
2441 readonly isSendFailure: boolean;2425 readonly isSendFailure: boolean;
2453 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2437 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
2454 }2438 }
24552439
2456 /** @name CumulusPalletXcmError (300) */2440 /** @name CumulusPalletXcmError (298) */
2457 export type CumulusPalletXcmError = Null;2441 export type CumulusPalletXcmError = Null;
24582442
2459 /** @name CumulusPalletDmpQueueConfigData (301) */2443 /** @name CumulusPalletDmpQueueConfigData (299) */
2460 export interface CumulusPalletDmpQueueConfigData extends Struct {2444 export interface CumulusPalletDmpQueueConfigData extends Struct {
2461 readonly maxIndividual: u64;2445 readonly maxIndividual: u64;
2462 }2446 }
24632447
2464 /** @name CumulusPalletDmpQueuePageIndexData (302) */2448 /** @name CumulusPalletDmpQueuePageIndexData (300) */
2465 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2449 export interface CumulusPalletDmpQueuePageIndexData extends Struct {
2466 readonly beginUsed: u32;2450 readonly beginUsed: u32;
2467 readonly endUsed: u32;2451 readonly endUsed: u32;
2468 readonly overweightCount: u64;2452 readonly overweightCount: u64;
2469 }2453 }
24702454
2471 /** @name CumulusPalletDmpQueueError (305) */2455 /** @name CumulusPalletDmpQueueError (303) */
2472 export interface CumulusPalletDmpQueueError extends Enum {2456 export interface CumulusPalletDmpQueueError extends Enum {
2473 readonly isUnknown: boolean;2457 readonly isUnknown: boolean;
2474 readonly isOverLimit: boolean;2458 readonly isOverLimit: boolean;
2475 readonly type: 'Unknown' | 'OverLimit';2459 readonly type: 'Unknown' | 'OverLimit';
2476 }2460 }
24772461
2478 /** @name PalletUniqueError (309) */2462 /** @name PalletUniqueError (307) */
2479 export interface PalletUniqueError extends Enum {2463 export interface PalletUniqueError extends Enum {
2480 readonly isCollectionDecimalPointLimitExceeded: boolean;2464 readonly isCollectionDecimalPointLimitExceeded: boolean;
2481 readonly isConfirmUnsetSponsorFail: boolean;2465 readonly isConfirmUnsetSponsorFail: boolean;
2482 readonly isEmptyArgument: boolean;2466 readonly isEmptyArgument: boolean;
2483 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2467 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
2484 }2468 }
24852469
2486 /** @name UpDataStructsCollection (310) */2470 /** @name UpDataStructsCollection (308) */
2487 export interface UpDataStructsCollection extends Struct {2471 export interface UpDataStructsCollection extends Struct {
2488 readonly owner: AccountId32;2472 readonly owner: AccountId32;
2489 readonly mode: UpDataStructsCollectionMode;2473 readonly mode: UpDataStructsCollectionMode;
2498 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2482 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
2499 }2483 }
25002484
2501 /** @name UpDataStructsSponsorshipState (311) */2485 /** @name UpDataStructsSponsorshipState (309) */
2502 export interface UpDataStructsSponsorshipState extends Enum {2486 export interface UpDataStructsSponsorshipState extends Enum {
2503 readonly isDisabled: boolean;2487 readonly isDisabled: boolean;
2504 readonly isUnconfirmed: boolean;2488 readonly isUnconfirmed: boolean;
2508 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2492 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
2509 }2493 }
25102494
2511 /** @name UpDataStructsProperties (312) */2495 /** @name UpDataStructsProperties (310) */
2512 export interface UpDataStructsProperties extends Struct {2496 export interface UpDataStructsProperties extends Struct {
2513 readonly map: UpDataStructsPropertiesMapBoundedVec;2497 readonly map: UpDataStructsPropertiesMapBoundedVec;
2514 readonly consumedSpace: u32;2498 readonly consumedSpace: u32;
2515 readonly spaceLimit: u32;2499 readonly spaceLimit: u32;
2516 }2500 }
25172501
2518 /** @name UpDataStructsPropertiesMapBoundedVec (313) */2502 /** @name UpDataStructsPropertiesMapBoundedVec (311) */
2519 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}2503 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
25202504
2521 /** @name UpDataStructsPropertiesMapPropertyPermission (318) */2505 /** @name UpDataStructsPropertiesMapPropertyPermission (316) */
2522 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}2506 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
25232507
2524 /** @name UpDataStructsCollectionField (324) */2508 /** @name UpDataStructsCollectionField (322) */
2525 export interface UpDataStructsCollectionField extends Enum {2509 export interface UpDataStructsCollectionField extends Enum {
2526 readonly isConstOnChainSchema: boolean;2510 readonly isConstOnChainSchema: boolean;
2527 readonly isOffchainSchema: boolean;2511 readonly isOffchainSchema: boolean;
2528 readonly type: 'ConstOnChainSchema' | 'OffchainSchema';2512 readonly type: 'ConstOnChainSchema' | 'OffchainSchema';
2529 }2513 }
25302514
2531 /** @name UpDataStructsCollectionStats (327) */2515 /** @name UpDataStructsCollectionStats (325) */
2532 export interface UpDataStructsCollectionStats extends Struct {2516 export interface UpDataStructsCollectionStats extends Struct {
2533 readonly created: u32;2517 readonly created: u32;
2534 readonly destroyed: u32;2518 readonly destroyed: u32;
2535 readonly alive: u32;2519 readonly alive: u32;
2536 }2520 }
25372521
2538 /** @name PhantomTypeUpDataStructsTokenData (328) */2522 /** @name PhantomTypeUpDataStructsTokenData (326) */
2539 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}2523 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}
25402524
2541 /** @name UpDataStructsTokenData (329) */2525 /** @name UpDataStructsTokenData (327) */
2542 export interface UpDataStructsTokenData extends Struct {2526 export interface UpDataStructsTokenData extends Struct {
2543 readonly constData: Bytes;2527 readonly constData: Bytes;
2544 readonly properties: Vec<UpDataStructsProperty>;2528 readonly properties: Vec<UpDataStructsProperty>;
2545 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2529 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
2546 }2530 }
25472531
2548 /** @name PhantomTypeUpDataStructsRpcCollection (332) */2532 /** @name PhantomTypeUpDataStructsRpcCollection (330) */
2549 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}2533 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}
25502534
2551 /** @name UpDataStructsRpcCollection (333) */2535 /** @name UpDataStructsRpcCollection (331) */
2552 export interface UpDataStructsRpcCollection extends Struct {2536 export interface UpDataStructsRpcCollection extends Struct {
2553 readonly owner: AccountId32;2537 readonly owner: AccountId32;
2554 readonly mode: UpDataStructsCollectionMode;2538 readonly mode: UpDataStructsCollectionMode;
2567 readonly properties: Vec<UpDataStructsProperty>;2551 readonly properties: Vec<UpDataStructsProperty>;
2568 }2552 }
25692553
2570 /** @name PalletCommonError (335) */2554 /** @name PalletCommonError (333) */
2571 export interface PalletCommonError extends Enum {2555 export interface PalletCommonError extends Enum {
2572 readonly isCollectionNotFound: boolean;2556 readonly isCollectionNotFound: boolean;
2573 readonly isMustBeTokenOwner: boolean;2557 readonly isMustBeTokenOwner: boolean;
2578 readonly isCollectionDescriptionLimitExceeded: boolean;2562 readonly isCollectionDescriptionLimitExceeded: boolean;
2579 readonly isCollectionTokenPrefixLimitExceeded: boolean;2563 readonly isCollectionTokenPrefixLimitExceeded: boolean;
2580 readonly isTotalCollectionsLimitExceeded: boolean;2564 readonly isTotalCollectionsLimitExceeded: boolean;
2581 readonly isTokenVariableDataLimitExceeded: boolean;
2582 readonly isCollectionAdminCountExceeded: boolean;2565 readonly isCollectionAdminCountExceeded: boolean;
2583 readonly isCollectionLimitBoundsExceeded: boolean;2566 readonly isCollectionLimitBoundsExceeded: boolean;
2584 readonly isOwnerPermissionsCantBeReverted: boolean;2567 readonly isOwnerPermissionsCantBeReverted: boolean;
2602 readonly isUnableToReadUnboundedKeys: boolean;2585 readonly isUnableToReadUnboundedKeys: boolean;
2603 readonly isInvalidCharacterInPropertyKey: boolean;2586 readonly isInvalidCharacterInPropertyKey: boolean;
2604 readonly isEmptyPropertyKey: boolean;2587 readonly isEmptyPropertyKey: boolean;
2605 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'UnableToReadUnboundedKeys' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';2588 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'UnableToReadUnboundedKeys' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';
2606 }2589 }
26072590
2608 /** @name PalletFungibleError (337) */2591 /** @name PalletFungibleError (335) */
2609 export interface PalletFungibleError extends Enum {2592 export interface PalletFungibleError extends Enum {
2610 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2593 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
2611 readonly isFungibleItemsHaveNoId: boolean;2594 readonly isFungibleItemsHaveNoId: boolean;
2615 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2598 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
2616 }2599 }
26172600
2618 /** @name PalletRefungibleItemData (338) */2601 /** @name PalletRefungibleItemData (336) */
2619 export interface PalletRefungibleItemData extends Struct {2602 export interface PalletRefungibleItemData extends Struct {
2620 readonly constData: Bytes;2603 readonly constData: Bytes;
2621 readonly variableData: Bytes;
2622 }2604 }
26232605
2624 /** @name PalletRefungibleError (342) */2606 /** @name PalletRefungibleError (340) */
2625 export interface PalletRefungibleError extends Enum {2607 export interface PalletRefungibleError extends Enum {
2626 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2608 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
2627 readonly isWrongRefungiblePieces: boolean;2609 readonly isWrongRefungiblePieces: boolean;
2630 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2612 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
2631 }2613 }
26322614
2633 /** @name PalletNonfungibleItemData (343) */2615 /** @name PalletNonfungibleItemData (341) */
2634 export interface PalletNonfungibleItemData extends Struct {2616 export interface PalletNonfungibleItemData extends Struct {
2635 readonly constData: Bytes;2617 readonly constData: Bytes;
2636 readonly variableData: Bytes;
2637 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2618 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2638 }2619 }
26392620
2640 /** @name PalletNonfungibleError (344) */2621 /** @name PalletNonfungibleError (342) */
2641 export interface PalletNonfungibleError extends Enum {2622 export interface PalletNonfungibleError extends Enum {
2642 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2623 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
2643 readonly isNonfungibleItemsHaveNoAmount: boolean;2624 readonly isNonfungibleItemsHaveNoAmount: boolean;
2644 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2625 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
2645 }2626 }
26462627
2647 /** @name PalletStructureError (345) */2628 /** @name PalletStructureError (343) */
2648 export interface PalletStructureError extends Enum {2629 export interface PalletStructureError extends Enum {
2649 readonly isOuroborosDetected: boolean;2630 readonly isOuroborosDetected: boolean;
2650 readonly isDepthLimit: boolean;2631 readonly isDepthLimit: boolean;
2651 readonly isTokenNotFound: boolean;2632 readonly isTokenNotFound: boolean;
2652 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2633 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
2653 }2634 }
26542635
2655 /** @name PalletEvmError (348) */2636 /** @name PalletEvmError (346) */
2656 export interface PalletEvmError extends Enum {2637 export interface PalletEvmError extends Enum {
2657 readonly isBalanceLow: boolean;2638 readonly isBalanceLow: boolean;
2658 readonly isFeeOverflow: boolean;2639 readonly isFeeOverflow: boolean;
2663 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2644 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
2664 }2645 }
26652646
2666 /** @name FpRpcTransactionStatus (351) */2647 /** @name FpRpcTransactionStatus (349) */
2667 export interface FpRpcTransactionStatus extends Struct {2648 export interface FpRpcTransactionStatus extends Struct {
2668 readonly transactionHash: H256;2649 readonly transactionHash: H256;
2669 readonly transactionIndex: u32;2650 readonly transactionIndex: u32;
2674 readonly logsBloom: EthbloomBloom;2655 readonly logsBloom: EthbloomBloom;
2675 }2656 }
26762657
2677 /** @name EthbloomBloom (353) */2658 /** @name EthbloomBloom (351) */
2678 export interface EthbloomBloom extends U8aFixed {}2659 export interface EthbloomBloom extends U8aFixed {}
26792660
2680 /** @name EthereumReceiptReceiptV3 (355) */2661 /** @name EthereumReceiptReceiptV3 (353) */
2681 export interface EthereumReceiptReceiptV3 extends Enum {2662 export interface EthereumReceiptReceiptV3 extends Enum {
2682 readonly isLegacy: boolean;2663 readonly isLegacy: boolean;
2683 readonly asLegacy: EthereumReceiptEip658ReceiptData;2664 readonly asLegacy: EthereumReceiptEip658ReceiptData;
2688 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2669 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
2689 }2670 }
26902671
2691 /** @name EthereumReceiptEip658ReceiptData (356) */2672 /** @name EthereumReceiptEip658ReceiptData (354) */
2692 export interface EthereumReceiptEip658ReceiptData extends Struct {2673 export interface EthereumReceiptEip658ReceiptData extends Struct {
2693 readonly statusCode: u8;2674 readonly statusCode: u8;
2694 readonly usedGas: U256;2675 readonly usedGas: U256;
2695 readonly logsBloom: EthbloomBloom;2676 readonly logsBloom: EthbloomBloom;
2696 readonly logs: Vec<EthereumLog>;2677 readonly logs: Vec<EthereumLog>;
2697 }2678 }
26982679
2699 /** @name EthereumBlock (357) */2680 /** @name EthereumBlock (355) */
2700 export interface EthereumBlock extends Struct {2681 export interface EthereumBlock extends Struct {
2701 readonly header: EthereumHeader;2682 readonly header: EthereumHeader;
2702 readonly transactions: Vec<EthereumTransactionTransactionV2>;2683 readonly transactions: Vec<EthereumTransactionTransactionV2>;
2703 readonly ommers: Vec<EthereumHeader>;2684 readonly ommers: Vec<EthereumHeader>;
2704 }2685 }
27052686
2706 /** @name EthereumHeader (358) */2687 /** @name EthereumHeader (356) */
2707 export interface EthereumHeader extends Struct {2688 export interface EthereumHeader extends Struct {
2708 readonly parentHash: H256;2689 readonly parentHash: H256;
2709 readonly ommersHash: H256;2690 readonly ommersHash: H256;
2722 readonly nonce: EthereumTypesHashH64;2703 readonly nonce: EthereumTypesHashH64;
2723 }2704 }
27242705
2725 /** @name EthereumTypesHashH64 (359) */2706 /** @name EthereumTypesHashH64 (357) */
2726 export interface EthereumTypesHashH64 extends U8aFixed {}2707 export interface EthereumTypesHashH64 extends U8aFixed {}
27272708
2728 /** @name PalletEthereumError (364) */2709 /** @name PalletEthereumError (362) */
2729 export interface PalletEthereumError extends Enum {2710 export interface PalletEthereumError extends Enum {
2730 readonly isInvalidSignature: boolean;2711 readonly isInvalidSignature: boolean;
2731 readonly isPreLogExists: boolean;2712 readonly isPreLogExists: boolean;
2732 readonly type: 'InvalidSignature' | 'PreLogExists';2713 readonly type: 'InvalidSignature' | 'PreLogExists';
2733 }2714 }
27342715
2735 /** @name PalletEvmCoderSubstrateError (365) */2716 /** @name PalletEvmCoderSubstrateError (363) */
2736 export interface PalletEvmCoderSubstrateError extends Enum {2717 export interface PalletEvmCoderSubstrateError extends Enum {
2737 readonly isOutOfGas: boolean;2718 readonly isOutOfGas: boolean;
2738 readonly isOutOfFund: boolean;2719 readonly isOutOfFund: boolean;
2739 readonly type: 'OutOfGas' | 'OutOfFund';2720 readonly type: 'OutOfGas' | 'OutOfFund';
2740 }2721 }
27412722
2742 /** @name PalletEvmContractHelpersSponsoringModeT (366) */2723 /** @name PalletEvmContractHelpersSponsoringModeT (364) */
2743 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2724 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
2744 readonly isDisabled: boolean;2725 readonly isDisabled: boolean;
2745 readonly isAllowlisted: boolean;2726 readonly isAllowlisted: boolean;
2746 readonly isGenerous: boolean;2727 readonly isGenerous: boolean;
2747 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2728 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
2748 }2729 }
27492730
2750 /** @name PalletEvmContractHelpersError (368) */2731 /** @name PalletEvmContractHelpersError (366) */
2751 export interface PalletEvmContractHelpersError extends Enum {2732 export interface PalletEvmContractHelpersError extends Enum {
2752 readonly isNoPermission: boolean;2733 readonly isNoPermission: boolean;
2753 readonly type: 'NoPermission';2734 readonly type: 'NoPermission';
2754 }2735 }
27552736
2756 /** @name PalletEvmMigrationError (369) */2737 /** @name PalletEvmMigrationError (367) */
2757 export interface PalletEvmMigrationError extends Enum {2738 export interface PalletEvmMigrationError extends Enum {
2758 readonly isAccountNotEmpty: boolean;2739 readonly isAccountNotEmpty: boolean;
2759 readonly isAccountIsNotMigrating: boolean;2740 readonly isAccountIsNotMigrating: boolean;
2760 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2741 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
2761 }2742 }
27622743
2763 /** @name SpRuntimeMultiSignature (371) */2744 /** @name SpRuntimeMultiSignature (369) */
2764 export interface SpRuntimeMultiSignature extends Enum {2745 export interface SpRuntimeMultiSignature extends Enum {
2765 readonly isEd25519: boolean;2746 readonly isEd25519: boolean;
2766 readonly asEd25519: SpCoreEd25519Signature;2747 readonly asEd25519: SpCoreEd25519Signature;
2771 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2752 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
2772 }2753 }
27732754
2774 /** @name SpCoreEd25519Signature (372) */2755 /** @name SpCoreEd25519Signature (370) */
2775 export interface SpCoreEd25519Signature extends U8aFixed {}2756 export interface SpCoreEd25519Signature extends U8aFixed {}
27762757
2777 /** @name SpCoreSr25519Signature (374) */2758 /** @name SpCoreSr25519Signature (372) */
2778 export interface SpCoreSr25519Signature extends U8aFixed {}2759 export interface SpCoreSr25519Signature extends U8aFixed {}
27792760
2780 /** @name SpCoreEcdsaSignature (375) */2761 /** @name SpCoreEcdsaSignature (373) */
2781 export interface SpCoreEcdsaSignature extends U8aFixed {}2762 export interface SpCoreEcdsaSignature extends U8aFixed {}
27822763
2783 /** @name FrameSystemExtensionsCheckSpecVersion (378) */2764 /** @name FrameSystemExtensionsCheckSpecVersion (376) */
2784 export type FrameSystemExtensionsCheckSpecVersion = Null;2765 export type FrameSystemExtensionsCheckSpecVersion = Null;
27852766
2786 /** @name FrameSystemExtensionsCheckGenesis (379) */2767 /** @name FrameSystemExtensionsCheckGenesis (377) */
2787 export type FrameSystemExtensionsCheckGenesis = Null;2768 export type FrameSystemExtensionsCheckGenesis = Null;
27882769
2789 /** @name FrameSystemExtensionsCheckNonce (382) */2770 /** @name FrameSystemExtensionsCheckNonce (380) */
2790 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}2771 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
27912772
2792 /** @name FrameSystemExtensionsCheckWeight (383) */2773 /** @name FrameSystemExtensionsCheckWeight (381) */
2793 export type FrameSystemExtensionsCheckWeight = Null;2774 export type FrameSystemExtensionsCheckWeight = Null;
27942775
2795 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (384) */2776 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (382) */
2796 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}2777 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
27972778
2798 /** @name OpalRuntimeRuntime (385) */2779 /** @name OpalRuntimeRuntime (383) */
2799 export type OpalRuntimeRuntime = Null;2780 export type OpalRuntimeRuntime = Null;
2781
2782 /** @name PalletEthereumFakeTransactionFinalizer (384) */
2783 export type PalletEthereumFakeTransactionFinalizer = Null;
28002784
2801} // declare module2785} // declare module
28022786