difftreelog
Merge pull request #775 from UniqueNetwork/chore/fix-warnings
in: master
14 files changed
examples/package.jsondiffbeforeafterboth--- a/examples/package.json
+++ b/examples/package.json
@@ -7,7 +7,7 @@
"test": "test"
},
"devDependencies": {
- "got": "^10.7.0"
+ "got": "^11.8.5"
},
"scripts": {
"test": ""
pallets/common/src/eth.rsdiffbeforeafterboth--- a/pallets/common/src/eth.rs
+++ b/pallets/common/src/eth.rs
@@ -125,9 +125,9 @@
/// Ethereum representation of Optional value with CrossAddress.
#[derive(Debug, Default, AbiCoder)]
pub struct OptionCrossAddress {
- /// Is address set
+ /// Whether or not this CrossAdress is valid and has meaning.
pub status: bool,
- /// Address value
+ /// The underlying CrossAddress value. If the status is false, can be set to whatever.
pub value: CrossAddress,
}
@@ -139,7 +139,7 @@
}
impl CrossAddress {
- /// Converts `CrossAccountId` to [`CrossAddress`]
+ /// Converts `CrossAccountId` to [`CrossAddress`] to be correctly usable with Ethereum.
pub fn from_sub_cross_account<T>(cross_account_id: &T::CrossAccountId) -> Self
where
T: pallet_evm::Config,
@@ -154,7 +154,7 @@
}
}
}
- /// Creates [`CrossAddress`] from substrate account
+ /// Creates [`CrossAddress`] from Substrate account.
pub fn from_sub<T>(account_id: &T::AccountId) -> Self
where
T: pallet_evm::Config,
@@ -165,7 +165,7 @@
sub: uint256::from_big_endian(account_id.as_ref()),
}
}
- /// Converts [`CrossAddress`] to `CrossAccountId`
+ /// Converts [`CrossAddress`] to `CrossAccountId`.
pub fn into_sub_cross_account<T>(&self) -> evm_coder::execution::Result<T::CrossAccountId>
where
T: pallet_evm::Config,
pallets/refungible/src/lib.rsdiffbeforeafterboth--- a/pallets/refungible/src/lib.rs
+++ b/pallets/refungible/src/lib.rs
@@ -90,10 +90,9 @@
use crate::erc_token::ERC20Events;
use crate::erc::ERC721Events;
-use codec::{Encode, Decode, MaxEncodedLen};
use core::ops::Deref;
use evm_coder::ToLog;
-use frame_support::{BoundedVec, ensure, fail, storage::with_transaction, transactional};
+use frame_support::{ensure, fail, storage::with_transaction, transactional};
use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};
use pallet_evm_coder_substrate::WithRecorder;
use pallet_common::{
@@ -101,13 +100,12 @@
Event as CommonEvent, Pallet as PalletCommon, erc::CollectionHelpersEvents,
};
use pallet_structure::Pallet as PalletStructure;
-use scale_info::TypeInfo;
use sp_core::{Get, H160};
use sp_runtime::{ArithmeticError, DispatchError, DispatchResult, TransactionOutcome};
use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};
use up_data_structs::{
AccessMode, budget::Budget, CollectionId, CollectionFlags, CreateCollectionData,
- CustomDataLimit, mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, Property, PropertyKey,
+ mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, Property, PropertyKey,
PropertyKeyPermission, PropertyPermission, PropertyScope, PropertyValue, TokenId,
TrySetProperty, PropertiesPermissionMap, CreateRefungibleExMultipleOwners,
};
@@ -124,17 +122,6 @@
CreateRefungibleExMultipleOwners<<T as pallet_evm::Config>::CrossAccountId>;
pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;
-/// Token data, stored independently from other data used to describe it
-/// for the convenience of database access. Notably contains the token metadata.
-#[struct_versioning::versioned(version = 2, upper)]
-#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]
-pub struct ItemData {
- pub const_data: BoundedVec<u8, CustomDataLimit>,
-
- #[version(..2)]
- pub variable_data: BoundedVec<u8, CustomDataLimit>,
-}
-
#[frame_support::pallet]
pub mod pallet {
use super::*;
@@ -142,7 +129,6 @@
Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key,
traits::StorageVersion,
};
- use frame_system::pallet_prelude::*;
use up_data_structs::{CollectionId, TokenId};
use super::weights::WeightInfo;
@@ -183,16 +169,6 @@
#[pallet::storage]
pub type TokensBurnt<T: Config> =
StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;
-
- /// Token data, used to partially describe a token.
- // TODO: remove
- #[pallet::storage]
- #[deprecated(since = "0.2.0", note = "ItemData is no more contains usefull data")]
- pub type TokenData<T: Config> = StorageNMap<
- Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),
- Value = ItemData,
- QueryKind = ValueQuery,
- >;
/// Amount of pieces a refungible token is split into.
#[pallet::storage]
@@ -275,20 +251,6 @@
Value = bool,
QueryKind = ValueQuery,
>;
-
- #[pallet::hooks]
- impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {
- fn on_runtime_upgrade() -> Weight {
- let storage_version = StorageVersion::get::<Pallet<T>>();
- if storage_version < StorageVersion::new(2) {
- #[allow(deprecated)]
- let _ = <TokenData<T>>::clear(u32::MAX, None);
- }
- StorageVersion::new(2).put::<Pallet<T>>();
-
- Weight::zero()
- }
- }
}
pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);
pallets/unique/src/lib.rsdiffbeforeafterboth--- a/pallets/unique/src/lib.rs
+++ b/pallets/unique/src/lib.rs
@@ -91,7 +91,7 @@
CreateItemData, CollectionLimits, CollectionPermissions, CollectionId, CollectionMode, TokenId,
CreateCollectionData, CreateItemExData, budget, Property, PropertyKey, PropertyKeyPermission,
};
-use pallet_evm::{account::CrossAccountId};
+use pallet_evm::account::CrossAccountId;
use pallet_common::{
CollectionHandle, Pallet as PalletCommon, CommonWeightInfo, dispatch::dispatch_tx,
dispatch::CollectionDispatch, RefungibleExtensionsWeightInfo,
runtime/common/config/pallets/app_promotion.rsdiffbeforeafterboth--- a/runtime/common/config/pallets/app_promotion.rs
+++ b/runtime/common/config/pallets/app_promotion.rs
@@ -22,7 +22,7 @@
use frame_support::{parameter_types, PalletId};
use sp_arithmetic::Perbill;
use up_common::{
- constants::{UNIQUE, RELAY_DAYS, DAYS},
+ constants::{UNIQUE, DAYS, RELAY_DAYS},
types::Balance,
};
runtime/tests/src/tests.rsdiffbeforeafterboth--- a/runtime/tests/src/tests.rs
+++ b/runtime/tests/src/tests.rs
@@ -294,7 +294,6 @@
let data = default_re_fungible_data();
create_test_item(collection_id, &data.clone().into());
- let item = <pallet_refungible::TokenData<Test>>::get((collection_id, TokenId(1)));
let balance =
<pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1)));
assert_eq!(balance, 1023);
@@ -325,12 +324,11 @@
.collect()
));
for (index, data) in items_data.into_iter().enumerate() {
- let item = <pallet_refungible::TokenData<Test>>::get((
+ let balance = <pallet_refungible::Balance<Test>>::get((
CollectionId(1),
TokenId((index + 1) as u32),
+ account(1),
));
- let balance =
- <pallet_refungible::Balance<Test>>::get((CollectionId(1), TokenId(1), account(1)));
assert_eq!(balance, 1023);
}
});
@@ -442,7 +440,6 @@
// Create RFT 1 in 1023 pieces for account 1
let data = default_re_fungible_data();
create_test_item(collection_id, &data.clone().into());
- let item = <pallet_refungible::TokenData<Test>>::get((collection_id, TokenId(1)));
assert_eq!(
<pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),
1
tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -4,7 +4,7 @@
"description": "Unique Chain Tests",
"main": "",
"devDependencies": {
- "@polkadot/typegen": "9.9.4",
+ "@polkadot/typegen": "9.10.2",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-like": "^1.1.1",
@@ -117,7 +117,8 @@
"license": "SEE LICENSE IN ../LICENSE",
"homepage": "",
"dependencies": {
- "@polkadot/api": "9.9.4",
+ "@polkadot/api": "9.10.2",
+ "@polkadot/util": "10.2.1",
"@polkadot/util-crypto": "10.2.1",
"chai-as-promised": "^7.1.1",
"chai-like": "^1.1.1",
@@ -125,5 +126,8 @@
"find-process": "^1.4.7",
"solc": "0.8.17",
"web3": "^1.8.1"
+ },
+ "resolutions": {
+ "decode-uri-component": "^0.2.1"
}
}
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -9,7 +9,7 @@
import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -632,10 +632,6 @@
* Used to enumerate tokens owned by account.
**/
owned: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]>;
- /**
- * Token data, used to partially describe a token.
- **/
- tokenData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<PalletRefungibleItemData>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
/**
* Amount of pieces a refungible token is split into.
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -869,7 +869,6 @@
PalletNonfungibleError: PalletNonfungibleError;
PalletNonfungibleItemData: PalletNonfungibleItemData;
PalletRefungibleError: PalletRefungibleError;
- PalletRefungibleItemData: PalletRefungibleItemData;
PalletRmrkCoreCall: PalletRmrkCoreCall;
PalletRmrkCoreError: PalletRmrkCoreError;
PalletRmrkCoreEvent: PalletRmrkCoreEvent;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1654,11 +1654,6 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
-/** @name PalletRefungibleItemData */
-export interface PalletRefungibleItemData extends Struct {
- readonly constData: Bytes;
-}
-
/** @name PalletRmrkCoreCall */
export interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9 **/10 FrameSystemAccountInfo: {11 nonce: 'u32',12 consumers: 'u32',13 providers: 'u32',14 sufficients: 'u32',15 data: 'PalletBalancesAccountData'16 },17 /**18 * Lookup5: pallet_balances::AccountData<Balance>19 **/20 PalletBalancesAccountData: {21 free: 'u128',22 reserved: 'u128',23 miscFrozen: 'u128',24 feeFrozen: 'u128'25 },26 /**27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'SpWeightsWeightV2Weight',31 operational: 'SpWeightsWeightV2Weight',32 mandatory: 'SpWeightsWeightV2Weight'33 },34 /**35 * Lookup8: sp_weights::weight_v2::Weight36 **/37 SpWeightsWeightV2Weight: {38 refTime: 'Compact<u64>',39 proofSize: 'Compact<u64>'40 },41 /**42 * Lookup13: sp_runtime::generic::digest::Digest43 **/44 SpRuntimeDigest: {45 logs: 'Vec<SpRuntimeDigestDigestItem>'46 },47 /**48 * Lookup15: sp_runtime::generic::digest::DigestItem49 **/50 SpRuntimeDigestDigestItem: {51 _enum: {52 Other: 'Bytes',53 __Unused1: 'Null',54 __Unused2: 'Null',55 __Unused3: 'Null',56 Consensus: '([u8;4],Bytes)',57 Seal: '([u8;4],Bytes)',58 PreRuntime: '([u8;4],Bytes)',59 __Unused7: 'Null',60 RuntimeEnvironmentUpdated: 'Null'61 }62 },63 /**64 * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65 **/66 FrameSystemEventRecord: {67 phase: 'FrameSystemPhase',68 event: 'Event',69 topics: 'Vec<H256>'70 },71 /**72 * Lookup20: frame_system::pallet::Event<T>73 **/74 FrameSystemEvent: {75 _enum: {76 ExtrinsicSuccess: {77 dispatchInfo: 'FrameSupportDispatchDispatchInfo',78 },79 ExtrinsicFailed: {80 dispatchError: 'SpRuntimeDispatchError',81 dispatchInfo: 'FrameSupportDispatchDispatchInfo',82 },83 CodeUpdated: 'Null',84 NewAccount: {85 account: 'AccountId32',86 },87 KilledAccount: {88 account: 'AccountId32',89 },90 Remarked: {91 _alias: {92 hash_: 'hash',93 },94 sender: 'AccountId32',95 hash_: 'H256'96 }97 }98 },99 /**100 * Lookup21: frame_support::dispatch::DispatchInfo101 **/102 FrameSupportDispatchDispatchInfo: {103 weight: 'SpWeightsWeightV2Weight',104 class: 'FrameSupportDispatchDispatchClass',105 paysFee: 'FrameSupportDispatchPays'106 },107 /**108 * Lookup22: frame_support::dispatch::DispatchClass109 **/110 FrameSupportDispatchDispatchClass: {111 _enum: ['Normal', 'Operational', 'Mandatory']112 },113 /**114 * Lookup23: frame_support::dispatch::Pays115 **/116 FrameSupportDispatchPays: {117 _enum: ['Yes', 'No']118 },119 /**120 * Lookup24: sp_runtime::DispatchError121 **/122 SpRuntimeDispatchError: {123 _enum: {124 Other: 'Null',125 CannotLookup: 'Null',126 BadOrigin: 'Null',127 Module: 'SpRuntimeModuleError',128 ConsumerRemaining: 'Null',129 NoProviders: 'Null',130 TooManyConsumers: 'Null',131 Token: 'SpRuntimeTokenError',132 Arithmetic: 'SpRuntimeArithmeticError',133 Transactional: 'SpRuntimeTransactionalError',134 Exhausted: 'Null',135 Corruption: 'Null',136 Unavailable: 'Null'137 }138 },139 /**140 * Lookup25: sp_runtime::ModuleError141 **/142 SpRuntimeModuleError: {143 index: 'u8',144 error: '[u8;4]'145 },146 /**147 * Lookup26: sp_runtime::TokenError148 **/149 SpRuntimeTokenError: {150 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151 },152 /**153 * Lookup27: sp_runtime::ArithmeticError154 **/155 SpRuntimeArithmeticError: {156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']157 },158 /**159 * Lookup28: sp_runtime::TransactionalError160 **/161 SpRuntimeTransactionalError: {162 _enum: ['LimitReached', 'NoLayer']163 },164 /**165 * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166 **/167 CumulusPalletParachainSystemEvent: {168 _enum: {169 ValidationFunctionStored: 'Null',170 ValidationFunctionApplied: {171 relayChainBlockNum: 'u32',172 },173 ValidationFunctionDiscarded: 'Null',174 UpgradeAuthorized: {175 codeHash: 'H256',176 },177 DownwardMessagesReceived: {178 count: 'u32',179 },180 DownwardMessagesProcessed: {181 weightUsed: 'SpWeightsWeightV2Weight',182 dmqHead: 'H256'183 }184 }185 },186 /**187 * Lookup30: pallet_balances::pallet::Event<T, I>188 **/189 PalletBalancesEvent: {190 _enum: {191 Endowed: {192 account: 'AccountId32',193 freeBalance: 'u128',194 },195 DustLost: {196 account: 'AccountId32',197 amount: 'u128',198 },199 Transfer: {200 from: 'AccountId32',201 to: 'AccountId32',202 amount: 'u128',203 },204 BalanceSet: {205 who: 'AccountId32',206 free: 'u128',207 reserved: 'u128',208 },209 Reserved: {210 who: 'AccountId32',211 amount: 'u128',212 },213 Unreserved: {214 who: 'AccountId32',215 amount: 'u128',216 },217 ReserveRepatriated: {218 from: 'AccountId32',219 to: 'AccountId32',220 amount: 'u128',221 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',222 },223 Deposit: {224 who: 'AccountId32',225 amount: 'u128',226 },227 Withdraw: {228 who: 'AccountId32',229 amount: 'u128',230 },231 Slashed: {232 who: 'AccountId32',233 amount: 'u128'234 }235 }236 },237 /**238 * Lookup31: frame_support::traits::tokens::misc::BalanceStatus239 **/240 FrameSupportTokensMiscBalanceStatus: {241 _enum: ['Free', 'Reserved']242 },243 /**244 * Lookup32: pallet_transaction_payment::pallet::Event<T>245 **/246 PalletTransactionPaymentEvent: {247 _enum: {248 TransactionFeePaid: {249 who: 'AccountId32',250 actualFee: 'u128',251 tip: 'u128'252 }253 }254 },255 /**256 * Lookup33: pallet_treasury::pallet::Event<T, I>257 **/258 PalletTreasuryEvent: {259 _enum: {260 Proposed: {261 proposalIndex: 'u32',262 },263 Spending: {264 budgetRemaining: 'u128',265 },266 Awarded: {267 proposalIndex: 'u32',268 award: 'u128',269 account: 'AccountId32',270 },271 Rejected: {272 proposalIndex: 'u32',273 slashed: 'u128',274 },275 Burnt: {276 burntFunds: 'u128',277 },278 Rollover: {279 rolloverBalance: 'u128',280 },281 Deposit: {282 value: 'u128',283 },284 SpendApproved: {285 proposalIndex: 'u32',286 amount: 'u128',287 beneficiary: 'AccountId32'288 }289 }290 },291 /**292 * Lookup34: pallet_sudo::pallet::Event<T>293 **/294 PalletSudoEvent: {295 _enum: {296 Sudid: {297 sudoResult: 'Result<Null, SpRuntimeDispatchError>',298 },299 KeyChanged: {300 oldSudoer: 'Option<AccountId32>',301 },302 SudoAsDone: {303 sudoResult: 'Result<Null, SpRuntimeDispatchError>'304 }305 }306 },307 /**308 * Lookup38: orml_vesting::module::Event<T>309 **/310 OrmlVestingModuleEvent: {311 _enum: {312 VestingScheduleAdded: {313 from: 'AccountId32',314 to: 'AccountId32',315 vestingSchedule: 'OrmlVestingVestingSchedule',316 },317 Claimed: {318 who: 'AccountId32',319 amount: 'u128',320 },321 VestingSchedulesUpdated: {322 who: 'AccountId32'323 }324 }325 },326 /**327 * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>328 **/329 OrmlVestingVestingSchedule: {330 start: 'u32',331 period: 'u32',332 periodCount: 'u32',333 perPeriod: 'Compact<u128>'334 },335 /**336 * Lookup41: orml_xtokens::module::Event<T>337 **/338 OrmlXtokensModuleEvent: {339 _enum: {340 TransferredMultiAssets: {341 sender: 'AccountId32',342 assets: 'XcmV1MultiassetMultiAssets',343 fee: 'XcmV1MultiAsset',344 dest: 'XcmV1MultiLocation'345 }346 }347 },348 /**349 * Lookup42: xcm::v1::multiasset::MultiAssets350 **/351 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',352 /**353 * Lookup44: xcm::v1::multiasset::MultiAsset354 **/355 XcmV1MultiAsset: {356 id: 'XcmV1MultiassetAssetId',357 fun: 'XcmV1MultiassetFungibility'358 },359 /**360 * Lookup45: xcm::v1::multiasset::AssetId361 **/362 XcmV1MultiassetAssetId: {363 _enum: {364 Concrete: 'XcmV1MultiLocation',365 Abstract: 'Bytes'366 }367 },368 /**369 * Lookup46: xcm::v1::multilocation::MultiLocation370 **/371 XcmV1MultiLocation: {372 parents: 'u8',373 interior: 'XcmV1MultilocationJunctions'374 },375 /**376 * Lookup47: xcm::v1::multilocation::Junctions377 **/378 XcmV1MultilocationJunctions: {379 _enum: {380 Here: 'Null',381 X1: 'XcmV1Junction',382 X2: '(XcmV1Junction,XcmV1Junction)',383 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',384 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',385 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',386 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',387 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',388 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'389 }390 },391 /**392 * Lookup48: xcm::v1::junction::Junction393 **/394 XcmV1Junction: {395 _enum: {396 Parachain: 'Compact<u32>',397 AccountId32: {398 network: 'XcmV0JunctionNetworkId',399 id: '[u8;32]',400 },401 AccountIndex64: {402 network: 'XcmV0JunctionNetworkId',403 index: 'Compact<u64>',404 },405 AccountKey20: {406 network: 'XcmV0JunctionNetworkId',407 key: '[u8;20]',408 },409 PalletInstance: 'u8',410 GeneralIndex: 'Compact<u128>',411 GeneralKey: 'Bytes',412 OnlyChild: 'Null',413 Plurality: {414 id: 'XcmV0JunctionBodyId',415 part: 'XcmV0JunctionBodyPart'416 }417 }418 },419 /**420 * Lookup50: xcm::v0::junction::NetworkId421 **/422 XcmV0JunctionNetworkId: {423 _enum: {424 Any: 'Null',425 Named: 'Bytes',426 Polkadot: 'Null',427 Kusama: 'Null'428 }429 },430 /**431 * Lookup53: xcm::v0::junction::BodyId432 **/433 XcmV0JunctionBodyId: {434 _enum: {435 Unit: 'Null',436 Named: 'Bytes',437 Index: 'Compact<u32>',438 Executive: 'Null',439 Technical: 'Null',440 Legislative: 'Null',441 Judicial: 'Null'442 }443 },444 /**445 * Lookup54: xcm::v0::junction::BodyPart446 **/447 XcmV0JunctionBodyPart: {448 _enum: {449 Voice: 'Null',450 Members: {451 count: 'Compact<u32>',452 },453 Fraction: {454 nom: 'Compact<u32>',455 denom: 'Compact<u32>',456 },457 AtLeastProportion: {458 nom: 'Compact<u32>',459 denom: 'Compact<u32>',460 },461 MoreThanProportion: {462 nom: 'Compact<u32>',463 denom: 'Compact<u32>'464 }465 }466 },467 /**468 * Lookup55: xcm::v1::multiasset::Fungibility469 **/470 XcmV1MultiassetFungibility: {471 _enum: {472 Fungible: 'Compact<u128>',473 NonFungible: 'XcmV1MultiassetAssetInstance'474 }475 },476 /**477 * Lookup56: xcm::v1::multiasset::AssetInstance478 **/479 XcmV1MultiassetAssetInstance: {480 _enum: {481 Undefined: 'Null',482 Index: 'Compact<u128>',483 Array4: '[u8;4]',484 Array8: '[u8;8]',485 Array16: '[u8;16]',486 Array32: '[u8;32]',487 Blob: 'Bytes'488 }489 },490 /**491 * Lookup59: orml_tokens::module::Event<T>492 **/493 OrmlTokensModuleEvent: {494 _enum: {495 Endowed: {496 currencyId: 'PalletForeignAssetsAssetIds',497 who: 'AccountId32',498 amount: 'u128',499 },500 DustLost: {501 currencyId: 'PalletForeignAssetsAssetIds',502 who: 'AccountId32',503 amount: 'u128',504 },505 Transfer: {506 currencyId: 'PalletForeignAssetsAssetIds',507 from: 'AccountId32',508 to: 'AccountId32',509 amount: 'u128',510 },511 Reserved: {512 currencyId: 'PalletForeignAssetsAssetIds',513 who: 'AccountId32',514 amount: 'u128',515 },516 Unreserved: {517 currencyId: 'PalletForeignAssetsAssetIds',518 who: 'AccountId32',519 amount: 'u128',520 },521 ReserveRepatriated: {522 currencyId: 'PalletForeignAssetsAssetIds',523 from: 'AccountId32',524 to: 'AccountId32',525 amount: 'u128',526 status: 'FrameSupportTokensMiscBalanceStatus',527 },528 BalanceSet: {529 currencyId: 'PalletForeignAssetsAssetIds',530 who: 'AccountId32',531 free: 'u128',532 reserved: 'u128',533 },534 TotalIssuanceSet: {535 currencyId: 'PalletForeignAssetsAssetIds',536 amount: 'u128',537 },538 Withdrawn: {539 currencyId: 'PalletForeignAssetsAssetIds',540 who: 'AccountId32',541 amount: 'u128',542 },543 Slashed: {544 currencyId: 'PalletForeignAssetsAssetIds',545 who: 'AccountId32',546 freeAmount: 'u128',547 reservedAmount: 'u128',548 },549 Deposited: {550 currencyId: 'PalletForeignAssetsAssetIds',551 who: 'AccountId32',552 amount: 'u128',553 },554 LockSet: {555 lockId: '[u8;8]',556 currencyId: 'PalletForeignAssetsAssetIds',557 who: 'AccountId32',558 amount: 'u128',559 },560 LockRemoved: {561 lockId: '[u8;8]',562 currencyId: 'PalletForeignAssetsAssetIds',563 who: 'AccountId32'564 }565 }566 },567 /**568 * Lookup60: pallet_foreign_assets::AssetIds569 **/570 PalletForeignAssetsAssetIds: {571 _enum: {572 ForeignAssetId: 'u32',573 NativeAssetId: 'PalletForeignAssetsNativeCurrency'574 }575 },576 /**577 * Lookup61: pallet_foreign_assets::NativeCurrency578 **/579 PalletForeignAssetsNativeCurrency: {580 _enum: ['Here', 'Parent']581 },582 /**583 * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>584 **/585 CumulusPalletXcmpQueueEvent: {586 _enum: {587 Success: {588 messageHash: 'Option<H256>',589 weight: 'SpWeightsWeightV2Weight',590 },591 Fail: {592 messageHash: 'Option<H256>',593 error: 'XcmV2TraitsError',594 weight: 'SpWeightsWeightV2Weight',595 },596 BadVersion: {597 messageHash: 'Option<H256>',598 },599 BadFormat: {600 messageHash: 'Option<H256>',601 },602 UpwardMessageSent: {603 messageHash: 'Option<H256>',604 },605 XcmpMessageSent: {606 messageHash: 'Option<H256>',607 },608 OverweightEnqueued: {609 sender: 'u32',610 sentAt: 'u32',611 index: 'u64',612 required: 'SpWeightsWeightV2Weight',613 },614 OverweightServiced: {615 index: 'u64',616 used: 'SpWeightsWeightV2Weight'617 }618 }619 },620 /**621 * Lookup64: xcm::v2::traits::Error622 **/623 XcmV2TraitsError: {624 _enum: {625 Overflow: 'Null',626 Unimplemented: 'Null',627 UntrustedReserveLocation: 'Null',628 UntrustedTeleportLocation: 'Null',629 MultiLocationFull: 'Null',630 MultiLocationNotInvertible: 'Null',631 BadOrigin: 'Null',632 InvalidLocation: 'Null',633 AssetNotFound: 'Null',634 FailedToTransactAsset: 'Null',635 NotWithdrawable: 'Null',636 LocationCannotHold: 'Null',637 ExceedsMaxMessageSize: 'Null',638 DestinationUnsupported: 'Null',639 Transport: 'Null',640 Unroutable: 'Null',641 UnknownClaim: 'Null',642 FailedToDecode: 'Null',643 MaxWeightInvalid: 'Null',644 NotHoldingFees: 'Null',645 TooExpensive: 'Null',646 Trap: 'u64',647 UnhandledXcmVersion: 'Null',648 WeightLimitReached: 'u64',649 Barrier: 'Null',650 WeightNotComputable: 'Null'651 }652 },653 /**654 * Lookup66: pallet_xcm::pallet::Event<T>655 **/656 PalletXcmEvent: {657 _enum: {658 Attempted: 'XcmV2TraitsOutcome',659 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',660 UnexpectedResponse: '(XcmV1MultiLocation,u64)',661 ResponseReady: '(u64,XcmV2Response)',662 Notified: '(u64,u8,u8)',663 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',664 NotifyDispatchError: '(u64,u8,u8)',665 NotifyDecodeFailed: '(u64,u8,u8)',666 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',667 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',668 ResponseTaken: 'u64',669 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',670 VersionChangeNotified: '(XcmV1MultiLocation,u32)',671 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',672 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',673 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',674 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'675 }676 },677 /**678 * Lookup67: xcm::v2::traits::Outcome679 **/680 XcmV2TraitsOutcome: {681 _enum: {682 Complete: 'u64',683 Incomplete: '(u64,XcmV2TraitsError)',684 Error: 'XcmV2TraitsError'685 }686 },687 /**688 * Lookup68: xcm::v2::Xcm<RuntimeCall>689 **/690 XcmV2Xcm: 'Vec<XcmV2Instruction>',691 /**692 * Lookup70: xcm::v2::Instruction<RuntimeCall>693 **/694 XcmV2Instruction: {695 _enum: {696 WithdrawAsset: 'XcmV1MultiassetMultiAssets',697 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',698 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',699 QueryResponse: {700 queryId: 'Compact<u64>',701 response: 'XcmV2Response',702 maxWeight: 'Compact<u64>',703 },704 TransferAsset: {705 assets: 'XcmV1MultiassetMultiAssets',706 beneficiary: 'XcmV1MultiLocation',707 },708 TransferReserveAsset: {709 assets: 'XcmV1MultiassetMultiAssets',710 dest: 'XcmV1MultiLocation',711 xcm: 'XcmV2Xcm',712 },713 Transact: {714 originType: 'XcmV0OriginKind',715 requireWeightAtMost: 'Compact<u64>',716 call: 'XcmDoubleEncoded',717 },718 HrmpNewChannelOpenRequest: {719 sender: 'Compact<u32>',720 maxMessageSize: 'Compact<u32>',721 maxCapacity: 'Compact<u32>',722 },723 HrmpChannelAccepted: {724 recipient: 'Compact<u32>',725 },726 HrmpChannelClosing: {727 initiator: 'Compact<u32>',728 sender: 'Compact<u32>',729 recipient: 'Compact<u32>',730 },731 ClearOrigin: 'Null',732 DescendOrigin: 'XcmV1MultilocationJunctions',733 ReportError: {734 queryId: 'Compact<u64>',735 dest: 'XcmV1MultiLocation',736 maxResponseWeight: 'Compact<u64>',737 },738 DepositAsset: {739 assets: 'XcmV1MultiassetMultiAssetFilter',740 maxAssets: 'Compact<u32>',741 beneficiary: 'XcmV1MultiLocation',742 },743 DepositReserveAsset: {744 assets: 'XcmV1MultiassetMultiAssetFilter',745 maxAssets: 'Compact<u32>',746 dest: 'XcmV1MultiLocation',747 xcm: 'XcmV2Xcm',748 },749 ExchangeAsset: {750 give: 'XcmV1MultiassetMultiAssetFilter',751 receive: 'XcmV1MultiassetMultiAssets',752 },753 InitiateReserveWithdraw: {754 assets: 'XcmV1MultiassetMultiAssetFilter',755 reserve: 'XcmV1MultiLocation',756 xcm: 'XcmV2Xcm',757 },758 InitiateTeleport: {759 assets: 'XcmV1MultiassetMultiAssetFilter',760 dest: 'XcmV1MultiLocation',761 xcm: 'XcmV2Xcm',762 },763 QueryHolding: {764 queryId: 'Compact<u64>',765 dest: 'XcmV1MultiLocation',766 assets: 'XcmV1MultiassetMultiAssetFilter',767 maxResponseWeight: 'Compact<u64>',768 },769 BuyExecution: {770 fees: 'XcmV1MultiAsset',771 weightLimit: 'XcmV2WeightLimit',772 },773 RefundSurplus: 'Null',774 SetErrorHandler: 'XcmV2Xcm',775 SetAppendix: 'XcmV2Xcm',776 ClearError: 'Null',777 ClaimAsset: {778 assets: 'XcmV1MultiassetMultiAssets',779 ticket: 'XcmV1MultiLocation',780 },781 Trap: 'Compact<u64>',782 SubscribeVersion: {783 queryId: 'Compact<u64>',784 maxResponseWeight: 'Compact<u64>',785 },786 UnsubscribeVersion: 'Null'787 }788 },789 /**790 * Lookup71: xcm::v2::Response791 **/792 XcmV2Response: {793 _enum: {794 Null: 'Null',795 Assets: 'XcmV1MultiassetMultiAssets',796 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',797 Version: 'u32'798 }799 },800 /**801 * Lookup74: xcm::v0::OriginKind802 **/803 XcmV0OriginKind: {804 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']805 },806 /**807 * Lookup75: xcm::double_encoded::DoubleEncoded<T>808 **/809 XcmDoubleEncoded: {810 encoded: 'Bytes'811 },812 /**813 * Lookup76: xcm::v1::multiasset::MultiAssetFilter814 **/815 XcmV1MultiassetMultiAssetFilter: {816 _enum: {817 Definite: 'XcmV1MultiassetMultiAssets',818 Wild: 'XcmV1MultiassetWildMultiAsset'819 }820 },821 /**822 * Lookup77: xcm::v1::multiasset::WildMultiAsset823 **/824 XcmV1MultiassetWildMultiAsset: {825 _enum: {826 All: 'Null',827 AllOf: {828 id: 'XcmV1MultiassetAssetId',829 fun: 'XcmV1MultiassetWildFungibility'830 }831 }832 },833 /**834 * Lookup78: xcm::v1::multiasset::WildFungibility835 **/836 XcmV1MultiassetWildFungibility: {837 _enum: ['Fungible', 'NonFungible']838 },839 /**840 * Lookup79: xcm::v2::WeightLimit841 **/842 XcmV2WeightLimit: {843 _enum: {844 Unlimited: 'Null',845 Limited: 'Compact<u64>'846 }847 },848 /**849 * Lookup81: xcm::VersionedMultiAssets850 **/851 XcmVersionedMultiAssets: {852 _enum: {853 V0: 'Vec<XcmV0MultiAsset>',854 V1: 'XcmV1MultiassetMultiAssets'855 }856 },857 /**858 * Lookup83: xcm::v0::multi_asset::MultiAsset859 **/860 XcmV0MultiAsset: {861 _enum: {862 None: 'Null',863 All: 'Null',864 AllFungible: 'Null',865 AllNonFungible: 'Null',866 AllAbstractFungible: {867 id: 'Bytes',868 },869 AllAbstractNonFungible: {870 class: 'Bytes',871 },872 AllConcreteFungible: {873 id: 'XcmV0MultiLocation',874 },875 AllConcreteNonFungible: {876 class: 'XcmV0MultiLocation',877 },878 AbstractFungible: {879 id: 'Bytes',880 amount: 'Compact<u128>',881 },882 AbstractNonFungible: {883 class: 'Bytes',884 instance: 'XcmV1MultiassetAssetInstance',885 },886 ConcreteFungible: {887 id: 'XcmV0MultiLocation',888 amount: 'Compact<u128>',889 },890 ConcreteNonFungible: {891 class: 'XcmV0MultiLocation',892 instance: 'XcmV1MultiassetAssetInstance'893 }894 }895 },896 /**897 * Lookup84: xcm::v0::multi_location::MultiLocation898 **/899 XcmV0MultiLocation: {900 _enum: {901 Null: 'Null',902 X1: 'XcmV0Junction',903 X2: '(XcmV0Junction,XcmV0Junction)',904 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',905 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',906 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',907 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',908 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',909 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'910 }911 },912 /**913 * Lookup85: xcm::v0::junction::Junction914 **/915 XcmV0Junction: {916 _enum: {917 Parent: 'Null',918 Parachain: 'Compact<u32>',919 AccountId32: {920 network: 'XcmV0JunctionNetworkId',921 id: '[u8;32]',922 },923 AccountIndex64: {924 network: 'XcmV0JunctionNetworkId',925 index: 'Compact<u64>',926 },927 AccountKey20: {928 network: 'XcmV0JunctionNetworkId',929 key: '[u8;20]',930 },931 PalletInstance: 'u8',932 GeneralIndex: 'Compact<u128>',933 GeneralKey: 'Bytes',934 OnlyChild: 'Null',935 Plurality: {936 id: 'XcmV0JunctionBodyId',937 part: 'XcmV0JunctionBodyPart'938 }939 }940 },941 /**942 * Lookup86: xcm::VersionedMultiLocation943 **/944 XcmVersionedMultiLocation: {945 _enum: {946 V0: 'XcmV0MultiLocation',947 V1: 'XcmV1MultiLocation'948 }949 },950 /**951 * Lookup87: cumulus_pallet_xcm::pallet::Event<T>952 **/953 CumulusPalletXcmEvent: {954 _enum: {955 InvalidFormat: '[u8;8]',956 UnsupportedVersion: '[u8;8]',957 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'958 }959 },960 /**961 * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>962 **/963 CumulusPalletDmpQueueEvent: {964 _enum: {965 InvalidFormat: {966 messageId: '[u8;32]',967 },968 UnsupportedVersion: {969 messageId: '[u8;32]',970 },971 ExecutedDownward: {972 messageId: '[u8;32]',973 outcome: 'XcmV2TraitsOutcome',974 },975 WeightExhausted: {976 messageId: '[u8;32]',977 remainingWeight: 'SpWeightsWeightV2Weight',978 requiredWeight: 'SpWeightsWeightV2Weight',979 },980 OverweightEnqueued: {981 messageId: '[u8;32]',982 overweightIndex: 'u64',983 requiredWeight: 'SpWeightsWeightV2Weight',984 },985 OverweightServiced: {986 overweightIndex: 'u64',987 weightUsed: 'SpWeightsWeightV2Weight'988 }989 }990 },991 /**992 * Lookup89: pallet_common::pallet::Event<T>993 **/994 PalletCommonEvent: {995 _enum: {996 CollectionCreated: '(u32,u8,AccountId32)',997 CollectionDestroyed: 'u32',998 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',999 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1000 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1001 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1002 ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1003 CollectionPropertySet: '(u32,Bytes)',1004 CollectionPropertyDeleted: '(u32,Bytes)',1005 TokenPropertySet: '(u32,u32,Bytes)',1006 TokenPropertyDeleted: '(u32,u32,Bytes)',1007 PropertyPermissionSet: '(u32,Bytes)',1008 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1009 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1010 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1011 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1012 CollectionLimitSet: 'u32',1013 CollectionOwnerChanged: '(u32,AccountId32)',1014 CollectionPermissionSet: 'u32',1015 CollectionSponsorSet: '(u32,AccountId32)',1016 SponsorshipConfirmed: '(u32,AccountId32)',1017 CollectionSponsorRemoved: 'u32'1018 }1019 },1020 /**1021 * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1022 **/1023 PalletEvmAccountBasicCrossAccountIdRepr: {1024 _enum: {1025 Substrate: 'AccountId32',1026 Ethereum: 'H160'1027 }1028 },1029 /**1030 * Lookup96: pallet_structure::pallet::Event<T>1031 **/1032 PalletStructureEvent: {1033 _enum: {1034 Executed: 'Result<Null, SpRuntimeDispatchError>'1035 }1036 },1037 /**1038 * Lookup97: pallet_rmrk_core::pallet::Event<T>1039 **/1040 PalletRmrkCoreEvent: {1041 _enum: {1042 CollectionCreated: {1043 issuer: 'AccountId32',1044 collectionId: 'u32',1045 },1046 CollectionDestroyed: {1047 issuer: 'AccountId32',1048 collectionId: 'u32',1049 },1050 IssuerChanged: {1051 oldIssuer: 'AccountId32',1052 newIssuer: 'AccountId32',1053 collectionId: 'u32',1054 },1055 CollectionLocked: {1056 issuer: 'AccountId32',1057 collectionId: 'u32',1058 },1059 NftMinted: {1060 owner: 'AccountId32',1061 collectionId: 'u32',1062 nftId: 'u32',1063 },1064 NFTBurned: {1065 owner: 'AccountId32',1066 nftId: 'u32',1067 },1068 NFTSent: {1069 sender: 'AccountId32',1070 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1071 collectionId: 'u32',1072 nftId: 'u32',1073 approvalRequired: 'bool',1074 },1075 NFTAccepted: {1076 sender: 'AccountId32',1077 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1078 collectionId: 'u32',1079 nftId: 'u32',1080 },1081 NFTRejected: {1082 sender: 'AccountId32',1083 collectionId: 'u32',1084 nftId: 'u32',1085 },1086 PropertySet: {1087 collectionId: 'u32',1088 maybeNftId: 'Option<u32>',1089 key: 'Bytes',1090 value: 'Bytes',1091 },1092 ResourceAdded: {1093 nftId: 'u32',1094 resourceId: 'u32',1095 },1096 ResourceRemoval: {1097 nftId: 'u32',1098 resourceId: 'u32',1099 },1100 ResourceAccepted: {1101 nftId: 'u32',1102 resourceId: 'u32',1103 },1104 ResourceRemovalAccepted: {1105 nftId: 'u32',1106 resourceId: 'u32',1107 },1108 PrioritySet: {1109 collectionId: 'u32',1110 nftId: 'u32'1111 }1112 }1113 },1114 /**1115 * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1116 **/1117 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1118 _enum: {1119 AccountId: 'AccountId32',1120 CollectionAndNftTuple: '(u32,u32)'1121 }1122 },1123 /**1124 * Lookup102: pallet_rmrk_equip::pallet::Event<T>1125 **/1126 PalletRmrkEquipEvent: {1127 _enum: {1128 BaseCreated: {1129 issuer: 'AccountId32',1130 baseId: 'u32',1131 },1132 EquippablesUpdated: {1133 baseId: 'u32',1134 slotId: 'u32'1135 }1136 }1137 },1138 /**1139 * Lookup103: pallet_app_promotion::pallet::Event<T>1140 **/1141 PalletAppPromotionEvent: {1142 _enum: {1143 StakingRecalculation: '(AccountId32,u128,u128)',1144 Stake: '(AccountId32,u128)',1145 Unstake: '(AccountId32,u128)',1146 SetAdmin: 'AccountId32'1147 }1148 },1149 /**1150 * Lookup104: pallet_foreign_assets::module::Event<T>1151 **/1152 PalletForeignAssetsModuleEvent: {1153 _enum: {1154 ForeignAssetRegistered: {1155 assetId: 'u32',1156 assetAddress: 'XcmV1MultiLocation',1157 metadata: 'PalletForeignAssetsModuleAssetMetadata',1158 },1159 ForeignAssetUpdated: {1160 assetId: 'u32',1161 assetAddress: 'XcmV1MultiLocation',1162 metadata: 'PalletForeignAssetsModuleAssetMetadata',1163 },1164 AssetRegistered: {1165 assetId: 'PalletForeignAssetsAssetIds',1166 metadata: 'PalletForeignAssetsModuleAssetMetadata',1167 },1168 AssetUpdated: {1169 assetId: 'PalletForeignAssetsAssetIds',1170 metadata: 'PalletForeignAssetsModuleAssetMetadata'1171 }1172 }1173 },1174 /**1175 * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>1176 **/1177 PalletForeignAssetsModuleAssetMetadata: {1178 name: 'Bytes',1179 symbol: 'Bytes',1180 decimals: 'u8',1181 minimalBalance: 'u128'1182 },1183 /**1184 * Lookup106: pallet_evm::pallet::Event<T>1185 **/1186 PalletEvmEvent: {1187 _enum: {1188 Log: {1189 log: 'EthereumLog',1190 },1191 Created: {1192 address: 'H160',1193 },1194 CreatedFailed: {1195 address: 'H160',1196 },1197 Executed: {1198 address: 'H160',1199 },1200 ExecutedFailed: {1201 address: 'H160'1202 }1203 }1204 },1205 /**1206 * Lookup107: ethereum::log::Log1207 **/1208 EthereumLog: {1209 address: 'H160',1210 topics: 'Vec<H256>',1211 data: 'Bytes'1212 },1213 /**1214 * Lookup109: pallet_ethereum::pallet::Event1215 **/1216 PalletEthereumEvent: {1217 _enum: {1218 Executed: {1219 from: 'H160',1220 to: 'H160',1221 transactionHash: 'H256',1222 exitReason: 'EvmCoreErrorExitReason'1223 }1224 }1225 },1226 /**1227 * Lookup110: evm_core::error::ExitReason1228 **/1229 EvmCoreErrorExitReason: {1230 _enum: {1231 Succeed: 'EvmCoreErrorExitSucceed',1232 Error: 'EvmCoreErrorExitError',1233 Revert: 'EvmCoreErrorExitRevert',1234 Fatal: 'EvmCoreErrorExitFatal'1235 }1236 },1237 /**1238 * Lookup111: evm_core::error::ExitSucceed1239 **/1240 EvmCoreErrorExitSucceed: {1241 _enum: ['Stopped', 'Returned', 'Suicided']1242 },1243 /**1244 * Lookup112: evm_core::error::ExitError1245 **/1246 EvmCoreErrorExitError: {1247 _enum: {1248 StackUnderflow: 'Null',1249 StackOverflow: 'Null',1250 InvalidJump: 'Null',1251 InvalidRange: 'Null',1252 DesignatedInvalid: 'Null',1253 CallTooDeep: 'Null',1254 CreateCollision: 'Null',1255 CreateContractLimit: 'Null',1256 OutOfOffset: 'Null',1257 OutOfGas: 'Null',1258 OutOfFund: 'Null',1259 PCUnderflow: 'Null',1260 CreateEmpty: 'Null',1261 Other: 'Text',1262 InvalidCode: 'Null'1263 }1264 },1265 /**1266 * Lookup115: evm_core::error::ExitRevert1267 **/1268 EvmCoreErrorExitRevert: {1269 _enum: ['Reverted']1270 },1271 /**1272 * Lookup116: evm_core::error::ExitFatal1273 **/1274 EvmCoreErrorExitFatal: {1275 _enum: {1276 NotSupported: 'Null',1277 UnhandledInterrupt: 'Null',1278 CallErrorAsFatal: 'EvmCoreErrorExitError',1279 Other: 'Text'1280 }1281 },1282 /**1283 * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>1284 **/1285 PalletEvmContractHelpersEvent: {1286 _enum: {1287 ContractSponsorSet: '(H160,AccountId32)',1288 ContractSponsorshipConfirmed: '(H160,AccountId32)',1289 ContractSponsorRemoved: 'H160'1290 }1291 },1292 /**1293 * Lookup118: pallet_evm_migration::pallet::Event<T>1294 **/1295 PalletEvmMigrationEvent: {1296 _enum: ['TestEvent']1297 },1298 /**1299 * Lookup119: pallet_maintenance::pallet::Event<T>1300 **/1301 PalletMaintenanceEvent: {1302 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1303 },1304 /**1305 * Lookup120: pallet_test_utils::pallet::Event<T>1306 **/1307 PalletTestUtilsEvent: {1308 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1309 },1310 /**1311 * Lookup121: frame_system::Phase1312 **/1313 FrameSystemPhase: {1314 _enum: {1315 ApplyExtrinsic: 'u32',1316 Finalization: 'Null',1317 Initialization: 'Null'1318 }1319 },1320 /**1321 * Lookup124: frame_system::LastRuntimeUpgradeInfo1322 **/1323 FrameSystemLastRuntimeUpgradeInfo: {1324 specVersion: 'Compact<u32>',1325 specName: 'Text'1326 },1327 /**1328 * Lookup125: frame_system::pallet::Call<T>1329 **/1330 FrameSystemCall: {1331 _enum: {1332 remark: {1333 remark: 'Bytes',1334 },1335 set_heap_pages: {1336 pages: 'u64',1337 },1338 set_code: {1339 code: 'Bytes',1340 },1341 set_code_without_checks: {1342 code: 'Bytes',1343 },1344 set_storage: {1345 items: 'Vec<(Bytes,Bytes)>',1346 },1347 kill_storage: {1348 _alias: {1349 keys_: 'keys',1350 },1351 keys_: 'Vec<Bytes>',1352 },1353 kill_prefix: {1354 prefix: 'Bytes',1355 subkeys: 'u32',1356 },1357 remark_with_event: {1358 remark: 'Bytes'1359 }1360 }1361 },1362 /**1363 * Lookup129: frame_system::limits::BlockWeights1364 **/1365 FrameSystemLimitsBlockWeights: {1366 baseBlock: 'SpWeightsWeightV2Weight',1367 maxBlock: 'SpWeightsWeightV2Weight',1368 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1369 },1370 /**1371 * Lookup130: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1372 **/1373 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1374 normal: 'FrameSystemLimitsWeightsPerClass',1375 operational: 'FrameSystemLimitsWeightsPerClass',1376 mandatory: 'FrameSystemLimitsWeightsPerClass'1377 },1378 /**1379 * Lookup131: frame_system::limits::WeightsPerClass1380 **/1381 FrameSystemLimitsWeightsPerClass: {1382 baseExtrinsic: 'SpWeightsWeightV2Weight',1383 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1384 maxTotal: 'Option<SpWeightsWeightV2Weight>',1385 reserved: 'Option<SpWeightsWeightV2Weight>'1386 },1387 /**1388 * Lookup133: frame_system::limits::BlockLength1389 **/1390 FrameSystemLimitsBlockLength: {1391 max: 'FrameSupportDispatchPerDispatchClassU32'1392 },1393 /**1394 * Lookup134: frame_support::dispatch::PerDispatchClass<T>1395 **/1396 FrameSupportDispatchPerDispatchClassU32: {1397 normal: 'u32',1398 operational: 'u32',1399 mandatory: 'u32'1400 },1401 /**1402 * Lookup135: sp_weights::RuntimeDbWeight1403 **/1404 SpWeightsRuntimeDbWeight: {1405 read: 'u64',1406 write: 'u64'1407 },1408 /**1409 * Lookup136: sp_version::RuntimeVersion1410 **/1411 SpVersionRuntimeVersion: {1412 specName: 'Text',1413 implName: 'Text',1414 authoringVersion: 'u32',1415 specVersion: 'u32',1416 implVersion: 'u32',1417 apis: 'Vec<([u8;8],u32)>',1418 transactionVersion: 'u32',1419 stateVersion: 'u8'1420 },1421 /**1422 * Lookup141: frame_system::pallet::Error<T>1423 **/1424 FrameSystemError: {1425 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1426 },1427 /**1428 * Lookup142: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1429 **/1430 PolkadotPrimitivesV2PersistedValidationData: {1431 parentHead: 'Bytes',1432 relayParentNumber: 'u32',1433 relayParentStorageRoot: 'H256',1434 maxPovSize: 'u32'1435 },1436 /**1437 * Lookup145: polkadot_primitives::v2::UpgradeRestriction1438 **/1439 PolkadotPrimitivesV2UpgradeRestriction: {1440 _enum: ['Present']1441 },1442 /**1443 * Lookup146: sp_trie::storage_proof::StorageProof1444 **/1445 SpTrieStorageProof: {1446 trieNodes: 'BTreeSet<Bytes>'1447 },1448 /**1449 * Lookup148: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1450 **/1451 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1452 dmqMqcHead: 'H256',1453 relayDispatchQueueSize: '(u32,u32)',1454 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1455 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1456 },1457 /**1458 * Lookup151: polkadot_primitives::v2::AbridgedHrmpChannel1459 **/1460 PolkadotPrimitivesV2AbridgedHrmpChannel: {1461 maxCapacity: 'u32',1462 maxTotalSize: 'u32',1463 maxMessageSize: 'u32',1464 msgCount: 'u32',1465 totalSize: 'u32',1466 mqcHead: 'Option<H256>'1467 },1468 /**1469 * Lookup152: polkadot_primitives::v2::AbridgedHostConfiguration1470 **/1471 PolkadotPrimitivesV2AbridgedHostConfiguration: {1472 maxCodeSize: 'u32',1473 maxHeadDataSize: 'u32',1474 maxUpwardQueueCount: 'u32',1475 maxUpwardQueueSize: 'u32',1476 maxUpwardMessageSize: 'u32',1477 maxUpwardMessageNumPerCandidate: 'u32',1478 hrmpMaxMessageNumPerCandidate: 'u32',1479 validationUpgradeCooldown: 'u32',1480 validationUpgradeDelay: 'u32'1481 },1482 /**1483 * Lookup158: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1484 **/1485 PolkadotCorePrimitivesOutboundHrmpMessage: {1486 recipient: 'u32',1487 data: 'Bytes'1488 },1489 /**1490 * Lookup159: cumulus_pallet_parachain_system::pallet::Call<T>1491 **/1492 CumulusPalletParachainSystemCall: {1493 _enum: {1494 set_validation_data: {1495 data: 'CumulusPrimitivesParachainInherentParachainInherentData',1496 },1497 sudo_send_upward_message: {1498 message: 'Bytes',1499 },1500 authorize_upgrade: {1501 codeHash: 'H256',1502 },1503 enact_authorized_upgrade: {1504 code: 'Bytes'1505 }1506 }1507 },1508 /**1509 * Lookup160: cumulus_primitives_parachain_inherent::ParachainInherentData1510 **/1511 CumulusPrimitivesParachainInherentParachainInherentData: {1512 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1513 relayChainState: 'SpTrieStorageProof',1514 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1515 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1516 },1517 /**1518 * Lookup162: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1519 **/1520 PolkadotCorePrimitivesInboundDownwardMessage: {1521 sentAt: 'u32',1522 msg: 'Bytes'1523 },1524 /**1525 * Lookup165: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1526 **/1527 PolkadotCorePrimitivesInboundHrmpMessage: {1528 sentAt: 'u32',1529 data: 'Bytes'1530 },1531 /**1532 * Lookup168: cumulus_pallet_parachain_system::pallet::Error<T>1533 **/1534 CumulusPalletParachainSystemError: {1535 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1536 },1537 /**1538 * Lookup170: pallet_balances::BalanceLock<Balance>1539 **/1540 PalletBalancesBalanceLock: {1541 id: '[u8;8]',1542 amount: 'u128',1543 reasons: 'PalletBalancesReasons'1544 },1545 /**1546 * Lookup171: pallet_balances::Reasons1547 **/1548 PalletBalancesReasons: {1549 _enum: ['Fee', 'Misc', 'All']1550 },1551 /**1552 * Lookup174: pallet_balances::ReserveData<ReserveIdentifier, Balance>1553 **/1554 PalletBalancesReserveData: {1555 id: '[u8;16]',1556 amount: 'u128'1557 },1558 /**1559 * Lookup176: pallet_balances::pallet::Call<T, I>1560 **/1561 PalletBalancesCall: {1562 _enum: {1563 transfer: {1564 dest: 'MultiAddress',1565 value: 'Compact<u128>',1566 },1567 set_balance: {1568 who: 'MultiAddress',1569 newFree: 'Compact<u128>',1570 newReserved: 'Compact<u128>',1571 },1572 force_transfer: {1573 source: 'MultiAddress',1574 dest: 'MultiAddress',1575 value: 'Compact<u128>',1576 },1577 transfer_keep_alive: {1578 dest: 'MultiAddress',1579 value: 'Compact<u128>',1580 },1581 transfer_all: {1582 dest: 'MultiAddress',1583 keepAlive: 'bool',1584 },1585 force_unreserve: {1586 who: 'MultiAddress',1587 amount: 'u128'1588 }1589 }1590 },1591 /**1592 * Lookup179: pallet_balances::pallet::Error<T, I>1593 **/1594 PalletBalancesError: {1595 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1596 },1597 /**1598 * Lookup181: pallet_timestamp::pallet::Call<T>1599 **/1600 PalletTimestampCall: {1601 _enum: {1602 set: {1603 now: 'Compact<u64>'1604 }1605 }1606 },1607 /**1608 * Lookup183: pallet_transaction_payment::Releases1609 **/1610 PalletTransactionPaymentReleases: {1611 _enum: ['V1Ancient', 'V2']1612 },1613 /**1614 * Lookup184: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1615 **/1616 PalletTreasuryProposal: {1617 proposer: 'AccountId32',1618 value: 'u128',1619 beneficiary: 'AccountId32',1620 bond: 'u128'1621 },1622 /**1623 * Lookup187: pallet_treasury::pallet::Call<T, I>1624 **/1625 PalletTreasuryCall: {1626 _enum: {1627 propose_spend: {1628 value: 'Compact<u128>',1629 beneficiary: 'MultiAddress',1630 },1631 reject_proposal: {1632 proposalId: 'Compact<u32>',1633 },1634 approve_proposal: {1635 proposalId: 'Compact<u32>',1636 },1637 spend: {1638 amount: 'Compact<u128>',1639 beneficiary: 'MultiAddress',1640 },1641 remove_approval: {1642 proposalId: 'Compact<u32>'1643 }1644 }1645 },1646 /**1647 * Lookup190: frame_support::PalletId1648 **/1649 FrameSupportPalletId: '[u8;8]',1650 /**1651 * Lookup191: pallet_treasury::pallet::Error<T, I>1652 **/1653 PalletTreasuryError: {1654 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1655 },1656 /**1657 * Lookup192: pallet_sudo::pallet::Call<T>1658 **/1659 PalletSudoCall: {1660 _enum: {1661 sudo: {1662 call: 'Call',1663 },1664 sudo_unchecked_weight: {1665 call: 'Call',1666 weight: 'SpWeightsWeightV2Weight',1667 },1668 set_key: {1669 _alias: {1670 new_: 'new',1671 },1672 new_: 'MultiAddress',1673 },1674 sudo_as: {1675 who: 'MultiAddress',1676 call: 'Call'1677 }1678 }1679 },1680 /**1681 * Lookup194: orml_vesting::module::Call<T>1682 **/1683 OrmlVestingModuleCall: {1684 _enum: {1685 claim: 'Null',1686 vested_transfer: {1687 dest: 'MultiAddress',1688 schedule: 'OrmlVestingVestingSchedule',1689 },1690 update_vesting_schedules: {1691 who: 'MultiAddress',1692 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1693 },1694 claim_for: {1695 dest: 'MultiAddress'1696 }1697 }1698 },1699 /**1700 * Lookup196: orml_xtokens::module::Call<T>1701 **/1702 OrmlXtokensModuleCall: {1703 _enum: {1704 transfer: {1705 currencyId: 'PalletForeignAssetsAssetIds',1706 amount: 'u128',1707 dest: 'XcmVersionedMultiLocation',1708 destWeightLimit: 'XcmV2WeightLimit',1709 },1710 transfer_multiasset: {1711 asset: 'XcmVersionedMultiAsset',1712 dest: 'XcmVersionedMultiLocation',1713 destWeightLimit: 'XcmV2WeightLimit',1714 },1715 transfer_with_fee: {1716 currencyId: 'PalletForeignAssetsAssetIds',1717 amount: 'u128',1718 fee: 'u128',1719 dest: 'XcmVersionedMultiLocation',1720 destWeightLimit: 'XcmV2WeightLimit',1721 },1722 transfer_multiasset_with_fee: {1723 asset: 'XcmVersionedMultiAsset',1724 fee: 'XcmVersionedMultiAsset',1725 dest: 'XcmVersionedMultiLocation',1726 destWeightLimit: 'XcmV2WeightLimit',1727 },1728 transfer_multicurrencies: {1729 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1730 feeItem: 'u32',1731 dest: 'XcmVersionedMultiLocation',1732 destWeightLimit: 'XcmV2WeightLimit',1733 },1734 transfer_multiassets: {1735 assets: 'XcmVersionedMultiAssets',1736 feeItem: 'u32',1737 dest: 'XcmVersionedMultiLocation',1738 destWeightLimit: 'XcmV2WeightLimit'1739 }1740 }1741 },1742 /**1743 * Lookup197: xcm::VersionedMultiAsset1744 **/1745 XcmVersionedMultiAsset: {1746 _enum: {1747 V0: 'XcmV0MultiAsset',1748 V1: 'XcmV1MultiAsset'1749 }1750 },1751 /**1752 * Lookup200: orml_tokens::module::Call<T>1753 **/1754 OrmlTokensModuleCall: {1755 _enum: {1756 transfer: {1757 dest: 'MultiAddress',1758 currencyId: 'PalletForeignAssetsAssetIds',1759 amount: 'Compact<u128>',1760 },1761 transfer_all: {1762 dest: 'MultiAddress',1763 currencyId: 'PalletForeignAssetsAssetIds',1764 keepAlive: 'bool',1765 },1766 transfer_keep_alive: {1767 dest: 'MultiAddress',1768 currencyId: 'PalletForeignAssetsAssetIds',1769 amount: 'Compact<u128>',1770 },1771 force_transfer: {1772 source: 'MultiAddress',1773 dest: 'MultiAddress',1774 currencyId: 'PalletForeignAssetsAssetIds',1775 amount: 'Compact<u128>',1776 },1777 set_balance: {1778 who: 'MultiAddress',1779 currencyId: 'PalletForeignAssetsAssetIds',1780 newFree: 'Compact<u128>',1781 newReserved: 'Compact<u128>'1782 }1783 }1784 },1785 /**1786 * Lookup201: cumulus_pallet_xcmp_queue::pallet::Call<T>1787 **/1788 CumulusPalletXcmpQueueCall: {1789 _enum: {1790 service_overweight: {1791 index: 'u64',1792 weightLimit: 'u64',1793 },1794 suspend_xcm_execution: 'Null',1795 resume_xcm_execution: 'Null',1796 update_suspend_threshold: {1797 _alias: {1798 new_: 'new',1799 },1800 new_: 'u32',1801 },1802 update_drop_threshold: {1803 _alias: {1804 new_: 'new',1805 },1806 new_: 'u32',1807 },1808 update_resume_threshold: {1809 _alias: {1810 new_: 'new',1811 },1812 new_: 'u32',1813 },1814 update_threshold_weight: {1815 _alias: {1816 new_: 'new',1817 },1818 new_: 'u64',1819 },1820 update_weight_restrict_decay: {1821 _alias: {1822 new_: 'new',1823 },1824 new_: 'u64',1825 },1826 update_xcmp_max_individual_weight: {1827 _alias: {1828 new_: 'new',1829 },1830 new_: 'u64'1831 }1832 }1833 },1834 /**1835 * Lookup202: pallet_xcm::pallet::Call<T>1836 **/1837 PalletXcmCall: {1838 _enum: {1839 send: {1840 dest: 'XcmVersionedMultiLocation',1841 message: 'XcmVersionedXcm',1842 },1843 teleport_assets: {1844 dest: 'XcmVersionedMultiLocation',1845 beneficiary: 'XcmVersionedMultiLocation',1846 assets: 'XcmVersionedMultiAssets',1847 feeAssetItem: 'u32',1848 },1849 reserve_transfer_assets: {1850 dest: 'XcmVersionedMultiLocation',1851 beneficiary: 'XcmVersionedMultiLocation',1852 assets: 'XcmVersionedMultiAssets',1853 feeAssetItem: 'u32',1854 },1855 execute: {1856 message: 'XcmVersionedXcm',1857 maxWeight: 'u64',1858 },1859 force_xcm_version: {1860 location: 'XcmV1MultiLocation',1861 xcmVersion: 'u32',1862 },1863 force_default_xcm_version: {1864 maybeXcmVersion: 'Option<u32>',1865 },1866 force_subscribe_version_notify: {1867 location: 'XcmVersionedMultiLocation',1868 },1869 force_unsubscribe_version_notify: {1870 location: 'XcmVersionedMultiLocation',1871 },1872 limited_reserve_transfer_assets: {1873 dest: 'XcmVersionedMultiLocation',1874 beneficiary: 'XcmVersionedMultiLocation',1875 assets: 'XcmVersionedMultiAssets',1876 feeAssetItem: 'u32',1877 weightLimit: 'XcmV2WeightLimit',1878 },1879 limited_teleport_assets: {1880 dest: 'XcmVersionedMultiLocation',1881 beneficiary: 'XcmVersionedMultiLocation',1882 assets: 'XcmVersionedMultiAssets',1883 feeAssetItem: 'u32',1884 weightLimit: 'XcmV2WeightLimit'1885 }1886 }1887 },1888 /**1889 * Lookup203: xcm::VersionedXcm<RuntimeCall>1890 **/1891 XcmVersionedXcm: {1892 _enum: {1893 V0: 'XcmV0Xcm',1894 V1: 'XcmV1Xcm',1895 V2: 'XcmV2Xcm'1896 }1897 },1898 /**1899 * Lookup204: xcm::v0::Xcm<RuntimeCall>1900 **/1901 XcmV0Xcm: {1902 _enum: {1903 WithdrawAsset: {1904 assets: 'Vec<XcmV0MultiAsset>',1905 effects: 'Vec<XcmV0Order>',1906 },1907 ReserveAssetDeposit: {1908 assets: 'Vec<XcmV0MultiAsset>',1909 effects: 'Vec<XcmV0Order>',1910 },1911 TeleportAsset: {1912 assets: 'Vec<XcmV0MultiAsset>',1913 effects: 'Vec<XcmV0Order>',1914 },1915 QueryResponse: {1916 queryId: 'Compact<u64>',1917 response: 'XcmV0Response',1918 },1919 TransferAsset: {1920 assets: 'Vec<XcmV0MultiAsset>',1921 dest: 'XcmV0MultiLocation',1922 },1923 TransferReserveAsset: {1924 assets: 'Vec<XcmV0MultiAsset>',1925 dest: 'XcmV0MultiLocation',1926 effects: 'Vec<XcmV0Order>',1927 },1928 Transact: {1929 originType: 'XcmV0OriginKind',1930 requireWeightAtMost: 'u64',1931 call: 'XcmDoubleEncoded',1932 },1933 HrmpNewChannelOpenRequest: {1934 sender: 'Compact<u32>',1935 maxMessageSize: 'Compact<u32>',1936 maxCapacity: 'Compact<u32>',1937 },1938 HrmpChannelAccepted: {1939 recipient: 'Compact<u32>',1940 },1941 HrmpChannelClosing: {1942 initiator: 'Compact<u32>',1943 sender: 'Compact<u32>',1944 recipient: 'Compact<u32>',1945 },1946 RelayedFrom: {1947 who: 'XcmV0MultiLocation',1948 message: 'XcmV0Xcm'1949 }1950 }1951 },1952 /**1953 * Lookup206: xcm::v0::order::Order<RuntimeCall>1954 **/1955 XcmV0Order: {1956 _enum: {1957 Null: 'Null',1958 DepositAsset: {1959 assets: 'Vec<XcmV0MultiAsset>',1960 dest: 'XcmV0MultiLocation',1961 },1962 DepositReserveAsset: {1963 assets: 'Vec<XcmV0MultiAsset>',1964 dest: 'XcmV0MultiLocation',1965 effects: 'Vec<XcmV0Order>',1966 },1967 ExchangeAsset: {1968 give: 'Vec<XcmV0MultiAsset>',1969 receive: 'Vec<XcmV0MultiAsset>',1970 },1971 InitiateReserveWithdraw: {1972 assets: 'Vec<XcmV0MultiAsset>',1973 reserve: 'XcmV0MultiLocation',1974 effects: 'Vec<XcmV0Order>',1975 },1976 InitiateTeleport: {1977 assets: 'Vec<XcmV0MultiAsset>',1978 dest: 'XcmV0MultiLocation',1979 effects: 'Vec<XcmV0Order>',1980 },1981 QueryHolding: {1982 queryId: 'Compact<u64>',1983 dest: 'XcmV0MultiLocation',1984 assets: 'Vec<XcmV0MultiAsset>',1985 },1986 BuyExecution: {1987 fees: 'XcmV0MultiAsset',1988 weight: 'u64',1989 debt: 'u64',1990 haltOnError: 'bool',1991 xcm: 'Vec<XcmV0Xcm>'1992 }1993 }1994 },1995 /**1996 * Lookup208: xcm::v0::Response1997 **/1998 XcmV0Response: {1999 _enum: {2000 Assets: 'Vec<XcmV0MultiAsset>'2001 }2002 },2003 /**2004 * Lookup209: xcm::v1::Xcm<RuntimeCall>2005 **/2006 XcmV1Xcm: {2007 _enum: {2008 WithdrawAsset: {2009 assets: 'XcmV1MultiassetMultiAssets',2010 effects: 'Vec<XcmV1Order>',2011 },2012 ReserveAssetDeposited: {2013 assets: 'XcmV1MultiassetMultiAssets',2014 effects: 'Vec<XcmV1Order>',2015 },2016 ReceiveTeleportedAsset: {2017 assets: 'XcmV1MultiassetMultiAssets',2018 effects: 'Vec<XcmV1Order>',2019 },2020 QueryResponse: {2021 queryId: 'Compact<u64>',2022 response: 'XcmV1Response',2023 },2024 TransferAsset: {2025 assets: 'XcmV1MultiassetMultiAssets',2026 beneficiary: 'XcmV1MultiLocation',2027 },2028 TransferReserveAsset: {2029 assets: 'XcmV1MultiassetMultiAssets',2030 dest: 'XcmV1MultiLocation',2031 effects: 'Vec<XcmV1Order>',2032 },2033 Transact: {2034 originType: 'XcmV0OriginKind',2035 requireWeightAtMost: 'u64',2036 call: 'XcmDoubleEncoded',2037 },2038 HrmpNewChannelOpenRequest: {2039 sender: 'Compact<u32>',2040 maxMessageSize: 'Compact<u32>',2041 maxCapacity: 'Compact<u32>',2042 },2043 HrmpChannelAccepted: {2044 recipient: 'Compact<u32>',2045 },2046 HrmpChannelClosing: {2047 initiator: 'Compact<u32>',2048 sender: 'Compact<u32>',2049 recipient: 'Compact<u32>',2050 },2051 RelayedFrom: {2052 who: 'XcmV1MultilocationJunctions',2053 message: 'XcmV1Xcm',2054 },2055 SubscribeVersion: {2056 queryId: 'Compact<u64>',2057 maxResponseWeight: 'Compact<u64>',2058 },2059 UnsubscribeVersion: 'Null'2060 }2061 },2062 /**2063 * Lookup211: xcm::v1::order::Order<RuntimeCall>2064 **/2065 XcmV1Order: {2066 _enum: {2067 Noop: 'Null',2068 DepositAsset: {2069 assets: 'XcmV1MultiassetMultiAssetFilter',2070 maxAssets: 'u32',2071 beneficiary: 'XcmV1MultiLocation',2072 },2073 DepositReserveAsset: {2074 assets: 'XcmV1MultiassetMultiAssetFilter',2075 maxAssets: 'u32',2076 dest: 'XcmV1MultiLocation',2077 effects: 'Vec<XcmV1Order>',2078 },2079 ExchangeAsset: {2080 give: 'XcmV1MultiassetMultiAssetFilter',2081 receive: 'XcmV1MultiassetMultiAssets',2082 },2083 InitiateReserveWithdraw: {2084 assets: 'XcmV1MultiassetMultiAssetFilter',2085 reserve: 'XcmV1MultiLocation',2086 effects: 'Vec<XcmV1Order>',2087 },2088 InitiateTeleport: {2089 assets: 'XcmV1MultiassetMultiAssetFilter',2090 dest: 'XcmV1MultiLocation',2091 effects: 'Vec<XcmV1Order>',2092 },2093 QueryHolding: {2094 queryId: 'Compact<u64>',2095 dest: 'XcmV1MultiLocation',2096 assets: 'XcmV1MultiassetMultiAssetFilter',2097 },2098 BuyExecution: {2099 fees: 'XcmV1MultiAsset',2100 weight: 'u64',2101 debt: 'u64',2102 haltOnError: 'bool',2103 instructions: 'Vec<XcmV1Xcm>'2104 }2105 }2106 },2107 /**2108 * Lookup213: xcm::v1::Response2109 **/2110 XcmV1Response: {2111 _enum: {2112 Assets: 'XcmV1MultiassetMultiAssets',2113 Version: 'u32'2114 }2115 },2116 /**2117 * Lookup227: cumulus_pallet_xcm::pallet::Call<T>2118 **/2119 CumulusPalletXcmCall: 'Null',2120 /**2121 * Lookup228: cumulus_pallet_dmp_queue::pallet::Call<T>2122 **/2123 CumulusPalletDmpQueueCall: {2124 _enum: {2125 service_overweight: {2126 index: 'u64',2127 weightLimit: 'u64'2128 }2129 }2130 },2131 /**2132 * Lookup229: pallet_inflation::pallet::Call<T>2133 **/2134 PalletInflationCall: {2135 _enum: {2136 start_inflation: {2137 inflationStartRelayBlock: 'u32'2138 }2139 }2140 },2141 /**2142 * Lookup230: pallet_unique::Call<T>2143 **/2144 PalletUniqueCall: {2145 _enum: {2146 create_collection: {2147 collectionName: 'Vec<u16>',2148 collectionDescription: 'Vec<u16>',2149 tokenPrefix: 'Bytes',2150 mode: 'UpDataStructsCollectionMode',2151 },2152 create_collection_ex: {2153 data: 'UpDataStructsCreateCollectionData',2154 },2155 destroy_collection: {2156 collectionId: 'u32',2157 },2158 add_to_allow_list: {2159 collectionId: 'u32',2160 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2161 },2162 remove_from_allow_list: {2163 collectionId: 'u32',2164 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2165 },2166 change_collection_owner: {2167 collectionId: 'u32',2168 newOwner: 'AccountId32',2169 },2170 add_collection_admin: {2171 collectionId: 'u32',2172 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2173 },2174 remove_collection_admin: {2175 collectionId: 'u32',2176 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2177 },2178 set_collection_sponsor: {2179 collectionId: 'u32',2180 newSponsor: 'AccountId32',2181 },2182 confirm_sponsorship: {2183 collectionId: 'u32',2184 },2185 remove_collection_sponsor: {2186 collectionId: 'u32',2187 },2188 create_item: {2189 collectionId: 'u32',2190 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2191 data: 'UpDataStructsCreateItemData',2192 },2193 create_multiple_items: {2194 collectionId: 'u32',2195 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2196 itemsData: 'Vec<UpDataStructsCreateItemData>',2197 },2198 set_collection_properties: {2199 collectionId: 'u32',2200 properties: 'Vec<UpDataStructsProperty>',2201 },2202 delete_collection_properties: {2203 collectionId: 'u32',2204 propertyKeys: 'Vec<Bytes>',2205 },2206 set_token_properties: {2207 collectionId: 'u32',2208 tokenId: 'u32',2209 properties: 'Vec<UpDataStructsProperty>',2210 },2211 delete_token_properties: {2212 collectionId: 'u32',2213 tokenId: 'u32',2214 propertyKeys: 'Vec<Bytes>',2215 },2216 set_token_property_permissions: {2217 collectionId: 'u32',2218 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2219 },2220 create_multiple_items_ex: {2221 collectionId: 'u32',2222 data: 'UpDataStructsCreateItemExData',2223 },2224 set_transfers_enabled_flag: {2225 collectionId: 'u32',2226 value: 'bool',2227 },2228 burn_item: {2229 collectionId: 'u32',2230 itemId: 'u32',2231 value: 'u128',2232 },2233 burn_from: {2234 collectionId: 'u32',2235 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2236 itemId: 'u32',2237 value: 'u128',2238 },2239 transfer: {2240 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2241 collectionId: 'u32',2242 itemId: 'u32',2243 value: 'u128',2244 },2245 approve: {2246 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2247 collectionId: 'u32',2248 itemId: 'u32',2249 amount: 'u128',2250 },2251 transfer_from: {2252 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2253 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2254 collectionId: 'u32',2255 itemId: 'u32',2256 value: 'u128',2257 },2258 set_collection_limits: {2259 collectionId: 'u32',2260 newLimit: 'UpDataStructsCollectionLimits',2261 },2262 set_collection_permissions: {2263 collectionId: 'u32',2264 newPermission: 'UpDataStructsCollectionPermissions',2265 },2266 repartition: {2267 collectionId: 'u32',2268 tokenId: 'u32',2269 amount: 'u128',2270 },2271 set_allowance_for_all: {2272 collectionId: 'u32',2273 operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2274 approve: 'bool',2275 },2276 force_repair_collection: {2277 collectionId: 'u32',2278 },2279 force_repair_item: {2280 collectionId: 'u32',2281 itemId: 'u32'2282 }2283 }2284 },2285 /**2286 * Lookup235: up_data_structs::CollectionMode2287 **/2288 UpDataStructsCollectionMode: {2289 _enum: {2290 NFT: 'Null',2291 Fungible: 'u8',2292 ReFungible: 'Null'2293 }2294 },2295 /**2296 * Lookup236: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2297 **/2298 UpDataStructsCreateCollectionData: {2299 mode: 'UpDataStructsCollectionMode',2300 access: 'Option<UpDataStructsAccessMode>',2301 name: 'Vec<u16>',2302 description: 'Vec<u16>',2303 tokenPrefix: 'Bytes',2304 pendingSponsor: 'Option<AccountId32>',2305 limits: 'Option<UpDataStructsCollectionLimits>',2306 permissions: 'Option<UpDataStructsCollectionPermissions>',2307 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2308 properties: 'Vec<UpDataStructsProperty>'2309 },2310 /**2311 * Lookup238: up_data_structs::AccessMode2312 **/2313 UpDataStructsAccessMode: {2314 _enum: ['Normal', 'AllowList']2315 },2316 /**2317 * Lookup240: up_data_structs::CollectionLimits2318 **/2319 UpDataStructsCollectionLimits: {2320 accountTokenOwnershipLimit: 'Option<u32>',2321 sponsoredDataSize: 'Option<u32>',2322 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2323 tokenLimit: 'Option<u32>',2324 sponsorTransferTimeout: 'Option<u32>',2325 sponsorApproveTimeout: 'Option<u32>',2326 ownerCanTransfer: 'Option<bool>',2327 ownerCanDestroy: 'Option<bool>',2328 transfersEnabled: 'Option<bool>'2329 },2330 /**2331 * Lookup242: up_data_structs::SponsoringRateLimit2332 **/2333 UpDataStructsSponsoringRateLimit: {2334 _enum: {2335 SponsoringDisabled: 'Null',2336 Blocks: 'u32'2337 }2338 },2339 /**2340 * Lookup245: up_data_structs::CollectionPermissions2341 **/2342 UpDataStructsCollectionPermissions: {2343 access: 'Option<UpDataStructsAccessMode>',2344 mintMode: 'Option<bool>',2345 nesting: 'Option<UpDataStructsNestingPermissions>'2346 },2347 /**2348 * Lookup247: up_data_structs::NestingPermissions2349 **/2350 UpDataStructsNestingPermissions: {2351 tokenOwner: 'bool',2352 collectionAdmin: 'bool',2353 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2354 },2355 /**2356 * Lookup249: up_data_structs::OwnerRestrictedSet2357 **/2358 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2359 /**2360 * Lookup254: up_data_structs::PropertyKeyPermission2361 **/2362 UpDataStructsPropertyKeyPermission: {2363 key: 'Bytes',2364 permission: 'UpDataStructsPropertyPermission'2365 },2366 /**2367 * Lookup255: up_data_structs::PropertyPermission2368 **/2369 UpDataStructsPropertyPermission: {2370 mutable: 'bool',2371 collectionAdmin: 'bool',2372 tokenOwner: 'bool'2373 },2374 /**2375 * Lookup258: up_data_structs::Property2376 **/2377 UpDataStructsProperty: {2378 key: 'Bytes',2379 value: 'Bytes'2380 },2381 /**2382 * Lookup261: up_data_structs::CreateItemData2383 **/2384 UpDataStructsCreateItemData: {2385 _enum: {2386 NFT: 'UpDataStructsCreateNftData',2387 Fungible: 'UpDataStructsCreateFungibleData',2388 ReFungible: 'UpDataStructsCreateReFungibleData'2389 }2390 },2391 /**2392 * Lookup262: up_data_structs::CreateNftData2393 **/2394 UpDataStructsCreateNftData: {2395 properties: 'Vec<UpDataStructsProperty>'2396 },2397 /**2398 * Lookup263: up_data_structs::CreateFungibleData2399 **/2400 UpDataStructsCreateFungibleData: {2401 value: 'u128'2402 },2403 /**2404 * Lookup264: up_data_structs::CreateReFungibleData2405 **/2406 UpDataStructsCreateReFungibleData: {2407 pieces: 'u128',2408 properties: 'Vec<UpDataStructsProperty>'2409 },2410 /**2411 * Lookup267: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2412 **/2413 UpDataStructsCreateItemExData: {2414 _enum: {2415 NFT: 'Vec<UpDataStructsCreateNftExData>',2416 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2417 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2418 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2419 }2420 },2421 /**2422 * Lookup269: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2423 **/2424 UpDataStructsCreateNftExData: {2425 properties: 'Vec<UpDataStructsProperty>',2426 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2427 },2428 /**2429 * Lookup276: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2430 **/2431 UpDataStructsCreateRefungibleExSingleOwner: {2432 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2433 pieces: 'u128',2434 properties: 'Vec<UpDataStructsProperty>'2435 },2436 /**2437 * Lookup278: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2438 **/2439 UpDataStructsCreateRefungibleExMultipleOwners: {2440 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2441 properties: 'Vec<UpDataStructsProperty>'2442 },2443 /**2444 * Lookup279: pallet_configuration::pallet::Call<T>2445 **/2446 PalletConfigurationCall: {2447 _enum: {2448 set_weight_to_fee_coefficient_override: {2449 coeff: 'Option<u64>',2450 },2451 set_min_gas_price_override: {2452 coeff: 'Option<u64>',2453 },2454 set_xcm_allowed_locations: {2455 locations: 'Option<Vec<XcmV1MultiLocation>>',2456 },2457 set_app_promotion_configuration_override: {2458 configuration: 'PalletConfigurationAppPromotionConfiguration'2459 }2460 }2461 },2462 /**2463 * Lookup284: pallet_configuration::AppPromotionConfiguration<BlockNumber>2464 **/2465 PalletConfigurationAppPromotionConfiguration: {2466 recalculationInterval: 'Option<u32>',2467 pendingInterval: 'Option<u32>',2468 intervalIncome: 'Option<Perbill>',2469 maxStakersPerCalculation: 'Option<u8>'2470 },2471 /**2472 * Lookup288: pallet_template_transaction_payment::Call<T>2473 **/2474 PalletTemplateTransactionPaymentCall: 'Null',2475 /**2476 * Lookup289: pallet_structure::pallet::Call<T>2477 **/2478 PalletStructureCall: 'Null',2479 /**2480 * Lookup290: pallet_rmrk_core::pallet::Call<T>2481 **/2482 PalletRmrkCoreCall: {2483 _enum: {2484 create_collection: {2485 metadata: 'Bytes',2486 max: 'Option<u32>',2487 symbol: 'Bytes',2488 },2489 destroy_collection: {2490 collectionId: 'u32',2491 },2492 change_collection_issuer: {2493 collectionId: 'u32',2494 newIssuer: 'MultiAddress',2495 },2496 lock_collection: {2497 collectionId: 'u32',2498 },2499 mint_nft: {2500 owner: 'Option<AccountId32>',2501 collectionId: 'u32',2502 recipient: 'Option<AccountId32>',2503 royaltyAmount: 'Option<Permill>',2504 metadata: 'Bytes',2505 transferable: 'bool',2506 resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2507 },2508 burn_nft: {2509 collectionId: 'u32',2510 nftId: 'u32',2511 maxBurns: 'u32',2512 },2513 send: {2514 rmrkCollectionId: 'u32',2515 rmrkNftId: 'u32',2516 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2517 },2518 accept_nft: {2519 rmrkCollectionId: 'u32',2520 rmrkNftId: 'u32',2521 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2522 },2523 reject_nft: {2524 rmrkCollectionId: 'u32',2525 rmrkNftId: 'u32',2526 },2527 accept_resource: {2528 rmrkCollectionId: 'u32',2529 rmrkNftId: 'u32',2530 resourceId: 'u32',2531 },2532 accept_resource_removal: {2533 rmrkCollectionId: 'u32',2534 rmrkNftId: 'u32',2535 resourceId: 'u32',2536 },2537 set_property: {2538 rmrkCollectionId: 'Compact<u32>',2539 maybeNftId: 'Option<u32>',2540 key: 'Bytes',2541 value: 'Bytes',2542 },2543 set_priority: {2544 rmrkCollectionId: 'u32',2545 rmrkNftId: 'u32',2546 priorities: 'Vec<u32>',2547 },2548 add_basic_resource: {2549 rmrkCollectionId: 'u32',2550 nftId: 'u32',2551 resource: 'RmrkTraitsResourceBasicResource',2552 },2553 add_composable_resource: {2554 rmrkCollectionId: 'u32',2555 nftId: 'u32',2556 resource: 'RmrkTraitsResourceComposableResource',2557 },2558 add_slot_resource: {2559 rmrkCollectionId: 'u32',2560 nftId: 'u32',2561 resource: 'RmrkTraitsResourceSlotResource',2562 },2563 remove_resource: {2564 rmrkCollectionId: 'u32',2565 nftId: 'u32',2566 resourceId: 'u32'2567 }2568 }2569 },2570 /**2571 * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2572 **/2573 RmrkTraitsResourceResourceTypes: {2574 _enum: {2575 Basic: 'RmrkTraitsResourceBasicResource',2576 Composable: 'RmrkTraitsResourceComposableResource',2577 Slot: 'RmrkTraitsResourceSlotResource'2578 }2579 },2580 /**2581 * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2582 **/2583 RmrkTraitsResourceBasicResource: {2584 src: 'Option<Bytes>',2585 metadata: 'Option<Bytes>',2586 license: 'Option<Bytes>',2587 thumb: 'Option<Bytes>'2588 },2589 /**2590 * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2591 **/2592 RmrkTraitsResourceComposableResource: {2593 parts: 'Vec<u32>',2594 base: 'u32',2595 src: 'Option<Bytes>',2596 metadata: 'Option<Bytes>',2597 license: 'Option<Bytes>',2598 thumb: 'Option<Bytes>'2599 },2600 /**2601 * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2602 **/2603 RmrkTraitsResourceSlotResource: {2604 base: 'u32',2605 src: 'Option<Bytes>',2606 metadata: 'Option<Bytes>',2607 slot: 'u32',2608 license: 'Option<Bytes>',2609 thumb: 'Option<Bytes>'2610 },2611 /**2612 * Lookup304: pallet_rmrk_equip::pallet::Call<T>2613 **/2614 PalletRmrkEquipCall: {2615 _enum: {2616 create_base: {2617 baseType: 'Bytes',2618 symbol: 'Bytes',2619 parts: 'Vec<RmrkTraitsPartPartType>',2620 },2621 theme_add: {2622 baseId: 'u32',2623 theme: 'RmrkTraitsTheme',2624 },2625 equippable: {2626 baseId: 'u32',2627 slotId: 'u32',2628 equippables: 'RmrkTraitsPartEquippableList'2629 }2630 }2631 },2632 /**2633 * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2634 **/2635 RmrkTraitsPartPartType: {2636 _enum: {2637 FixedPart: 'RmrkTraitsPartFixedPart',2638 SlotPart: 'RmrkTraitsPartSlotPart'2639 }2640 },2641 /**2642 * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2643 **/2644 RmrkTraitsPartFixedPart: {2645 id: 'u32',2646 z: 'u32',2647 src: 'Bytes'2648 },2649 /**2650 * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2651 **/2652 RmrkTraitsPartSlotPart: {2653 id: 'u32',2654 equippable: 'RmrkTraitsPartEquippableList',2655 src: 'Bytes',2656 z: 'u32'2657 },2658 /**2659 * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2660 **/2661 RmrkTraitsPartEquippableList: {2662 _enum: {2663 All: 'Null',2664 Empty: 'Null',2665 Custom: 'Vec<u32>'2666 }2667 },2668 /**2669 * Lookup313: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2670 **/2671 RmrkTraitsTheme: {2672 name: 'Bytes',2673 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2674 inherit: 'bool'2675 },2676 /**2677 * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2678 **/2679 RmrkTraitsThemeThemeProperty: {2680 key: 'Bytes',2681 value: 'Bytes'2682 },2683 /**2684 * Lookup317: pallet_app_promotion::pallet::Call<T>2685 **/2686 PalletAppPromotionCall: {2687 _enum: {2688 set_admin_address: {2689 admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2690 },2691 stake: {2692 amount: 'u128',2693 },2694 unstake: 'Null',2695 sponsor_collection: {2696 collectionId: 'u32',2697 },2698 stop_sponsoring_collection: {2699 collectionId: 'u32',2700 },2701 sponsor_contract: {2702 contractId: 'H160',2703 },2704 stop_sponsoring_contract: {2705 contractId: 'H160',2706 },2707 payout_stakers: {2708 stakersNumber: 'Option<u8>'2709 }2710 }2711 },2712 /**2713 * Lookup318: pallet_foreign_assets::module::Call<T>2714 **/2715 PalletForeignAssetsModuleCall: {2716 _enum: {2717 register_foreign_asset: {2718 owner: 'AccountId32',2719 location: 'XcmVersionedMultiLocation',2720 metadata: 'PalletForeignAssetsModuleAssetMetadata',2721 },2722 update_foreign_asset: {2723 foreignAssetId: 'u32',2724 location: 'XcmVersionedMultiLocation',2725 metadata: 'PalletForeignAssetsModuleAssetMetadata'2726 }2727 }2728 },2729 /**2730 * Lookup319: pallet_evm::pallet::Call<T>2731 **/2732 PalletEvmCall: {2733 _enum: {2734 withdraw: {2735 address: 'H160',2736 value: 'u128',2737 },2738 call: {2739 source: 'H160',2740 target: 'H160',2741 input: 'Bytes',2742 value: 'U256',2743 gasLimit: 'u64',2744 maxFeePerGas: 'U256',2745 maxPriorityFeePerGas: 'Option<U256>',2746 nonce: 'Option<U256>',2747 accessList: 'Vec<(H160,Vec<H256>)>',2748 },2749 create: {2750 source: 'H160',2751 init: 'Bytes',2752 value: 'U256',2753 gasLimit: 'u64',2754 maxFeePerGas: 'U256',2755 maxPriorityFeePerGas: 'Option<U256>',2756 nonce: 'Option<U256>',2757 accessList: 'Vec<(H160,Vec<H256>)>',2758 },2759 create2: {2760 source: 'H160',2761 init: 'Bytes',2762 salt: 'H256',2763 value: 'U256',2764 gasLimit: 'u64',2765 maxFeePerGas: 'U256',2766 maxPriorityFeePerGas: 'Option<U256>',2767 nonce: 'Option<U256>',2768 accessList: 'Vec<(H160,Vec<H256>)>'2769 }2770 }2771 },2772 /**2773 * Lookup325: pallet_ethereum::pallet::Call<T>2774 **/2775 PalletEthereumCall: {2776 _enum: {2777 transact: {2778 transaction: 'EthereumTransactionTransactionV2'2779 }2780 }2781 },2782 /**2783 * Lookup326: ethereum::transaction::TransactionV22784 **/2785 EthereumTransactionTransactionV2: {2786 _enum: {2787 Legacy: 'EthereumTransactionLegacyTransaction',2788 EIP2930: 'EthereumTransactionEip2930Transaction',2789 EIP1559: 'EthereumTransactionEip1559Transaction'2790 }2791 },2792 /**2793 * Lookup327: ethereum::transaction::LegacyTransaction2794 **/2795 EthereumTransactionLegacyTransaction: {2796 nonce: 'U256',2797 gasPrice: 'U256',2798 gasLimit: 'U256',2799 action: 'EthereumTransactionTransactionAction',2800 value: 'U256',2801 input: 'Bytes',2802 signature: 'EthereumTransactionTransactionSignature'2803 },2804 /**2805 * Lookup328: ethereum::transaction::TransactionAction2806 **/2807 EthereumTransactionTransactionAction: {2808 _enum: {2809 Call: 'H160',2810 Create: 'Null'2811 }2812 },2813 /**2814 * Lookup329: ethereum::transaction::TransactionSignature2815 **/2816 EthereumTransactionTransactionSignature: {2817 v: 'u64',2818 r: 'H256',2819 s: 'H256'2820 },2821 /**2822 * Lookup331: ethereum::transaction::EIP2930Transaction2823 **/2824 EthereumTransactionEip2930Transaction: {2825 chainId: 'u64',2826 nonce: 'U256',2827 gasPrice: 'U256',2828 gasLimit: 'U256',2829 action: 'EthereumTransactionTransactionAction',2830 value: 'U256',2831 input: 'Bytes',2832 accessList: 'Vec<EthereumTransactionAccessListItem>',2833 oddYParity: 'bool',2834 r: 'H256',2835 s: 'H256'2836 },2837 /**2838 * Lookup333: ethereum::transaction::AccessListItem2839 **/2840 EthereumTransactionAccessListItem: {2841 address: 'H160',2842 storageKeys: 'Vec<H256>'2843 },2844 /**2845 * Lookup334: ethereum::transaction::EIP1559Transaction2846 **/2847 EthereumTransactionEip1559Transaction: {2848 chainId: 'u64',2849 nonce: 'U256',2850 maxPriorityFeePerGas: 'U256',2851 maxFeePerGas: 'U256',2852 gasLimit: 'U256',2853 action: 'EthereumTransactionTransactionAction',2854 value: 'U256',2855 input: 'Bytes',2856 accessList: 'Vec<EthereumTransactionAccessListItem>',2857 oddYParity: 'bool',2858 r: 'H256',2859 s: 'H256'2860 },2861 /**2862 * Lookup335: pallet_evm_migration::pallet::Call<T>2863 **/2864 PalletEvmMigrationCall: {2865 _enum: {2866 begin: {2867 address: 'H160',2868 },2869 set_data: {2870 address: 'H160',2871 data: 'Vec<(H256,H256)>',2872 },2873 finish: {2874 address: 'H160',2875 code: 'Bytes',2876 },2877 insert_eth_logs: {2878 logs: 'Vec<EthereumLog>',2879 },2880 insert_events: {2881 events: 'Vec<Bytes>'2882 }2883 }2884 },2885 /**2886 * Lookup339: pallet_maintenance::pallet::Call<T>2887 **/2888 PalletMaintenanceCall: {2889 _enum: ['enable', 'disable']2890 },2891 /**2892 * Lookup340: pallet_test_utils::pallet::Call<T>2893 **/2894 PalletTestUtilsCall: {2895 _enum: {2896 enable: 'Null',2897 set_test_value: {2898 value: 'u32',2899 },2900 set_test_value_and_rollback: {2901 value: 'u32',2902 },2903 inc_test_value: 'Null',2904 just_take_fee: 'Null',2905 batch_all: {2906 calls: 'Vec<Call>'2907 }2908 }2909 },2910 /**2911 * Lookup342: pallet_sudo::pallet::Error<T>2912 **/2913 PalletSudoError: {2914 _enum: ['RequireSudo']2915 },2916 /**2917 * Lookup344: orml_vesting::module::Error<T>2918 **/2919 OrmlVestingModuleError: {2920 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2921 },2922 /**2923 * Lookup345: orml_xtokens::module::Error<T>2924 **/2925 OrmlXtokensModuleError: {2926 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2927 },2928 /**2929 * Lookup348: orml_tokens::BalanceLock<Balance>2930 **/2931 OrmlTokensBalanceLock: {2932 id: '[u8;8]',2933 amount: 'u128'2934 },2935 /**2936 * Lookup350: orml_tokens::AccountData<Balance>2937 **/2938 OrmlTokensAccountData: {2939 free: 'u128',2940 reserved: 'u128',2941 frozen: 'u128'2942 },2943 /**2944 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>2945 **/2946 OrmlTokensReserveData: {2947 id: 'Null',2948 amount: 'u128'2949 },2950 /**2951 * Lookup354: orml_tokens::module::Error<T>2952 **/2953 OrmlTokensModuleError: {2954 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2955 },2956 /**2957 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails2958 **/2959 CumulusPalletXcmpQueueInboundChannelDetails: {2960 sender: 'u32',2961 state: 'CumulusPalletXcmpQueueInboundState',2962 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2963 },2964 /**2965 * Lookup357: cumulus_pallet_xcmp_queue::InboundState2966 **/2967 CumulusPalletXcmpQueueInboundState: {2968 _enum: ['Ok', 'Suspended']2969 },2970 /**2971 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat2972 **/2973 PolkadotParachainPrimitivesXcmpMessageFormat: {2974 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2975 },2976 /**2977 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails2978 **/2979 CumulusPalletXcmpQueueOutboundChannelDetails: {2980 recipient: 'u32',2981 state: 'CumulusPalletXcmpQueueOutboundState',2982 signalsExist: 'bool',2983 firstIndex: 'u16',2984 lastIndex: 'u16'2985 },2986 /**2987 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState2988 **/2989 CumulusPalletXcmpQueueOutboundState: {2990 _enum: ['Ok', 'Suspended']2991 },2992 /**2993 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData2994 **/2995 CumulusPalletXcmpQueueQueueConfigData: {2996 suspendThreshold: 'u32',2997 dropThreshold: 'u32',2998 resumeThreshold: 'u32',2999 thresholdWeight: 'SpWeightsWeightV2Weight',3000 weightRestrictDecay: 'SpWeightsWeightV2Weight',3001 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3002 },3003 /**3004 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>3005 **/3006 CumulusPalletXcmpQueueError: {3007 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3008 },3009 /**3010 * Lookup369: pallet_xcm::pallet::Error<T>3011 **/3012 PalletXcmError: {3013 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3014 },3015 /**3016 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>3017 **/3018 CumulusPalletXcmError: 'Null',3019 /**3020 * Lookup371: cumulus_pallet_dmp_queue::ConfigData3021 **/3022 CumulusPalletDmpQueueConfigData: {3023 maxIndividual: 'SpWeightsWeightV2Weight'3024 },3025 /**3026 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData3027 **/3028 CumulusPalletDmpQueuePageIndexData: {3029 beginUsed: 'u32',3030 endUsed: 'u32',3031 overweightCount: 'u64'3032 },3033 /**3034 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>3035 **/3036 CumulusPalletDmpQueueError: {3037 _enum: ['Unknown', 'OverLimit']3038 },3039 /**3040 * Lookup379: pallet_unique::Error<T>3041 **/3042 PalletUniqueError: {3043 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3044 },3045 /**3046 * Lookup380: pallet_configuration::pallet::Error<T>3047 **/3048 PalletConfigurationError: {3049 _enum: ['InconsistentConfiguration']3050 },3051 /**3052 * Lookup381: up_data_structs::Collection<sp_core::crypto::AccountId32>3053 **/3054 UpDataStructsCollection: {3055 owner: 'AccountId32',3056 mode: 'UpDataStructsCollectionMode',3057 name: 'Vec<u16>',3058 description: 'Vec<u16>',3059 tokenPrefix: 'Bytes',3060 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3061 limits: 'UpDataStructsCollectionLimits',3062 permissions: 'UpDataStructsCollectionPermissions',3063 flags: '[u8;1]'3064 },3065 /**3066 * Lookup382: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3067 **/3068 UpDataStructsSponsorshipStateAccountId32: {3069 _enum: {3070 Disabled: 'Null',3071 Unconfirmed: 'AccountId32',3072 Confirmed: 'AccountId32'3073 }3074 },3075 /**3076 * Lookup384: up_data_structs::Properties3077 **/3078 UpDataStructsProperties: {3079 map: 'UpDataStructsPropertiesMapBoundedVec',3080 consumedSpace: 'u32',3081 spaceLimit: 'u32'3082 },3083 /**3084 * Lookup385: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3085 **/3086 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3087 /**3088 * Lookup390: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3089 **/3090 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3091 /**3092 * Lookup397: up_data_structs::CollectionStats3093 **/3094 UpDataStructsCollectionStats: {3095 created: 'u32',3096 destroyed: 'u32',3097 alive: 'u32'3098 },3099 /**3100 * Lookup398: up_data_structs::TokenChild3101 **/3102 UpDataStructsTokenChild: {3103 token: 'u32',3104 collection: 'u32'3105 },3106 /**3107 * Lookup399: PhantomType::up_data_structs<T>3108 **/3109 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3110 /**3111 * Lookup401: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3112 **/3113 UpDataStructsTokenData: {3114 properties: 'Vec<UpDataStructsProperty>',3115 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3116 pieces: 'u128'3117 },3118 /**3119 * Lookup403: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3120 **/3121 UpDataStructsRpcCollection: {3122 owner: 'AccountId32',3123 mode: 'UpDataStructsCollectionMode',3124 name: 'Vec<u16>',3125 description: 'Vec<u16>',3126 tokenPrefix: 'Bytes',3127 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3128 limits: 'UpDataStructsCollectionLimits',3129 permissions: 'UpDataStructsCollectionPermissions',3130 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3131 properties: 'Vec<UpDataStructsProperty>',3132 readOnly: 'bool',3133 flags: 'UpDataStructsRpcCollectionFlags'3134 },3135 /**3136 * Lookup404: up_data_structs::RpcCollectionFlags3137 **/3138 UpDataStructsRpcCollectionFlags: {3139 foreign: 'bool',3140 erc721metadata: 'bool'3141 },3142 /**3143 * Lookup405: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3144 **/3145 RmrkTraitsCollectionCollectionInfo: {3146 issuer: 'AccountId32',3147 metadata: 'Bytes',3148 max: 'Option<u32>',3149 symbol: 'Bytes',3150 nftsCount: 'u32'3151 },3152 /**3153 * Lookup406: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3154 **/3155 RmrkTraitsNftNftInfo: {3156 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3157 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3158 metadata: 'Bytes',3159 equipped: 'bool',3160 pending: 'bool'3161 },3162 /**3163 * Lookup408: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3164 **/3165 RmrkTraitsNftRoyaltyInfo: {3166 recipient: 'AccountId32',3167 amount: 'Permill'3168 },3169 /**3170 * Lookup409: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3171 **/3172 RmrkTraitsResourceResourceInfo: {3173 id: 'u32',3174 resource: 'RmrkTraitsResourceResourceTypes',3175 pending: 'bool',3176 pendingRemoval: 'bool'3177 },3178 /**3179 * Lookup410: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3180 **/3181 RmrkTraitsPropertyPropertyInfo: {3182 key: 'Bytes',3183 value: 'Bytes'3184 },3185 /**3186 * Lookup411: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3187 **/3188 RmrkTraitsBaseBaseInfo: {3189 issuer: 'AccountId32',3190 baseType: 'Bytes',3191 symbol: 'Bytes'3192 },3193 /**3194 * Lookup412: rmrk_traits::nft::NftChild3195 **/3196 RmrkTraitsNftNftChild: {3197 collectionId: 'u32',3198 nftId: 'u32'3199 },3200 /**3201 * Lookup414: pallet_common::pallet::Error<T>3202 **/3203 PalletCommonError: {3204 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3205 },3206 /**3207 * Lookup416: pallet_fungible::pallet::Error<T>3208 **/3209 PalletFungibleError: {3210 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3211 },3212 /**3213 * Lookup417: pallet_refungible::ItemData3214 **/3215 PalletRefungibleItemData: {3216 constData: 'Bytes'3217 },3218 /**3219 * Lookup422: pallet_refungible::pallet::Error<T>3220 **/3221 PalletRefungibleError: {3222 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3223 },3224 /**3225 * Lookup423: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3226 **/3227 PalletNonfungibleItemData: {3228 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3229 },3230 /**3231 * Lookup425: up_data_structs::PropertyScope3232 **/3233 UpDataStructsPropertyScope: {3234 _enum: ['None', 'Rmrk']3235 },3236 /**3237 * Lookup427: pallet_nonfungible::pallet::Error<T>3238 **/3239 PalletNonfungibleError: {3240 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3241 },3242 /**3243 * Lookup428: pallet_structure::pallet::Error<T>3244 **/3245 PalletStructureError: {3246 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3247 },3248 /**3249 * Lookup429: pallet_rmrk_core::pallet::Error<T>3250 **/3251 PalletRmrkCoreError: {3252 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3253 },3254 /**3255 * Lookup431: pallet_rmrk_equip::pallet::Error<T>3256 **/3257 PalletRmrkEquipError: {3258 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3259 },3260 /**3261 * Lookup437: pallet_app_promotion::pallet::Error<T>3262 **/3263 PalletAppPromotionError: {3264 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3265 },3266 /**3267 * Lookup438: pallet_foreign_assets::module::Error<T>3268 **/3269 PalletForeignAssetsModuleError: {3270 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3271 },3272 /**3273 * Lookup440: pallet_evm::pallet::Error<T>3274 **/3275 PalletEvmError: {3276 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3277 },3278 /**3279 * Lookup443: fp_rpc::TransactionStatus3280 **/3281 FpRpcTransactionStatus: {3282 transactionHash: 'H256',3283 transactionIndex: 'u32',3284 from: 'H160',3285 to: 'Option<H160>',3286 contractAddress: 'Option<H160>',3287 logs: 'Vec<EthereumLog>',3288 logsBloom: 'EthbloomBloom'3289 },3290 /**3291 * Lookup445: ethbloom::Bloom3292 **/3293 EthbloomBloom: '[u8;256]',3294 /**3295 * Lookup447: ethereum::receipt::ReceiptV33296 **/3297 EthereumReceiptReceiptV3: {3298 _enum: {3299 Legacy: 'EthereumReceiptEip658ReceiptData',3300 EIP2930: 'EthereumReceiptEip658ReceiptData',3301 EIP1559: 'EthereumReceiptEip658ReceiptData'3302 }3303 },3304 /**3305 * Lookup448: ethereum::receipt::EIP658ReceiptData3306 **/3307 EthereumReceiptEip658ReceiptData: {3308 statusCode: 'u8',3309 usedGas: 'U256',3310 logsBloom: 'EthbloomBloom',3311 logs: 'Vec<EthereumLog>'3312 },3313 /**3314 * Lookup449: ethereum::block::Block<ethereum::transaction::TransactionV2>3315 **/3316 EthereumBlock: {3317 header: 'EthereumHeader',3318 transactions: 'Vec<EthereumTransactionTransactionV2>',3319 ommers: 'Vec<EthereumHeader>'3320 },3321 /**3322 * Lookup450: ethereum::header::Header3323 **/3324 EthereumHeader: {3325 parentHash: 'H256',3326 ommersHash: 'H256',3327 beneficiary: 'H160',3328 stateRoot: 'H256',3329 transactionsRoot: 'H256',3330 receiptsRoot: 'H256',3331 logsBloom: 'EthbloomBloom',3332 difficulty: 'U256',3333 number: 'U256',3334 gasLimit: 'U256',3335 gasUsed: 'U256',3336 timestamp: 'u64',3337 extraData: 'Bytes',3338 mixHash: 'H256',3339 nonce: 'EthereumTypesHashH64'3340 },3341 /**3342 * Lookup451: ethereum_types::hash::H643343 **/3344 EthereumTypesHashH64: '[u8;8]',3345 /**3346 * Lookup456: pallet_ethereum::pallet::Error<T>3347 **/3348 PalletEthereumError: {3349 _enum: ['InvalidSignature', 'PreLogExists']3350 },3351 /**3352 * Lookup457: pallet_evm_coder_substrate::pallet::Error<T>3353 **/3354 PalletEvmCoderSubstrateError: {3355 _enum: ['OutOfGas', 'OutOfFund']3356 },3357 /**3358 * Lookup458: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3359 **/3360 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3361 _enum: {3362 Disabled: 'Null',3363 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3364 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3365 }3366 },3367 /**3368 * Lookup459: pallet_evm_contract_helpers::SponsoringModeT3369 **/3370 PalletEvmContractHelpersSponsoringModeT: {3371 _enum: ['Disabled', 'Allowlisted', 'Generous']3372 },3373 /**3374 * Lookup465: pallet_evm_contract_helpers::pallet::Error<T>3375 **/3376 PalletEvmContractHelpersError: {3377 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3378 },3379 /**3380 * Lookup466: pallet_evm_migration::pallet::Error<T>3381 **/3382 PalletEvmMigrationError: {3383 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3384 },3385 /**3386 * Lookup467: pallet_maintenance::pallet::Error<T>3387 **/3388 PalletMaintenanceError: 'Null',3389 /**3390 * Lookup468: pallet_test_utils::pallet::Error<T>3391 **/3392 PalletTestUtilsError: {3393 _enum: ['TestPalletDisabled', 'TriggerRollback']3394 },3395 /**3396 * Lookup470: sp_runtime::MultiSignature3397 **/3398 SpRuntimeMultiSignature: {3399 _enum: {3400 Ed25519: 'SpCoreEd25519Signature',3401 Sr25519: 'SpCoreSr25519Signature',3402 Ecdsa: 'SpCoreEcdsaSignature'3403 }3404 },3405 /**3406 * Lookup471: sp_core::ed25519::Signature3407 **/3408 SpCoreEd25519Signature: '[u8;64]',3409 /**3410 * Lookup473: sp_core::sr25519::Signature3411 **/3412 SpCoreSr25519Signature: '[u8;64]',3413 /**3414 * Lookup474: sp_core::ecdsa::Signature3415 **/3416 SpCoreEcdsaSignature: '[u8;65]',3417 /**3418 * Lookup477: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3419 **/3420 FrameSystemExtensionsCheckSpecVersion: 'Null',3421 /**3422 * Lookup478: frame_system::extensions::check_tx_version::CheckTxVersion<T>3423 **/3424 FrameSystemExtensionsCheckTxVersion: 'Null',3425 /**3426 * Lookup479: frame_system::extensions::check_genesis::CheckGenesis<T>3427 **/3428 FrameSystemExtensionsCheckGenesis: 'Null',3429 /**3430 * Lookup482: frame_system::extensions::check_nonce::CheckNonce<T>3431 **/3432 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3433 /**3434 * Lookup483: frame_system::extensions::check_weight::CheckWeight<T>3435 **/3436 FrameSystemExtensionsCheckWeight: 'Null',3437 /**3438 * Lookup484: opal_runtime::runtime_common::maintenance::CheckMaintenance3439 **/3440 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3441 /**3442 * Lookup485: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3443 **/3444 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3445 /**3446 * Lookup486: opal_runtime::Runtime3447 **/3448 OpalRuntimeRuntime: 'Null',3449 /**3450 * Lookup487: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3451 **/3452 PalletEthereumFakeTransactionFinalizer: 'Null'3453};1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9 **/10 FrameSystemAccountInfo: {11 nonce: 'u32',12 consumers: 'u32',13 providers: 'u32',14 sufficients: 'u32',15 data: 'PalletBalancesAccountData'16 },17 /**18 * Lookup5: pallet_balances::AccountData<Balance>19 **/20 PalletBalancesAccountData: {21 free: 'u128',22 reserved: 'u128',23 miscFrozen: 'u128',24 feeFrozen: 'u128'25 },26 /**27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'SpWeightsWeightV2Weight',31 operational: 'SpWeightsWeightV2Weight',32 mandatory: 'SpWeightsWeightV2Weight'33 },34 /**35 * Lookup8: sp_weights::weight_v2::Weight36 **/37 SpWeightsWeightV2Weight: {38 refTime: 'Compact<u64>',39 proofSize: 'Compact<u64>'40 },41 /**42 * Lookup13: sp_runtime::generic::digest::Digest43 **/44 SpRuntimeDigest: {45 logs: 'Vec<SpRuntimeDigestDigestItem>'46 },47 /**48 * Lookup15: sp_runtime::generic::digest::DigestItem49 **/50 SpRuntimeDigestDigestItem: {51 _enum: {52 Other: 'Bytes',53 __Unused1: 'Null',54 __Unused2: 'Null',55 __Unused3: 'Null',56 Consensus: '([u8;4],Bytes)',57 Seal: '([u8;4],Bytes)',58 PreRuntime: '([u8;4],Bytes)',59 __Unused7: 'Null',60 RuntimeEnvironmentUpdated: 'Null'61 }62 },63 /**64 * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65 **/66 FrameSystemEventRecord: {67 phase: 'FrameSystemPhase',68 event: 'Event',69 topics: 'Vec<H256>'70 },71 /**72 * Lookup20: frame_system::pallet::Event<T>73 **/74 FrameSystemEvent: {75 _enum: {76 ExtrinsicSuccess: {77 dispatchInfo: 'FrameSupportDispatchDispatchInfo',78 },79 ExtrinsicFailed: {80 dispatchError: 'SpRuntimeDispatchError',81 dispatchInfo: 'FrameSupportDispatchDispatchInfo',82 },83 CodeUpdated: 'Null',84 NewAccount: {85 account: 'AccountId32',86 },87 KilledAccount: {88 account: 'AccountId32',89 },90 Remarked: {91 _alias: {92 hash_: 'hash',93 },94 sender: 'AccountId32',95 hash_: 'H256'96 }97 }98 },99 /**100 * Lookup21: frame_support::dispatch::DispatchInfo101 **/102 FrameSupportDispatchDispatchInfo: {103 weight: 'SpWeightsWeightV2Weight',104 class: 'FrameSupportDispatchDispatchClass',105 paysFee: 'FrameSupportDispatchPays'106 },107 /**108 * Lookup22: frame_support::dispatch::DispatchClass109 **/110 FrameSupportDispatchDispatchClass: {111 _enum: ['Normal', 'Operational', 'Mandatory']112 },113 /**114 * Lookup23: frame_support::dispatch::Pays115 **/116 FrameSupportDispatchPays: {117 _enum: ['Yes', 'No']118 },119 /**120 * Lookup24: sp_runtime::DispatchError121 **/122 SpRuntimeDispatchError: {123 _enum: {124 Other: 'Null',125 CannotLookup: 'Null',126 BadOrigin: 'Null',127 Module: 'SpRuntimeModuleError',128 ConsumerRemaining: 'Null',129 NoProviders: 'Null',130 TooManyConsumers: 'Null',131 Token: 'SpRuntimeTokenError',132 Arithmetic: 'SpRuntimeArithmeticError',133 Transactional: 'SpRuntimeTransactionalError',134 Exhausted: 'Null',135 Corruption: 'Null',136 Unavailable: 'Null'137 }138 },139 /**140 * Lookup25: sp_runtime::ModuleError141 **/142 SpRuntimeModuleError: {143 index: 'u8',144 error: '[u8;4]'145 },146 /**147 * Lookup26: sp_runtime::TokenError148 **/149 SpRuntimeTokenError: {150 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151 },152 /**153 * Lookup27: sp_runtime::ArithmeticError154 **/155 SpRuntimeArithmeticError: {156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']157 },158 /**159 * Lookup28: sp_runtime::TransactionalError160 **/161 SpRuntimeTransactionalError: {162 _enum: ['LimitReached', 'NoLayer']163 },164 /**165 * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166 **/167 CumulusPalletParachainSystemEvent: {168 _enum: {169 ValidationFunctionStored: 'Null',170 ValidationFunctionApplied: {171 relayChainBlockNum: 'u32',172 },173 ValidationFunctionDiscarded: 'Null',174 UpgradeAuthorized: {175 codeHash: 'H256',176 },177 DownwardMessagesReceived: {178 count: 'u32',179 },180 DownwardMessagesProcessed: {181 weightUsed: 'SpWeightsWeightV2Weight',182 dmqHead: 'H256'183 }184 }185 },186 /**187 * Lookup30: pallet_balances::pallet::Event<T, I>188 **/189 PalletBalancesEvent: {190 _enum: {191 Endowed: {192 account: 'AccountId32',193 freeBalance: 'u128',194 },195 DustLost: {196 account: 'AccountId32',197 amount: 'u128',198 },199 Transfer: {200 from: 'AccountId32',201 to: 'AccountId32',202 amount: 'u128',203 },204 BalanceSet: {205 who: 'AccountId32',206 free: 'u128',207 reserved: 'u128',208 },209 Reserved: {210 who: 'AccountId32',211 amount: 'u128',212 },213 Unreserved: {214 who: 'AccountId32',215 amount: 'u128',216 },217 ReserveRepatriated: {218 from: 'AccountId32',219 to: 'AccountId32',220 amount: 'u128',221 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',222 },223 Deposit: {224 who: 'AccountId32',225 amount: 'u128',226 },227 Withdraw: {228 who: 'AccountId32',229 amount: 'u128',230 },231 Slashed: {232 who: 'AccountId32',233 amount: 'u128'234 }235 }236 },237 /**238 * Lookup31: frame_support::traits::tokens::misc::BalanceStatus239 **/240 FrameSupportTokensMiscBalanceStatus: {241 _enum: ['Free', 'Reserved']242 },243 /**244 * Lookup32: pallet_transaction_payment::pallet::Event<T>245 **/246 PalletTransactionPaymentEvent: {247 _enum: {248 TransactionFeePaid: {249 who: 'AccountId32',250 actualFee: 'u128',251 tip: 'u128'252 }253 }254 },255 /**256 * Lookup33: pallet_treasury::pallet::Event<T, I>257 **/258 PalletTreasuryEvent: {259 _enum: {260 Proposed: {261 proposalIndex: 'u32',262 },263 Spending: {264 budgetRemaining: 'u128',265 },266 Awarded: {267 proposalIndex: 'u32',268 award: 'u128',269 account: 'AccountId32',270 },271 Rejected: {272 proposalIndex: 'u32',273 slashed: 'u128',274 },275 Burnt: {276 burntFunds: 'u128',277 },278 Rollover: {279 rolloverBalance: 'u128',280 },281 Deposit: {282 value: 'u128',283 },284 SpendApproved: {285 proposalIndex: 'u32',286 amount: 'u128',287 beneficiary: 'AccountId32'288 }289 }290 },291 /**292 * Lookup34: pallet_sudo::pallet::Event<T>293 **/294 PalletSudoEvent: {295 _enum: {296 Sudid: {297 sudoResult: 'Result<Null, SpRuntimeDispatchError>',298 },299 KeyChanged: {300 oldSudoer: 'Option<AccountId32>',301 },302 SudoAsDone: {303 sudoResult: 'Result<Null, SpRuntimeDispatchError>'304 }305 }306 },307 /**308 * Lookup38: orml_vesting::module::Event<T>309 **/310 OrmlVestingModuleEvent: {311 _enum: {312 VestingScheduleAdded: {313 from: 'AccountId32',314 to: 'AccountId32',315 vestingSchedule: 'OrmlVestingVestingSchedule',316 },317 Claimed: {318 who: 'AccountId32',319 amount: 'u128',320 },321 VestingSchedulesUpdated: {322 who: 'AccountId32'323 }324 }325 },326 /**327 * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>328 **/329 OrmlVestingVestingSchedule: {330 start: 'u32',331 period: 'u32',332 periodCount: 'u32',333 perPeriod: 'Compact<u128>'334 },335 /**336 * Lookup41: orml_xtokens::module::Event<T>337 **/338 OrmlXtokensModuleEvent: {339 _enum: {340 TransferredMultiAssets: {341 sender: 'AccountId32',342 assets: 'XcmV1MultiassetMultiAssets',343 fee: 'XcmV1MultiAsset',344 dest: 'XcmV1MultiLocation'345 }346 }347 },348 /**349 * Lookup42: xcm::v1::multiasset::MultiAssets350 **/351 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',352 /**353 * Lookup44: xcm::v1::multiasset::MultiAsset354 **/355 XcmV1MultiAsset: {356 id: 'XcmV1MultiassetAssetId',357 fun: 'XcmV1MultiassetFungibility'358 },359 /**360 * Lookup45: xcm::v1::multiasset::AssetId361 **/362 XcmV1MultiassetAssetId: {363 _enum: {364 Concrete: 'XcmV1MultiLocation',365 Abstract: 'Bytes'366 }367 },368 /**369 * Lookup46: xcm::v1::multilocation::MultiLocation370 **/371 XcmV1MultiLocation: {372 parents: 'u8',373 interior: 'XcmV1MultilocationJunctions'374 },375 /**376 * Lookup47: xcm::v1::multilocation::Junctions377 **/378 XcmV1MultilocationJunctions: {379 _enum: {380 Here: 'Null',381 X1: 'XcmV1Junction',382 X2: '(XcmV1Junction,XcmV1Junction)',383 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',384 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',385 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',386 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',387 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',388 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'389 }390 },391 /**392 * Lookup48: xcm::v1::junction::Junction393 **/394 XcmV1Junction: {395 _enum: {396 Parachain: 'Compact<u32>',397 AccountId32: {398 network: 'XcmV0JunctionNetworkId',399 id: '[u8;32]',400 },401 AccountIndex64: {402 network: 'XcmV0JunctionNetworkId',403 index: 'Compact<u64>',404 },405 AccountKey20: {406 network: 'XcmV0JunctionNetworkId',407 key: '[u8;20]',408 },409 PalletInstance: 'u8',410 GeneralIndex: 'Compact<u128>',411 GeneralKey: 'Bytes',412 OnlyChild: 'Null',413 Plurality: {414 id: 'XcmV0JunctionBodyId',415 part: 'XcmV0JunctionBodyPart'416 }417 }418 },419 /**420 * Lookup50: xcm::v0::junction::NetworkId421 **/422 XcmV0JunctionNetworkId: {423 _enum: {424 Any: 'Null',425 Named: 'Bytes',426 Polkadot: 'Null',427 Kusama: 'Null'428 }429 },430 /**431 * Lookup53: xcm::v0::junction::BodyId432 **/433 XcmV0JunctionBodyId: {434 _enum: {435 Unit: 'Null',436 Named: 'Bytes',437 Index: 'Compact<u32>',438 Executive: 'Null',439 Technical: 'Null',440 Legislative: 'Null',441 Judicial: 'Null'442 }443 },444 /**445 * Lookup54: xcm::v0::junction::BodyPart446 **/447 XcmV0JunctionBodyPart: {448 _enum: {449 Voice: 'Null',450 Members: {451 count: 'Compact<u32>',452 },453 Fraction: {454 nom: 'Compact<u32>',455 denom: 'Compact<u32>',456 },457 AtLeastProportion: {458 nom: 'Compact<u32>',459 denom: 'Compact<u32>',460 },461 MoreThanProportion: {462 nom: 'Compact<u32>',463 denom: 'Compact<u32>'464 }465 }466 },467 /**468 * Lookup55: xcm::v1::multiasset::Fungibility469 **/470 XcmV1MultiassetFungibility: {471 _enum: {472 Fungible: 'Compact<u128>',473 NonFungible: 'XcmV1MultiassetAssetInstance'474 }475 },476 /**477 * Lookup56: xcm::v1::multiasset::AssetInstance478 **/479 XcmV1MultiassetAssetInstance: {480 _enum: {481 Undefined: 'Null',482 Index: 'Compact<u128>',483 Array4: '[u8;4]',484 Array8: '[u8;8]',485 Array16: '[u8;16]',486 Array32: '[u8;32]',487 Blob: 'Bytes'488 }489 },490 /**491 * Lookup59: orml_tokens::module::Event<T>492 **/493 OrmlTokensModuleEvent: {494 _enum: {495 Endowed: {496 currencyId: 'PalletForeignAssetsAssetIds',497 who: 'AccountId32',498 amount: 'u128',499 },500 DustLost: {501 currencyId: 'PalletForeignAssetsAssetIds',502 who: 'AccountId32',503 amount: 'u128',504 },505 Transfer: {506 currencyId: 'PalletForeignAssetsAssetIds',507 from: 'AccountId32',508 to: 'AccountId32',509 amount: 'u128',510 },511 Reserved: {512 currencyId: 'PalletForeignAssetsAssetIds',513 who: 'AccountId32',514 amount: 'u128',515 },516 Unreserved: {517 currencyId: 'PalletForeignAssetsAssetIds',518 who: 'AccountId32',519 amount: 'u128',520 },521 ReserveRepatriated: {522 currencyId: 'PalletForeignAssetsAssetIds',523 from: 'AccountId32',524 to: 'AccountId32',525 amount: 'u128',526 status: 'FrameSupportTokensMiscBalanceStatus',527 },528 BalanceSet: {529 currencyId: 'PalletForeignAssetsAssetIds',530 who: 'AccountId32',531 free: 'u128',532 reserved: 'u128',533 },534 TotalIssuanceSet: {535 currencyId: 'PalletForeignAssetsAssetIds',536 amount: 'u128',537 },538 Withdrawn: {539 currencyId: 'PalletForeignAssetsAssetIds',540 who: 'AccountId32',541 amount: 'u128',542 },543 Slashed: {544 currencyId: 'PalletForeignAssetsAssetIds',545 who: 'AccountId32',546 freeAmount: 'u128',547 reservedAmount: 'u128',548 },549 Deposited: {550 currencyId: 'PalletForeignAssetsAssetIds',551 who: 'AccountId32',552 amount: 'u128',553 },554 LockSet: {555 lockId: '[u8;8]',556 currencyId: 'PalletForeignAssetsAssetIds',557 who: 'AccountId32',558 amount: 'u128',559 },560 LockRemoved: {561 lockId: '[u8;8]',562 currencyId: 'PalletForeignAssetsAssetIds',563 who: 'AccountId32'564 }565 }566 },567 /**568 * Lookup60: pallet_foreign_assets::AssetIds569 **/570 PalletForeignAssetsAssetIds: {571 _enum: {572 ForeignAssetId: 'u32',573 NativeAssetId: 'PalletForeignAssetsNativeCurrency'574 }575 },576 /**577 * Lookup61: pallet_foreign_assets::NativeCurrency578 **/579 PalletForeignAssetsNativeCurrency: {580 _enum: ['Here', 'Parent']581 },582 /**583 * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>584 **/585 CumulusPalletXcmpQueueEvent: {586 _enum: {587 Success: {588 messageHash: 'Option<H256>',589 weight: 'SpWeightsWeightV2Weight',590 },591 Fail: {592 messageHash: 'Option<H256>',593 error: 'XcmV2TraitsError',594 weight: 'SpWeightsWeightV2Weight',595 },596 BadVersion: {597 messageHash: 'Option<H256>',598 },599 BadFormat: {600 messageHash: 'Option<H256>',601 },602 UpwardMessageSent: {603 messageHash: 'Option<H256>',604 },605 XcmpMessageSent: {606 messageHash: 'Option<H256>',607 },608 OverweightEnqueued: {609 sender: 'u32',610 sentAt: 'u32',611 index: 'u64',612 required: 'SpWeightsWeightV2Weight',613 },614 OverweightServiced: {615 index: 'u64',616 used: 'SpWeightsWeightV2Weight'617 }618 }619 },620 /**621 * Lookup64: xcm::v2::traits::Error622 **/623 XcmV2TraitsError: {624 _enum: {625 Overflow: 'Null',626 Unimplemented: 'Null',627 UntrustedReserveLocation: 'Null',628 UntrustedTeleportLocation: 'Null',629 MultiLocationFull: 'Null',630 MultiLocationNotInvertible: 'Null',631 BadOrigin: 'Null',632 InvalidLocation: 'Null',633 AssetNotFound: 'Null',634 FailedToTransactAsset: 'Null',635 NotWithdrawable: 'Null',636 LocationCannotHold: 'Null',637 ExceedsMaxMessageSize: 'Null',638 DestinationUnsupported: 'Null',639 Transport: 'Null',640 Unroutable: 'Null',641 UnknownClaim: 'Null',642 FailedToDecode: 'Null',643 MaxWeightInvalid: 'Null',644 NotHoldingFees: 'Null',645 TooExpensive: 'Null',646 Trap: 'u64',647 UnhandledXcmVersion: 'Null',648 WeightLimitReached: 'u64',649 Barrier: 'Null',650 WeightNotComputable: 'Null'651 }652 },653 /**654 * Lookup66: pallet_xcm::pallet::Event<T>655 **/656 PalletXcmEvent: {657 _enum: {658 Attempted: 'XcmV2TraitsOutcome',659 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',660 UnexpectedResponse: '(XcmV1MultiLocation,u64)',661 ResponseReady: '(u64,XcmV2Response)',662 Notified: '(u64,u8,u8)',663 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',664 NotifyDispatchError: '(u64,u8,u8)',665 NotifyDecodeFailed: '(u64,u8,u8)',666 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',667 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',668 ResponseTaken: 'u64',669 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',670 VersionChangeNotified: '(XcmV1MultiLocation,u32)',671 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',672 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',673 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',674 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'675 }676 },677 /**678 * Lookup67: xcm::v2::traits::Outcome679 **/680 XcmV2TraitsOutcome: {681 _enum: {682 Complete: 'u64',683 Incomplete: '(u64,XcmV2TraitsError)',684 Error: 'XcmV2TraitsError'685 }686 },687 /**688 * Lookup68: xcm::v2::Xcm<RuntimeCall>689 **/690 XcmV2Xcm: 'Vec<XcmV2Instruction>',691 /**692 * Lookup70: xcm::v2::Instruction<RuntimeCall>693 **/694 XcmV2Instruction: {695 _enum: {696 WithdrawAsset: 'XcmV1MultiassetMultiAssets',697 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',698 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',699 QueryResponse: {700 queryId: 'Compact<u64>',701 response: 'XcmV2Response',702 maxWeight: 'Compact<u64>',703 },704 TransferAsset: {705 assets: 'XcmV1MultiassetMultiAssets',706 beneficiary: 'XcmV1MultiLocation',707 },708 TransferReserveAsset: {709 assets: 'XcmV1MultiassetMultiAssets',710 dest: 'XcmV1MultiLocation',711 xcm: 'XcmV2Xcm',712 },713 Transact: {714 originType: 'XcmV0OriginKind',715 requireWeightAtMost: 'Compact<u64>',716 call: 'XcmDoubleEncoded',717 },718 HrmpNewChannelOpenRequest: {719 sender: 'Compact<u32>',720 maxMessageSize: 'Compact<u32>',721 maxCapacity: 'Compact<u32>',722 },723 HrmpChannelAccepted: {724 recipient: 'Compact<u32>',725 },726 HrmpChannelClosing: {727 initiator: 'Compact<u32>',728 sender: 'Compact<u32>',729 recipient: 'Compact<u32>',730 },731 ClearOrigin: 'Null',732 DescendOrigin: 'XcmV1MultilocationJunctions',733 ReportError: {734 queryId: 'Compact<u64>',735 dest: 'XcmV1MultiLocation',736 maxResponseWeight: 'Compact<u64>',737 },738 DepositAsset: {739 assets: 'XcmV1MultiassetMultiAssetFilter',740 maxAssets: 'Compact<u32>',741 beneficiary: 'XcmV1MultiLocation',742 },743 DepositReserveAsset: {744 assets: 'XcmV1MultiassetMultiAssetFilter',745 maxAssets: 'Compact<u32>',746 dest: 'XcmV1MultiLocation',747 xcm: 'XcmV2Xcm',748 },749 ExchangeAsset: {750 give: 'XcmV1MultiassetMultiAssetFilter',751 receive: 'XcmV1MultiassetMultiAssets',752 },753 InitiateReserveWithdraw: {754 assets: 'XcmV1MultiassetMultiAssetFilter',755 reserve: 'XcmV1MultiLocation',756 xcm: 'XcmV2Xcm',757 },758 InitiateTeleport: {759 assets: 'XcmV1MultiassetMultiAssetFilter',760 dest: 'XcmV1MultiLocation',761 xcm: 'XcmV2Xcm',762 },763 QueryHolding: {764 queryId: 'Compact<u64>',765 dest: 'XcmV1MultiLocation',766 assets: 'XcmV1MultiassetMultiAssetFilter',767 maxResponseWeight: 'Compact<u64>',768 },769 BuyExecution: {770 fees: 'XcmV1MultiAsset',771 weightLimit: 'XcmV2WeightLimit',772 },773 RefundSurplus: 'Null',774 SetErrorHandler: 'XcmV2Xcm',775 SetAppendix: 'XcmV2Xcm',776 ClearError: 'Null',777 ClaimAsset: {778 assets: 'XcmV1MultiassetMultiAssets',779 ticket: 'XcmV1MultiLocation',780 },781 Trap: 'Compact<u64>',782 SubscribeVersion: {783 queryId: 'Compact<u64>',784 maxResponseWeight: 'Compact<u64>',785 },786 UnsubscribeVersion: 'Null'787 }788 },789 /**790 * Lookup71: xcm::v2::Response791 **/792 XcmV2Response: {793 _enum: {794 Null: 'Null',795 Assets: 'XcmV1MultiassetMultiAssets',796 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',797 Version: 'u32'798 }799 },800 /**801 * Lookup74: xcm::v0::OriginKind802 **/803 XcmV0OriginKind: {804 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']805 },806 /**807 * Lookup75: xcm::double_encoded::DoubleEncoded<T>808 **/809 XcmDoubleEncoded: {810 encoded: 'Bytes'811 },812 /**813 * Lookup76: xcm::v1::multiasset::MultiAssetFilter814 **/815 XcmV1MultiassetMultiAssetFilter: {816 _enum: {817 Definite: 'XcmV1MultiassetMultiAssets',818 Wild: 'XcmV1MultiassetWildMultiAsset'819 }820 },821 /**822 * Lookup77: xcm::v1::multiasset::WildMultiAsset823 **/824 XcmV1MultiassetWildMultiAsset: {825 _enum: {826 All: 'Null',827 AllOf: {828 id: 'XcmV1MultiassetAssetId',829 fun: 'XcmV1MultiassetWildFungibility'830 }831 }832 },833 /**834 * Lookup78: xcm::v1::multiasset::WildFungibility835 **/836 XcmV1MultiassetWildFungibility: {837 _enum: ['Fungible', 'NonFungible']838 },839 /**840 * Lookup79: xcm::v2::WeightLimit841 **/842 XcmV2WeightLimit: {843 _enum: {844 Unlimited: 'Null',845 Limited: 'Compact<u64>'846 }847 },848 /**849 * Lookup81: xcm::VersionedMultiAssets850 **/851 XcmVersionedMultiAssets: {852 _enum: {853 V0: 'Vec<XcmV0MultiAsset>',854 V1: 'XcmV1MultiassetMultiAssets'855 }856 },857 /**858 * Lookup83: xcm::v0::multi_asset::MultiAsset859 **/860 XcmV0MultiAsset: {861 _enum: {862 None: 'Null',863 All: 'Null',864 AllFungible: 'Null',865 AllNonFungible: 'Null',866 AllAbstractFungible: {867 id: 'Bytes',868 },869 AllAbstractNonFungible: {870 class: 'Bytes',871 },872 AllConcreteFungible: {873 id: 'XcmV0MultiLocation',874 },875 AllConcreteNonFungible: {876 class: 'XcmV0MultiLocation',877 },878 AbstractFungible: {879 id: 'Bytes',880 amount: 'Compact<u128>',881 },882 AbstractNonFungible: {883 class: 'Bytes',884 instance: 'XcmV1MultiassetAssetInstance',885 },886 ConcreteFungible: {887 id: 'XcmV0MultiLocation',888 amount: 'Compact<u128>',889 },890 ConcreteNonFungible: {891 class: 'XcmV0MultiLocation',892 instance: 'XcmV1MultiassetAssetInstance'893 }894 }895 },896 /**897 * Lookup84: xcm::v0::multi_location::MultiLocation898 **/899 XcmV0MultiLocation: {900 _enum: {901 Null: 'Null',902 X1: 'XcmV0Junction',903 X2: '(XcmV0Junction,XcmV0Junction)',904 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',905 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',906 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',907 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',908 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',909 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'910 }911 },912 /**913 * Lookup85: xcm::v0::junction::Junction914 **/915 XcmV0Junction: {916 _enum: {917 Parent: 'Null',918 Parachain: 'Compact<u32>',919 AccountId32: {920 network: 'XcmV0JunctionNetworkId',921 id: '[u8;32]',922 },923 AccountIndex64: {924 network: 'XcmV0JunctionNetworkId',925 index: 'Compact<u64>',926 },927 AccountKey20: {928 network: 'XcmV0JunctionNetworkId',929 key: '[u8;20]',930 },931 PalletInstance: 'u8',932 GeneralIndex: 'Compact<u128>',933 GeneralKey: 'Bytes',934 OnlyChild: 'Null',935 Plurality: {936 id: 'XcmV0JunctionBodyId',937 part: 'XcmV0JunctionBodyPart'938 }939 }940 },941 /**942 * Lookup86: xcm::VersionedMultiLocation943 **/944 XcmVersionedMultiLocation: {945 _enum: {946 V0: 'XcmV0MultiLocation',947 V1: 'XcmV1MultiLocation'948 }949 },950 /**951 * Lookup87: cumulus_pallet_xcm::pallet::Event<T>952 **/953 CumulusPalletXcmEvent: {954 _enum: {955 InvalidFormat: '[u8;8]',956 UnsupportedVersion: '[u8;8]',957 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'958 }959 },960 /**961 * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>962 **/963 CumulusPalletDmpQueueEvent: {964 _enum: {965 InvalidFormat: {966 messageId: '[u8;32]',967 },968 UnsupportedVersion: {969 messageId: '[u8;32]',970 },971 ExecutedDownward: {972 messageId: '[u8;32]',973 outcome: 'XcmV2TraitsOutcome',974 },975 WeightExhausted: {976 messageId: '[u8;32]',977 remainingWeight: 'SpWeightsWeightV2Weight',978 requiredWeight: 'SpWeightsWeightV2Weight',979 },980 OverweightEnqueued: {981 messageId: '[u8;32]',982 overweightIndex: 'u64',983 requiredWeight: 'SpWeightsWeightV2Weight',984 },985 OverweightServiced: {986 overweightIndex: 'u64',987 weightUsed: 'SpWeightsWeightV2Weight'988 }989 }990 },991 /**992 * Lookup89: pallet_common::pallet::Event<T>993 **/994 PalletCommonEvent: {995 _enum: {996 CollectionCreated: '(u32,u8,AccountId32)',997 CollectionDestroyed: 'u32',998 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',999 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1000 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1001 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1002 ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1003 CollectionPropertySet: '(u32,Bytes)',1004 CollectionPropertyDeleted: '(u32,Bytes)',1005 TokenPropertySet: '(u32,u32,Bytes)',1006 TokenPropertyDeleted: '(u32,u32,Bytes)',1007 PropertyPermissionSet: '(u32,Bytes)',1008 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1009 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1010 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1011 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1012 CollectionLimitSet: 'u32',1013 CollectionOwnerChanged: '(u32,AccountId32)',1014 CollectionPermissionSet: 'u32',1015 CollectionSponsorSet: '(u32,AccountId32)',1016 SponsorshipConfirmed: '(u32,AccountId32)',1017 CollectionSponsorRemoved: 'u32'1018 }1019 },1020 /**1021 * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1022 **/1023 PalletEvmAccountBasicCrossAccountIdRepr: {1024 _enum: {1025 Substrate: 'AccountId32',1026 Ethereum: 'H160'1027 }1028 },1029 /**1030 * Lookup96: pallet_structure::pallet::Event<T>1031 **/1032 PalletStructureEvent: {1033 _enum: {1034 Executed: 'Result<Null, SpRuntimeDispatchError>'1035 }1036 },1037 /**1038 * Lookup97: pallet_rmrk_core::pallet::Event<T>1039 **/1040 PalletRmrkCoreEvent: {1041 _enum: {1042 CollectionCreated: {1043 issuer: 'AccountId32',1044 collectionId: 'u32',1045 },1046 CollectionDestroyed: {1047 issuer: 'AccountId32',1048 collectionId: 'u32',1049 },1050 IssuerChanged: {1051 oldIssuer: 'AccountId32',1052 newIssuer: 'AccountId32',1053 collectionId: 'u32',1054 },1055 CollectionLocked: {1056 issuer: 'AccountId32',1057 collectionId: 'u32',1058 },1059 NftMinted: {1060 owner: 'AccountId32',1061 collectionId: 'u32',1062 nftId: 'u32',1063 },1064 NFTBurned: {1065 owner: 'AccountId32',1066 nftId: 'u32',1067 },1068 NFTSent: {1069 sender: 'AccountId32',1070 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1071 collectionId: 'u32',1072 nftId: 'u32',1073 approvalRequired: 'bool',1074 },1075 NFTAccepted: {1076 sender: 'AccountId32',1077 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1078 collectionId: 'u32',1079 nftId: 'u32',1080 },1081 NFTRejected: {1082 sender: 'AccountId32',1083 collectionId: 'u32',1084 nftId: 'u32',1085 },1086 PropertySet: {1087 collectionId: 'u32',1088 maybeNftId: 'Option<u32>',1089 key: 'Bytes',1090 value: 'Bytes',1091 },1092 ResourceAdded: {1093 nftId: 'u32',1094 resourceId: 'u32',1095 },1096 ResourceRemoval: {1097 nftId: 'u32',1098 resourceId: 'u32',1099 },1100 ResourceAccepted: {1101 nftId: 'u32',1102 resourceId: 'u32',1103 },1104 ResourceRemovalAccepted: {1105 nftId: 'u32',1106 resourceId: 'u32',1107 },1108 PrioritySet: {1109 collectionId: 'u32',1110 nftId: 'u32'1111 }1112 }1113 },1114 /**1115 * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1116 **/1117 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1118 _enum: {1119 AccountId: 'AccountId32',1120 CollectionAndNftTuple: '(u32,u32)'1121 }1122 },1123 /**1124 * Lookup102: pallet_rmrk_equip::pallet::Event<T>1125 **/1126 PalletRmrkEquipEvent: {1127 _enum: {1128 BaseCreated: {1129 issuer: 'AccountId32',1130 baseId: 'u32',1131 },1132 EquippablesUpdated: {1133 baseId: 'u32',1134 slotId: 'u32'1135 }1136 }1137 },1138 /**1139 * Lookup103: pallet_app_promotion::pallet::Event<T>1140 **/1141 PalletAppPromotionEvent: {1142 _enum: {1143 StakingRecalculation: '(AccountId32,u128,u128)',1144 Stake: '(AccountId32,u128)',1145 Unstake: '(AccountId32,u128)',1146 SetAdmin: 'AccountId32'1147 }1148 },1149 /**1150 * Lookup104: pallet_foreign_assets::module::Event<T>1151 **/1152 PalletForeignAssetsModuleEvent: {1153 _enum: {1154 ForeignAssetRegistered: {1155 assetId: 'u32',1156 assetAddress: 'XcmV1MultiLocation',1157 metadata: 'PalletForeignAssetsModuleAssetMetadata',1158 },1159 ForeignAssetUpdated: {1160 assetId: 'u32',1161 assetAddress: 'XcmV1MultiLocation',1162 metadata: 'PalletForeignAssetsModuleAssetMetadata',1163 },1164 AssetRegistered: {1165 assetId: 'PalletForeignAssetsAssetIds',1166 metadata: 'PalletForeignAssetsModuleAssetMetadata',1167 },1168 AssetUpdated: {1169 assetId: 'PalletForeignAssetsAssetIds',1170 metadata: 'PalletForeignAssetsModuleAssetMetadata'1171 }1172 }1173 },1174 /**1175 * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>1176 **/1177 PalletForeignAssetsModuleAssetMetadata: {1178 name: 'Bytes',1179 symbol: 'Bytes',1180 decimals: 'u8',1181 minimalBalance: 'u128'1182 },1183 /**1184 * Lookup106: pallet_evm::pallet::Event<T>1185 **/1186 PalletEvmEvent: {1187 _enum: {1188 Log: {1189 log: 'EthereumLog',1190 },1191 Created: {1192 address: 'H160',1193 },1194 CreatedFailed: {1195 address: 'H160',1196 },1197 Executed: {1198 address: 'H160',1199 },1200 ExecutedFailed: {1201 address: 'H160'1202 }1203 }1204 },1205 /**1206 * Lookup107: ethereum::log::Log1207 **/1208 EthereumLog: {1209 address: 'H160',1210 topics: 'Vec<H256>',1211 data: 'Bytes'1212 },1213 /**1214 * Lookup109: pallet_ethereum::pallet::Event1215 **/1216 PalletEthereumEvent: {1217 _enum: {1218 Executed: {1219 from: 'H160',1220 to: 'H160',1221 transactionHash: 'H256',1222 exitReason: 'EvmCoreErrorExitReason'1223 }1224 }1225 },1226 /**1227 * Lookup110: evm_core::error::ExitReason1228 **/1229 EvmCoreErrorExitReason: {1230 _enum: {1231 Succeed: 'EvmCoreErrorExitSucceed',1232 Error: 'EvmCoreErrorExitError',1233 Revert: 'EvmCoreErrorExitRevert',1234 Fatal: 'EvmCoreErrorExitFatal'1235 }1236 },1237 /**1238 * Lookup111: evm_core::error::ExitSucceed1239 **/1240 EvmCoreErrorExitSucceed: {1241 _enum: ['Stopped', 'Returned', 'Suicided']1242 },1243 /**1244 * Lookup112: evm_core::error::ExitError1245 **/1246 EvmCoreErrorExitError: {1247 _enum: {1248 StackUnderflow: 'Null',1249 StackOverflow: 'Null',1250 InvalidJump: 'Null',1251 InvalidRange: 'Null',1252 DesignatedInvalid: 'Null',1253 CallTooDeep: 'Null',1254 CreateCollision: 'Null',1255 CreateContractLimit: 'Null',1256 OutOfOffset: 'Null',1257 OutOfGas: 'Null',1258 OutOfFund: 'Null',1259 PCUnderflow: 'Null',1260 CreateEmpty: 'Null',1261 Other: 'Text',1262 InvalidCode: 'Null'1263 }1264 },1265 /**1266 * Lookup115: evm_core::error::ExitRevert1267 **/1268 EvmCoreErrorExitRevert: {1269 _enum: ['Reverted']1270 },1271 /**1272 * Lookup116: evm_core::error::ExitFatal1273 **/1274 EvmCoreErrorExitFatal: {1275 _enum: {1276 NotSupported: 'Null',1277 UnhandledInterrupt: 'Null',1278 CallErrorAsFatal: 'EvmCoreErrorExitError',1279 Other: 'Text'1280 }1281 },1282 /**1283 * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>1284 **/1285 PalletEvmContractHelpersEvent: {1286 _enum: {1287 ContractSponsorSet: '(H160,AccountId32)',1288 ContractSponsorshipConfirmed: '(H160,AccountId32)',1289 ContractSponsorRemoved: 'H160'1290 }1291 },1292 /**1293 * Lookup118: pallet_evm_migration::pallet::Event<T>1294 **/1295 PalletEvmMigrationEvent: {1296 _enum: ['TestEvent']1297 },1298 /**1299 * Lookup119: pallet_maintenance::pallet::Event<T>1300 **/1301 PalletMaintenanceEvent: {1302 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1303 },1304 /**1305 * Lookup120: pallet_test_utils::pallet::Event<T>1306 **/1307 PalletTestUtilsEvent: {1308 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1309 },1310 /**1311 * Lookup121: frame_system::Phase1312 **/1313 FrameSystemPhase: {1314 _enum: {1315 ApplyExtrinsic: 'u32',1316 Finalization: 'Null',1317 Initialization: 'Null'1318 }1319 },1320 /**1321 * Lookup124: frame_system::LastRuntimeUpgradeInfo1322 **/1323 FrameSystemLastRuntimeUpgradeInfo: {1324 specVersion: 'Compact<u32>',1325 specName: 'Text'1326 },1327 /**1328 * Lookup125: frame_system::pallet::Call<T>1329 **/1330 FrameSystemCall: {1331 _enum: {1332 remark: {1333 remark: 'Bytes',1334 },1335 set_heap_pages: {1336 pages: 'u64',1337 },1338 set_code: {1339 code: 'Bytes',1340 },1341 set_code_without_checks: {1342 code: 'Bytes',1343 },1344 set_storage: {1345 items: 'Vec<(Bytes,Bytes)>',1346 },1347 kill_storage: {1348 _alias: {1349 keys_: 'keys',1350 },1351 keys_: 'Vec<Bytes>',1352 },1353 kill_prefix: {1354 prefix: 'Bytes',1355 subkeys: 'u32',1356 },1357 remark_with_event: {1358 remark: 'Bytes'1359 }1360 }1361 },1362 /**1363 * Lookup129: frame_system::limits::BlockWeights1364 **/1365 FrameSystemLimitsBlockWeights: {1366 baseBlock: 'SpWeightsWeightV2Weight',1367 maxBlock: 'SpWeightsWeightV2Weight',1368 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1369 },1370 /**1371 * Lookup130: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1372 **/1373 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1374 normal: 'FrameSystemLimitsWeightsPerClass',1375 operational: 'FrameSystemLimitsWeightsPerClass',1376 mandatory: 'FrameSystemLimitsWeightsPerClass'1377 },1378 /**1379 * Lookup131: frame_system::limits::WeightsPerClass1380 **/1381 FrameSystemLimitsWeightsPerClass: {1382 baseExtrinsic: 'SpWeightsWeightV2Weight',1383 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1384 maxTotal: 'Option<SpWeightsWeightV2Weight>',1385 reserved: 'Option<SpWeightsWeightV2Weight>'1386 },1387 /**1388 * Lookup133: frame_system::limits::BlockLength1389 **/1390 FrameSystemLimitsBlockLength: {1391 max: 'FrameSupportDispatchPerDispatchClassU32'1392 },1393 /**1394 * Lookup134: frame_support::dispatch::PerDispatchClass<T>1395 **/1396 FrameSupportDispatchPerDispatchClassU32: {1397 normal: 'u32',1398 operational: 'u32',1399 mandatory: 'u32'1400 },1401 /**1402 * Lookup135: sp_weights::RuntimeDbWeight1403 **/1404 SpWeightsRuntimeDbWeight: {1405 read: 'u64',1406 write: 'u64'1407 },1408 /**1409 * Lookup136: sp_version::RuntimeVersion1410 **/1411 SpVersionRuntimeVersion: {1412 specName: 'Text',1413 implName: 'Text',1414 authoringVersion: 'u32',1415 specVersion: 'u32',1416 implVersion: 'u32',1417 apis: 'Vec<([u8;8],u32)>',1418 transactionVersion: 'u32',1419 stateVersion: 'u8'1420 },1421 /**1422 * Lookup141: frame_system::pallet::Error<T>1423 **/1424 FrameSystemError: {1425 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1426 },1427 /**1428 * Lookup142: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1429 **/1430 PolkadotPrimitivesV2PersistedValidationData: {1431 parentHead: 'Bytes',1432 relayParentNumber: 'u32',1433 relayParentStorageRoot: 'H256',1434 maxPovSize: 'u32'1435 },1436 /**1437 * Lookup145: polkadot_primitives::v2::UpgradeRestriction1438 **/1439 PolkadotPrimitivesV2UpgradeRestriction: {1440 _enum: ['Present']1441 },1442 /**1443 * Lookup146: sp_trie::storage_proof::StorageProof1444 **/1445 SpTrieStorageProof: {1446 trieNodes: 'BTreeSet<Bytes>'1447 },1448 /**1449 * Lookup148: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1450 **/1451 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1452 dmqMqcHead: 'H256',1453 relayDispatchQueueSize: '(u32,u32)',1454 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1455 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1456 },1457 /**1458 * Lookup151: polkadot_primitives::v2::AbridgedHrmpChannel1459 **/1460 PolkadotPrimitivesV2AbridgedHrmpChannel: {1461 maxCapacity: 'u32',1462 maxTotalSize: 'u32',1463 maxMessageSize: 'u32',1464 msgCount: 'u32',1465 totalSize: 'u32',1466 mqcHead: 'Option<H256>'1467 },1468 /**1469 * Lookup152: polkadot_primitives::v2::AbridgedHostConfiguration1470 **/1471 PolkadotPrimitivesV2AbridgedHostConfiguration: {1472 maxCodeSize: 'u32',1473 maxHeadDataSize: 'u32',1474 maxUpwardQueueCount: 'u32',1475 maxUpwardQueueSize: 'u32',1476 maxUpwardMessageSize: 'u32',1477 maxUpwardMessageNumPerCandidate: 'u32',1478 hrmpMaxMessageNumPerCandidate: 'u32',1479 validationUpgradeCooldown: 'u32',1480 validationUpgradeDelay: 'u32'1481 },1482 /**1483 * Lookup158: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1484 **/1485 PolkadotCorePrimitivesOutboundHrmpMessage: {1486 recipient: 'u32',1487 data: 'Bytes'1488 },1489 /**1490 * Lookup159: cumulus_pallet_parachain_system::pallet::Call<T>1491 **/1492 CumulusPalletParachainSystemCall: {1493 _enum: {1494 set_validation_data: {1495 data: 'CumulusPrimitivesParachainInherentParachainInherentData',1496 },1497 sudo_send_upward_message: {1498 message: 'Bytes',1499 },1500 authorize_upgrade: {1501 codeHash: 'H256',1502 },1503 enact_authorized_upgrade: {1504 code: 'Bytes'1505 }1506 }1507 },1508 /**1509 * Lookup160: cumulus_primitives_parachain_inherent::ParachainInherentData1510 **/1511 CumulusPrimitivesParachainInherentParachainInherentData: {1512 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1513 relayChainState: 'SpTrieStorageProof',1514 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1515 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1516 },1517 /**1518 * Lookup162: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1519 **/1520 PolkadotCorePrimitivesInboundDownwardMessage: {1521 sentAt: 'u32',1522 msg: 'Bytes'1523 },1524 /**1525 * Lookup165: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1526 **/1527 PolkadotCorePrimitivesInboundHrmpMessage: {1528 sentAt: 'u32',1529 data: 'Bytes'1530 },1531 /**1532 * Lookup168: cumulus_pallet_parachain_system::pallet::Error<T>1533 **/1534 CumulusPalletParachainSystemError: {1535 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1536 },1537 /**1538 * Lookup170: pallet_balances::BalanceLock<Balance>1539 **/1540 PalletBalancesBalanceLock: {1541 id: '[u8;8]',1542 amount: 'u128',1543 reasons: 'PalletBalancesReasons'1544 },1545 /**1546 * Lookup171: pallet_balances::Reasons1547 **/1548 PalletBalancesReasons: {1549 _enum: ['Fee', 'Misc', 'All']1550 },1551 /**1552 * Lookup174: pallet_balances::ReserveData<ReserveIdentifier, Balance>1553 **/1554 PalletBalancesReserveData: {1555 id: '[u8;16]',1556 amount: 'u128'1557 },1558 /**1559 * Lookup176: pallet_balances::pallet::Call<T, I>1560 **/1561 PalletBalancesCall: {1562 _enum: {1563 transfer: {1564 dest: 'MultiAddress',1565 value: 'Compact<u128>',1566 },1567 set_balance: {1568 who: 'MultiAddress',1569 newFree: 'Compact<u128>',1570 newReserved: 'Compact<u128>',1571 },1572 force_transfer: {1573 source: 'MultiAddress',1574 dest: 'MultiAddress',1575 value: 'Compact<u128>',1576 },1577 transfer_keep_alive: {1578 dest: 'MultiAddress',1579 value: 'Compact<u128>',1580 },1581 transfer_all: {1582 dest: 'MultiAddress',1583 keepAlive: 'bool',1584 },1585 force_unreserve: {1586 who: 'MultiAddress',1587 amount: 'u128'1588 }1589 }1590 },1591 /**1592 * Lookup179: pallet_balances::pallet::Error<T, I>1593 **/1594 PalletBalancesError: {1595 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1596 },1597 /**1598 * Lookup181: pallet_timestamp::pallet::Call<T>1599 **/1600 PalletTimestampCall: {1601 _enum: {1602 set: {1603 now: 'Compact<u64>'1604 }1605 }1606 },1607 /**1608 * Lookup183: pallet_transaction_payment::Releases1609 **/1610 PalletTransactionPaymentReleases: {1611 _enum: ['V1Ancient', 'V2']1612 },1613 /**1614 * Lookup184: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1615 **/1616 PalletTreasuryProposal: {1617 proposer: 'AccountId32',1618 value: 'u128',1619 beneficiary: 'AccountId32',1620 bond: 'u128'1621 },1622 /**1623 * Lookup187: pallet_treasury::pallet::Call<T, I>1624 **/1625 PalletTreasuryCall: {1626 _enum: {1627 propose_spend: {1628 value: 'Compact<u128>',1629 beneficiary: 'MultiAddress',1630 },1631 reject_proposal: {1632 proposalId: 'Compact<u32>',1633 },1634 approve_proposal: {1635 proposalId: 'Compact<u32>',1636 },1637 spend: {1638 amount: 'Compact<u128>',1639 beneficiary: 'MultiAddress',1640 },1641 remove_approval: {1642 proposalId: 'Compact<u32>'1643 }1644 }1645 },1646 /**1647 * Lookup190: frame_support::PalletId1648 **/1649 FrameSupportPalletId: '[u8;8]',1650 /**1651 * Lookup191: pallet_treasury::pallet::Error<T, I>1652 **/1653 PalletTreasuryError: {1654 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1655 },1656 /**1657 * Lookup192: pallet_sudo::pallet::Call<T>1658 **/1659 PalletSudoCall: {1660 _enum: {1661 sudo: {1662 call: 'Call',1663 },1664 sudo_unchecked_weight: {1665 call: 'Call',1666 weight: 'SpWeightsWeightV2Weight',1667 },1668 set_key: {1669 _alias: {1670 new_: 'new',1671 },1672 new_: 'MultiAddress',1673 },1674 sudo_as: {1675 who: 'MultiAddress',1676 call: 'Call'1677 }1678 }1679 },1680 /**1681 * Lookup194: orml_vesting::module::Call<T>1682 **/1683 OrmlVestingModuleCall: {1684 _enum: {1685 claim: 'Null',1686 vested_transfer: {1687 dest: 'MultiAddress',1688 schedule: 'OrmlVestingVestingSchedule',1689 },1690 update_vesting_schedules: {1691 who: 'MultiAddress',1692 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1693 },1694 claim_for: {1695 dest: 'MultiAddress'1696 }1697 }1698 },1699 /**1700 * Lookup196: orml_xtokens::module::Call<T>1701 **/1702 OrmlXtokensModuleCall: {1703 _enum: {1704 transfer: {1705 currencyId: 'PalletForeignAssetsAssetIds',1706 amount: 'u128',1707 dest: 'XcmVersionedMultiLocation',1708 destWeightLimit: 'XcmV2WeightLimit',1709 },1710 transfer_multiasset: {1711 asset: 'XcmVersionedMultiAsset',1712 dest: 'XcmVersionedMultiLocation',1713 destWeightLimit: 'XcmV2WeightLimit',1714 },1715 transfer_with_fee: {1716 currencyId: 'PalletForeignAssetsAssetIds',1717 amount: 'u128',1718 fee: 'u128',1719 dest: 'XcmVersionedMultiLocation',1720 destWeightLimit: 'XcmV2WeightLimit',1721 },1722 transfer_multiasset_with_fee: {1723 asset: 'XcmVersionedMultiAsset',1724 fee: 'XcmVersionedMultiAsset',1725 dest: 'XcmVersionedMultiLocation',1726 destWeightLimit: 'XcmV2WeightLimit',1727 },1728 transfer_multicurrencies: {1729 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1730 feeItem: 'u32',1731 dest: 'XcmVersionedMultiLocation',1732 destWeightLimit: 'XcmV2WeightLimit',1733 },1734 transfer_multiassets: {1735 assets: 'XcmVersionedMultiAssets',1736 feeItem: 'u32',1737 dest: 'XcmVersionedMultiLocation',1738 destWeightLimit: 'XcmV2WeightLimit'1739 }1740 }1741 },1742 /**1743 * Lookup197: xcm::VersionedMultiAsset1744 **/1745 XcmVersionedMultiAsset: {1746 _enum: {1747 V0: 'XcmV0MultiAsset',1748 V1: 'XcmV1MultiAsset'1749 }1750 },1751 /**1752 * Lookup200: orml_tokens::module::Call<T>1753 **/1754 OrmlTokensModuleCall: {1755 _enum: {1756 transfer: {1757 dest: 'MultiAddress',1758 currencyId: 'PalletForeignAssetsAssetIds',1759 amount: 'Compact<u128>',1760 },1761 transfer_all: {1762 dest: 'MultiAddress',1763 currencyId: 'PalletForeignAssetsAssetIds',1764 keepAlive: 'bool',1765 },1766 transfer_keep_alive: {1767 dest: 'MultiAddress',1768 currencyId: 'PalletForeignAssetsAssetIds',1769 amount: 'Compact<u128>',1770 },1771 force_transfer: {1772 source: 'MultiAddress',1773 dest: 'MultiAddress',1774 currencyId: 'PalletForeignAssetsAssetIds',1775 amount: 'Compact<u128>',1776 },1777 set_balance: {1778 who: 'MultiAddress',1779 currencyId: 'PalletForeignAssetsAssetIds',1780 newFree: 'Compact<u128>',1781 newReserved: 'Compact<u128>'1782 }1783 }1784 },1785 /**1786 * Lookup201: cumulus_pallet_xcmp_queue::pallet::Call<T>1787 **/1788 CumulusPalletXcmpQueueCall: {1789 _enum: {1790 service_overweight: {1791 index: 'u64',1792 weightLimit: 'u64',1793 },1794 suspend_xcm_execution: 'Null',1795 resume_xcm_execution: 'Null',1796 update_suspend_threshold: {1797 _alias: {1798 new_: 'new',1799 },1800 new_: 'u32',1801 },1802 update_drop_threshold: {1803 _alias: {1804 new_: 'new',1805 },1806 new_: 'u32',1807 },1808 update_resume_threshold: {1809 _alias: {1810 new_: 'new',1811 },1812 new_: 'u32',1813 },1814 update_threshold_weight: {1815 _alias: {1816 new_: 'new',1817 },1818 new_: 'u64',1819 },1820 update_weight_restrict_decay: {1821 _alias: {1822 new_: 'new',1823 },1824 new_: 'u64',1825 },1826 update_xcmp_max_individual_weight: {1827 _alias: {1828 new_: 'new',1829 },1830 new_: 'u64'1831 }1832 }1833 },1834 /**1835 * Lookup202: pallet_xcm::pallet::Call<T>1836 **/1837 PalletXcmCall: {1838 _enum: {1839 send: {1840 dest: 'XcmVersionedMultiLocation',1841 message: 'XcmVersionedXcm',1842 },1843 teleport_assets: {1844 dest: 'XcmVersionedMultiLocation',1845 beneficiary: 'XcmVersionedMultiLocation',1846 assets: 'XcmVersionedMultiAssets',1847 feeAssetItem: 'u32',1848 },1849 reserve_transfer_assets: {1850 dest: 'XcmVersionedMultiLocation',1851 beneficiary: 'XcmVersionedMultiLocation',1852 assets: 'XcmVersionedMultiAssets',1853 feeAssetItem: 'u32',1854 },1855 execute: {1856 message: 'XcmVersionedXcm',1857 maxWeight: 'u64',1858 },1859 force_xcm_version: {1860 location: 'XcmV1MultiLocation',1861 xcmVersion: 'u32',1862 },1863 force_default_xcm_version: {1864 maybeXcmVersion: 'Option<u32>',1865 },1866 force_subscribe_version_notify: {1867 location: 'XcmVersionedMultiLocation',1868 },1869 force_unsubscribe_version_notify: {1870 location: 'XcmVersionedMultiLocation',1871 },1872 limited_reserve_transfer_assets: {1873 dest: 'XcmVersionedMultiLocation',1874 beneficiary: 'XcmVersionedMultiLocation',1875 assets: 'XcmVersionedMultiAssets',1876 feeAssetItem: 'u32',1877 weightLimit: 'XcmV2WeightLimit',1878 },1879 limited_teleport_assets: {1880 dest: 'XcmVersionedMultiLocation',1881 beneficiary: 'XcmVersionedMultiLocation',1882 assets: 'XcmVersionedMultiAssets',1883 feeAssetItem: 'u32',1884 weightLimit: 'XcmV2WeightLimit'1885 }1886 }1887 },1888 /**1889 * Lookup203: xcm::VersionedXcm<RuntimeCall>1890 **/1891 XcmVersionedXcm: {1892 _enum: {1893 V0: 'XcmV0Xcm',1894 V1: 'XcmV1Xcm',1895 V2: 'XcmV2Xcm'1896 }1897 },1898 /**1899 * Lookup204: xcm::v0::Xcm<RuntimeCall>1900 **/1901 XcmV0Xcm: {1902 _enum: {1903 WithdrawAsset: {1904 assets: 'Vec<XcmV0MultiAsset>',1905 effects: 'Vec<XcmV0Order>',1906 },1907 ReserveAssetDeposit: {1908 assets: 'Vec<XcmV0MultiAsset>',1909 effects: 'Vec<XcmV0Order>',1910 },1911 TeleportAsset: {1912 assets: 'Vec<XcmV0MultiAsset>',1913 effects: 'Vec<XcmV0Order>',1914 },1915 QueryResponse: {1916 queryId: 'Compact<u64>',1917 response: 'XcmV0Response',1918 },1919 TransferAsset: {1920 assets: 'Vec<XcmV0MultiAsset>',1921 dest: 'XcmV0MultiLocation',1922 },1923 TransferReserveAsset: {1924 assets: 'Vec<XcmV0MultiAsset>',1925 dest: 'XcmV0MultiLocation',1926 effects: 'Vec<XcmV0Order>',1927 },1928 Transact: {1929 originType: 'XcmV0OriginKind',1930 requireWeightAtMost: 'u64',1931 call: 'XcmDoubleEncoded',1932 },1933 HrmpNewChannelOpenRequest: {1934 sender: 'Compact<u32>',1935 maxMessageSize: 'Compact<u32>',1936 maxCapacity: 'Compact<u32>',1937 },1938 HrmpChannelAccepted: {1939 recipient: 'Compact<u32>',1940 },1941 HrmpChannelClosing: {1942 initiator: 'Compact<u32>',1943 sender: 'Compact<u32>',1944 recipient: 'Compact<u32>',1945 },1946 RelayedFrom: {1947 who: 'XcmV0MultiLocation',1948 message: 'XcmV0Xcm'1949 }1950 }1951 },1952 /**1953 * Lookup206: xcm::v0::order::Order<RuntimeCall>1954 **/1955 XcmV0Order: {1956 _enum: {1957 Null: 'Null',1958 DepositAsset: {1959 assets: 'Vec<XcmV0MultiAsset>',1960 dest: 'XcmV0MultiLocation',1961 },1962 DepositReserveAsset: {1963 assets: 'Vec<XcmV0MultiAsset>',1964 dest: 'XcmV0MultiLocation',1965 effects: 'Vec<XcmV0Order>',1966 },1967 ExchangeAsset: {1968 give: 'Vec<XcmV0MultiAsset>',1969 receive: 'Vec<XcmV0MultiAsset>',1970 },1971 InitiateReserveWithdraw: {1972 assets: 'Vec<XcmV0MultiAsset>',1973 reserve: 'XcmV0MultiLocation',1974 effects: 'Vec<XcmV0Order>',1975 },1976 InitiateTeleport: {1977 assets: 'Vec<XcmV0MultiAsset>',1978 dest: 'XcmV0MultiLocation',1979 effects: 'Vec<XcmV0Order>',1980 },1981 QueryHolding: {1982 queryId: 'Compact<u64>',1983 dest: 'XcmV0MultiLocation',1984 assets: 'Vec<XcmV0MultiAsset>',1985 },1986 BuyExecution: {1987 fees: 'XcmV0MultiAsset',1988 weight: 'u64',1989 debt: 'u64',1990 haltOnError: 'bool',1991 xcm: 'Vec<XcmV0Xcm>'1992 }1993 }1994 },1995 /**1996 * Lookup208: xcm::v0::Response1997 **/1998 XcmV0Response: {1999 _enum: {2000 Assets: 'Vec<XcmV0MultiAsset>'2001 }2002 },2003 /**2004 * Lookup209: xcm::v1::Xcm<RuntimeCall>2005 **/2006 XcmV1Xcm: {2007 _enum: {2008 WithdrawAsset: {2009 assets: 'XcmV1MultiassetMultiAssets',2010 effects: 'Vec<XcmV1Order>',2011 },2012 ReserveAssetDeposited: {2013 assets: 'XcmV1MultiassetMultiAssets',2014 effects: 'Vec<XcmV1Order>',2015 },2016 ReceiveTeleportedAsset: {2017 assets: 'XcmV1MultiassetMultiAssets',2018 effects: 'Vec<XcmV1Order>',2019 },2020 QueryResponse: {2021 queryId: 'Compact<u64>',2022 response: 'XcmV1Response',2023 },2024 TransferAsset: {2025 assets: 'XcmV1MultiassetMultiAssets',2026 beneficiary: 'XcmV1MultiLocation',2027 },2028 TransferReserveAsset: {2029 assets: 'XcmV1MultiassetMultiAssets',2030 dest: 'XcmV1MultiLocation',2031 effects: 'Vec<XcmV1Order>',2032 },2033 Transact: {2034 originType: 'XcmV0OriginKind',2035 requireWeightAtMost: 'u64',2036 call: 'XcmDoubleEncoded',2037 },2038 HrmpNewChannelOpenRequest: {2039 sender: 'Compact<u32>',2040 maxMessageSize: 'Compact<u32>',2041 maxCapacity: 'Compact<u32>',2042 },2043 HrmpChannelAccepted: {2044 recipient: 'Compact<u32>',2045 },2046 HrmpChannelClosing: {2047 initiator: 'Compact<u32>',2048 sender: 'Compact<u32>',2049 recipient: 'Compact<u32>',2050 },2051 RelayedFrom: {2052 who: 'XcmV1MultilocationJunctions',2053 message: 'XcmV1Xcm',2054 },2055 SubscribeVersion: {2056 queryId: 'Compact<u64>',2057 maxResponseWeight: 'Compact<u64>',2058 },2059 UnsubscribeVersion: 'Null'2060 }2061 },2062 /**2063 * Lookup211: xcm::v1::order::Order<RuntimeCall>2064 **/2065 XcmV1Order: {2066 _enum: {2067 Noop: 'Null',2068 DepositAsset: {2069 assets: 'XcmV1MultiassetMultiAssetFilter',2070 maxAssets: 'u32',2071 beneficiary: 'XcmV1MultiLocation',2072 },2073 DepositReserveAsset: {2074 assets: 'XcmV1MultiassetMultiAssetFilter',2075 maxAssets: 'u32',2076 dest: 'XcmV1MultiLocation',2077 effects: 'Vec<XcmV1Order>',2078 },2079 ExchangeAsset: {2080 give: 'XcmV1MultiassetMultiAssetFilter',2081 receive: 'XcmV1MultiassetMultiAssets',2082 },2083 InitiateReserveWithdraw: {2084 assets: 'XcmV1MultiassetMultiAssetFilter',2085 reserve: 'XcmV1MultiLocation',2086 effects: 'Vec<XcmV1Order>',2087 },2088 InitiateTeleport: {2089 assets: 'XcmV1MultiassetMultiAssetFilter',2090 dest: 'XcmV1MultiLocation',2091 effects: 'Vec<XcmV1Order>',2092 },2093 QueryHolding: {2094 queryId: 'Compact<u64>',2095 dest: 'XcmV1MultiLocation',2096 assets: 'XcmV1MultiassetMultiAssetFilter',2097 },2098 BuyExecution: {2099 fees: 'XcmV1MultiAsset',2100 weight: 'u64',2101 debt: 'u64',2102 haltOnError: 'bool',2103 instructions: 'Vec<XcmV1Xcm>'2104 }2105 }2106 },2107 /**2108 * Lookup213: xcm::v1::Response2109 **/2110 XcmV1Response: {2111 _enum: {2112 Assets: 'XcmV1MultiassetMultiAssets',2113 Version: 'u32'2114 }2115 },2116 /**2117 * Lookup227: cumulus_pallet_xcm::pallet::Call<T>2118 **/2119 CumulusPalletXcmCall: 'Null',2120 /**2121 * Lookup228: cumulus_pallet_dmp_queue::pallet::Call<T>2122 **/2123 CumulusPalletDmpQueueCall: {2124 _enum: {2125 service_overweight: {2126 index: 'u64',2127 weightLimit: 'u64'2128 }2129 }2130 },2131 /**2132 * Lookup229: pallet_inflation::pallet::Call<T>2133 **/2134 PalletInflationCall: {2135 _enum: {2136 start_inflation: {2137 inflationStartRelayBlock: 'u32'2138 }2139 }2140 },2141 /**2142 * Lookup230: pallet_unique::Call<T>2143 **/2144 PalletUniqueCall: {2145 _enum: {2146 create_collection: {2147 collectionName: 'Vec<u16>',2148 collectionDescription: 'Vec<u16>',2149 tokenPrefix: 'Bytes',2150 mode: 'UpDataStructsCollectionMode',2151 },2152 create_collection_ex: {2153 data: 'UpDataStructsCreateCollectionData',2154 },2155 destroy_collection: {2156 collectionId: 'u32',2157 },2158 add_to_allow_list: {2159 collectionId: 'u32',2160 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2161 },2162 remove_from_allow_list: {2163 collectionId: 'u32',2164 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2165 },2166 change_collection_owner: {2167 collectionId: 'u32',2168 newOwner: 'AccountId32',2169 },2170 add_collection_admin: {2171 collectionId: 'u32',2172 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2173 },2174 remove_collection_admin: {2175 collectionId: 'u32',2176 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2177 },2178 set_collection_sponsor: {2179 collectionId: 'u32',2180 newSponsor: 'AccountId32',2181 },2182 confirm_sponsorship: {2183 collectionId: 'u32',2184 },2185 remove_collection_sponsor: {2186 collectionId: 'u32',2187 },2188 create_item: {2189 collectionId: 'u32',2190 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2191 data: 'UpDataStructsCreateItemData',2192 },2193 create_multiple_items: {2194 collectionId: 'u32',2195 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2196 itemsData: 'Vec<UpDataStructsCreateItemData>',2197 },2198 set_collection_properties: {2199 collectionId: 'u32',2200 properties: 'Vec<UpDataStructsProperty>',2201 },2202 delete_collection_properties: {2203 collectionId: 'u32',2204 propertyKeys: 'Vec<Bytes>',2205 },2206 set_token_properties: {2207 collectionId: 'u32',2208 tokenId: 'u32',2209 properties: 'Vec<UpDataStructsProperty>',2210 },2211 delete_token_properties: {2212 collectionId: 'u32',2213 tokenId: 'u32',2214 propertyKeys: 'Vec<Bytes>',2215 },2216 set_token_property_permissions: {2217 collectionId: 'u32',2218 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2219 },2220 create_multiple_items_ex: {2221 collectionId: 'u32',2222 data: 'UpDataStructsCreateItemExData',2223 },2224 set_transfers_enabled_flag: {2225 collectionId: 'u32',2226 value: 'bool',2227 },2228 burn_item: {2229 collectionId: 'u32',2230 itemId: 'u32',2231 value: 'u128',2232 },2233 burn_from: {2234 collectionId: 'u32',2235 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2236 itemId: 'u32',2237 value: 'u128',2238 },2239 transfer: {2240 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2241 collectionId: 'u32',2242 itemId: 'u32',2243 value: 'u128',2244 },2245 approve: {2246 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2247 collectionId: 'u32',2248 itemId: 'u32',2249 amount: 'u128',2250 },2251 transfer_from: {2252 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2253 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2254 collectionId: 'u32',2255 itemId: 'u32',2256 value: 'u128',2257 },2258 set_collection_limits: {2259 collectionId: 'u32',2260 newLimit: 'UpDataStructsCollectionLimits',2261 },2262 set_collection_permissions: {2263 collectionId: 'u32',2264 newPermission: 'UpDataStructsCollectionPermissions',2265 },2266 repartition: {2267 collectionId: 'u32',2268 tokenId: 'u32',2269 amount: 'u128',2270 },2271 set_allowance_for_all: {2272 collectionId: 'u32',2273 operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2274 approve: 'bool',2275 },2276 force_repair_collection: {2277 collectionId: 'u32',2278 },2279 force_repair_item: {2280 collectionId: 'u32',2281 itemId: 'u32'2282 }2283 }2284 },2285 /**2286 * Lookup235: up_data_structs::CollectionMode2287 **/2288 UpDataStructsCollectionMode: {2289 _enum: {2290 NFT: 'Null',2291 Fungible: 'u8',2292 ReFungible: 'Null'2293 }2294 },2295 /**2296 * Lookup236: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2297 **/2298 UpDataStructsCreateCollectionData: {2299 mode: 'UpDataStructsCollectionMode',2300 access: 'Option<UpDataStructsAccessMode>',2301 name: 'Vec<u16>',2302 description: 'Vec<u16>',2303 tokenPrefix: 'Bytes',2304 pendingSponsor: 'Option<AccountId32>',2305 limits: 'Option<UpDataStructsCollectionLimits>',2306 permissions: 'Option<UpDataStructsCollectionPermissions>',2307 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2308 properties: 'Vec<UpDataStructsProperty>'2309 },2310 /**2311 * Lookup238: up_data_structs::AccessMode2312 **/2313 UpDataStructsAccessMode: {2314 _enum: ['Normal', 'AllowList']2315 },2316 /**2317 * Lookup240: up_data_structs::CollectionLimits2318 **/2319 UpDataStructsCollectionLimits: {2320 accountTokenOwnershipLimit: 'Option<u32>',2321 sponsoredDataSize: 'Option<u32>',2322 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2323 tokenLimit: 'Option<u32>',2324 sponsorTransferTimeout: 'Option<u32>',2325 sponsorApproveTimeout: 'Option<u32>',2326 ownerCanTransfer: 'Option<bool>',2327 ownerCanDestroy: 'Option<bool>',2328 transfersEnabled: 'Option<bool>'2329 },2330 /**2331 * Lookup242: up_data_structs::SponsoringRateLimit2332 **/2333 UpDataStructsSponsoringRateLimit: {2334 _enum: {2335 SponsoringDisabled: 'Null',2336 Blocks: 'u32'2337 }2338 },2339 /**2340 * Lookup245: up_data_structs::CollectionPermissions2341 **/2342 UpDataStructsCollectionPermissions: {2343 access: 'Option<UpDataStructsAccessMode>',2344 mintMode: 'Option<bool>',2345 nesting: 'Option<UpDataStructsNestingPermissions>'2346 },2347 /**2348 * Lookup247: up_data_structs::NestingPermissions2349 **/2350 UpDataStructsNestingPermissions: {2351 tokenOwner: 'bool',2352 collectionAdmin: 'bool',2353 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2354 },2355 /**2356 * Lookup249: up_data_structs::OwnerRestrictedSet2357 **/2358 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2359 /**2360 * Lookup254: up_data_structs::PropertyKeyPermission2361 **/2362 UpDataStructsPropertyKeyPermission: {2363 key: 'Bytes',2364 permission: 'UpDataStructsPropertyPermission'2365 },2366 /**2367 * Lookup255: up_data_structs::PropertyPermission2368 **/2369 UpDataStructsPropertyPermission: {2370 mutable: 'bool',2371 collectionAdmin: 'bool',2372 tokenOwner: 'bool'2373 },2374 /**2375 * Lookup258: up_data_structs::Property2376 **/2377 UpDataStructsProperty: {2378 key: 'Bytes',2379 value: 'Bytes'2380 },2381 /**2382 * Lookup261: up_data_structs::CreateItemData2383 **/2384 UpDataStructsCreateItemData: {2385 _enum: {2386 NFT: 'UpDataStructsCreateNftData',2387 Fungible: 'UpDataStructsCreateFungibleData',2388 ReFungible: 'UpDataStructsCreateReFungibleData'2389 }2390 },2391 /**2392 * Lookup262: up_data_structs::CreateNftData2393 **/2394 UpDataStructsCreateNftData: {2395 properties: 'Vec<UpDataStructsProperty>'2396 },2397 /**2398 * Lookup263: up_data_structs::CreateFungibleData2399 **/2400 UpDataStructsCreateFungibleData: {2401 value: 'u128'2402 },2403 /**2404 * Lookup264: up_data_structs::CreateReFungibleData2405 **/2406 UpDataStructsCreateReFungibleData: {2407 pieces: 'u128',2408 properties: 'Vec<UpDataStructsProperty>'2409 },2410 /**2411 * Lookup267: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2412 **/2413 UpDataStructsCreateItemExData: {2414 _enum: {2415 NFT: 'Vec<UpDataStructsCreateNftExData>',2416 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2417 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2418 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2419 }2420 },2421 /**2422 * Lookup269: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2423 **/2424 UpDataStructsCreateNftExData: {2425 properties: 'Vec<UpDataStructsProperty>',2426 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2427 },2428 /**2429 * Lookup276: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2430 **/2431 UpDataStructsCreateRefungibleExSingleOwner: {2432 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2433 pieces: 'u128',2434 properties: 'Vec<UpDataStructsProperty>'2435 },2436 /**2437 * Lookup278: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2438 **/2439 UpDataStructsCreateRefungibleExMultipleOwners: {2440 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2441 properties: 'Vec<UpDataStructsProperty>'2442 },2443 /**2444 * Lookup279: pallet_configuration::pallet::Call<T>2445 **/2446 PalletConfigurationCall: {2447 _enum: {2448 set_weight_to_fee_coefficient_override: {2449 coeff: 'Option<u64>',2450 },2451 set_min_gas_price_override: {2452 coeff: 'Option<u64>',2453 },2454 set_xcm_allowed_locations: {2455 locations: 'Option<Vec<XcmV1MultiLocation>>',2456 },2457 set_app_promotion_configuration_override: {2458 configuration: 'PalletConfigurationAppPromotionConfiguration'2459 }2460 }2461 },2462 /**2463 * Lookup284: pallet_configuration::AppPromotionConfiguration<BlockNumber>2464 **/2465 PalletConfigurationAppPromotionConfiguration: {2466 recalculationInterval: 'Option<u32>',2467 pendingInterval: 'Option<u32>',2468 intervalIncome: 'Option<Perbill>',2469 maxStakersPerCalculation: 'Option<u8>'2470 },2471 /**2472 * Lookup288: pallet_template_transaction_payment::Call<T>2473 **/2474 PalletTemplateTransactionPaymentCall: 'Null',2475 /**2476 * Lookup289: pallet_structure::pallet::Call<T>2477 **/2478 PalletStructureCall: 'Null',2479 /**2480 * Lookup290: pallet_rmrk_core::pallet::Call<T>2481 **/2482 PalletRmrkCoreCall: {2483 _enum: {2484 create_collection: {2485 metadata: 'Bytes',2486 max: 'Option<u32>',2487 symbol: 'Bytes',2488 },2489 destroy_collection: {2490 collectionId: 'u32',2491 },2492 change_collection_issuer: {2493 collectionId: 'u32',2494 newIssuer: 'MultiAddress',2495 },2496 lock_collection: {2497 collectionId: 'u32',2498 },2499 mint_nft: {2500 owner: 'Option<AccountId32>',2501 collectionId: 'u32',2502 recipient: 'Option<AccountId32>',2503 royaltyAmount: 'Option<Permill>',2504 metadata: 'Bytes',2505 transferable: 'bool',2506 resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2507 },2508 burn_nft: {2509 collectionId: 'u32',2510 nftId: 'u32',2511 maxBurns: 'u32',2512 },2513 send: {2514 rmrkCollectionId: 'u32',2515 rmrkNftId: 'u32',2516 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2517 },2518 accept_nft: {2519 rmrkCollectionId: 'u32',2520 rmrkNftId: 'u32',2521 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2522 },2523 reject_nft: {2524 rmrkCollectionId: 'u32',2525 rmrkNftId: 'u32',2526 },2527 accept_resource: {2528 rmrkCollectionId: 'u32',2529 rmrkNftId: 'u32',2530 resourceId: 'u32',2531 },2532 accept_resource_removal: {2533 rmrkCollectionId: 'u32',2534 rmrkNftId: 'u32',2535 resourceId: 'u32',2536 },2537 set_property: {2538 rmrkCollectionId: 'Compact<u32>',2539 maybeNftId: 'Option<u32>',2540 key: 'Bytes',2541 value: 'Bytes',2542 },2543 set_priority: {2544 rmrkCollectionId: 'u32',2545 rmrkNftId: 'u32',2546 priorities: 'Vec<u32>',2547 },2548 add_basic_resource: {2549 rmrkCollectionId: 'u32',2550 nftId: 'u32',2551 resource: 'RmrkTraitsResourceBasicResource',2552 },2553 add_composable_resource: {2554 rmrkCollectionId: 'u32',2555 nftId: 'u32',2556 resource: 'RmrkTraitsResourceComposableResource',2557 },2558 add_slot_resource: {2559 rmrkCollectionId: 'u32',2560 nftId: 'u32',2561 resource: 'RmrkTraitsResourceSlotResource',2562 },2563 remove_resource: {2564 rmrkCollectionId: 'u32',2565 nftId: 'u32',2566 resourceId: 'u32'2567 }2568 }2569 },2570 /**2571 * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2572 **/2573 RmrkTraitsResourceResourceTypes: {2574 _enum: {2575 Basic: 'RmrkTraitsResourceBasicResource',2576 Composable: 'RmrkTraitsResourceComposableResource',2577 Slot: 'RmrkTraitsResourceSlotResource'2578 }2579 },2580 /**2581 * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2582 **/2583 RmrkTraitsResourceBasicResource: {2584 src: 'Option<Bytes>',2585 metadata: 'Option<Bytes>',2586 license: 'Option<Bytes>',2587 thumb: 'Option<Bytes>'2588 },2589 /**2590 * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2591 **/2592 RmrkTraitsResourceComposableResource: {2593 parts: 'Vec<u32>',2594 base: 'u32',2595 src: 'Option<Bytes>',2596 metadata: 'Option<Bytes>',2597 license: 'Option<Bytes>',2598 thumb: 'Option<Bytes>'2599 },2600 /**2601 * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2602 **/2603 RmrkTraitsResourceSlotResource: {2604 base: 'u32',2605 src: 'Option<Bytes>',2606 metadata: 'Option<Bytes>',2607 slot: 'u32',2608 license: 'Option<Bytes>',2609 thumb: 'Option<Bytes>'2610 },2611 /**2612 * Lookup304: pallet_rmrk_equip::pallet::Call<T>2613 **/2614 PalletRmrkEquipCall: {2615 _enum: {2616 create_base: {2617 baseType: 'Bytes',2618 symbol: 'Bytes',2619 parts: 'Vec<RmrkTraitsPartPartType>',2620 },2621 theme_add: {2622 baseId: 'u32',2623 theme: 'RmrkTraitsTheme',2624 },2625 equippable: {2626 baseId: 'u32',2627 slotId: 'u32',2628 equippables: 'RmrkTraitsPartEquippableList'2629 }2630 }2631 },2632 /**2633 * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2634 **/2635 RmrkTraitsPartPartType: {2636 _enum: {2637 FixedPart: 'RmrkTraitsPartFixedPart',2638 SlotPart: 'RmrkTraitsPartSlotPart'2639 }2640 },2641 /**2642 * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2643 **/2644 RmrkTraitsPartFixedPart: {2645 id: 'u32',2646 z: 'u32',2647 src: 'Bytes'2648 },2649 /**2650 * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2651 **/2652 RmrkTraitsPartSlotPart: {2653 id: 'u32',2654 equippable: 'RmrkTraitsPartEquippableList',2655 src: 'Bytes',2656 z: 'u32'2657 },2658 /**2659 * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2660 **/2661 RmrkTraitsPartEquippableList: {2662 _enum: {2663 All: 'Null',2664 Empty: 'Null',2665 Custom: 'Vec<u32>'2666 }2667 },2668 /**2669 * Lookup313: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2670 **/2671 RmrkTraitsTheme: {2672 name: 'Bytes',2673 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2674 inherit: 'bool'2675 },2676 /**2677 * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2678 **/2679 RmrkTraitsThemeThemeProperty: {2680 key: 'Bytes',2681 value: 'Bytes'2682 },2683 /**2684 * Lookup317: pallet_app_promotion::pallet::Call<T>2685 **/2686 PalletAppPromotionCall: {2687 _enum: {2688 set_admin_address: {2689 admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2690 },2691 stake: {2692 amount: 'u128',2693 },2694 unstake: 'Null',2695 sponsor_collection: {2696 collectionId: 'u32',2697 },2698 stop_sponsoring_collection: {2699 collectionId: 'u32',2700 },2701 sponsor_contract: {2702 contractId: 'H160',2703 },2704 stop_sponsoring_contract: {2705 contractId: 'H160',2706 },2707 payout_stakers: {2708 stakersNumber: 'Option<u8>'2709 }2710 }2711 },2712 /**2713 * Lookup318: pallet_foreign_assets::module::Call<T>2714 **/2715 PalletForeignAssetsModuleCall: {2716 _enum: {2717 register_foreign_asset: {2718 owner: 'AccountId32',2719 location: 'XcmVersionedMultiLocation',2720 metadata: 'PalletForeignAssetsModuleAssetMetadata',2721 },2722 update_foreign_asset: {2723 foreignAssetId: 'u32',2724 location: 'XcmVersionedMultiLocation',2725 metadata: 'PalletForeignAssetsModuleAssetMetadata'2726 }2727 }2728 },2729 /**2730 * Lookup319: pallet_evm::pallet::Call<T>2731 **/2732 PalletEvmCall: {2733 _enum: {2734 withdraw: {2735 address: 'H160',2736 value: 'u128',2737 },2738 call: {2739 source: 'H160',2740 target: 'H160',2741 input: 'Bytes',2742 value: 'U256',2743 gasLimit: 'u64',2744 maxFeePerGas: 'U256',2745 maxPriorityFeePerGas: 'Option<U256>',2746 nonce: 'Option<U256>',2747 accessList: 'Vec<(H160,Vec<H256>)>',2748 },2749 create: {2750 source: 'H160',2751 init: 'Bytes',2752 value: 'U256',2753 gasLimit: 'u64',2754 maxFeePerGas: 'U256',2755 maxPriorityFeePerGas: 'Option<U256>',2756 nonce: 'Option<U256>',2757 accessList: 'Vec<(H160,Vec<H256>)>',2758 },2759 create2: {2760 source: 'H160',2761 init: 'Bytes',2762 salt: 'H256',2763 value: 'U256',2764 gasLimit: 'u64',2765 maxFeePerGas: 'U256',2766 maxPriorityFeePerGas: 'Option<U256>',2767 nonce: 'Option<U256>',2768 accessList: 'Vec<(H160,Vec<H256>)>'2769 }2770 }2771 },2772 /**2773 * Lookup325: pallet_ethereum::pallet::Call<T>2774 **/2775 PalletEthereumCall: {2776 _enum: {2777 transact: {2778 transaction: 'EthereumTransactionTransactionV2'2779 }2780 }2781 },2782 /**2783 * Lookup326: ethereum::transaction::TransactionV22784 **/2785 EthereumTransactionTransactionV2: {2786 _enum: {2787 Legacy: 'EthereumTransactionLegacyTransaction',2788 EIP2930: 'EthereumTransactionEip2930Transaction',2789 EIP1559: 'EthereumTransactionEip1559Transaction'2790 }2791 },2792 /**2793 * Lookup327: ethereum::transaction::LegacyTransaction2794 **/2795 EthereumTransactionLegacyTransaction: {2796 nonce: 'U256',2797 gasPrice: 'U256',2798 gasLimit: 'U256',2799 action: 'EthereumTransactionTransactionAction',2800 value: 'U256',2801 input: 'Bytes',2802 signature: 'EthereumTransactionTransactionSignature'2803 },2804 /**2805 * Lookup328: ethereum::transaction::TransactionAction2806 **/2807 EthereumTransactionTransactionAction: {2808 _enum: {2809 Call: 'H160',2810 Create: 'Null'2811 }2812 },2813 /**2814 * Lookup329: ethereum::transaction::TransactionSignature2815 **/2816 EthereumTransactionTransactionSignature: {2817 v: 'u64',2818 r: 'H256',2819 s: 'H256'2820 },2821 /**2822 * Lookup331: ethereum::transaction::EIP2930Transaction2823 **/2824 EthereumTransactionEip2930Transaction: {2825 chainId: 'u64',2826 nonce: 'U256',2827 gasPrice: 'U256',2828 gasLimit: 'U256',2829 action: 'EthereumTransactionTransactionAction',2830 value: 'U256',2831 input: 'Bytes',2832 accessList: 'Vec<EthereumTransactionAccessListItem>',2833 oddYParity: 'bool',2834 r: 'H256',2835 s: 'H256'2836 },2837 /**2838 * Lookup333: ethereum::transaction::AccessListItem2839 **/2840 EthereumTransactionAccessListItem: {2841 address: 'H160',2842 storageKeys: 'Vec<H256>'2843 },2844 /**2845 * Lookup334: ethereum::transaction::EIP1559Transaction2846 **/2847 EthereumTransactionEip1559Transaction: {2848 chainId: 'u64',2849 nonce: 'U256',2850 maxPriorityFeePerGas: 'U256',2851 maxFeePerGas: 'U256',2852 gasLimit: 'U256',2853 action: 'EthereumTransactionTransactionAction',2854 value: 'U256',2855 input: 'Bytes',2856 accessList: 'Vec<EthereumTransactionAccessListItem>',2857 oddYParity: 'bool',2858 r: 'H256',2859 s: 'H256'2860 },2861 /**2862 * Lookup335: pallet_evm_migration::pallet::Call<T>2863 **/2864 PalletEvmMigrationCall: {2865 _enum: {2866 begin: {2867 address: 'H160',2868 },2869 set_data: {2870 address: 'H160',2871 data: 'Vec<(H256,H256)>',2872 },2873 finish: {2874 address: 'H160',2875 code: 'Bytes',2876 },2877 insert_eth_logs: {2878 logs: 'Vec<EthereumLog>',2879 },2880 insert_events: {2881 events: 'Vec<Bytes>'2882 }2883 }2884 },2885 /**2886 * Lookup339: pallet_maintenance::pallet::Call<T>2887 **/2888 PalletMaintenanceCall: {2889 _enum: ['enable', 'disable']2890 },2891 /**2892 * Lookup340: pallet_test_utils::pallet::Call<T>2893 **/2894 PalletTestUtilsCall: {2895 _enum: {2896 enable: 'Null',2897 set_test_value: {2898 value: 'u32',2899 },2900 set_test_value_and_rollback: {2901 value: 'u32',2902 },2903 inc_test_value: 'Null',2904 just_take_fee: 'Null',2905 batch_all: {2906 calls: 'Vec<Call>'2907 }2908 }2909 },2910 /**2911 * Lookup342: pallet_sudo::pallet::Error<T>2912 **/2913 PalletSudoError: {2914 _enum: ['RequireSudo']2915 },2916 /**2917 * Lookup344: orml_vesting::module::Error<T>2918 **/2919 OrmlVestingModuleError: {2920 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2921 },2922 /**2923 * Lookup345: orml_xtokens::module::Error<T>2924 **/2925 OrmlXtokensModuleError: {2926 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2927 },2928 /**2929 * Lookup348: orml_tokens::BalanceLock<Balance>2930 **/2931 OrmlTokensBalanceLock: {2932 id: '[u8;8]',2933 amount: 'u128'2934 },2935 /**2936 * Lookup350: orml_tokens::AccountData<Balance>2937 **/2938 OrmlTokensAccountData: {2939 free: 'u128',2940 reserved: 'u128',2941 frozen: 'u128'2942 },2943 /**2944 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>2945 **/2946 OrmlTokensReserveData: {2947 id: 'Null',2948 amount: 'u128'2949 },2950 /**2951 * Lookup354: orml_tokens::module::Error<T>2952 **/2953 OrmlTokensModuleError: {2954 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2955 },2956 /**2957 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails2958 **/2959 CumulusPalletXcmpQueueInboundChannelDetails: {2960 sender: 'u32',2961 state: 'CumulusPalletXcmpQueueInboundState',2962 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2963 },2964 /**2965 * Lookup357: cumulus_pallet_xcmp_queue::InboundState2966 **/2967 CumulusPalletXcmpQueueInboundState: {2968 _enum: ['Ok', 'Suspended']2969 },2970 /**2971 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat2972 **/2973 PolkadotParachainPrimitivesXcmpMessageFormat: {2974 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2975 },2976 /**2977 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails2978 **/2979 CumulusPalletXcmpQueueOutboundChannelDetails: {2980 recipient: 'u32',2981 state: 'CumulusPalletXcmpQueueOutboundState',2982 signalsExist: 'bool',2983 firstIndex: 'u16',2984 lastIndex: 'u16'2985 },2986 /**2987 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState2988 **/2989 CumulusPalletXcmpQueueOutboundState: {2990 _enum: ['Ok', 'Suspended']2991 },2992 /**2993 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData2994 **/2995 CumulusPalletXcmpQueueQueueConfigData: {2996 suspendThreshold: 'u32',2997 dropThreshold: 'u32',2998 resumeThreshold: 'u32',2999 thresholdWeight: 'SpWeightsWeightV2Weight',3000 weightRestrictDecay: 'SpWeightsWeightV2Weight',3001 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3002 },3003 /**3004 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>3005 **/3006 CumulusPalletXcmpQueueError: {3007 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3008 },3009 /**3010 * Lookup369: pallet_xcm::pallet::Error<T>3011 **/3012 PalletXcmError: {3013 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3014 },3015 /**3016 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>3017 **/3018 CumulusPalletXcmError: 'Null',3019 /**3020 * Lookup371: cumulus_pallet_dmp_queue::ConfigData3021 **/3022 CumulusPalletDmpQueueConfigData: {3023 maxIndividual: 'SpWeightsWeightV2Weight'3024 },3025 /**3026 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData3027 **/3028 CumulusPalletDmpQueuePageIndexData: {3029 beginUsed: 'u32',3030 endUsed: 'u32',3031 overweightCount: 'u64'3032 },3033 /**3034 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>3035 **/3036 CumulusPalletDmpQueueError: {3037 _enum: ['Unknown', 'OverLimit']3038 },3039 /**3040 * Lookup379: pallet_unique::Error<T>3041 **/3042 PalletUniqueError: {3043 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3044 },3045 /**3046 * Lookup380: pallet_configuration::pallet::Error<T>3047 **/3048 PalletConfigurationError: {3049 _enum: ['InconsistentConfiguration']3050 },3051 /**3052 * Lookup381: up_data_structs::Collection<sp_core::crypto::AccountId32>3053 **/3054 UpDataStructsCollection: {3055 owner: 'AccountId32',3056 mode: 'UpDataStructsCollectionMode',3057 name: 'Vec<u16>',3058 description: 'Vec<u16>',3059 tokenPrefix: 'Bytes',3060 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3061 limits: 'UpDataStructsCollectionLimits',3062 permissions: 'UpDataStructsCollectionPermissions',3063 flags: '[u8;1]'3064 },3065 /**3066 * Lookup382: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3067 **/3068 UpDataStructsSponsorshipStateAccountId32: {3069 _enum: {3070 Disabled: 'Null',3071 Unconfirmed: 'AccountId32',3072 Confirmed: 'AccountId32'3073 }3074 },3075 /**3076 * Lookup384: up_data_structs::Properties3077 **/3078 UpDataStructsProperties: {3079 map: 'UpDataStructsPropertiesMapBoundedVec',3080 consumedSpace: 'u32',3081 spaceLimit: 'u32'3082 },3083 /**3084 * Lookup385: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3085 **/3086 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3087 /**3088 * Lookup390: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3089 **/3090 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3091 /**3092 * Lookup397: up_data_structs::CollectionStats3093 **/3094 UpDataStructsCollectionStats: {3095 created: 'u32',3096 destroyed: 'u32',3097 alive: 'u32'3098 },3099 /**3100 * Lookup398: up_data_structs::TokenChild3101 **/3102 UpDataStructsTokenChild: {3103 token: 'u32',3104 collection: 'u32'3105 },3106 /**3107 * Lookup399: PhantomType::up_data_structs<T>3108 **/3109 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3110 /**3111 * Lookup401: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3112 **/3113 UpDataStructsTokenData: {3114 properties: 'Vec<UpDataStructsProperty>',3115 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3116 pieces: 'u128'3117 },3118 /**3119 * Lookup403: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3120 **/3121 UpDataStructsRpcCollection: {3122 owner: 'AccountId32',3123 mode: 'UpDataStructsCollectionMode',3124 name: 'Vec<u16>',3125 description: 'Vec<u16>',3126 tokenPrefix: 'Bytes',3127 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3128 limits: 'UpDataStructsCollectionLimits',3129 permissions: 'UpDataStructsCollectionPermissions',3130 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3131 properties: 'Vec<UpDataStructsProperty>',3132 readOnly: 'bool',3133 flags: 'UpDataStructsRpcCollectionFlags'3134 },3135 /**3136 * Lookup404: up_data_structs::RpcCollectionFlags3137 **/3138 UpDataStructsRpcCollectionFlags: {3139 foreign: 'bool',3140 erc721metadata: 'bool'3141 },3142 /**3143 * Lookup405: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3144 **/3145 RmrkTraitsCollectionCollectionInfo: {3146 issuer: 'AccountId32',3147 metadata: 'Bytes',3148 max: 'Option<u32>',3149 symbol: 'Bytes',3150 nftsCount: 'u32'3151 },3152 /**3153 * Lookup406: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3154 **/3155 RmrkTraitsNftNftInfo: {3156 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3157 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3158 metadata: 'Bytes',3159 equipped: 'bool',3160 pending: 'bool'3161 },3162 /**3163 * Lookup408: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3164 **/3165 RmrkTraitsNftRoyaltyInfo: {3166 recipient: 'AccountId32',3167 amount: 'Permill'3168 },3169 /**3170 * Lookup409: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3171 **/3172 RmrkTraitsResourceResourceInfo: {3173 id: 'u32',3174 resource: 'RmrkTraitsResourceResourceTypes',3175 pending: 'bool',3176 pendingRemoval: 'bool'3177 },3178 /**3179 * Lookup410: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3180 **/3181 RmrkTraitsPropertyPropertyInfo: {3182 key: 'Bytes',3183 value: 'Bytes'3184 },3185 /**3186 * Lookup411: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3187 **/3188 RmrkTraitsBaseBaseInfo: {3189 issuer: 'AccountId32',3190 baseType: 'Bytes',3191 symbol: 'Bytes'3192 },3193 /**3194 * Lookup412: rmrk_traits::nft::NftChild3195 **/3196 RmrkTraitsNftNftChild: {3197 collectionId: 'u32',3198 nftId: 'u32'3199 },3200 /**3201 * Lookup414: pallet_common::pallet::Error<T>3202 **/3203 PalletCommonError: {3204 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3205 },3206 /**3207 * Lookup416: pallet_fungible::pallet::Error<T>3208 **/3209 PalletFungibleError: {3210 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3211 },3212 /**3213 * Lookup420: pallet_refungible::pallet::Error<T>3214 **/3215 PalletRefungibleError: {3216 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3217 },3218 /**3219 * Lookup421: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3220 **/3221 PalletNonfungibleItemData: {3222 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3223 },3224 /**3225 * Lookup423: up_data_structs::PropertyScope3226 **/3227 UpDataStructsPropertyScope: {3228 _enum: ['None', 'Rmrk']3229 },3230 /**3231 * Lookup426: pallet_nonfungible::pallet::Error<T>3232 **/3233 PalletNonfungibleError: {3234 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3235 },3236 /**3237 * Lookup427: pallet_structure::pallet::Error<T>3238 **/3239 PalletStructureError: {3240 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3241 },3242 /**3243 * Lookup428: pallet_rmrk_core::pallet::Error<T>3244 **/3245 PalletRmrkCoreError: {3246 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3247 },3248 /**3249 * Lookup430: pallet_rmrk_equip::pallet::Error<T>3250 **/3251 PalletRmrkEquipError: {3252 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3253 },3254 /**3255 * Lookup436: pallet_app_promotion::pallet::Error<T>3256 **/3257 PalletAppPromotionError: {3258 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3259 },3260 /**3261 * Lookup437: pallet_foreign_assets::module::Error<T>3262 **/3263 PalletForeignAssetsModuleError: {3264 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3265 },3266 /**3267 * Lookup439: pallet_evm::pallet::Error<T>3268 **/3269 PalletEvmError: {3270 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3271 },3272 /**3273 * Lookup442: fp_rpc::TransactionStatus3274 **/3275 FpRpcTransactionStatus: {3276 transactionHash: 'H256',3277 transactionIndex: 'u32',3278 from: 'H160',3279 to: 'Option<H160>',3280 contractAddress: 'Option<H160>',3281 logs: 'Vec<EthereumLog>',3282 logsBloom: 'EthbloomBloom'3283 },3284 /**3285 * Lookup444: ethbloom::Bloom3286 **/3287 EthbloomBloom: '[u8;256]',3288 /**3289 * Lookup446: ethereum::receipt::ReceiptV33290 **/3291 EthereumReceiptReceiptV3: {3292 _enum: {3293 Legacy: 'EthereumReceiptEip658ReceiptData',3294 EIP2930: 'EthereumReceiptEip658ReceiptData',3295 EIP1559: 'EthereumReceiptEip658ReceiptData'3296 }3297 },3298 /**3299 * Lookup447: ethereum::receipt::EIP658ReceiptData3300 **/3301 EthereumReceiptEip658ReceiptData: {3302 statusCode: 'u8',3303 usedGas: 'U256',3304 logsBloom: 'EthbloomBloom',3305 logs: 'Vec<EthereumLog>'3306 },3307 /**3308 * Lookup448: ethereum::block::Block<ethereum::transaction::TransactionV2>3309 **/3310 EthereumBlock: {3311 header: 'EthereumHeader',3312 transactions: 'Vec<EthereumTransactionTransactionV2>',3313 ommers: 'Vec<EthereumHeader>'3314 },3315 /**3316 * Lookup449: ethereum::header::Header3317 **/3318 EthereumHeader: {3319 parentHash: 'H256',3320 ommersHash: 'H256',3321 beneficiary: 'H160',3322 stateRoot: 'H256',3323 transactionsRoot: 'H256',3324 receiptsRoot: 'H256',3325 logsBloom: 'EthbloomBloom',3326 difficulty: 'U256',3327 number: 'U256',3328 gasLimit: 'U256',3329 gasUsed: 'U256',3330 timestamp: 'u64',3331 extraData: 'Bytes',3332 mixHash: 'H256',3333 nonce: 'EthereumTypesHashH64'3334 },3335 /**3336 * Lookup450: ethereum_types::hash::H643337 **/3338 EthereumTypesHashH64: '[u8;8]',3339 /**3340 * Lookup455: pallet_ethereum::pallet::Error<T>3341 **/3342 PalletEthereumError: {3343 _enum: ['InvalidSignature', 'PreLogExists']3344 },3345 /**3346 * Lookup456: pallet_evm_coder_substrate::pallet::Error<T>3347 **/3348 PalletEvmCoderSubstrateError: {3349 _enum: ['OutOfGas', 'OutOfFund']3350 },3351 /**3352 * Lookup457: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3353 **/3354 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3355 _enum: {3356 Disabled: 'Null',3357 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3358 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3359 }3360 },3361 /**3362 * Lookup458: pallet_evm_contract_helpers::SponsoringModeT3363 **/3364 PalletEvmContractHelpersSponsoringModeT: {3365 _enum: ['Disabled', 'Allowlisted', 'Generous']3366 },3367 /**3368 * Lookup464: pallet_evm_contract_helpers::pallet::Error<T>3369 **/3370 PalletEvmContractHelpersError: {3371 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3372 },3373 /**3374 * Lookup465: pallet_evm_migration::pallet::Error<T>3375 **/3376 PalletEvmMigrationError: {3377 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3378 },3379 /**3380 * Lookup466: pallet_maintenance::pallet::Error<T>3381 **/3382 PalletMaintenanceError: 'Null',3383 /**3384 * Lookup467: pallet_test_utils::pallet::Error<T>3385 **/3386 PalletTestUtilsError: {3387 _enum: ['TestPalletDisabled', 'TriggerRollback']3388 },3389 /**3390 * Lookup469: sp_runtime::MultiSignature3391 **/3392 SpRuntimeMultiSignature: {3393 _enum: {3394 Ed25519: 'SpCoreEd25519Signature',3395 Sr25519: 'SpCoreSr25519Signature',3396 Ecdsa: 'SpCoreEcdsaSignature'3397 }3398 },3399 /**3400 * Lookup470: sp_core::ed25519::Signature3401 **/3402 SpCoreEd25519Signature: '[u8;64]',3403 /**3404 * Lookup472: sp_core::sr25519::Signature3405 **/3406 SpCoreSr25519Signature: '[u8;64]',3407 /**3408 * Lookup473: sp_core::ecdsa::Signature3409 **/3410 SpCoreEcdsaSignature: '[u8;65]',3411 /**3412 * Lookup476: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3413 **/3414 FrameSystemExtensionsCheckSpecVersion: 'Null',3415 /**3416 * Lookup477: frame_system::extensions::check_tx_version::CheckTxVersion<T>3417 **/3418 FrameSystemExtensionsCheckTxVersion: 'Null',3419 /**3420 * Lookup478: frame_system::extensions::check_genesis::CheckGenesis<T>3421 **/3422 FrameSystemExtensionsCheckGenesis: 'Null',3423 /**3424 * Lookup481: frame_system::extensions::check_nonce::CheckNonce<T>3425 **/3426 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3427 /**3428 * Lookup482: frame_system::extensions::check_weight::CheckWeight<T>3429 **/3430 FrameSystemExtensionsCheckWeight: 'Null',3431 /**3432 * Lookup483: opal_runtime::runtime_common::maintenance::CheckMaintenance3433 **/3434 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3435 /**3436 * Lookup484: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3437 **/3438 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3439 /**3440 * Lookup485: opal_runtime::Runtime3441 **/3442 OpalRuntimeRuntime: 'Null',3443 /**3444 * Lookup486: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3445 **/3446 PalletEthereumFakeTransactionFinalizer: 'Null'3447};tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, 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, XcmVersionedMultiAsset, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -132,7 +132,6 @@
PalletNonfungibleError: PalletNonfungibleError;
PalletNonfungibleItemData: PalletNonfungibleItemData;
PalletRefungibleError: PalletRefungibleError;
- PalletRefungibleItemData: PalletRefungibleItemData;
PalletRmrkCoreCall: PalletRmrkCoreCall;
PalletRmrkCoreError: PalletRmrkCoreError;
PalletRmrkCoreEvent: PalletRmrkCoreEvent;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -3515,12 +3515,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleItemData (417) */
- interface PalletRefungibleItemData extends Struct {
- readonly constData: Bytes;
- }
-
- /** @name PalletRefungibleError (422) */
+ /** @name PalletRefungibleError (420) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3530,19 +3525,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (423) */
+ /** @name PalletNonfungibleItemData (421) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (425) */
+ /** @name UpDataStructsPropertyScope (423) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (427) */
+ /** @name PalletNonfungibleError (426) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3550,7 +3545,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (428) */
+ /** @name PalletStructureError (427) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3559,7 +3554,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (429) */
+ /** @name PalletRmrkCoreError (428) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3583,7 +3578,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (431) */
+ /** @name PalletRmrkEquipError (430) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3595,7 +3590,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (437) */
+ /** @name PalletAppPromotionError (436) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3606,7 +3601,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (438) */
+ /** @name PalletForeignAssetsModuleError (437) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3615,7 +3610,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (440) */
+ /** @name PalletEvmError (439) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3631,7 +3626,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (443) */
+ /** @name FpRpcTransactionStatus (442) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3642,10 +3637,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (445) */
+ /** @name EthbloomBloom (444) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (447) */
+ /** @name EthereumReceiptReceiptV3 (446) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3656,7 +3651,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (448) */
+ /** @name EthereumReceiptEip658ReceiptData (447) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3664,14 +3659,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (449) */
+ /** @name EthereumBlock (448) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (450) */
+ /** @name EthereumHeader (449) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3690,24 +3685,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (451) */
+ /** @name EthereumTypesHashH64 (450) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (456) */
+ /** @name PalletEthereumError (455) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (457) */
+ /** @name PalletEvmCoderSubstrateError (456) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (458) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (457) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3717,7 +3712,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (459) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (458) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3725,7 +3720,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (465) */
+ /** @name PalletEvmContractHelpersError (464) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3733,7 +3728,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (466) */
+ /** @name PalletEvmMigrationError (465) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3741,17 +3736,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (467) */
+ /** @name PalletMaintenanceError (466) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (468) */
+ /** @name PalletTestUtilsError (467) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (470) */
+ /** @name SpRuntimeMultiSignature (469) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3762,40 +3757,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (471) */
+ /** @name SpCoreEd25519Signature (470) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (473) */
+ /** @name SpCoreSr25519Signature (472) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (474) */
+ /** @name SpCoreEcdsaSignature (473) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (477) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (476) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (478) */
+ /** @name FrameSystemExtensionsCheckTxVersion (477) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (479) */
+ /** @name FrameSystemExtensionsCheckGenesis (478) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (482) */
+ /** @name FrameSystemExtensionsCheckNonce (481) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (483) */
+ /** @name FrameSystemExtensionsCheckWeight (482) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (484) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (483) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (485) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (484) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (486) */
+ /** @name OpalRuntimeRuntime (485) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (487) */
+ /** @name PalletEthereumFakeTransactionFinalizer (486) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -17,49 +17,50 @@
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.20.0":
+"@babel/compat-data@^7.20.5":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
-"@babel/core@^7.20.2":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
- integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
+"@babel/core@^7.20.5":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f"
+ integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.5"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-module-transforms" "^7.20.2"
- "@babel/helpers" "^7.20.5"
- "@babel/parser" "^7.20.5"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/generator" "^7.20.7"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-module-transforms" "^7.20.7"
+ "@babel/helpers" "^7.20.7"
+ "@babel/parser" "^7.20.7"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/generator@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"
- integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==
+"@babel/generator@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
+ integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
dependencies:
- "@babel/types" "^7.20.5"
+ "@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/helper-compilation-targets@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
- integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
+"@babel/helper-compilation-targets@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
+ integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
dependencies:
- "@babel/compat-data" "^7.20.0"
+ "@babel/compat-data" "^7.20.5"
"@babel/helper-validator-option" "^7.18.6"
browserslist "^4.21.3"
+ lru-cache "^5.1.1"
semver "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
@@ -89,19 +90,19 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-module-transforms@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
- integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
+"@babel/helper-module-transforms@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43"
+ integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/helper-simple-access@^7.20.2":
version "7.20.2"
@@ -132,14 +133,14 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-"@babel/helpers@^7.20.5":
- version "7.20.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763"
- integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==
+"@babel/helpers@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
+ integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
dependencies:
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/highlight@^7.18.6":
version "7.18.6"
@@ -150,10 +151,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
- integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
+"@babel/parser@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
+ integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
"@babel/register@^7.18.9":
version "7.18.9"
@@ -166,42 +167,42 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":
- version "7.20.6"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
- integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
+"@babel/runtime@^7.20.6":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
+ integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/template@^7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
- integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
+"@babel/template@^7.18.10", "@babel/template@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
+ integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.18.10"
- "@babel/types" "^7.18.10"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
-"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
- integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==
+"@babel/traverse@^7.20.7":
+ version "7.20.8"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08"
+ integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.5"
+ "@babel/generator" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
- integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
+"@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
+ integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
@@ -214,15 +215,15 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
-"@eslint/eslintrc@^1.3.3":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"
- integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
+"@eslint/eslintrc@^1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.0.tgz#8ec64e0df3e7a1971ee1ff5158da87389f167a63"
+ integrity sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
espree "^9.4.0"
- globals "^13.15.0"
+ globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
@@ -430,7 +431,7 @@
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
-"@humanwhocodes/config-array@^0.11.6":
+"@humanwhocodes/config-array@^0.11.8":
version "0.11.8"
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
@@ -528,70 +529,70 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@polkadot/api-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"
- integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==
+"@polkadot/api-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.10.2.tgz#9d1875bffe9d8677a4f03d53ca6df3d0d7e7f53d"
+ integrity sha512-B0xC7yvPAZqPZpKJzrlFSDfHBawCJISwdV4/nBSs1/AaqQIXVu2ZqPUaSdq7eisZL/EZziptK0SpCtDcb6LpAg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/api-base@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"
- integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==
+"@polkadot/api-base@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.10.2.tgz#39248e966b468ecff7c0ed00bb61dfca14ca99d4"
+ integrity sha512-M/Yushqk6eEAfbkF90vy3GCVg+a2uVeSXyTBKbmkjZtcE7x39GiXs7LOJuYkIim51hlwcvVSeInX8HufwnTUMw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/util" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/api-derive@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"
- integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==
+"@polkadot/api-derive@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.10.2.tgz#d6b0eb558ee057416b87a304ca2790b19afa4be6"
+ integrity sha512-Ut1aqbGvqAkxXq7M4HgJ7BVhUyfbQigqt5LISmnjWdGkhroBxtIJ24saOUPYNr0O/c3jocJpoWqGK2CuucL81w==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api" "9.9.4"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api" "9.10.2"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/api@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"
- integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==
+"@polkadot/api@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.10.2.tgz#9a3132f0c8a5de6c2b7d56f9d9e9c9c5ed2bc77e"
+ integrity sha512-5leF7rxwRkkd/g11tGPho/CcbInVX7ZiuyMsLMTwn+2PDX+Ggv/gmxUboa34eyeLp8/AMui5YbqRD4QExLTxqw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/api-derive" "9.9.4"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/types-known" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/api-derive" "9.10.2"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/types-known" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
eventemitter3 "^4.0.7"
- rxjs "^7.5.7"
+ rxjs "^7.6.0"
-"@polkadot/keyring@^10.1.14":
+"@polkadot/keyring@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"
integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==
@@ -600,7 +601,7 @@
"@polkadot/util" "10.2.1"
"@polkadot/util-crypto" "10.2.1"
-"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":
+"@polkadot/networks@10.2.1", "@polkadot/networks@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"
integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==
@@ -609,135 +610,135 @@
"@polkadot/util" "10.2.1"
"@substrate/ss58-registry" "^1.35.0"
-"@polkadot/rpc-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"
- integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==
+"@polkadot/rpc-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.10.2.tgz#5650aa118d39d0c4b17425a9b327354f7bbf99e5"
+ integrity sha512-LrGzpSdkqXltZDwuBeBBMev68eVVN1GpgV4auEAytgDYYcjI9XDaeLZm7vUVx9aBO8OYz9hQZeHrWrab/FaKmg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/rpc-core@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"
- integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==
+"@polkadot/rpc-core@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.10.2.tgz#72362d26012c53397c1079912d5d4aacf910a650"
+ integrity sha512-qr+q2R3YeRBC++bYxK292jb6t9/KXeLoRheW5z7LbYyre3J60vZPN7WxPxbwm+iCGk1VtvH80Dv1OSCoVC+7hA==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/util" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/rpc-provider@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"
- integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==
+"@polkadot/rpc-provider@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.10.2.tgz#83c8e114b3aad75eedaf98a374bc77a2b8cc1dbc"
+ integrity sha512-mm8l1uZ7DOrsMUN+DELS8apyZVVNIy/SrqEBjHZeZ0AA9noAEbH4ubxR375lG/T32+T97mFudv1rxRnEwXqByg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-support" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- "@polkadot/x-fetch" "^10.1.14"
- "@polkadot/x-global" "^10.1.14"
- "@polkadot/x-ws" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-support" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ "@polkadot/x-fetch" "^10.2.1"
+ "@polkadot/x-global" "^10.2.1"
+ "@polkadot/x-ws" "^10.2.1"
"@substrate/connect" "0.7.17"
eventemitter3 "^4.0.7"
mock-socket "^9.1.5"
nock "^13.2.9"
-"@polkadot/typegen@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"
- integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==
+"@polkadot/typegen@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.10.2.tgz#3a206feaa664afe2cdcc42707b4fa8fde49ce0cc"
+ integrity sha512-AyO1f/tx173w6pZrQINPu12sCIH9uvn+yRL2sJuCBS5+aqlnsR1JscBk6HIlR6t6Jctx1QCsHycfvSvin3IVoA==
dependencies:
- "@babel/core" "^7.20.2"
+ "@babel/core" "^7.20.5"
"@babel/register" "^7.18.9"
- "@babel/runtime" "^7.20.1"
- "@polkadot/api" "9.9.4"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/types-support" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- "@polkadot/x-ws" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api" "9.10.2"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/types-support" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ "@polkadot/x-ws" "^10.2.1"
handlebars "^4.7.7"
websocket "^1.0.34"
yargs "^17.6.2"
-"@polkadot/types-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"
- integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==
+"@polkadot/types-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.10.2.tgz#2dce4ea8a2879d248339ad377ff5479fae884cd5"
+ integrity sha512-z0M3bAwGi0pGS3ieXyiJZLzDEc5yBvlqaZvaAbf2r+vto83SylhbjjG1wX8ARI5hqptBUWqS9BssUFH0q6l4sg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-codec@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"
- integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==
+"@polkadot/types-codec@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.10.2.tgz#7f0e33c33292bdfcd959945b2427742b941df712"
+ integrity sha512-zQOPzxq2N6PUP6Gkxc3OVT7Ub8AD3qC0PBeCnc/fhKjgX3CoKQK4TC6tDL8pEaaIVFh4LOHlHvhWJhqaUNe95A==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/util" "^10.1.14"
- "@polkadot/x-bigint" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/x-bigint" "^10.2.1"
-"@polkadot/types-create@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"
- integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==
+"@polkadot/types-create@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.10.2.tgz#eb7dbf5f50eb4d01a965347d324de26a679a25e3"
+ integrity sha512-U6wDaJe8tZmt0WibxWeDFYVKfvOYa2su8xOwg8HTRraijF6k0/OMugb15bpjEkG6RZ1qg1L7oKrKghugVbRDGQ==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-known@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"
- integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==
+"@polkadot/types-known@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.10.2.tgz#d37d984eed6aa17b33603aca9f9d006d6eb468cb"
+ integrity sha512-Kwxoo+xvAAE1w0jZdGqmNoEJHdfJzncO1xrBJ7WjeCuEFoDsWmjP63u/o8VaC1ZNnfrhjRK0vyvquslJ6NQOUA==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/networks" "^10.1.14"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/networks" "^10.2.1"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-support@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"
- integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==
+"@polkadot/types-support@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.10.2.tgz#eff0ef399a3373421a543059f62ca96b85645f0b"
+ integrity sha512-RQSCNNBH8+mzXbErB/LUDU9oMQScv0GZ4UmM2MPDPKBcqXNCdJ4dK+ajNfVbgGTUucYUEebpp2m5Az1usjE4Ew==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"
- integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==
+"@polkadot/types@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.10.2.tgz#1f6647445b055856bdbd949106f698c89a125386"
+ integrity sha512-B5Bg/IaAMJEwdWzGp3pil5WBukr5fm9x9NFIMuoCS9TyIqpm9rSHrz2n/408R3B4rwqqtx8RQAxiIETFI+m6Rw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":
+"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"
integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==
@@ -754,7 +755,7 @@
ed2curve "^0.3.0"
tweetnacl "^1.0.3"
-"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":
+"@polkadot/util@10.2.1", "@polkadot/util@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"
integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==
@@ -818,7 +819,7 @@
dependencies:
"@babel/runtime" "^7.20.6"
-"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":
+"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"
integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==
@@ -826,7 +827,7 @@
"@babel/runtime" "^7.20.6"
"@polkadot/x-global" "10.2.1"
-"@polkadot/x-fetch@^10.1.14":
+"@polkadot/x-fetch@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"
integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==
@@ -836,7 +837,7 @@
"@types/node-fetch" "^2.6.2"
node-fetch "^3.3.0"
-"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":
+"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"
integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==
@@ -867,7 +868,7 @@
"@babel/runtime" "^7.20.6"
"@polkadot/x-global" "10.2.1"
-"@polkadot/x-ws@^10.1.14":
+"@polkadot/x-ws@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"
integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==
@@ -1022,9 +1023,9 @@
form-data "^3.0.0"
"@types/node@*", "@types/node@^18.11.2":
- version "18.11.15"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.15.tgz#de0e1fbd2b22b962d45971431e2ae696643d3f5d"
- integrity sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==
+ version "18.11.17"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.17.tgz#5c009e1d9c38f4a2a9d45c0b0c493fe6cdb4bcb5"
+ integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==
"@types/node@^12.12.6":
version "12.20.55"
@@ -1555,9 +1556,9 @@
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001400:
- version "1.0.30001439"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
- integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
+ version "1.0.30001441"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
+ integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
caseless@~0.12.0:
version "0.12.0"
@@ -1917,7 +1918,7 @@
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
-decode-uri-component@^0.2.0:
+decode-uri-component@^0.2.0, decode-uri-component@^0.2.1:
version "0.2.2"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
@@ -2162,12 +2163,12 @@
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint@^8.25.0:
- version "8.29.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz#d74a88a20fb44d59c51851625bc4ee8d0ec43f87"
- integrity sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==
+ version "8.30.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.30.0.tgz#83a506125d089eef7c5b5910eeea824273a33f50"
+ integrity sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==
dependencies:
- "@eslint/eslintrc" "^1.3.3"
- "@humanwhocodes/config-array" "^0.11.6"
+ "@eslint/eslintrc" "^1.4.0"
+ "@humanwhocodes/config-array" "^0.11.8"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
@@ -2186,7 +2187,7 @@
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
- globals "^13.15.0"
+ globals "^13.19.0"
grapheme-splitter "^1.0.4"
ignore "^5.2.0"
import-fresh "^3.0.0"
@@ -2703,7 +2704,7 @@
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globals@^13.15.0:
+globals@^13.19.0:
version "13.19.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
@@ -2926,9 +2927,9 @@
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore@^5.2.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c"
- integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
import-fresh@^3.0.0, import-fresh@^3.2.1:
version "3.3.0"
@@ -3136,9 +3137,9 @@
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
json5@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
- integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab"
+ integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==
jsonfile@^4.0.0:
version "4.0.0"
@@ -3236,6 +3237,13 @@
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2"
integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ dependencies:
+ yallist "^3.0.2"
+
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -3572,9 +3580,9 @@
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
node-releases@^2.0.6:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
- integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
+ integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -4033,10 +4041,10 @@
dependencies:
queue-microtask "^1.2.2"
-rxjs@^7.5.7:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.6.0.tgz#361da5362b6ddaa691a2de0b4f2d32028f1eb5a2"
- integrity sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==
+rxjs@^7.6.0:
+ version "7.8.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
+ integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
dependencies:
tslib "^2.1.0"
@@ -4956,7 +4964,7 @@
resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577"
integrity sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==
-yallist@^3.0.0, yallist@^3.1.1:
+yallist@^3.0.0, yallist@^3.0.2, yallist@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==