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.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -3210,73 +3210,67 @@
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
},
/**
- * Lookup417: pallet_refungible::ItemData
- **/
- PalletRefungibleItemData: {
- constData: 'Bytes'
- },
- /**
- * Lookup422: pallet_refungible::pallet::Error<T>
+ * Lookup420: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup423: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup421: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup425: up_data_structs::PropertyScope
+ * Lookup423: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup427: pallet_nonfungible::pallet::Error<T>
+ * Lookup426: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup428: pallet_structure::pallet::Error<T>
+ * Lookup427: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup429: pallet_rmrk_core::pallet::Error<T>
+ * Lookup428: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup431: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup430: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup437: pallet_app_promotion::pallet::Error<T>
+ * Lookup436: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup438: pallet_foreign_assets::module::Error<T>
+ * Lookup437: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup440: pallet_evm::pallet::Error<T>
+ * Lookup439: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
},
/**
- * Lookup443: fp_rpc::TransactionStatus
+ * Lookup442: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3288,11 +3282,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup445: ethbloom::Bloom
+ * Lookup444: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup447: ethereum::receipt::ReceiptV3
+ * Lookup446: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3302,7 +3296,7 @@
}
},
/**
- * Lookup448: ethereum::receipt::EIP658ReceiptData
+ * Lookup447: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3311,7 +3305,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup449: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup448: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3319,7 +3313,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup450: ethereum::header::Header
+ * Lookup449: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3339,23 +3333,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup451: ethereum_types::hash::H64
+ * Lookup450: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup456: pallet_ethereum::pallet::Error<T>
+ * Lookup455: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup457: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup456: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup458: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup457: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3365,35 +3359,35 @@
}
},
/**
- * Lookup459: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup458: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup465: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup464: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup466: pallet_evm_migration::pallet::Error<T>
+ * Lookup465: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup467: pallet_maintenance::pallet::Error<T>
+ * Lookup466: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup468: pallet_test_utils::pallet::Error<T>
+ * Lookup467: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup470: sp_runtime::MultiSignature
+ * Lookup469: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3403,51 +3397,51 @@
}
},
/**
- * Lookup471: sp_core::ed25519::Signature
+ * Lookup470: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup473: sp_core::sr25519::Signature
+ * Lookup472: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup474: sp_core::ecdsa::Signature
+ * Lookup473: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup477: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup476: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup478: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup477: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup479: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup478: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup482: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup481: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup483: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup482: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup484: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup483: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup485: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup484: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup486: opal_runtime::Runtime
+ * Lookup485: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup487: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup486: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletCommonEvent (89) */1113 interface PalletCommonEvent extends Enum {1114 readonly isCollectionCreated: boolean;1115 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1116 readonly isCollectionDestroyed: boolean;1117 readonly asCollectionDestroyed: u32;1118 readonly isItemCreated: boolean;1119 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1120 readonly isItemDestroyed: boolean;1121 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1122 readonly isTransfer: boolean;1123 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1124 readonly isApproved: boolean;1125 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1126 readonly isApprovedForAll: boolean;1127 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1128 readonly isCollectionPropertySet: boolean;1129 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1130 readonly isCollectionPropertyDeleted: boolean;1131 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1132 readonly isTokenPropertySet: boolean;1133 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1134 readonly isTokenPropertyDeleted: boolean;1135 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1136 readonly isPropertyPermissionSet: boolean;1137 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1138 readonly isAllowListAddressAdded: boolean;1139 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1140 readonly isAllowListAddressRemoved: boolean;1141 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1142 readonly isCollectionAdminAdded: boolean;1143 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1144 readonly isCollectionAdminRemoved: boolean;1145 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1146 readonly isCollectionLimitSet: boolean;1147 readonly asCollectionLimitSet: u32;1148 readonly isCollectionOwnerChanged: boolean;1149 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1150 readonly isCollectionPermissionSet: boolean;1151 readonly asCollectionPermissionSet: u32;1152 readonly isCollectionSponsorSet: boolean;1153 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1154 readonly isSponsorshipConfirmed: boolean;1155 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1156 readonly isCollectionSponsorRemoved: boolean;1157 readonly asCollectionSponsorRemoved: u32;1158 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1159 }11601161 /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */1162 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1163 readonly isSubstrate: boolean;1164 readonly asSubstrate: AccountId32;1165 readonly isEthereum: boolean;1166 readonly asEthereum: H160;1167 readonly type: 'Substrate' | 'Ethereum';1168 }11691170 /** @name PalletStructureEvent (96) */1171 interface PalletStructureEvent extends Enum {1172 readonly isExecuted: boolean;1173 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1174 readonly type: 'Executed';1175 }11761177 /** @name PalletRmrkCoreEvent (97) */1178 interface PalletRmrkCoreEvent extends Enum {1179 readonly isCollectionCreated: boolean;1180 readonly asCollectionCreated: {1181 readonly issuer: AccountId32;1182 readonly collectionId: u32;1183 } & Struct;1184 readonly isCollectionDestroyed: boolean;1185 readonly asCollectionDestroyed: {1186 readonly issuer: AccountId32;1187 readonly collectionId: u32;1188 } & Struct;1189 readonly isIssuerChanged: boolean;1190 readonly asIssuerChanged: {1191 readonly oldIssuer: AccountId32;1192 readonly newIssuer: AccountId32;1193 readonly collectionId: u32;1194 } & Struct;1195 readonly isCollectionLocked: boolean;1196 readonly asCollectionLocked: {1197 readonly issuer: AccountId32;1198 readonly collectionId: u32;1199 } & Struct;1200 readonly isNftMinted: boolean;1201 readonly asNftMinted: {1202 readonly owner: AccountId32;1203 readonly collectionId: u32;1204 readonly nftId: u32;1205 } & Struct;1206 readonly isNftBurned: boolean;1207 readonly asNftBurned: {1208 readonly owner: AccountId32;1209 readonly nftId: u32;1210 } & Struct;1211 readonly isNftSent: boolean;1212 readonly asNftSent: {1213 readonly sender: AccountId32;1214 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1215 readonly collectionId: u32;1216 readonly nftId: u32;1217 readonly approvalRequired: bool;1218 } & Struct;1219 readonly isNftAccepted: boolean;1220 readonly asNftAccepted: {1221 readonly sender: AccountId32;1222 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1223 readonly collectionId: u32;1224 readonly nftId: u32;1225 } & Struct;1226 readonly isNftRejected: boolean;1227 readonly asNftRejected: {1228 readonly sender: AccountId32;1229 readonly collectionId: u32;1230 readonly nftId: u32;1231 } & Struct;1232 readonly isPropertySet: boolean;1233 readonly asPropertySet: {1234 readonly collectionId: u32;1235 readonly maybeNftId: Option<u32>;1236 readonly key: Bytes;1237 readonly value: Bytes;1238 } & Struct;1239 readonly isResourceAdded: boolean;1240 readonly asResourceAdded: {1241 readonly nftId: u32;1242 readonly resourceId: u32;1243 } & Struct;1244 readonly isResourceRemoval: boolean;1245 readonly asResourceRemoval: {1246 readonly nftId: u32;1247 readonly resourceId: u32;1248 } & Struct;1249 readonly isResourceAccepted: boolean;1250 readonly asResourceAccepted: {1251 readonly nftId: u32;1252 readonly resourceId: u32;1253 } & Struct;1254 readonly isResourceRemovalAccepted: boolean;1255 readonly asResourceRemovalAccepted: {1256 readonly nftId: u32;1257 readonly resourceId: u32;1258 } & Struct;1259 readonly isPrioritySet: boolean;1260 readonly asPrioritySet: {1261 readonly collectionId: u32;1262 readonly nftId: u32;1263 } & Struct;1264 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1265 }12661267 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1268 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1269 readonly isAccountId: boolean;1270 readonly asAccountId: AccountId32;1271 readonly isCollectionAndNftTuple: boolean;1272 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1273 readonly type: 'AccountId' | 'CollectionAndNftTuple';1274 }12751276 /** @name PalletRmrkEquipEvent (102) */1277 interface PalletRmrkEquipEvent extends Enum {1278 readonly isBaseCreated: boolean;1279 readonly asBaseCreated: {1280 readonly issuer: AccountId32;1281 readonly baseId: u32;1282 } & Struct;1283 readonly isEquippablesUpdated: boolean;1284 readonly asEquippablesUpdated: {1285 readonly baseId: u32;1286 readonly slotId: u32;1287 } & Struct;1288 readonly type: 'BaseCreated' | 'EquippablesUpdated';1289 }12901291 /** @name PalletAppPromotionEvent (103) */1292 interface PalletAppPromotionEvent extends Enum {1293 readonly isStakingRecalculation: boolean;1294 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1295 readonly isStake: boolean;1296 readonly asStake: ITuple<[AccountId32, u128]>;1297 readonly isUnstake: boolean;1298 readonly asUnstake: ITuple<[AccountId32, u128]>;1299 readonly isSetAdmin: boolean;1300 readonly asSetAdmin: AccountId32;1301 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1302 }13031304 /** @name PalletForeignAssetsModuleEvent (104) */1305 interface PalletForeignAssetsModuleEvent extends Enum {1306 readonly isForeignAssetRegistered: boolean;1307 readonly asForeignAssetRegistered: {1308 readonly assetId: u32;1309 readonly assetAddress: XcmV1MultiLocation;1310 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1311 } & Struct;1312 readonly isForeignAssetUpdated: boolean;1313 readonly asForeignAssetUpdated: {1314 readonly assetId: u32;1315 readonly assetAddress: XcmV1MultiLocation;1316 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1317 } & Struct;1318 readonly isAssetRegistered: boolean;1319 readonly asAssetRegistered: {1320 readonly assetId: PalletForeignAssetsAssetIds;1321 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1322 } & Struct;1323 readonly isAssetUpdated: boolean;1324 readonly asAssetUpdated: {1325 readonly assetId: PalletForeignAssetsAssetIds;1326 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1327 } & Struct;1328 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1329 }13301331 /** @name PalletForeignAssetsModuleAssetMetadata (105) */1332 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1333 readonly name: Bytes;1334 readonly symbol: Bytes;1335 readonly decimals: u8;1336 readonly minimalBalance: u128;1337 }13381339 /** @name PalletEvmEvent (106) */1340 interface PalletEvmEvent extends Enum {1341 readonly isLog: boolean;1342 readonly asLog: {1343 readonly log: EthereumLog;1344 } & Struct;1345 readonly isCreated: boolean;1346 readonly asCreated: {1347 readonly address: H160;1348 } & Struct;1349 readonly isCreatedFailed: boolean;1350 readonly asCreatedFailed: {1351 readonly address: H160;1352 } & Struct;1353 readonly isExecuted: boolean;1354 readonly asExecuted: {1355 readonly address: H160;1356 } & Struct;1357 readonly isExecutedFailed: boolean;1358 readonly asExecutedFailed: {1359 readonly address: H160;1360 } & Struct;1361 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1362 }13631364 /** @name EthereumLog (107) */1365 interface EthereumLog extends Struct {1366 readonly address: H160;1367 readonly topics: Vec<H256>;1368 readonly data: Bytes;1369 }13701371 /** @name PalletEthereumEvent (109) */1372 interface PalletEthereumEvent extends Enum {1373 readonly isExecuted: boolean;1374 readonly asExecuted: {1375 readonly from: H160;1376 readonly to: H160;1377 readonly transactionHash: H256;1378 readonly exitReason: EvmCoreErrorExitReason;1379 } & Struct;1380 readonly type: 'Executed';1381 }13821383 /** @name EvmCoreErrorExitReason (110) */1384 interface EvmCoreErrorExitReason extends Enum {1385 readonly isSucceed: boolean;1386 readonly asSucceed: EvmCoreErrorExitSucceed;1387 readonly isError: boolean;1388 readonly asError: EvmCoreErrorExitError;1389 readonly isRevert: boolean;1390 readonly asRevert: EvmCoreErrorExitRevert;1391 readonly isFatal: boolean;1392 readonly asFatal: EvmCoreErrorExitFatal;1393 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1394 }13951396 /** @name EvmCoreErrorExitSucceed (111) */1397 interface EvmCoreErrorExitSucceed extends Enum {1398 readonly isStopped: boolean;1399 readonly isReturned: boolean;1400 readonly isSuicided: boolean;1401 readonly type: 'Stopped' | 'Returned' | 'Suicided';1402 }14031404 /** @name EvmCoreErrorExitError (112) */1405 interface EvmCoreErrorExitError extends Enum {1406 readonly isStackUnderflow: boolean;1407 readonly isStackOverflow: boolean;1408 readonly isInvalidJump: boolean;1409 readonly isInvalidRange: boolean;1410 readonly isDesignatedInvalid: boolean;1411 readonly isCallTooDeep: boolean;1412 readonly isCreateCollision: boolean;1413 readonly isCreateContractLimit: boolean;1414 readonly isOutOfOffset: boolean;1415 readonly isOutOfGas: boolean;1416 readonly isOutOfFund: boolean;1417 readonly isPcUnderflow: boolean;1418 readonly isCreateEmpty: boolean;1419 readonly isOther: boolean;1420 readonly asOther: Text;1421 readonly isInvalidCode: boolean;1422 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1423 }14241425 /** @name EvmCoreErrorExitRevert (115) */1426 interface EvmCoreErrorExitRevert extends Enum {1427 readonly isReverted: boolean;1428 readonly type: 'Reverted';1429 }14301431 /** @name EvmCoreErrorExitFatal (116) */1432 interface EvmCoreErrorExitFatal extends Enum {1433 readonly isNotSupported: boolean;1434 readonly isUnhandledInterrupt: boolean;1435 readonly isCallErrorAsFatal: boolean;1436 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1437 readonly isOther: boolean;1438 readonly asOther: Text;1439 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1440 }14411442 /** @name PalletEvmContractHelpersEvent (117) */1443 interface PalletEvmContractHelpersEvent extends Enum {1444 readonly isContractSponsorSet: boolean;1445 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1446 readonly isContractSponsorshipConfirmed: boolean;1447 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1448 readonly isContractSponsorRemoved: boolean;1449 readonly asContractSponsorRemoved: H160;1450 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1451 }14521453 /** @name PalletEvmMigrationEvent (118) */1454 interface PalletEvmMigrationEvent extends Enum {1455 readonly isTestEvent: boolean;1456 readonly type: 'TestEvent';1457 }14581459 /** @name PalletMaintenanceEvent (119) */1460 interface PalletMaintenanceEvent extends Enum {1461 readonly isMaintenanceEnabled: boolean;1462 readonly isMaintenanceDisabled: boolean;1463 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1464 }14651466 /** @name PalletTestUtilsEvent (120) */1467 interface PalletTestUtilsEvent extends Enum {1468 readonly isValueIsSet: boolean;1469 readonly isShouldRollback: boolean;1470 readonly isBatchCompleted: boolean;1471 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1472 }14731474 /** @name FrameSystemPhase (121) */1475 interface FrameSystemPhase extends Enum {1476 readonly isApplyExtrinsic: boolean;1477 readonly asApplyExtrinsic: u32;1478 readonly isFinalization: boolean;1479 readonly isInitialization: boolean;1480 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1481 }14821483 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1484 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1485 readonly specVersion: Compact<u32>;1486 readonly specName: Text;1487 }14881489 /** @name FrameSystemCall (125) */1490 interface FrameSystemCall extends Enum {1491 readonly isRemark: boolean;1492 readonly asRemark: {1493 readonly remark: Bytes;1494 } & Struct;1495 readonly isSetHeapPages: boolean;1496 readonly asSetHeapPages: {1497 readonly pages: u64;1498 } & Struct;1499 readonly isSetCode: boolean;1500 readonly asSetCode: {1501 readonly code: Bytes;1502 } & Struct;1503 readonly isSetCodeWithoutChecks: boolean;1504 readonly asSetCodeWithoutChecks: {1505 readonly code: Bytes;1506 } & Struct;1507 readonly isSetStorage: boolean;1508 readonly asSetStorage: {1509 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1510 } & Struct;1511 readonly isKillStorage: boolean;1512 readonly asKillStorage: {1513 readonly keys_: Vec<Bytes>;1514 } & Struct;1515 readonly isKillPrefix: boolean;1516 readonly asKillPrefix: {1517 readonly prefix: Bytes;1518 readonly subkeys: u32;1519 } & Struct;1520 readonly isRemarkWithEvent: boolean;1521 readonly asRemarkWithEvent: {1522 readonly remark: Bytes;1523 } & Struct;1524 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1525 }15261527 /** @name FrameSystemLimitsBlockWeights (129) */1528 interface FrameSystemLimitsBlockWeights extends Struct {1529 readonly baseBlock: SpWeightsWeightV2Weight;1530 readonly maxBlock: SpWeightsWeightV2Weight;1531 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1532 }15331534 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (130) */1535 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1536 readonly normal: FrameSystemLimitsWeightsPerClass;1537 readonly operational: FrameSystemLimitsWeightsPerClass;1538 readonly mandatory: FrameSystemLimitsWeightsPerClass;1539 }15401541 /** @name FrameSystemLimitsWeightsPerClass (131) */1542 interface FrameSystemLimitsWeightsPerClass extends Struct {1543 readonly baseExtrinsic: SpWeightsWeightV2Weight;1544 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1545 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1546 readonly reserved: Option<SpWeightsWeightV2Weight>;1547 }15481549 /** @name FrameSystemLimitsBlockLength (133) */1550 interface FrameSystemLimitsBlockLength extends Struct {1551 readonly max: FrameSupportDispatchPerDispatchClassU32;1552 }15531554 /** @name FrameSupportDispatchPerDispatchClassU32 (134) */1555 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1556 readonly normal: u32;1557 readonly operational: u32;1558 readonly mandatory: u32;1559 }15601561 /** @name SpWeightsRuntimeDbWeight (135) */1562 interface SpWeightsRuntimeDbWeight extends Struct {1563 readonly read: u64;1564 readonly write: u64;1565 }15661567 /** @name SpVersionRuntimeVersion (136) */1568 interface SpVersionRuntimeVersion extends Struct {1569 readonly specName: Text;1570 readonly implName: Text;1571 readonly authoringVersion: u32;1572 readonly specVersion: u32;1573 readonly implVersion: u32;1574 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1575 readonly transactionVersion: u32;1576 readonly stateVersion: u8;1577 }15781579 /** @name FrameSystemError (141) */1580 interface FrameSystemError extends Enum {1581 readonly isInvalidSpecName: boolean;1582 readonly isSpecVersionNeedsToIncrease: boolean;1583 readonly isFailedToExtractRuntimeVersion: boolean;1584 readonly isNonDefaultComposite: boolean;1585 readonly isNonZeroRefCount: boolean;1586 readonly isCallFiltered: boolean;1587 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1588 }15891590 /** @name PolkadotPrimitivesV2PersistedValidationData (142) */1591 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1592 readonly parentHead: Bytes;1593 readonly relayParentNumber: u32;1594 readonly relayParentStorageRoot: H256;1595 readonly maxPovSize: u32;1596 }15971598 /** @name PolkadotPrimitivesV2UpgradeRestriction (145) */1599 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1600 readonly isPresent: boolean;1601 readonly type: 'Present';1602 }16031604 /** @name SpTrieStorageProof (146) */1605 interface SpTrieStorageProof extends Struct {1606 readonly trieNodes: BTreeSet<Bytes>;1607 }16081609 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (148) */1610 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1611 readonly dmqMqcHead: H256;1612 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1613 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1614 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1615 }16161617 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (151) */1618 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1619 readonly maxCapacity: u32;1620 readonly maxTotalSize: u32;1621 readonly maxMessageSize: u32;1622 readonly msgCount: u32;1623 readonly totalSize: u32;1624 readonly mqcHead: Option<H256>;1625 }16261627 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (152) */1628 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1629 readonly maxCodeSize: u32;1630 readonly maxHeadDataSize: u32;1631 readonly maxUpwardQueueCount: u32;1632 readonly maxUpwardQueueSize: u32;1633 readonly maxUpwardMessageSize: u32;1634 readonly maxUpwardMessageNumPerCandidate: u32;1635 readonly hrmpMaxMessageNumPerCandidate: u32;1636 readonly validationUpgradeCooldown: u32;1637 readonly validationUpgradeDelay: u32;1638 }16391640 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (158) */1641 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1642 readonly recipient: u32;1643 readonly data: Bytes;1644 }16451646 /** @name CumulusPalletParachainSystemCall (159) */1647 interface CumulusPalletParachainSystemCall extends Enum {1648 readonly isSetValidationData: boolean;1649 readonly asSetValidationData: {1650 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1651 } & Struct;1652 readonly isSudoSendUpwardMessage: boolean;1653 readonly asSudoSendUpwardMessage: {1654 readonly message: Bytes;1655 } & Struct;1656 readonly isAuthorizeUpgrade: boolean;1657 readonly asAuthorizeUpgrade: {1658 readonly codeHash: H256;1659 } & Struct;1660 readonly isEnactAuthorizedUpgrade: boolean;1661 readonly asEnactAuthorizedUpgrade: {1662 readonly code: Bytes;1663 } & Struct;1664 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1665 }16661667 /** @name CumulusPrimitivesParachainInherentParachainInherentData (160) */1668 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1669 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1670 readonly relayChainState: SpTrieStorageProof;1671 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1672 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1673 }16741675 /** @name PolkadotCorePrimitivesInboundDownwardMessage (162) */1676 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1677 readonly sentAt: u32;1678 readonly msg: Bytes;1679 }16801681 /** @name PolkadotCorePrimitivesInboundHrmpMessage (165) */1682 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1683 readonly sentAt: u32;1684 readonly data: Bytes;1685 }16861687 /** @name CumulusPalletParachainSystemError (168) */1688 interface CumulusPalletParachainSystemError extends Enum {1689 readonly isOverlappingUpgrades: boolean;1690 readonly isProhibitedByPolkadot: boolean;1691 readonly isTooBig: boolean;1692 readonly isValidationDataNotAvailable: boolean;1693 readonly isHostConfigurationNotAvailable: boolean;1694 readonly isNotScheduled: boolean;1695 readonly isNothingAuthorized: boolean;1696 readonly isUnauthorized: boolean;1697 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1698 }16991700 /** @name PalletBalancesBalanceLock (170) */1701 interface PalletBalancesBalanceLock extends Struct {1702 readonly id: U8aFixed;1703 readonly amount: u128;1704 readonly reasons: PalletBalancesReasons;1705 }17061707 /** @name PalletBalancesReasons (171) */1708 interface PalletBalancesReasons extends Enum {1709 readonly isFee: boolean;1710 readonly isMisc: boolean;1711 readonly isAll: boolean;1712 readonly type: 'Fee' | 'Misc' | 'All';1713 }17141715 /** @name PalletBalancesReserveData (174) */1716 interface PalletBalancesReserveData extends Struct {1717 readonly id: U8aFixed;1718 readonly amount: u128;1719 }17201721 /** @name PalletBalancesCall (176) */1722 interface PalletBalancesCall extends Enum {1723 readonly isTransfer: boolean;1724 readonly asTransfer: {1725 readonly dest: MultiAddress;1726 readonly value: Compact<u128>;1727 } & Struct;1728 readonly isSetBalance: boolean;1729 readonly asSetBalance: {1730 readonly who: MultiAddress;1731 readonly newFree: Compact<u128>;1732 readonly newReserved: Compact<u128>;1733 } & Struct;1734 readonly isForceTransfer: boolean;1735 readonly asForceTransfer: {1736 readonly source: MultiAddress;1737 readonly dest: MultiAddress;1738 readonly value: Compact<u128>;1739 } & Struct;1740 readonly isTransferKeepAlive: boolean;1741 readonly asTransferKeepAlive: {1742 readonly dest: MultiAddress;1743 readonly value: Compact<u128>;1744 } & Struct;1745 readonly isTransferAll: boolean;1746 readonly asTransferAll: {1747 readonly dest: MultiAddress;1748 readonly keepAlive: bool;1749 } & Struct;1750 readonly isForceUnreserve: boolean;1751 readonly asForceUnreserve: {1752 readonly who: MultiAddress;1753 readonly amount: u128;1754 } & Struct;1755 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1756 }17571758 /** @name PalletBalancesError (179) */1759 interface PalletBalancesError extends Enum {1760 readonly isVestingBalance: boolean;1761 readonly isLiquidityRestrictions: boolean;1762 readonly isInsufficientBalance: boolean;1763 readonly isExistentialDeposit: boolean;1764 readonly isKeepAlive: boolean;1765 readonly isExistingVestingSchedule: boolean;1766 readonly isDeadAccount: boolean;1767 readonly isTooManyReserves: boolean;1768 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1769 }17701771 /** @name PalletTimestampCall (181) */1772 interface PalletTimestampCall extends Enum {1773 readonly isSet: boolean;1774 readonly asSet: {1775 readonly now: Compact<u64>;1776 } & Struct;1777 readonly type: 'Set';1778 }17791780 /** @name PalletTransactionPaymentReleases (183) */1781 interface PalletTransactionPaymentReleases extends Enum {1782 readonly isV1Ancient: boolean;1783 readonly isV2: boolean;1784 readonly type: 'V1Ancient' | 'V2';1785 }17861787 /** @name PalletTreasuryProposal (184) */1788 interface PalletTreasuryProposal extends Struct {1789 readonly proposer: AccountId32;1790 readonly value: u128;1791 readonly beneficiary: AccountId32;1792 readonly bond: u128;1793 }17941795 /** @name PalletTreasuryCall (187) */1796 interface PalletTreasuryCall extends Enum {1797 readonly isProposeSpend: boolean;1798 readonly asProposeSpend: {1799 readonly value: Compact<u128>;1800 readonly beneficiary: MultiAddress;1801 } & Struct;1802 readonly isRejectProposal: boolean;1803 readonly asRejectProposal: {1804 readonly proposalId: Compact<u32>;1805 } & Struct;1806 readonly isApproveProposal: boolean;1807 readonly asApproveProposal: {1808 readonly proposalId: Compact<u32>;1809 } & Struct;1810 readonly isSpend: boolean;1811 readonly asSpend: {1812 readonly amount: Compact<u128>;1813 readonly beneficiary: MultiAddress;1814 } & Struct;1815 readonly isRemoveApproval: boolean;1816 readonly asRemoveApproval: {1817 readonly proposalId: Compact<u32>;1818 } & Struct;1819 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1820 }18211822 /** @name FrameSupportPalletId (190) */1823 interface FrameSupportPalletId extends U8aFixed {}18241825 /** @name PalletTreasuryError (191) */1826 interface PalletTreasuryError extends Enum {1827 readonly isInsufficientProposersBalance: boolean;1828 readonly isInvalidIndex: boolean;1829 readonly isTooManyApprovals: boolean;1830 readonly isInsufficientPermission: boolean;1831 readonly isProposalNotApproved: boolean;1832 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1833 }18341835 /** @name PalletSudoCall (192) */1836 interface PalletSudoCall extends Enum {1837 readonly isSudo: boolean;1838 readonly asSudo: {1839 readonly call: Call;1840 } & Struct;1841 readonly isSudoUncheckedWeight: boolean;1842 readonly asSudoUncheckedWeight: {1843 readonly call: Call;1844 readonly weight: SpWeightsWeightV2Weight;1845 } & Struct;1846 readonly isSetKey: boolean;1847 readonly asSetKey: {1848 readonly new_: MultiAddress;1849 } & Struct;1850 readonly isSudoAs: boolean;1851 readonly asSudoAs: {1852 readonly who: MultiAddress;1853 readonly call: Call;1854 } & Struct;1855 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1856 }18571858 /** @name OrmlVestingModuleCall (194) */1859 interface OrmlVestingModuleCall extends Enum {1860 readonly isClaim: boolean;1861 readonly isVestedTransfer: boolean;1862 readonly asVestedTransfer: {1863 readonly dest: MultiAddress;1864 readonly schedule: OrmlVestingVestingSchedule;1865 } & Struct;1866 readonly isUpdateVestingSchedules: boolean;1867 readonly asUpdateVestingSchedules: {1868 readonly who: MultiAddress;1869 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1870 } & Struct;1871 readonly isClaimFor: boolean;1872 readonly asClaimFor: {1873 readonly dest: MultiAddress;1874 } & Struct;1875 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1876 }18771878 /** @name OrmlXtokensModuleCall (196) */1879 interface OrmlXtokensModuleCall extends Enum {1880 readonly isTransfer: boolean;1881 readonly asTransfer: {1882 readonly currencyId: PalletForeignAssetsAssetIds;1883 readonly amount: u128;1884 readonly dest: XcmVersionedMultiLocation;1885 readonly destWeightLimit: XcmV2WeightLimit;1886 } & Struct;1887 readonly isTransferMultiasset: boolean;1888 readonly asTransferMultiasset: {1889 readonly asset: XcmVersionedMultiAsset;1890 readonly dest: XcmVersionedMultiLocation;1891 readonly destWeightLimit: XcmV2WeightLimit;1892 } & Struct;1893 readonly isTransferWithFee: boolean;1894 readonly asTransferWithFee: {1895 readonly currencyId: PalletForeignAssetsAssetIds;1896 readonly amount: u128;1897 readonly fee: u128;1898 readonly dest: XcmVersionedMultiLocation;1899 readonly destWeightLimit: XcmV2WeightLimit;1900 } & Struct;1901 readonly isTransferMultiassetWithFee: boolean;1902 readonly asTransferMultiassetWithFee: {1903 readonly asset: XcmVersionedMultiAsset;1904 readonly fee: XcmVersionedMultiAsset;1905 readonly dest: XcmVersionedMultiLocation;1906 readonly destWeightLimit: XcmV2WeightLimit;1907 } & Struct;1908 readonly isTransferMulticurrencies: boolean;1909 readonly asTransferMulticurrencies: {1910 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1911 readonly feeItem: u32;1912 readonly dest: XcmVersionedMultiLocation;1913 readonly destWeightLimit: XcmV2WeightLimit;1914 } & Struct;1915 readonly isTransferMultiassets: boolean;1916 readonly asTransferMultiassets: {1917 readonly assets: XcmVersionedMultiAssets;1918 readonly feeItem: u32;1919 readonly dest: XcmVersionedMultiLocation;1920 readonly destWeightLimit: XcmV2WeightLimit;1921 } & Struct;1922 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1923 }19241925 /** @name XcmVersionedMultiAsset (197) */1926 interface XcmVersionedMultiAsset extends Enum {1927 readonly isV0: boolean;1928 readonly asV0: XcmV0MultiAsset;1929 readonly isV1: boolean;1930 readonly asV1: XcmV1MultiAsset;1931 readonly type: 'V0' | 'V1';1932 }19331934 /** @name OrmlTokensModuleCall (200) */1935 interface OrmlTokensModuleCall extends Enum {1936 readonly isTransfer: boolean;1937 readonly asTransfer: {1938 readonly dest: MultiAddress;1939 readonly currencyId: PalletForeignAssetsAssetIds;1940 readonly amount: Compact<u128>;1941 } & Struct;1942 readonly isTransferAll: boolean;1943 readonly asTransferAll: {1944 readonly dest: MultiAddress;1945 readonly currencyId: PalletForeignAssetsAssetIds;1946 readonly keepAlive: bool;1947 } & Struct;1948 readonly isTransferKeepAlive: boolean;1949 readonly asTransferKeepAlive: {1950 readonly dest: MultiAddress;1951 readonly currencyId: PalletForeignAssetsAssetIds;1952 readonly amount: Compact<u128>;1953 } & Struct;1954 readonly isForceTransfer: boolean;1955 readonly asForceTransfer: {1956 readonly source: MultiAddress;1957 readonly dest: MultiAddress;1958 readonly currencyId: PalletForeignAssetsAssetIds;1959 readonly amount: Compact<u128>;1960 } & Struct;1961 readonly isSetBalance: boolean;1962 readonly asSetBalance: {1963 readonly who: MultiAddress;1964 readonly currencyId: PalletForeignAssetsAssetIds;1965 readonly newFree: Compact<u128>;1966 readonly newReserved: Compact<u128>;1967 } & Struct;1968 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1969 }19701971 /** @name CumulusPalletXcmpQueueCall (201) */1972 interface CumulusPalletXcmpQueueCall extends Enum {1973 readonly isServiceOverweight: boolean;1974 readonly asServiceOverweight: {1975 readonly index: u64;1976 readonly weightLimit: u64;1977 } & Struct;1978 readonly isSuspendXcmExecution: boolean;1979 readonly isResumeXcmExecution: boolean;1980 readonly isUpdateSuspendThreshold: boolean;1981 readonly asUpdateSuspendThreshold: {1982 readonly new_: u32;1983 } & Struct;1984 readonly isUpdateDropThreshold: boolean;1985 readonly asUpdateDropThreshold: {1986 readonly new_: u32;1987 } & Struct;1988 readonly isUpdateResumeThreshold: boolean;1989 readonly asUpdateResumeThreshold: {1990 readonly new_: u32;1991 } & Struct;1992 readonly isUpdateThresholdWeight: boolean;1993 readonly asUpdateThresholdWeight: {1994 readonly new_: u64;1995 } & Struct;1996 readonly isUpdateWeightRestrictDecay: boolean;1997 readonly asUpdateWeightRestrictDecay: {1998 readonly new_: u64;1999 } & Struct;2000 readonly isUpdateXcmpMaxIndividualWeight: boolean;2001 readonly asUpdateXcmpMaxIndividualWeight: {2002 readonly new_: u64;2003 } & Struct;2004 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2005 }20062007 /** @name PalletXcmCall (202) */2008 interface PalletXcmCall extends Enum {2009 readonly isSend: boolean;2010 readonly asSend: {2011 readonly dest: XcmVersionedMultiLocation;2012 readonly message: XcmVersionedXcm;2013 } & Struct;2014 readonly isTeleportAssets: boolean;2015 readonly asTeleportAssets: {2016 readonly dest: XcmVersionedMultiLocation;2017 readonly beneficiary: XcmVersionedMultiLocation;2018 readonly assets: XcmVersionedMultiAssets;2019 readonly feeAssetItem: u32;2020 } & Struct;2021 readonly isReserveTransferAssets: boolean;2022 readonly asReserveTransferAssets: {2023 readonly dest: XcmVersionedMultiLocation;2024 readonly beneficiary: XcmVersionedMultiLocation;2025 readonly assets: XcmVersionedMultiAssets;2026 readonly feeAssetItem: u32;2027 } & Struct;2028 readonly isExecute: boolean;2029 readonly asExecute: {2030 readonly message: XcmVersionedXcm;2031 readonly maxWeight: u64;2032 } & Struct;2033 readonly isForceXcmVersion: boolean;2034 readonly asForceXcmVersion: {2035 readonly location: XcmV1MultiLocation;2036 readonly xcmVersion: u32;2037 } & Struct;2038 readonly isForceDefaultXcmVersion: boolean;2039 readonly asForceDefaultXcmVersion: {2040 readonly maybeXcmVersion: Option<u32>;2041 } & Struct;2042 readonly isForceSubscribeVersionNotify: boolean;2043 readonly asForceSubscribeVersionNotify: {2044 readonly location: XcmVersionedMultiLocation;2045 } & Struct;2046 readonly isForceUnsubscribeVersionNotify: boolean;2047 readonly asForceUnsubscribeVersionNotify: {2048 readonly location: XcmVersionedMultiLocation;2049 } & Struct;2050 readonly isLimitedReserveTransferAssets: boolean;2051 readonly asLimitedReserveTransferAssets: {2052 readonly dest: XcmVersionedMultiLocation;2053 readonly beneficiary: XcmVersionedMultiLocation;2054 readonly assets: XcmVersionedMultiAssets;2055 readonly feeAssetItem: u32;2056 readonly weightLimit: XcmV2WeightLimit;2057 } & Struct;2058 readonly isLimitedTeleportAssets: boolean;2059 readonly asLimitedTeleportAssets: {2060 readonly dest: XcmVersionedMultiLocation;2061 readonly beneficiary: XcmVersionedMultiLocation;2062 readonly assets: XcmVersionedMultiAssets;2063 readonly feeAssetItem: u32;2064 readonly weightLimit: XcmV2WeightLimit;2065 } & Struct;2066 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2067 }20682069 /** @name XcmVersionedXcm (203) */2070 interface XcmVersionedXcm extends Enum {2071 readonly isV0: boolean;2072 readonly asV0: XcmV0Xcm;2073 readonly isV1: boolean;2074 readonly asV1: XcmV1Xcm;2075 readonly isV2: boolean;2076 readonly asV2: XcmV2Xcm;2077 readonly type: 'V0' | 'V1' | 'V2';2078 }20792080 /** @name XcmV0Xcm (204) */2081 interface XcmV0Xcm extends Enum {2082 readonly isWithdrawAsset: boolean;2083 readonly asWithdrawAsset: {2084 readonly assets: Vec<XcmV0MultiAsset>;2085 readonly effects: Vec<XcmV0Order>;2086 } & Struct;2087 readonly isReserveAssetDeposit: boolean;2088 readonly asReserveAssetDeposit: {2089 readonly assets: Vec<XcmV0MultiAsset>;2090 readonly effects: Vec<XcmV0Order>;2091 } & Struct;2092 readonly isTeleportAsset: boolean;2093 readonly asTeleportAsset: {2094 readonly assets: Vec<XcmV0MultiAsset>;2095 readonly effects: Vec<XcmV0Order>;2096 } & Struct;2097 readonly isQueryResponse: boolean;2098 readonly asQueryResponse: {2099 readonly queryId: Compact<u64>;2100 readonly response: XcmV0Response;2101 } & Struct;2102 readonly isTransferAsset: boolean;2103 readonly asTransferAsset: {2104 readonly assets: Vec<XcmV0MultiAsset>;2105 readonly dest: XcmV0MultiLocation;2106 } & Struct;2107 readonly isTransferReserveAsset: boolean;2108 readonly asTransferReserveAsset: {2109 readonly assets: Vec<XcmV0MultiAsset>;2110 readonly dest: XcmV0MultiLocation;2111 readonly effects: Vec<XcmV0Order>;2112 } & Struct;2113 readonly isTransact: boolean;2114 readonly asTransact: {2115 readonly originType: XcmV0OriginKind;2116 readonly requireWeightAtMost: u64;2117 readonly call: XcmDoubleEncoded;2118 } & Struct;2119 readonly isHrmpNewChannelOpenRequest: boolean;2120 readonly asHrmpNewChannelOpenRequest: {2121 readonly sender: Compact<u32>;2122 readonly maxMessageSize: Compact<u32>;2123 readonly maxCapacity: Compact<u32>;2124 } & Struct;2125 readonly isHrmpChannelAccepted: boolean;2126 readonly asHrmpChannelAccepted: {2127 readonly recipient: Compact<u32>;2128 } & Struct;2129 readonly isHrmpChannelClosing: boolean;2130 readonly asHrmpChannelClosing: {2131 readonly initiator: Compact<u32>;2132 readonly sender: Compact<u32>;2133 readonly recipient: Compact<u32>;2134 } & Struct;2135 readonly isRelayedFrom: boolean;2136 readonly asRelayedFrom: {2137 readonly who: XcmV0MultiLocation;2138 readonly message: XcmV0Xcm;2139 } & Struct;2140 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2141 }21422143 /** @name XcmV0Order (206) */2144 interface XcmV0Order extends Enum {2145 readonly isNull: boolean;2146 readonly isDepositAsset: boolean;2147 readonly asDepositAsset: {2148 readonly assets: Vec<XcmV0MultiAsset>;2149 readonly dest: XcmV0MultiLocation;2150 } & Struct;2151 readonly isDepositReserveAsset: boolean;2152 readonly asDepositReserveAsset: {2153 readonly assets: Vec<XcmV0MultiAsset>;2154 readonly dest: XcmV0MultiLocation;2155 readonly effects: Vec<XcmV0Order>;2156 } & Struct;2157 readonly isExchangeAsset: boolean;2158 readonly asExchangeAsset: {2159 readonly give: Vec<XcmV0MultiAsset>;2160 readonly receive: Vec<XcmV0MultiAsset>;2161 } & Struct;2162 readonly isInitiateReserveWithdraw: boolean;2163 readonly asInitiateReserveWithdraw: {2164 readonly assets: Vec<XcmV0MultiAsset>;2165 readonly reserve: XcmV0MultiLocation;2166 readonly effects: Vec<XcmV0Order>;2167 } & Struct;2168 readonly isInitiateTeleport: boolean;2169 readonly asInitiateTeleport: {2170 readonly assets: Vec<XcmV0MultiAsset>;2171 readonly dest: XcmV0MultiLocation;2172 readonly effects: Vec<XcmV0Order>;2173 } & Struct;2174 readonly isQueryHolding: boolean;2175 readonly asQueryHolding: {2176 readonly queryId: Compact<u64>;2177 readonly dest: XcmV0MultiLocation;2178 readonly assets: Vec<XcmV0MultiAsset>;2179 } & Struct;2180 readonly isBuyExecution: boolean;2181 readonly asBuyExecution: {2182 readonly fees: XcmV0MultiAsset;2183 readonly weight: u64;2184 readonly debt: u64;2185 readonly haltOnError: bool;2186 readonly xcm: Vec<XcmV0Xcm>;2187 } & Struct;2188 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2189 }21902191 /** @name XcmV0Response (208) */2192 interface XcmV0Response extends Enum {2193 readonly isAssets: boolean;2194 readonly asAssets: Vec<XcmV0MultiAsset>;2195 readonly type: 'Assets';2196 }21972198 /** @name XcmV1Xcm (209) */2199 interface XcmV1Xcm extends Enum {2200 readonly isWithdrawAsset: boolean;2201 readonly asWithdrawAsset: {2202 readonly assets: XcmV1MultiassetMultiAssets;2203 readonly effects: Vec<XcmV1Order>;2204 } & Struct;2205 readonly isReserveAssetDeposited: boolean;2206 readonly asReserveAssetDeposited: {2207 readonly assets: XcmV1MultiassetMultiAssets;2208 readonly effects: Vec<XcmV1Order>;2209 } & Struct;2210 readonly isReceiveTeleportedAsset: boolean;2211 readonly asReceiveTeleportedAsset: {2212 readonly assets: XcmV1MultiassetMultiAssets;2213 readonly effects: Vec<XcmV1Order>;2214 } & Struct;2215 readonly isQueryResponse: boolean;2216 readonly asQueryResponse: {2217 readonly queryId: Compact<u64>;2218 readonly response: XcmV1Response;2219 } & Struct;2220 readonly isTransferAsset: boolean;2221 readonly asTransferAsset: {2222 readonly assets: XcmV1MultiassetMultiAssets;2223 readonly beneficiary: XcmV1MultiLocation;2224 } & Struct;2225 readonly isTransferReserveAsset: boolean;2226 readonly asTransferReserveAsset: {2227 readonly assets: XcmV1MultiassetMultiAssets;2228 readonly dest: XcmV1MultiLocation;2229 readonly effects: Vec<XcmV1Order>;2230 } & Struct;2231 readonly isTransact: boolean;2232 readonly asTransact: {2233 readonly originType: XcmV0OriginKind;2234 readonly requireWeightAtMost: u64;2235 readonly call: XcmDoubleEncoded;2236 } & Struct;2237 readonly isHrmpNewChannelOpenRequest: boolean;2238 readonly asHrmpNewChannelOpenRequest: {2239 readonly sender: Compact<u32>;2240 readonly maxMessageSize: Compact<u32>;2241 readonly maxCapacity: Compact<u32>;2242 } & Struct;2243 readonly isHrmpChannelAccepted: boolean;2244 readonly asHrmpChannelAccepted: {2245 readonly recipient: Compact<u32>;2246 } & Struct;2247 readonly isHrmpChannelClosing: boolean;2248 readonly asHrmpChannelClosing: {2249 readonly initiator: Compact<u32>;2250 readonly sender: Compact<u32>;2251 readonly recipient: Compact<u32>;2252 } & Struct;2253 readonly isRelayedFrom: boolean;2254 readonly asRelayedFrom: {2255 readonly who: XcmV1MultilocationJunctions;2256 readonly message: XcmV1Xcm;2257 } & Struct;2258 readonly isSubscribeVersion: boolean;2259 readonly asSubscribeVersion: {2260 readonly queryId: Compact<u64>;2261 readonly maxResponseWeight: Compact<u64>;2262 } & Struct;2263 readonly isUnsubscribeVersion: boolean;2264 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2265 }22662267 /** @name XcmV1Order (211) */2268 interface XcmV1Order extends Enum {2269 readonly isNoop: boolean;2270 readonly isDepositAsset: boolean;2271 readonly asDepositAsset: {2272 readonly assets: XcmV1MultiassetMultiAssetFilter;2273 readonly maxAssets: u32;2274 readonly beneficiary: XcmV1MultiLocation;2275 } & Struct;2276 readonly isDepositReserveAsset: boolean;2277 readonly asDepositReserveAsset: {2278 readonly assets: XcmV1MultiassetMultiAssetFilter;2279 readonly maxAssets: u32;2280 readonly dest: XcmV1MultiLocation;2281 readonly effects: Vec<XcmV1Order>;2282 } & Struct;2283 readonly isExchangeAsset: boolean;2284 readonly asExchangeAsset: {2285 readonly give: XcmV1MultiassetMultiAssetFilter;2286 readonly receive: XcmV1MultiassetMultiAssets;2287 } & Struct;2288 readonly isInitiateReserveWithdraw: boolean;2289 readonly asInitiateReserveWithdraw: {2290 readonly assets: XcmV1MultiassetMultiAssetFilter;2291 readonly reserve: XcmV1MultiLocation;2292 readonly effects: Vec<XcmV1Order>;2293 } & Struct;2294 readonly isInitiateTeleport: boolean;2295 readonly asInitiateTeleport: {2296 readonly assets: XcmV1MultiassetMultiAssetFilter;2297 readonly dest: XcmV1MultiLocation;2298 readonly effects: Vec<XcmV1Order>;2299 } & Struct;2300 readonly isQueryHolding: boolean;2301 readonly asQueryHolding: {2302 readonly queryId: Compact<u64>;2303 readonly dest: XcmV1MultiLocation;2304 readonly assets: XcmV1MultiassetMultiAssetFilter;2305 } & Struct;2306 readonly isBuyExecution: boolean;2307 readonly asBuyExecution: {2308 readonly fees: XcmV1MultiAsset;2309 readonly weight: u64;2310 readonly debt: u64;2311 readonly haltOnError: bool;2312 readonly instructions: Vec<XcmV1Xcm>;2313 } & Struct;2314 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2315 }23162317 /** @name XcmV1Response (213) */2318 interface XcmV1Response extends Enum {2319 readonly isAssets: boolean;2320 readonly asAssets: XcmV1MultiassetMultiAssets;2321 readonly isVersion: boolean;2322 readonly asVersion: u32;2323 readonly type: 'Assets' | 'Version';2324 }23252326 /** @name CumulusPalletXcmCall (227) */2327 type CumulusPalletXcmCall = Null;23282329 /** @name CumulusPalletDmpQueueCall (228) */2330 interface CumulusPalletDmpQueueCall extends Enum {2331 readonly isServiceOverweight: boolean;2332 readonly asServiceOverweight: {2333 readonly index: u64;2334 readonly weightLimit: u64;2335 } & Struct;2336 readonly type: 'ServiceOverweight';2337 }23382339 /** @name PalletInflationCall (229) */2340 interface PalletInflationCall extends Enum {2341 readonly isStartInflation: boolean;2342 readonly asStartInflation: {2343 readonly inflationStartRelayBlock: u32;2344 } & Struct;2345 readonly type: 'StartInflation';2346 }23472348 /** @name PalletUniqueCall (230) */2349 interface PalletUniqueCall extends Enum {2350 readonly isCreateCollection: boolean;2351 readonly asCreateCollection: {2352 readonly collectionName: Vec<u16>;2353 readonly collectionDescription: Vec<u16>;2354 readonly tokenPrefix: Bytes;2355 readonly mode: UpDataStructsCollectionMode;2356 } & Struct;2357 readonly isCreateCollectionEx: boolean;2358 readonly asCreateCollectionEx: {2359 readonly data: UpDataStructsCreateCollectionData;2360 } & Struct;2361 readonly isDestroyCollection: boolean;2362 readonly asDestroyCollection: {2363 readonly collectionId: u32;2364 } & Struct;2365 readonly isAddToAllowList: boolean;2366 readonly asAddToAllowList: {2367 readonly collectionId: u32;2368 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2369 } & Struct;2370 readonly isRemoveFromAllowList: boolean;2371 readonly asRemoveFromAllowList: {2372 readonly collectionId: u32;2373 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2374 } & Struct;2375 readonly isChangeCollectionOwner: boolean;2376 readonly asChangeCollectionOwner: {2377 readonly collectionId: u32;2378 readonly newOwner: AccountId32;2379 } & Struct;2380 readonly isAddCollectionAdmin: boolean;2381 readonly asAddCollectionAdmin: {2382 readonly collectionId: u32;2383 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2384 } & Struct;2385 readonly isRemoveCollectionAdmin: boolean;2386 readonly asRemoveCollectionAdmin: {2387 readonly collectionId: u32;2388 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2389 } & Struct;2390 readonly isSetCollectionSponsor: boolean;2391 readonly asSetCollectionSponsor: {2392 readonly collectionId: u32;2393 readonly newSponsor: AccountId32;2394 } & Struct;2395 readonly isConfirmSponsorship: boolean;2396 readonly asConfirmSponsorship: {2397 readonly collectionId: u32;2398 } & Struct;2399 readonly isRemoveCollectionSponsor: boolean;2400 readonly asRemoveCollectionSponsor: {2401 readonly collectionId: u32;2402 } & Struct;2403 readonly isCreateItem: boolean;2404 readonly asCreateItem: {2405 readonly collectionId: u32;2406 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2407 readonly data: UpDataStructsCreateItemData;2408 } & Struct;2409 readonly isCreateMultipleItems: boolean;2410 readonly asCreateMultipleItems: {2411 readonly collectionId: u32;2412 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2413 readonly itemsData: Vec<UpDataStructsCreateItemData>;2414 } & Struct;2415 readonly isSetCollectionProperties: boolean;2416 readonly asSetCollectionProperties: {2417 readonly collectionId: u32;2418 readonly properties: Vec<UpDataStructsProperty>;2419 } & Struct;2420 readonly isDeleteCollectionProperties: boolean;2421 readonly asDeleteCollectionProperties: {2422 readonly collectionId: u32;2423 readonly propertyKeys: Vec<Bytes>;2424 } & Struct;2425 readonly isSetTokenProperties: boolean;2426 readonly asSetTokenProperties: {2427 readonly collectionId: u32;2428 readonly tokenId: u32;2429 readonly properties: Vec<UpDataStructsProperty>;2430 } & Struct;2431 readonly isDeleteTokenProperties: boolean;2432 readonly asDeleteTokenProperties: {2433 readonly collectionId: u32;2434 readonly tokenId: u32;2435 readonly propertyKeys: Vec<Bytes>;2436 } & Struct;2437 readonly isSetTokenPropertyPermissions: boolean;2438 readonly asSetTokenPropertyPermissions: {2439 readonly collectionId: u32;2440 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2441 } & Struct;2442 readonly isCreateMultipleItemsEx: boolean;2443 readonly asCreateMultipleItemsEx: {2444 readonly collectionId: u32;2445 readonly data: UpDataStructsCreateItemExData;2446 } & Struct;2447 readonly isSetTransfersEnabledFlag: boolean;2448 readonly asSetTransfersEnabledFlag: {2449 readonly collectionId: u32;2450 readonly value: bool;2451 } & Struct;2452 readonly isBurnItem: boolean;2453 readonly asBurnItem: {2454 readonly collectionId: u32;2455 readonly itemId: u32;2456 readonly value: u128;2457 } & Struct;2458 readonly isBurnFrom: boolean;2459 readonly asBurnFrom: {2460 readonly collectionId: u32;2461 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2462 readonly itemId: u32;2463 readonly value: u128;2464 } & Struct;2465 readonly isTransfer: boolean;2466 readonly asTransfer: {2467 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2468 readonly collectionId: u32;2469 readonly itemId: u32;2470 readonly value: u128;2471 } & Struct;2472 readonly isApprove: boolean;2473 readonly asApprove: {2474 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2475 readonly collectionId: u32;2476 readonly itemId: u32;2477 readonly amount: u128;2478 } & Struct;2479 readonly isTransferFrom: boolean;2480 readonly asTransferFrom: {2481 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2482 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2483 readonly collectionId: u32;2484 readonly itemId: u32;2485 readonly value: u128;2486 } & Struct;2487 readonly isSetCollectionLimits: boolean;2488 readonly asSetCollectionLimits: {2489 readonly collectionId: u32;2490 readonly newLimit: UpDataStructsCollectionLimits;2491 } & Struct;2492 readonly isSetCollectionPermissions: boolean;2493 readonly asSetCollectionPermissions: {2494 readonly collectionId: u32;2495 readonly newPermission: UpDataStructsCollectionPermissions;2496 } & Struct;2497 readonly isRepartition: boolean;2498 readonly asRepartition: {2499 readonly collectionId: u32;2500 readonly tokenId: u32;2501 readonly amount: u128;2502 } & Struct;2503 readonly isSetAllowanceForAll: boolean;2504 readonly asSetAllowanceForAll: {2505 readonly collectionId: u32;2506 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2507 readonly approve: bool;2508 } & Struct;2509 readonly isForceRepairCollection: boolean;2510 readonly asForceRepairCollection: {2511 readonly collectionId: u32;2512 } & Struct;2513 readonly isForceRepairItem: boolean;2514 readonly asForceRepairItem: {2515 readonly collectionId: u32;2516 readonly itemId: u32;2517 } & Struct;2518 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2519 }25202521 /** @name UpDataStructsCollectionMode (235) */2522 interface UpDataStructsCollectionMode extends Enum {2523 readonly isNft: boolean;2524 readonly isFungible: boolean;2525 readonly asFungible: u8;2526 readonly isReFungible: boolean;2527 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2528 }25292530 /** @name UpDataStructsCreateCollectionData (236) */2531 interface UpDataStructsCreateCollectionData extends Struct {2532 readonly mode: UpDataStructsCollectionMode;2533 readonly access: Option<UpDataStructsAccessMode>;2534 readonly name: Vec<u16>;2535 readonly description: Vec<u16>;2536 readonly tokenPrefix: Bytes;2537 readonly pendingSponsor: Option<AccountId32>;2538 readonly limits: Option<UpDataStructsCollectionLimits>;2539 readonly permissions: Option<UpDataStructsCollectionPermissions>;2540 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2541 readonly properties: Vec<UpDataStructsProperty>;2542 }25432544 /** @name UpDataStructsAccessMode (238) */2545 interface UpDataStructsAccessMode extends Enum {2546 readonly isNormal: boolean;2547 readonly isAllowList: boolean;2548 readonly type: 'Normal' | 'AllowList';2549 }25502551 /** @name UpDataStructsCollectionLimits (240) */2552 interface UpDataStructsCollectionLimits extends Struct {2553 readonly accountTokenOwnershipLimit: Option<u32>;2554 readonly sponsoredDataSize: Option<u32>;2555 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2556 readonly tokenLimit: Option<u32>;2557 readonly sponsorTransferTimeout: Option<u32>;2558 readonly sponsorApproveTimeout: Option<u32>;2559 readonly ownerCanTransfer: Option<bool>;2560 readonly ownerCanDestroy: Option<bool>;2561 readonly transfersEnabled: Option<bool>;2562 }25632564 /** @name UpDataStructsSponsoringRateLimit (242) */2565 interface UpDataStructsSponsoringRateLimit extends Enum {2566 readonly isSponsoringDisabled: boolean;2567 readonly isBlocks: boolean;2568 readonly asBlocks: u32;2569 readonly type: 'SponsoringDisabled' | 'Blocks';2570 }25712572 /** @name UpDataStructsCollectionPermissions (245) */2573 interface UpDataStructsCollectionPermissions extends Struct {2574 readonly access: Option<UpDataStructsAccessMode>;2575 readonly mintMode: Option<bool>;2576 readonly nesting: Option<UpDataStructsNestingPermissions>;2577 }25782579 /** @name UpDataStructsNestingPermissions (247) */2580 interface UpDataStructsNestingPermissions extends Struct {2581 readonly tokenOwner: bool;2582 readonly collectionAdmin: bool;2583 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2584 }25852586 /** @name UpDataStructsOwnerRestrictedSet (249) */2587 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}25882589 /** @name UpDataStructsPropertyKeyPermission (254) */2590 interface UpDataStructsPropertyKeyPermission extends Struct {2591 readonly key: Bytes;2592 readonly permission: UpDataStructsPropertyPermission;2593 }25942595 /** @name UpDataStructsPropertyPermission (255) */2596 interface UpDataStructsPropertyPermission extends Struct {2597 readonly mutable: bool;2598 readonly collectionAdmin: bool;2599 readonly tokenOwner: bool;2600 }26012602 /** @name UpDataStructsProperty (258) */2603 interface UpDataStructsProperty extends Struct {2604 readonly key: Bytes;2605 readonly value: Bytes;2606 }26072608 /** @name UpDataStructsCreateItemData (261) */2609 interface UpDataStructsCreateItemData extends Enum {2610 readonly isNft: boolean;2611 readonly asNft: UpDataStructsCreateNftData;2612 readonly isFungible: boolean;2613 readonly asFungible: UpDataStructsCreateFungibleData;2614 readonly isReFungible: boolean;2615 readonly asReFungible: UpDataStructsCreateReFungibleData;2616 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2617 }26182619 /** @name UpDataStructsCreateNftData (262) */2620 interface UpDataStructsCreateNftData extends Struct {2621 readonly properties: Vec<UpDataStructsProperty>;2622 }26232624 /** @name UpDataStructsCreateFungibleData (263) */2625 interface UpDataStructsCreateFungibleData extends Struct {2626 readonly value: u128;2627 }26282629 /** @name UpDataStructsCreateReFungibleData (264) */2630 interface UpDataStructsCreateReFungibleData extends Struct {2631 readonly pieces: u128;2632 readonly properties: Vec<UpDataStructsProperty>;2633 }26342635 /** @name UpDataStructsCreateItemExData (267) */2636 interface UpDataStructsCreateItemExData extends Enum {2637 readonly isNft: boolean;2638 readonly asNft: Vec<UpDataStructsCreateNftExData>;2639 readonly isFungible: boolean;2640 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2641 readonly isRefungibleMultipleItems: boolean;2642 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2643 readonly isRefungibleMultipleOwners: boolean;2644 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2645 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2646 }26472648 /** @name UpDataStructsCreateNftExData (269) */2649 interface UpDataStructsCreateNftExData extends Struct {2650 readonly properties: Vec<UpDataStructsProperty>;2651 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2652 }26532654 /** @name UpDataStructsCreateRefungibleExSingleOwner (276) */2655 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2656 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2657 readonly pieces: u128;2658 readonly properties: Vec<UpDataStructsProperty>;2659 }26602661 /** @name UpDataStructsCreateRefungibleExMultipleOwners (278) */2662 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2663 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2664 readonly properties: Vec<UpDataStructsProperty>;2665 }26662667 /** @name PalletConfigurationCall (279) */2668 interface PalletConfigurationCall extends Enum {2669 readonly isSetWeightToFeeCoefficientOverride: boolean;2670 readonly asSetWeightToFeeCoefficientOverride: {2671 readonly coeff: Option<u64>;2672 } & Struct;2673 readonly isSetMinGasPriceOverride: boolean;2674 readonly asSetMinGasPriceOverride: {2675 readonly coeff: Option<u64>;2676 } & Struct;2677 readonly isSetXcmAllowedLocations: boolean;2678 readonly asSetXcmAllowedLocations: {2679 readonly locations: Option<Vec<XcmV1MultiLocation>>;2680 } & Struct;2681 readonly isSetAppPromotionConfigurationOverride: boolean;2682 readonly asSetAppPromotionConfigurationOverride: {2683 readonly configuration: PalletConfigurationAppPromotionConfiguration;2684 } & Struct;2685 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';2686 }26872688 /** @name PalletConfigurationAppPromotionConfiguration (284) */2689 interface PalletConfigurationAppPromotionConfiguration extends Struct {2690 readonly recalculationInterval: Option<u32>;2691 readonly pendingInterval: Option<u32>;2692 readonly intervalIncome: Option<Perbill>;2693 readonly maxStakersPerCalculation: Option<u8>;2694 }26952696 /** @name PalletTemplateTransactionPaymentCall (288) */2697 type PalletTemplateTransactionPaymentCall = Null;26982699 /** @name PalletStructureCall (289) */2700 type PalletStructureCall = Null;27012702 /** @name PalletRmrkCoreCall (290) */2703 interface PalletRmrkCoreCall extends Enum {2704 readonly isCreateCollection: boolean;2705 readonly asCreateCollection: {2706 readonly metadata: Bytes;2707 readonly max: Option<u32>;2708 readonly symbol: Bytes;2709 } & Struct;2710 readonly isDestroyCollection: boolean;2711 readonly asDestroyCollection: {2712 readonly collectionId: u32;2713 } & Struct;2714 readonly isChangeCollectionIssuer: boolean;2715 readonly asChangeCollectionIssuer: {2716 readonly collectionId: u32;2717 readonly newIssuer: MultiAddress;2718 } & Struct;2719 readonly isLockCollection: boolean;2720 readonly asLockCollection: {2721 readonly collectionId: u32;2722 } & Struct;2723 readonly isMintNft: boolean;2724 readonly asMintNft: {2725 readonly owner: Option<AccountId32>;2726 readonly collectionId: u32;2727 readonly recipient: Option<AccountId32>;2728 readonly royaltyAmount: Option<Permill>;2729 readonly metadata: Bytes;2730 readonly transferable: bool;2731 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2732 } & Struct;2733 readonly isBurnNft: boolean;2734 readonly asBurnNft: {2735 readonly collectionId: u32;2736 readonly nftId: u32;2737 readonly maxBurns: u32;2738 } & Struct;2739 readonly isSend: boolean;2740 readonly asSend: {2741 readonly rmrkCollectionId: u32;2742 readonly rmrkNftId: u32;2743 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2744 } & Struct;2745 readonly isAcceptNft: boolean;2746 readonly asAcceptNft: {2747 readonly rmrkCollectionId: u32;2748 readonly rmrkNftId: u32;2749 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2750 } & Struct;2751 readonly isRejectNft: boolean;2752 readonly asRejectNft: {2753 readonly rmrkCollectionId: u32;2754 readonly rmrkNftId: u32;2755 } & Struct;2756 readonly isAcceptResource: boolean;2757 readonly asAcceptResource: {2758 readonly rmrkCollectionId: u32;2759 readonly rmrkNftId: u32;2760 readonly resourceId: u32;2761 } & Struct;2762 readonly isAcceptResourceRemoval: boolean;2763 readonly asAcceptResourceRemoval: {2764 readonly rmrkCollectionId: u32;2765 readonly rmrkNftId: u32;2766 readonly resourceId: u32;2767 } & Struct;2768 readonly isSetProperty: boolean;2769 readonly asSetProperty: {2770 readonly rmrkCollectionId: Compact<u32>;2771 readonly maybeNftId: Option<u32>;2772 readonly key: Bytes;2773 readonly value: Bytes;2774 } & Struct;2775 readonly isSetPriority: boolean;2776 readonly asSetPriority: {2777 readonly rmrkCollectionId: u32;2778 readonly rmrkNftId: u32;2779 readonly priorities: Vec<u32>;2780 } & Struct;2781 readonly isAddBasicResource: boolean;2782 readonly asAddBasicResource: {2783 readonly rmrkCollectionId: u32;2784 readonly nftId: u32;2785 readonly resource: RmrkTraitsResourceBasicResource;2786 } & Struct;2787 readonly isAddComposableResource: boolean;2788 readonly asAddComposableResource: {2789 readonly rmrkCollectionId: u32;2790 readonly nftId: u32;2791 readonly resource: RmrkTraitsResourceComposableResource;2792 } & Struct;2793 readonly isAddSlotResource: boolean;2794 readonly asAddSlotResource: {2795 readonly rmrkCollectionId: u32;2796 readonly nftId: u32;2797 readonly resource: RmrkTraitsResourceSlotResource;2798 } & Struct;2799 readonly isRemoveResource: boolean;2800 readonly asRemoveResource: {2801 readonly rmrkCollectionId: u32;2802 readonly nftId: u32;2803 readonly resourceId: u32;2804 } & Struct;2805 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2806 }28072808 /** @name RmrkTraitsResourceResourceTypes (296) */2809 interface RmrkTraitsResourceResourceTypes extends Enum {2810 readonly isBasic: boolean;2811 readonly asBasic: RmrkTraitsResourceBasicResource;2812 readonly isComposable: boolean;2813 readonly asComposable: RmrkTraitsResourceComposableResource;2814 readonly isSlot: boolean;2815 readonly asSlot: RmrkTraitsResourceSlotResource;2816 readonly type: 'Basic' | 'Composable' | 'Slot';2817 }28182819 /** @name RmrkTraitsResourceBasicResource (298) */2820 interface RmrkTraitsResourceBasicResource extends Struct {2821 readonly src: Option<Bytes>;2822 readonly metadata: Option<Bytes>;2823 readonly license: Option<Bytes>;2824 readonly thumb: Option<Bytes>;2825 }28262827 /** @name RmrkTraitsResourceComposableResource (300) */2828 interface RmrkTraitsResourceComposableResource extends Struct {2829 readonly parts: Vec<u32>;2830 readonly base: u32;2831 readonly src: Option<Bytes>;2832 readonly metadata: Option<Bytes>;2833 readonly license: Option<Bytes>;2834 readonly thumb: Option<Bytes>;2835 }28362837 /** @name RmrkTraitsResourceSlotResource (301) */2838 interface RmrkTraitsResourceSlotResource extends Struct {2839 readonly base: u32;2840 readonly src: Option<Bytes>;2841 readonly metadata: Option<Bytes>;2842 readonly slot: u32;2843 readonly license: Option<Bytes>;2844 readonly thumb: Option<Bytes>;2845 }28462847 /** @name PalletRmrkEquipCall (304) */2848 interface PalletRmrkEquipCall extends Enum {2849 readonly isCreateBase: boolean;2850 readonly asCreateBase: {2851 readonly baseType: Bytes;2852 readonly symbol: Bytes;2853 readonly parts: Vec<RmrkTraitsPartPartType>;2854 } & Struct;2855 readonly isThemeAdd: boolean;2856 readonly asThemeAdd: {2857 readonly baseId: u32;2858 readonly theme: RmrkTraitsTheme;2859 } & Struct;2860 readonly isEquippable: boolean;2861 readonly asEquippable: {2862 readonly baseId: u32;2863 readonly slotId: u32;2864 readonly equippables: RmrkTraitsPartEquippableList;2865 } & Struct;2866 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2867 }28682869 /** @name RmrkTraitsPartPartType (307) */2870 interface RmrkTraitsPartPartType extends Enum {2871 readonly isFixedPart: boolean;2872 readonly asFixedPart: RmrkTraitsPartFixedPart;2873 readonly isSlotPart: boolean;2874 readonly asSlotPart: RmrkTraitsPartSlotPart;2875 readonly type: 'FixedPart' | 'SlotPart';2876 }28772878 /** @name RmrkTraitsPartFixedPart (309) */2879 interface RmrkTraitsPartFixedPart extends Struct {2880 readonly id: u32;2881 readonly z: u32;2882 readonly src: Bytes;2883 }28842885 /** @name RmrkTraitsPartSlotPart (310) */2886 interface RmrkTraitsPartSlotPart extends Struct {2887 readonly id: u32;2888 readonly equippable: RmrkTraitsPartEquippableList;2889 readonly src: Bytes;2890 readonly z: u32;2891 }28922893 /** @name RmrkTraitsPartEquippableList (311) */2894 interface RmrkTraitsPartEquippableList extends Enum {2895 readonly isAll: boolean;2896 readonly isEmpty: boolean;2897 readonly isCustom: boolean;2898 readonly asCustom: Vec<u32>;2899 readonly type: 'All' | 'Empty' | 'Custom';2900 }29012902 /** @name RmrkTraitsTheme (313) */2903 interface RmrkTraitsTheme extends Struct {2904 readonly name: Bytes;2905 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2906 readonly inherit: bool;2907 }29082909 /** @name RmrkTraitsThemeThemeProperty (315) */2910 interface RmrkTraitsThemeThemeProperty extends Struct {2911 readonly key: Bytes;2912 readonly value: Bytes;2913 }29142915 /** @name PalletAppPromotionCall (317) */2916 interface PalletAppPromotionCall extends Enum {2917 readonly isSetAdminAddress: boolean;2918 readonly asSetAdminAddress: {2919 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2920 } & Struct;2921 readonly isStake: boolean;2922 readonly asStake: {2923 readonly amount: u128;2924 } & Struct;2925 readonly isUnstake: boolean;2926 readonly isSponsorCollection: boolean;2927 readonly asSponsorCollection: {2928 readonly collectionId: u32;2929 } & Struct;2930 readonly isStopSponsoringCollection: boolean;2931 readonly asStopSponsoringCollection: {2932 readonly collectionId: u32;2933 } & Struct;2934 readonly isSponsorContract: boolean;2935 readonly asSponsorContract: {2936 readonly contractId: H160;2937 } & Struct;2938 readonly isStopSponsoringContract: boolean;2939 readonly asStopSponsoringContract: {2940 readonly contractId: H160;2941 } & Struct;2942 readonly isPayoutStakers: boolean;2943 readonly asPayoutStakers: {2944 readonly stakersNumber: Option<u8>;2945 } & Struct;2946 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2947 }29482949 /** @name PalletForeignAssetsModuleCall (318) */2950 interface PalletForeignAssetsModuleCall extends Enum {2951 readonly isRegisterForeignAsset: boolean;2952 readonly asRegisterForeignAsset: {2953 readonly owner: AccountId32;2954 readonly location: XcmVersionedMultiLocation;2955 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2956 } & Struct;2957 readonly isUpdateForeignAsset: boolean;2958 readonly asUpdateForeignAsset: {2959 readonly foreignAssetId: u32;2960 readonly location: XcmVersionedMultiLocation;2961 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2962 } & Struct;2963 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2964 }29652966 /** @name PalletEvmCall (319) */2967 interface PalletEvmCall extends Enum {2968 readonly isWithdraw: boolean;2969 readonly asWithdraw: {2970 readonly address: H160;2971 readonly value: u128;2972 } & Struct;2973 readonly isCall: boolean;2974 readonly asCall: {2975 readonly source: H160;2976 readonly target: H160;2977 readonly input: Bytes;2978 readonly value: U256;2979 readonly gasLimit: u64;2980 readonly maxFeePerGas: U256;2981 readonly maxPriorityFeePerGas: Option<U256>;2982 readonly nonce: Option<U256>;2983 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2984 } & Struct;2985 readonly isCreate: boolean;2986 readonly asCreate: {2987 readonly source: H160;2988 readonly init: Bytes;2989 readonly value: U256;2990 readonly gasLimit: u64;2991 readonly maxFeePerGas: U256;2992 readonly maxPriorityFeePerGas: Option<U256>;2993 readonly nonce: Option<U256>;2994 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2995 } & Struct;2996 readonly isCreate2: boolean;2997 readonly asCreate2: {2998 readonly source: H160;2999 readonly init: Bytes;3000 readonly salt: H256;3001 readonly value: U256;3002 readonly gasLimit: u64;3003 readonly maxFeePerGas: U256;3004 readonly maxPriorityFeePerGas: Option<U256>;3005 readonly nonce: Option<U256>;3006 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3007 } & Struct;3008 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3009 }30103011 /** @name PalletEthereumCall (325) */3012 interface PalletEthereumCall extends Enum {3013 readonly isTransact: boolean;3014 readonly asTransact: {3015 readonly transaction: EthereumTransactionTransactionV2;3016 } & Struct;3017 readonly type: 'Transact';3018 }30193020 /** @name EthereumTransactionTransactionV2 (326) */3021 interface EthereumTransactionTransactionV2 extends Enum {3022 readonly isLegacy: boolean;3023 readonly asLegacy: EthereumTransactionLegacyTransaction;3024 readonly isEip2930: boolean;3025 readonly asEip2930: EthereumTransactionEip2930Transaction;3026 readonly isEip1559: boolean;3027 readonly asEip1559: EthereumTransactionEip1559Transaction;3028 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3029 }30303031 /** @name EthereumTransactionLegacyTransaction (327) */3032 interface EthereumTransactionLegacyTransaction extends Struct {3033 readonly nonce: U256;3034 readonly gasPrice: U256;3035 readonly gasLimit: U256;3036 readonly action: EthereumTransactionTransactionAction;3037 readonly value: U256;3038 readonly input: Bytes;3039 readonly signature: EthereumTransactionTransactionSignature;3040 }30413042 /** @name EthereumTransactionTransactionAction (328) */3043 interface EthereumTransactionTransactionAction extends Enum {3044 readonly isCall: boolean;3045 readonly asCall: H160;3046 readonly isCreate: boolean;3047 readonly type: 'Call' | 'Create';3048 }30493050 /** @name EthereumTransactionTransactionSignature (329) */3051 interface EthereumTransactionTransactionSignature extends Struct {3052 readonly v: u64;3053 readonly r: H256;3054 readonly s: H256;3055 }30563057 /** @name EthereumTransactionEip2930Transaction (331) */3058 interface EthereumTransactionEip2930Transaction extends Struct {3059 readonly chainId: u64;3060 readonly nonce: U256;3061 readonly gasPrice: U256;3062 readonly gasLimit: U256;3063 readonly action: EthereumTransactionTransactionAction;3064 readonly value: U256;3065 readonly input: Bytes;3066 readonly accessList: Vec<EthereumTransactionAccessListItem>;3067 readonly oddYParity: bool;3068 readonly r: H256;3069 readonly s: H256;3070 }30713072 /** @name EthereumTransactionAccessListItem (333) */3073 interface EthereumTransactionAccessListItem extends Struct {3074 readonly address: H160;3075 readonly storageKeys: Vec<H256>;3076 }30773078 /** @name EthereumTransactionEip1559Transaction (334) */3079 interface EthereumTransactionEip1559Transaction extends Struct {3080 readonly chainId: u64;3081 readonly nonce: U256;3082 readonly maxPriorityFeePerGas: U256;3083 readonly maxFeePerGas: U256;3084 readonly gasLimit: U256;3085 readonly action: EthereumTransactionTransactionAction;3086 readonly value: U256;3087 readonly input: Bytes;3088 readonly accessList: Vec<EthereumTransactionAccessListItem>;3089 readonly oddYParity: bool;3090 readonly r: H256;3091 readonly s: H256;3092 }30933094 /** @name PalletEvmMigrationCall (335) */3095 interface PalletEvmMigrationCall extends Enum {3096 readonly isBegin: boolean;3097 readonly asBegin: {3098 readonly address: H160;3099 } & Struct;3100 readonly isSetData: boolean;3101 readonly asSetData: {3102 readonly address: H160;3103 readonly data: Vec<ITuple<[H256, H256]>>;3104 } & Struct;3105 readonly isFinish: boolean;3106 readonly asFinish: {3107 readonly address: H160;3108 readonly code: Bytes;3109 } & Struct;3110 readonly isInsertEthLogs: boolean;3111 readonly asInsertEthLogs: {3112 readonly logs: Vec<EthereumLog>;3113 } & Struct;3114 readonly isInsertEvents: boolean;3115 readonly asInsertEvents: {3116 readonly events: Vec<Bytes>;3117 } & Struct;3118 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3119 }31203121 /** @name PalletMaintenanceCall (339) */3122 interface PalletMaintenanceCall extends Enum {3123 readonly isEnable: boolean;3124 readonly isDisable: boolean;3125 readonly type: 'Enable' | 'Disable';3126 }31273128 /** @name PalletTestUtilsCall (340) */3129 interface PalletTestUtilsCall extends Enum {3130 readonly isEnable: boolean;3131 readonly isSetTestValue: boolean;3132 readonly asSetTestValue: {3133 readonly value: u32;3134 } & Struct;3135 readonly isSetTestValueAndRollback: boolean;3136 readonly asSetTestValueAndRollback: {3137 readonly value: u32;3138 } & Struct;3139 readonly isIncTestValue: boolean;3140 readonly isJustTakeFee: boolean;3141 readonly isBatchAll: boolean;3142 readonly asBatchAll: {3143 readonly calls: Vec<Call>;3144 } & Struct;3145 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3146 }31473148 /** @name PalletSudoError (342) */3149 interface PalletSudoError extends Enum {3150 readonly isRequireSudo: boolean;3151 readonly type: 'RequireSudo';3152 }31533154 /** @name OrmlVestingModuleError (344) */3155 interface OrmlVestingModuleError extends Enum {3156 readonly isZeroVestingPeriod: boolean;3157 readonly isZeroVestingPeriodCount: boolean;3158 readonly isInsufficientBalanceToLock: boolean;3159 readonly isTooManyVestingSchedules: boolean;3160 readonly isAmountLow: boolean;3161 readonly isMaxVestingSchedulesExceeded: boolean;3162 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3163 }31643165 /** @name OrmlXtokensModuleError (345) */3166 interface OrmlXtokensModuleError extends Enum {3167 readonly isAssetHasNoReserve: boolean;3168 readonly isNotCrossChainTransfer: boolean;3169 readonly isInvalidDest: boolean;3170 readonly isNotCrossChainTransferableCurrency: boolean;3171 readonly isUnweighableMessage: boolean;3172 readonly isXcmExecutionFailed: boolean;3173 readonly isCannotReanchor: boolean;3174 readonly isInvalidAncestry: boolean;3175 readonly isInvalidAsset: boolean;3176 readonly isDestinationNotInvertible: boolean;3177 readonly isBadVersion: boolean;3178 readonly isDistinctReserveForAssetAndFee: boolean;3179 readonly isZeroFee: boolean;3180 readonly isZeroAmount: boolean;3181 readonly isTooManyAssetsBeingSent: boolean;3182 readonly isAssetIndexNonExistent: boolean;3183 readonly isFeeNotEnough: boolean;3184 readonly isNotSupportedMultiLocation: boolean;3185 readonly isMinXcmFeeNotDefined: boolean;3186 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3187 }31883189 /** @name OrmlTokensBalanceLock (348) */3190 interface OrmlTokensBalanceLock extends Struct {3191 readonly id: U8aFixed;3192 readonly amount: u128;3193 }31943195 /** @name OrmlTokensAccountData (350) */3196 interface OrmlTokensAccountData extends Struct {3197 readonly free: u128;3198 readonly reserved: u128;3199 readonly frozen: u128;3200 }32013202 /** @name OrmlTokensReserveData (352) */3203 interface OrmlTokensReserveData extends Struct {3204 readonly id: Null;3205 readonly amount: u128;3206 }32073208 /** @name OrmlTokensModuleError (354) */3209 interface OrmlTokensModuleError extends Enum {3210 readonly isBalanceTooLow: boolean;3211 readonly isAmountIntoBalanceFailed: boolean;3212 readonly isLiquidityRestrictions: boolean;3213 readonly isMaxLocksExceeded: boolean;3214 readonly isKeepAlive: boolean;3215 readonly isExistentialDeposit: boolean;3216 readonly isDeadAccount: boolean;3217 readonly isTooManyReserves: boolean;3218 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3219 }32203221 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3222 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3223 readonly sender: u32;3224 readonly state: CumulusPalletXcmpQueueInboundState;3225 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3226 }32273228 /** @name CumulusPalletXcmpQueueInboundState (357) */3229 interface CumulusPalletXcmpQueueInboundState extends Enum {3230 readonly isOk: boolean;3231 readonly isSuspended: boolean;3232 readonly type: 'Ok' | 'Suspended';3233 }32343235 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3236 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3237 readonly isConcatenatedVersionedXcm: boolean;3238 readonly isConcatenatedEncodedBlob: boolean;3239 readonly isSignals: boolean;3240 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3241 }32423243 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3244 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3245 readonly recipient: u32;3246 readonly state: CumulusPalletXcmpQueueOutboundState;3247 readonly signalsExist: bool;3248 readonly firstIndex: u16;3249 readonly lastIndex: u16;3250 }32513252 /** @name CumulusPalletXcmpQueueOutboundState (364) */3253 interface CumulusPalletXcmpQueueOutboundState extends Enum {3254 readonly isOk: boolean;3255 readonly isSuspended: boolean;3256 readonly type: 'Ok' | 'Suspended';3257 }32583259 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3260 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3261 readonly suspendThreshold: u32;3262 readonly dropThreshold: u32;3263 readonly resumeThreshold: u32;3264 readonly thresholdWeight: SpWeightsWeightV2Weight;3265 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3266 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3267 }32683269 /** @name CumulusPalletXcmpQueueError (368) */3270 interface CumulusPalletXcmpQueueError extends Enum {3271 readonly isFailedToSend: boolean;3272 readonly isBadXcmOrigin: boolean;3273 readonly isBadXcm: boolean;3274 readonly isBadOverweightIndex: boolean;3275 readonly isWeightOverLimit: boolean;3276 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3277 }32783279 /** @name PalletXcmError (369) */3280 interface PalletXcmError extends Enum {3281 readonly isUnreachable: boolean;3282 readonly isSendFailure: boolean;3283 readonly isFiltered: boolean;3284 readonly isUnweighableMessage: boolean;3285 readonly isDestinationNotInvertible: boolean;3286 readonly isEmpty: boolean;3287 readonly isCannotReanchor: boolean;3288 readonly isTooManyAssets: boolean;3289 readonly isInvalidOrigin: boolean;3290 readonly isBadVersion: boolean;3291 readonly isBadLocation: boolean;3292 readonly isNoSubscription: boolean;3293 readonly isAlreadySubscribed: boolean;3294 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3295 }32963297 /** @name CumulusPalletXcmError (370) */3298 type CumulusPalletXcmError = Null;32993300 /** @name CumulusPalletDmpQueueConfigData (371) */3301 interface CumulusPalletDmpQueueConfigData extends Struct {3302 readonly maxIndividual: SpWeightsWeightV2Weight;3303 }33043305 /** @name CumulusPalletDmpQueuePageIndexData (372) */3306 interface CumulusPalletDmpQueuePageIndexData extends Struct {3307 readonly beginUsed: u32;3308 readonly endUsed: u32;3309 readonly overweightCount: u64;3310 }33113312 /** @name CumulusPalletDmpQueueError (375) */3313 interface CumulusPalletDmpQueueError extends Enum {3314 readonly isUnknown: boolean;3315 readonly isOverLimit: boolean;3316 readonly type: 'Unknown' | 'OverLimit';3317 }33183319 /** @name PalletUniqueError (379) */3320 interface PalletUniqueError extends Enum {3321 readonly isCollectionDecimalPointLimitExceeded: boolean;3322 readonly isEmptyArgument: boolean;3323 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3324 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3325 }33263327 /** @name PalletConfigurationError (380) */3328 interface PalletConfigurationError extends Enum {3329 readonly isInconsistentConfiguration: boolean;3330 readonly type: 'InconsistentConfiguration';3331 }33323333 /** @name UpDataStructsCollection (381) */3334 interface UpDataStructsCollection extends Struct {3335 readonly owner: AccountId32;3336 readonly mode: UpDataStructsCollectionMode;3337 readonly name: Vec<u16>;3338 readonly description: Vec<u16>;3339 readonly tokenPrefix: Bytes;3340 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3341 readonly limits: UpDataStructsCollectionLimits;3342 readonly permissions: UpDataStructsCollectionPermissions;3343 readonly flags: U8aFixed;3344 }33453346 /** @name UpDataStructsSponsorshipStateAccountId32 (382) */3347 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3348 readonly isDisabled: boolean;3349 readonly isUnconfirmed: boolean;3350 readonly asUnconfirmed: AccountId32;3351 readonly isConfirmed: boolean;3352 readonly asConfirmed: AccountId32;3353 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3354 }33553356 /** @name UpDataStructsProperties (384) */3357 interface UpDataStructsProperties extends Struct {3358 readonly map: UpDataStructsPropertiesMapBoundedVec;3359 readonly consumedSpace: u32;3360 readonly spaceLimit: u32;3361 }33623363 /** @name UpDataStructsPropertiesMapBoundedVec (385) */3364 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}33653366 /** @name UpDataStructsPropertiesMapPropertyPermission (390) */3367 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}33683369 /** @name UpDataStructsCollectionStats (397) */3370 interface UpDataStructsCollectionStats extends Struct {3371 readonly created: u32;3372 readonly destroyed: u32;3373 readonly alive: u32;3374 }33753376 /** @name UpDataStructsTokenChild (398) */3377 interface UpDataStructsTokenChild extends Struct {3378 readonly token: u32;3379 readonly collection: u32;3380 }33813382 /** @name PhantomTypeUpDataStructs (399) */3383 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}33843385 /** @name UpDataStructsTokenData (401) */3386 interface UpDataStructsTokenData extends Struct {3387 readonly properties: Vec<UpDataStructsProperty>;3388 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3389 readonly pieces: u128;3390 }33913392 /** @name UpDataStructsRpcCollection (403) */3393 interface UpDataStructsRpcCollection extends Struct {3394 readonly owner: AccountId32;3395 readonly mode: UpDataStructsCollectionMode;3396 readonly name: Vec<u16>;3397 readonly description: Vec<u16>;3398 readonly tokenPrefix: Bytes;3399 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3400 readonly limits: UpDataStructsCollectionLimits;3401 readonly permissions: UpDataStructsCollectionPermissions;3402 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3403 readonly properties: Vec<UpDataStructsProperty>;3404 readonly readOnly: bool;3405 readonly flags: UpDataStructsRpcCollectionFlags;3406 }34073408 /** @name UpDataStructsRpcCollectionFlags (404) */3409 interface UpDataStructsRpcCollectionFlags extends Struct {3410 readonly foreign: bool;3411 readonly erc721metadata: bool;3412 }34133414 /** @name RmrkTraitsCollectionCollectionInfo (405) */3415 interface RmrkTraitsCollectionCollectionInfo extends Struct {3416 readonly issuer: AccountId32;3417 readonly metadata: Bytes;3418 readonly max: Option<u32>;3419 readonly symbol: Bytes;3420 readonly nftsCount: u32;3421 }34223423 /** @name RmrkTraitsNftNftInfo (406) */3424 interface RmrkTraitsNftNftInfo extends Struct {3425 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3426 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3427 readonly metadata: Bytes;3428 readonly equipped: bool;3429 readonly pending: bool;3430 }34313432 /** @name RmrkTraitsNftRoyaltyInfo (408) */3433 interface RmrkTraitsNftRoyaltyInfo extends Struct {3434 readonly recipient: AccountId32;3435 readonly amount: Permill;3436 }34373438 /** @name RmrkTraitsResourceResourceInfo (409) */3439 interface RmrkTraitsResourceResourceInfo extends Struct {3440 readonly id: u32;3441 readonly resource: RmrkTraitsResourceResourceTypes;3442 readonly pending: bool;3443 readonly pendingRemoval: bool;3444 }34453446 /** @name RmrkTraitsPropertyPropertyInfo (410) */3447 interface RmrkTraitsPropertyPropertyInfo extends Struct {3448 readonly key: Bytes;3449 readonly value: Bytes;3450 }34513452 /** @name RmrkTraitsBaseBaseInfo (411) */3453 interface RmrkTraitsBaseBaseInfo extends Struct {3454 readonly issuer: AccountId32;3455 readonly baseType: Bytes;3456 readonly symbol: Bytes;3457 }34583459 /** @name RmrkTraitsNftNftChild (412) */3460 interface RmrkTraitsNftNftChild extends Struct {3461 readonly collectionId: u32;3462 readonly nftId: u32;3463 }34643465 /** @name PalletCommonError (414) */3466 interface PalletCommonError extends Enum {3467 readonly isCollectionNotFound: boolean;3468 readonly isMustBeTokenOwner: boolean;3469 readonly isNoPermission: boolean;3470 readonly isCantDestroyNotEmptyCollection: boolean;3471 readonly isPublicMintingNotAllowed: boolean;3472 readonly isAddressNotInAllowlist: boolean;3473 readonly isCollectionNameLimitExceeded: boolean;3474 readonly isCollectionDescriptionLimitExceeded: boolean;3475 readonly isCollectionTokenPrefixLimitExceeded: boolean;3476 readonly isTotalCollectionsLimitExceeded: boolean;3477 readonly isCollectionAdminCountExceeded: boolean;3478 readonly isCollectionLimitBoundsExceeded: boolean;3479 readonly isOwnerPermissionsCantBeReverted: boolean;3480 readonly isTransferNotAllowed: boolean;3481 readonly isAccountTokenLimitExceeded: boolean;3482 readonly isCollectionTokenLimitExceeded: boolean;3483 readonly isMetadataFlagFrozen: boolean;3484 readonly isTokenNotFound: boolean;3485 readonly isTokenValueTooLow: boolean;3486 readonly isApprovedValueTooLow: boolean;3487 readonly isCantApproveMoreThanOwned: boolean;3488 readonly isAddressIsZero: boolean;3489 readonly isUnsupportedOperation: boolean;3490 readonly isNotSufficientFounds: boolean;3491 readonly isUserIsNotAllowedToNest: boolean;3492 readonly isSourceCollectionIsNotAllowedToNest: boolean;3493 readonly isCollectionFieldSizeExceeded: boolean;3494 readonly isNoSpaceForProperty: boolean;3495 readonly isPropertyLimitReached: boolean;3496 readonly isPropertyKeyIsTooLong: boolean;3497 readonly isInvalidCharacterInPropertyKey: boolean;3498 readonly isEmptyPropertyKey: boolean;3499 readonly isCollectionIsExternal: boolean;3500 readonly isCollectionIsInternal: boolean;3501 readonly isConfirmSponsorshipFail: boolean;3502 readonly isUserIsNotCollectionAdmin: boolean;3503 readonly type: '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';3504 }35053506 /** @name PalletFungibleError (416) */3507 interface PalletFungibleError extends Enum {3508 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3509 readonly isFungibleItemsHaveNoId: boolean;3510 readonly isFungibleItemsDontHaveData: boolean;3511 readonly isFungibleDisallowsNesting: boolean;3512 readonly isSettingPropertiesNotAllowed: boolean;3513 readonly isSettingAllowanceForAllNotAllowed: boolean;3514 readonly isFungibleTokensAreAlwaysValid: boolean;3515 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3516 }35173518 /** @name PalletRefungibleItemData (417) */3519 interface PalletRefungibleItemData extends Struct {3520 readonly constData: Bytes;3521 }35223523 /** @name PalletRefungibleError (422) */3524 interface PalletRefungibleError extends Enum {3525 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3526 readonly isWrongRefungiblePieces: boolean;3527 readonly isRepartitionWhileNotOwningAllPieces: boolean;3528 readonly isRefungibleDisallowsNesting: boolean;3529 readonly isSettingPropertiesNotAllowed: boolean;3530 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3531 }35323533 /** @name PalletNonfungibleItemData (423) */3534 interface PalletNonfungibleItemData extends Struct {3535 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3536 }35373538 /** @name UpDataStructsPropertyScope (425) */3539 interface UpDataStructsPropertyScope extends Enum {3540 readonly isNone: boolean;3541 readonly isRmrk: boolean;3542 readonly type: 'None' | 'Rmrk';3543 }35443545 /** @name PalletNonfungibleError (427) */3546 interface PalletNonfungibleError extends Enum {3547 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3548 readonly isNonfungibleItemsHaveNoAmount: boolean;3549 readonly isCantBurnNftWithChildren: boolean;3550 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3551 }35523553 /** @name PalletStructureError (428) */3554 interface PalletStructureError extends Enum {3555 readonly isOuroborosDetected: boolean;3556 readonly isDepthLimit: boolean;3557 readonly isBreadthLimit: boolean;3558 readonly isTokenNotFound: boolean;3559 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3560 }35613562 /** @name PalletRmrkCoreError (429) */3563 interface PalletRmrkCoreError extends Enum {3564 readonly isCorruptedCollectionType: boolean;3565 readonly isRmrkPropertyKeyIsTooLong: boolean;3566 readonly isRmrkPropertyValueIsTooLong: boolean;3567 readonly isRmrkPropertyIsNotFound: boolean;3568 readonly isUnableToDecodeRmrkData: boolean;3569 readonly isCollectionNotEmpty: boolean;3570 readonly isNoAvailableCollectionId: boolean;3571 readonly isNoAvailableNftId: boolean;3572 readonly isCollectionUnknown: boolean;3573 readonly isNoPermission: boolean;3574 readonly isNonTransferable: boolean;3575 readonly isCollectionFullOrLocked: boolean;3576 readonly isResourceDoesntExist: boolean;3577 readonly isCannotSendToDescendentOrSelf: boolean;3578 readonly isCannotAcceptNonOwnedNft: boolean;3579 readonly isCannotRejectNonOwnedNft: boolean;3580 readonly isCannotRejectNonPendingNft: boolean;3581 readonly isResourceNotPending: boolean;3582 readonly isNoAvailableResourceId: boolean;3583 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3584 }35853586 /** @name PalletRmrkEquipError (431) */3587 interface PalletRmrkEquipError extends Enum {3588 readonly isPermissionError: boolean;3589 readonly isNoAvailableBaseId: boolean;3590 readonly isNoAvailablePartId: boolean;3591 readonly isBaseDoesntExist: boolean;3592 readonly isNeedsDefaultThemeFirst: boolean;3593 readonly isPartDoesntExist: boolean;3594 readonly isNoEquippableOnFixedPart: boolean;3595 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3596 }35973598 /** @name PalletAppPromotionError (437) */3599 interface PalletAppPromotionError extends Enum {3600 readonly isAdminNotSet: boolean;3601 readonly isNoPermission: boolean;3602 readonly isNotSufficientFunds: boolean;3603 readonly isPendingForBlockOverflow: boolean;3604 readonly isSponsorNotSet: boolean;3605 readonly isIncorrectLockedBalanceOperation: boolean;3606 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3607 }36083609 /** @name PalletForeignAssetsModuleError (438) */3610 interface PalletForeignAssetsModuleError extends Enum {3611 readonly isBadLocation: boolean;3612 readonly isMultiLocationExisted: boolean;3613 readonly isAssetIdNotExists: boolean;3614 readonly isAssetIdExisted: boolean;3615 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3616 }36173618 /** @name PalletEvmError (440) */3619 interface PalletEvmError extends Enum {3620 readonly isBalanceLow: boolean;3621 readonly isFeeOverflow: boolean;3622 readonly isPaymentOverflow: boolean;3623 readonly isWithdrawFailed: boolean;3624 readonly isGasPriceTooLow: boolean;3625 readonly isInvalidNonce: boolean;3626 readonly isGasLimitTooLow: boolean;3627 readonly isGasLimitTooHigh: boolean;3628 readonly isUndefined: boolean;3629 readonly isReentrancy: boolean;3630 readonly isTransactionMustComeFromEOA: boolean;3631 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3632 }36333634 /** @name FpRpcTransactionStatus (443) */3635 interface FpRpcTransactionStatus extends Struct {3636 readonly transactionHash: H256;3637 readonly transactionIndex: u32;3638 readonly from: H160;3639 readonly to: Option<H160>;3640 readonly contractAddress: Option<H160>;3641 readonly logs: Vec<EthereumLog>;3642 readonly logsBloom: EthbloomBloom;3643 }36443645 /** @name EthbloomBloom (445) */3646 interface EthbloomBloom extends U8aFixed {}36473648 /** @name EthereumReceiptReceiptV3 (447) */3649 interface EthereumReceiptReceiptV3 extends Enum {3650 readonly isLegacy: boolean;3651 readonly asLegacy: EthereumReceiptEip658ReceiptData;3652 readonly isEip2930: boolean;3653 readonly asEip2930: EthereumReceiptEip658ReceiptData;3654 readonly isEip1559: boolean;3655 readonly asEip1559: EthereumReceiptEip658ReceiptData;3656 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3657 }36583659 /** @name EthereumReceiptEip658ReceiptData (448) */3660 interface EthereumReceiptEip658ReceiptData extends Struct {3661 readonly statusCode: u8;3662 readonly usedGas: U256;3663 readonly logsBloom: EthbloomBloom;3664 readonly logs: Vec<EthereumLog>;3665 }36663667 /** @name EthereumBlock (449) */3668 interface EthereumBlock extends Struct {3669 readonly header: EthereumHeader;3670 readonly transactions: Vec<EthereumTransactionTransactionV2>;3671 readonly ommers: Vec<EthereumHeader>;3672 }36733674 /** @name EthereumHeader (450) */3675 interface EthereumHeader extends Struct {3676 readonly parentHash: H256;3677 readonly ommersHash: H256;3678 readonly beneficiary: H160;3679 readonly stateRoot: H256;3680 readonly transactionsRoot: H256;3681 readonly receiptsRoot: H256;3682 readonly logsBloom: EthbloomBloom;3683 readonly difficulty: U256;3684 readonly number: U256;3685 readonly gasLimit: U256;3686 readonly gasUsed: U256;3687 readonly timestamp: u64;3688 readonly extraData: Bytes;3689 readonly mixHash: H256;3690 readonly nonce: EthereumTypesHashH64;3691 }36923693 /** @name EthereumTypesHashH64 (451) */3694 interface EthereumTypesHashH64 extends U8aFixed {}36953696 /** @name PalletEthereumError (456) */3697 interface PalletEthereumError extends Enum {3698 readonly isInvalidSignature: boolean;3699 readonly isPreLogExists: boolean;3700 readonly type: 'InvalidSignature' | 'PreLogExists';3701 }37023703 /** @name PalletEvmCoderSubstrateError (457) */3704 interface PalletEvmCoderSubstrateError extends Enum {3705 readonly isOutOfGas: boolean;3706 readonly isOutOfFund: boolean;3707 readonly type: 'OutOfGas' | 'OutOfFund';3708 }37093710 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (458) */3711 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3712 readonly isDisabled: boolean;3713 readonly isUnconfirmed: boolean;3714 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3715 readonly isConfirmed: boolean;3716 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3717 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3718 }37193720 /** @name PalletEvmContractHelpersSponsoringModeT (459) */3721 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3722 readonly isDisabled: boolean;3723 readonly isAllowlisted: boolean;3724 readonly isGenerous: boolean;3725 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3726 }37273728 /** @name PalletEvmContractHelpersError (465) */3729 interface PalletEvmContractHelpersError extends Enum {3730 readonly isNoPermission: boolean;3731 readonly isNoPendingSponsor: boolean;3732 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3733 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3734 }37353736 /** @name PalletEvmMigrationError (466) */3737 interface PalletEvmMigrationError extends Enum {3738 readonly isAccountNotEmpty: boolean;3739 readonly isAccountIsNotMigrating: boolean;3740 readonly isBadEvent: boolean;3741 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3742 }37433744 /** @name PalletMaintenanceError (467) */3745 type PalletMaintenanceError = Null;37463747 /** @name PalletTestUtilsError (468) */3748 interface PalletTestUtilsError extends Enum {3749 readonly isTestPalletDisabled: boolean;3750 readonly isTriggerRollback: boolean;3751 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3752 }37533754 /** @name SpRuntimeMultiSignature (470) */3755 interface SpRuntimeMultiSignature extends Enum {3756 readonly isEd25519: boolean;3757 readonly asEd25519: SpCoreEd25519Signature;3758 readonly isSr25519: boolean;3759 readonly asSr25519: SpCoreSr25519Signature;3760 readonly isEcdsa: boolean;3761 readonly asEcdsa: SpCoreEcdsaSignature;3762 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3763 }37643765 /** @name SpCoreEd25519Signature (471) */3766 interface SpCoreEd25519Signature extends U8aFixed {}37673768 /** @name SpCoreSr25519Signature (473) */3769 interface SpCoreSr25519Signature extends U8aFixed {}37703771 /** @name SpCoreEcdsaSignature (474) */3772 interface SpCoreEcdsaSignature extends U8aFixed {}37733774 /** @name FrameSystemExtensionsCheckSpecVersion (477) */3775 type FrameSystemExtensionsCheckSpecVersion = Null;37763777 /** @name FrameSystemExtensionsCheckTxVersion (478) */3778 type FrameSystemExtensionsCheckTxVersion = Null;37793780 /** @name FrameSystemExtensionsCheckGenesis (479) */3781 type FrameSystemExtensionsCheckGenesis = Null;37823783 /** @name FrameSystemExtensionsCheckNonce (482) */3784 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}37853786 /** @name FrameSystemExtensionsCheckWeight (483) */3787 type FrameSystemExtensionsCheckWeight = Null;37883789 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (484) */3790 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;37913792 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (485) */3793 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}37943795 /** @name OpalRuntimeRuntime (486) */3796 type OpalRuntimeRuntime = Null;37973798 /** @name PalletEthereumFakeTransactionFinalizer (487) */3799 type PalletEthereumFakeTransactionFinalizer = Null;38003801} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletCommonEvent (89) */1113 interface PalletCommonEvent extends Enum {1114 readonly isCollectionCreated: boolean;1115 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1116 readonly isCollectionDestroyed: boolean;1117 readonly asCollectionDestroyed: u32;1118 readonly isItemCreated: boolean;1119 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1120 readonly isItemDestroyed: boolean;1121 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1122 readonly isTransfer: boolean;1123 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1124 readonly isApproved: boolean;1125 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1126 readonly isApprovedForAll: boolean;1127 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1128 readonly isCollectionPropertySet: boolean;1129 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1130 readonly isCollectionPropertyDeleted: boolean;1131 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1132 readonly isTokenPropertySet: boolean;1133 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1134 readonly isTokenPropertyDeleted: boolean;1135 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1136 readonly isPropertyPermissionSet: boolean;1137 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1138 readonly isAllowListAddressAdded: boolean;1139 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1140 readonly isAllowListAddressRemoved: boolean;1141 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1142 readonly isCollectionAdminAdded: boolean;1143 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1144 readonly isCollectionAdminRemoved: boolean;1145 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1146 readonly isCollectionLimitSet: boolean;1147 readonly asCollectionLimitSet: u32;1148 readonly isCollectionOwnerChanged: boolean;1149 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1150 readonly isCollectionPermissionSet: boolean;1151 readonly asCollectionPermissionSet: u32;1152 readonly isCollectionSponsorSet: boolean;1153 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1154 readonly isSponsorshipConfirmed: boolean;1155 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1156 readonly isCollectionSponsorRemoved: boolean;1157 readonly asCollectionSponsorRemoved: u32;1158 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1159 }11601161 /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */1162 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1163 readonly isSubstrate: boolean;1164 readonly asSubstrate: AccountId32;1165 readonly isEthereum: boolean;1166 readonly asEthereum: H160;1167 readonly type: 'Substrate' | 'Ethereum';1168 }11691170 /** @name PalletStructureEvent (96) */1171 interface PalletStructureEvent extends Enum {1172 readonly isExecuted: boolean;1173 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1174 readonly type: 'Executed';1175 }11761177 /** @name PalletRmrkCoreEvent (97) */1178 interface PalletRmrkCoreEvent extends Enum {1179 readonly isCollectionCreated: boolean;1180 readonly asCollectionCreated: {1181 readonly issuer: AccountId32;1182 readonly collectionId: u32;1183 } & Struct;1184 readonly isCollectionDestroyed: boolean;1185 readonly asCollectionDestroyed: {1186 readonly issuer: AccountId32;1187 readonly collectionId: u32;1188 } & Struct;1189 readonly isIssuerChanged: boolean;1190 readonly asIssuerChanged: {1191 readonly oldIssuer: AccountId32;1192 readonly newIssuer: AccountId32;1193 readonly collectionId: u32;1194 } & Struct;1195 readonly isCollectionLocked: boolean;1196 readonly asCollectionLocked: {1197 readonly issuer: AccountId32;1198 readonly collectionId: u32;1199 } & Struct;1200 readonly isNftMinted: boolean;1201 readonly asNftMinted: {1202 readonly owner: AccountId32;1203 readonly collectionId: u32;1204 readonly nftId: u32;1205 } & Struct;1206 readonly isNftBurned: boolean;1207 readonly asNftBurned: {1208 readonly owner: AccountId32;1209 readonly nftId: u32;1210 } & Struct;1211 readonly isNftSent: boolean;1212 readonly asNftSent: {1213 readonly sender: AccountId32;1214 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1215 readonly collectionId: u32;1216 readonly nftId: u32;1217 readonly approvalRequired: bool;1218 } & Struct;1219 readonly isNftAccepted: boolean;1220 readonly asNftAccepted: {1221 readonly sender: AccountId32;1222 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1223 readonly collectionId: u32;1224 readonly nftId: u32;1225 } & Struct;1226 readonly isNftRejected: boolean;1227 readonly asNftRejected: {1228 readonly sender: AccountId32;1229 readonly collectionId: u32;1230 readonly nftId: u32;1231 } & Struct;1232 readonly isPropertySet: boolean;1233 readonly asPropertySet: {1234 readonly collectionId: u32;1235 readonly maybeNftId: Option<u32>;1236 readonly key: Bytes;1237 readonly value: Bytes;1238 } & Struct;1239 readonly isResourceAdded: boolean;1240 readonly asResourceAdded: {1241 readonly nftId: u32;1242 readonly resourceId: u32;1243 } & Struct;1244 readonly isResourceRemoval: boolean;1245 readonly asResourceRemoval: {1246 readonly nftId: u32;1247 readonly resourceId: u32;1248 } & Struct;1249 readonly isResourceAccepted: boolean;1250 readonly asResourceAccepted: {1251 readonly nftId: u32;1252 readonly resourceId: u32;1253 } & Struct;1254 readonly isResourceRemovalAccepted: boolean;1255 readonly asResourceRemovalAccepted: {1256 readonly nftId: u32;1257 readonly resourceId: u32;1258 } & Struct;1259 readonly isPrioritySet: boolean;1260 readonly asPrioritySet: {1261 readonly collectionId: u32;1262 readonly nftId: u32;1263 } & Struct;1264 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1265 }12661267 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1268 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1269 readonly isAccountId: boolean;1270 readonly asAccountId: AccountId32;1271 readonly isCollectionAndNftTuple: boolean;1272 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1273 readonly type: 'AccountId' | 'CollectionAndNftTuple';1274 }12751276 /** @name PalletRmrkEquipEvent (102) */1277 interface PalletRmrkEquipEvent extends Enum {1278 readonly isBaseCreated: boolean;1279 readonly asBaseCreated: {1280 readonly issuer: AccountId32;1281 readonly baseId: u32;1282 } & Struct;1283 readonly isEquippablesUpdated: boolean;1284 readonly asEquippablesUpdated: {1285 readonly baseId: u32;1286 readonly slotId: u32;1287 } & Struct;1288 readonly type: 'BaseCreated' | 'EquippablesUpdated';1289 }12901291 /** @name PalletAppPromotionEvent (103) */1292 interface PalletAppPromotionEvent extends Enum {1293 readonly isStakingRecalculation: boolean;1294 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1295 readonly isStake: boolean;1296 readonly asStake: ITuple<[AccountId32, u128]>;1297 readonly isUnstake: boolean;1298 readonly asUnstake: ITuple<[AccountId32, u128]>;1299 readonly isSetAdmin: boolean;1300 readonly asSetAdmin: AccountId32;1301 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1302 }13031304 /** @name PalletForeignAssetsModuleEvent (104) */1305 interface PalletForeignAssetsModuleEvent extends Enum {1306 readonly isForeignAssetRegistered: boolean;1307 readonly asForeignAssetRegistered: {1308 readonly assetId: u32;1309 readonly assetAddress: XcmV1MultiLocation;1310 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1311 } & Struct;1312 readonly isForeignAssetUpdated: boolean;1313 readonly asForeignAssetUpdated: {1314 readonly assetId: u32;1315 readonly assetAddress: XcmV1MultiLocation;1316 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1317 } & Struct;1318 readonly isAssetRegistered: boolean;1319 readonly asAssetRegistered: {1320 readonly assetId: PalletForeignAssetsAssetIds;1321 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1322 } & Struct;1323 readonly isAssetUpdated: boolean;1324 readonly asAssetUpdated: {1325 readonly assetId: PalletForeignAssetsAssetIds;1326 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1327 } & Struct;1328 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1329 }13301331 /** @name PalletForeignAssetsModuleAssetMetadata (105) */1332 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1333 readonly name: Bytes;1334 readonly symbol: Bytes;1335 readonly decimals: u8;1336 readonly minimalBalance: u128;1337 }13381339 /** @name PalletEvmEvent (106) */1340 interface PalletEvmEvent extends Enum {1341 readonly isLog: boolean;1342 readonly asLog: {1343 readonly log: EthereumLog;1344 } & Struct;1345 readonly isCreated: boolean;1346 readonly asCreated: {1347 readonly address: H160;1348 } & Struct;1349 readonly isCreatedFailed: boolean;1350 readonly asCreatedFailed: {1351 readonly address: H160;1352 } & Struct;1353 readonly isExecuted: boolean;1354 readonly asExecuted: {1355 readonly address: H160;1356 } & Struct;1357 readonly isExecutedFailed: boolean;1358 readonly asExecutedFailed: {1359 readonly address: H160;1360 } & Struct;1361 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1362 }13631364 /** @name EthereumLog (107) */1365 interface EthereumLog extends Struct {1366 readonly address: H160;1367 readonly topics: Vec<H256>;1368 readonly data: Bytes;1369 }13701371 /** @name PalletEthereumEvent (109) */1372 interface PalletEthereumEvent extends Enum {1373 readonly isExecuted: boolean;1374 readonly asExecuted: {1375 readonly from: H160;1376 readonly to: H160;1377 readonly transactionHash: H256;1378 readonly exitReason: EvmCoreErrorExitReason;1379 } & Struct;1380 readonly type: 'Executed';1381 }13821383 /** @name EvmCoreErrorExitReason (110) */1384 interface EvmCoreErrorExitReason extends Enum {1385 readonly isSucceed: boolean;1386 readonly asSucceed: EvmCoreErrorExitSucceed;1387 readonly isError: boolean;1388 readonly asError: EvmCoreErrorExitError;1389 readonly isRevert: boolean;1390 readonly asRevert: EvmCoreErrorExitRevert;1391 readonly isFatal: boolean;1392 readonly asFatal: EvmCoreErrorExitFatal;1393 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1394 }13951396 /** @name EvmCoreErrorExitSucceed (111) */1397 interface EvmCoreErrorExitSucceed extends Enum {1398 readonly isStopped: boolean;1399 readonly isReturned: boolean;1400 readonly isSuicided: boolean;1401 readonly type: 'Stopped' | 'Returned' | 'Suicided';1402 }14031404 /** @name EvmCoreErrorExitError (112) */1405 interface EvmCoreErrorExitError extends Enum {1406 readonly isStackUnderflow: boolean;1407 readonly isStackOverflow: boolean;1408 readonly isInvalidJump: boolean;1409 readonly isInvalidRange: boolean;1410 readonly isDesignatedInvalid: boolean;1411 readonly isCallTooDeep: boolean;1412 readonly isCreateCollision: boolean;1413 readonly isCreateContractLimit: boolean;1414 readonly isOutOfOffset: boolean;1415 readonly isOutOfGas: boolean;1416 readonly isOutOfFund: boolean;1417 readonly isPcUnderflow: boolean;1418 readonly isCreateEmpty: boolean;1419 readonly isOther: boolean;1420 readonly asOther: Text;1421 readonly isInvalidCode: boolean;1422 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1423 }14241425 /** @name EvmCoreErrorExitRevert (115) */1426 interface EvmCoreErrorExitRevert extends Enum {1427 readonly isReverted: boolean;1428 readonly type: 'Reverted';1429 }14301431 /** @name EvmCoreErrorExitFatal (116) */1432 interface EvmCoreErrorExitFatal extends Enum {1433 readonly isNotSupported: boolean;1434 readonly isUnhandledInterrupt: boolean;1435 readonly isCallErrorAsFatal: boolean;1436 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1437 readonly isOther: boolean;1438 readonly asOther: Text;1439 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1440 }14411442 /** @name PalletEvmContractHelpersEvent (117) */1443 interface PalletEvmContractHelpersEvent extends Enum {1444 readonly isContractSponsorSet: boolean;1445 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1446 readonly isContractSponsorshipConfirmed: boolean;1447 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1448 readonly isContractSponsorRemoved: boolean;1449 readonly asContractSponsorRemoved: H160;1450 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1451 }14521453 /** @name PalletEvmMigrationEvent (118) */1454 interface PalletEvmMigrationEvent extends Enum {1455 readonly isTestEvent: boolean;1456 readonly type: 'TestEvent';1457 }14581459 /** @name PalletMaintenanceEvent (119) */1460 interface PalletMaintenanceEvent extends Enum {1461 readonly isMaintenanceEnabled: boolean;1462 readonly isMaintenanceDisabled: boolean;1463 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1464 }14651466 /** @name PalletTestUtilsEvent (120) */1467 interface PalletTestUtilsEvent extends Enum {1468 readonly isValueIsSet: boolean;1469 readonly isShouldRollback: boolean;1470 readonly isBatchCompleted: boolean;1471 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1472 }14731474 /** @name FrameSystemPhase (121) */1475 interface FrameSystemPhase extends Enum {1476 readonly isApplyExtrinsic: boolean;1477 readonly asApplyExtrinsic: u32;1478 readonly isFinalization: boolean;1479 readonly isInitialization: boolean;1480 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1481 }14821483 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1484 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1485 readonly specVersion: Compact<u32>;1486 readonly specName: Text;1487 }14881489 /** @name FrameSystemCall (125) */1490 interface FrameSystemCall extends Enum {1491 readonly isRemark: boolean;1492 readonly asRemark: {1493 readonly remark: Bytes;1494 } & Struct;1495 readonly isSetHeapPages: boolean;1496 readonly asSetHeapPages: {1497 readonly pages: u64;1498 } & Struct;1499 readonly isSetCode: boolean;1500 readonly asSetCode: {1501 readonly code: Bytes;1502 } & Struct;1503 readonly isSetCodeWithoutChecks: boolean;1504 readonly asSetCodeWithoutChecks: {1505 readonly code: Bytes;1506 } & Struct;1507 readonly isSetStorage: boolean;1508 readonly asSetStorage: {1509 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1510 } & Struct;1511 readonly isKillStorage: boolean;1512 readonly asKillStorage: {1513 readonly keys_: Vec<Bytes>;1514 } & Struct;1515 readonly isKillPrefix: boolean;1516 readonly asKillPrefix: {1517 readonly prefix: Bytes;1518 readonly subkeys: u32;1519 } & Struct;1520 readonly isRemarkWithEvent: boolean;1521 readonly asRemarkWithEvent: {1522 readonly remark: Bytes;1523 } & Struct;1524 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1525 }15261527 /** @name FrameSystemLimitsBlockWeights (129) */1528 interface FrameSystemLimitsBlockWeights extends Struct {1529 readonly baseBlock: SpWeightsWeightV2Weight;1530 readonly maxBlock: SpWeightsWeightV2Weight;1531 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1532 }15331534 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (130) */1535 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1536 readonly normal: FrameSystemLimitsWeightsPerClass;1537 readonly operational: FrameSystemLimitsWeightsPerClass;1538 readonly mandatory: FrameSystemLimitsWeightsPerClass;1539 }15401541 /** @name FrameSystemLimitsWeightsPerClass (131) */1542 interface FrameSystemLimitsWeightsPerClass extends Struct {1543 readonly baseExtrinsic: SpWeightsWeightV2Weight;1544 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1545 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1546 readonly reserved: Option<SpWeightsWeightV2Weight>;1547 }15481549 /** @name FrameSystemLimitsBlockLength (133) */1550 interface FrameSystemLimitsBlockLength extends Struct {1551 readonly max: FrameSupportDispatchPerDispatchClassU32;1552 }15531554 /** @name FrameSupportDispatchPerDispatchClassU32 (134) */1555 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1556 readonly normal: u32;1557 readonly operational: u32;1558 readonly mandatory: u32;1559 }15601561 /** @name SpWeightsRuntimeDbWeight (135) */1562 interface SpWeightsRuntimeDbWeight extends Struct {1563 readonly read: u64;1564 readonly write: u64;1565 }15661567 /** @name SpVersionRuntimeVersion (136) */1568 interface SpVersionRuntimeVersion extends Struct {1569 readonly specName: Text;1570 readonly implName: Text;1571 readonly authoringVersion: u32;1572 readonly specVersion: u32;1573 readonly implVersion: u32;1574 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1575 readonly transactionVersion: u32;1576 readonly stateVersion: u8;1577 }15781579 /** @name FrameSystemError (141) */1580 interface FrameSystemError extends Enum {1581 readonly isInvalidSpecName: boolean;1582 readonly isSpecVersionNeedsToIncrease: boolean;1583 readonly isFailedToExtractRuntimeVersion: boolean;1584 readonly isNonDefaultComposite: boolean;1585 readonly isNonZeroRefCount: boolean;1586 readonly isCallFiltered: boolean;1587 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1588 }15891590 /** @name PolkadotPrimitivesV2PersistedValidationData (142) */1591 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1592 readonly parentHead: Bytes;1593 readonly relayParentNumber: u32;1594 readonly relayParentStorageRoot: H256;1595 readonly maxPovSize: u32;1596 }15971598 /** @name PolkadotPrimitivesV2UpgradeRestriction (145) */1599 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1600 readonly isPresent: boolean;1601 readonly type: 'Present';1602 }16031604 /** @name SpTrieStorageProof (146) */1605 interface SpTrieStorageProof extends Struct {1606 readonly trieNodes: BTreeSet<Bytes>;1607 }16081609 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (148) */1610 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1611 readonly dmqMqcHead: H256;1612 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1613 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1614 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1615 }16161617 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (151) */1618 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1619 readonly maxCapacity: u32;1620 readonly maxTotalSize: u32;1621 readonly maxMessageSize: u32;1622 readonly msgCount: u32;1623 readonly totalSize: u32;1624 readonly mqcHead: Option<H256>;1625 }16261627 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (152) */1628 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1629 readonly maxCodeSize: u32;1630 readonly maxHeadDataSize: u32;1631 readonly maxUpwardQueueCount: u32;1632 readonly maxUpwardQueueSize: u32;1633 readonly maxUpwardMessageSize: u32;1634 readonly maxUpwardMessageNumPerCandidate: u32;1635 readonly hrmpMaxMessageNumPerCandidate: u32;1636 readonly validationUpgradeCooldown: u32;1637 readonly validationUpgradeDelay: u32;1638 }16391640 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (158) */1641 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1642 readonly recipient: u32;1643 readonly data: Bytes;1644 }16451646 /** @name CumulusPalletParachainSystemCall (159) */1647 interface CumulusPalletParachainSystemCall extends Enum {1648 readonly isSetValidationData: boolean;1649 readonly asSetValidationData: {1650 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1651 } & Struct;1652 readonly isSudoSendUpwardMessage: boolean;1653 readonly asSudoSendUpwardMessage: {1654 readonly message: Bytes;1655 } & Struct;1656 readonly isAuthorizeUpgrade: boolean;1657 readonly asAuthorizeUpgrade: {1658 readonly codeHash: H256;1659 } & Struct;1660 readonly isEnactAuthorizedUpgrade: boolean;1661 readonly asEnactAuthorizedUpgrade: {1662 readonly code: Bytes;1663 } & Struct;1664 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1665 }16661667 /** @name CumulusPrimitivesParachainInherentParachainInherentData (160) */1668 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1669 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1670 readonly relayChainState: SpTrieStorageProof;1671 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1672 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1673 }16741675 /** @name PolkadotCorePrimitivesInboundDownwardMessage (162) */1676 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1677 readonly sentAt: u32;1678 readonly msg: Bytes;1679 }16801681 /** @name PolkadotCorePrimitivesInboundHrmpMessage (165) */1682 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1683 readonly sentAt: u32;1684 readonly data: Bytes;1685 }16861687 /** @name CumulusPalletParachainSystemError (168) */1688 interface CumulusPalletParachainSystemError extends Enum {1689 readonly isOverlappingUpgrades: boolean;1690 readonly isProhibitedByPolkadot: boolean;1691 readonly isTooBig: boolean;1692 readonly isValidationDataNotAvailable: boolean;1693 readonly isHostConfigurationNotAvailable: boolean;1694 readonly isNotScheduled: boolean;1695 readonly isNothingAuthorized: boolean;1696 readonly isUnauthorized: boolean;1697 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1698 }16991700 /** @name PalletBalancesBalanceLock (170) */1701 interface PalletBalancesBalanceLock extends Struct {1702 readonly id: U8aFixed;1703 readonly amount: u128;1704 readonly reasons: PalletBalancesReasons;1705 }17061707 /** @name PalletBalancesReasons (171) */1708 interface PalletBalancesReasons extends Enum {1709 readonly isFee: boolean;1710 readonly isMisc: boolean;1711 readonly isAll: boolean;1712 readonly type: 'Fee' | 'Misc' | 'All';1713 }17141715 /** @name PalletBalancesReserveData (174) */1716 interface PalletBalancesReserveData extends Struct {1717 readonly id: U8aFixed;1718 readonly amount: u128;1719 }17201721 /** @name PalletBalancesCall (176) */1722 interface PalletBalancesCall extends Enum {1723 readonly isTransfer: boolean;1724 readonly asTransfer: {1725 readonly dest: MultiAddress;1726 readonly value: Compact<u128>;1727 } & Struct;1728 readonly isSetBalance: boolean;1729 readonly asSetBalance: {1730 readonly who: MultiAddress;1731 readonly newFree: Compact<u128>;1732 readonly newReserved: Compact<u128>;1733 } & Struct;1734 readonly isForceTransfer: boolean;1735 readonly asForceTransfer: {1736 readonly source: MultiAddress;1737 readonly dest: MultiAddress;1738 readonly value: Compact<u128>;1739 } & Struct;1740 readonly isTransferKeepAlive: boolean;1741 readonly asTransferKeepAlive: {1742 readonly dest: MultiAddress;1743 readonly value: Compact<u128>;1744 } & Struct;1745 readonly isTransferAll: boolean;1746 readonly asTransferAll: {1747 readonly dest: MultiAddress;1748 readonly keepAlive: bool;1749 } & Struct;1750 readonly isForceUnreserve: boolean;1751 readonly asForceUnreserve: {1752 readonly who: MultiAddress;1753 readonly amount: u128;1754 } & Struct;1755 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1756 }17571758 /** @name PalletBalancesError (179) */1759 interface PalletBalancesError extends Enum {1760 readonly isVestingBalance: boolean;1761 readonly isLiquidityRestrictions: boolean;1762 readonly isInsufficientBalance: boolean;1763 readonly isExistentialDeposit: boolean;1764 readonly isKeepAlive: boolean;1765 readonly isExistingVestingSchedule: boolean;1766 readonly isDeadAccount: boolean;1767 readonly isTooManyReserves: boolean;1768 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1769 }17701771 /** @name PalletTimestampCall (181) */1772 interface PalletTimestampCall extends Enum {1773 readonly isSet: boolean;1774 readonly asSet: {1775 readonly now: Compact<u64>;1776 } & Struct;1777 readonly type: 'Set';1778 }17791780 /** @name PalletTransactionPaymentReleases (183) */1781 interface PalletTransactionPaymentReleases extends Enum {1782 readonly isV1Ancient: boolean;1783 readonly isV2: boolean;1784 readonly type: 'V1Ancient' | 'V2';1785 }17861787 /** @name PalletTreasuryProposal (184) */1788 interface PalletTreasuryProposal extends Struct {1789 readonly proposer: AccountId32;1790 readonly value: u128;1791 readonly beneficiary: AccountId32;1792 readonly bond: u128;1793 }17941795 /** @name PalletTreasuryCall (187) */1796 interface PalletTreasuryCall extends Enum {1797 readonly isProposeSpend: boolean;1798 readonly asProposeSpend: {1799 readonly value: Compact<u128>;1800 readonly beneficiary: MultiAddress;1801 } & Struct;1802 readonly isRejectProposal: boolean;1803 readonly asRejectProposal: {1804 readonly proposalId: Compact<u32>;1805 } & Struct;1806 readonly isApproveProposal: boolean;1807 readonly asApproveProposal: {1808 readonly proposalId: Compact<u32>;1809 } & Struct;1810 readonly isSpend: boolean;1811 readonly asSpend: {1812 readonly amount: Compact<u128>;1813 readonly beneficiary: MultiAddress;1814 } & Struct;1815 readonly isRemoveApproval: boolean;1816 readonly asRemoveApproval: {1817 readonly proposalId: Compact<u32>;1818 } & Struct;1819 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1820 }18211822 /** @name FrameSupportPalletId (190) */1823 interface FrameSupportPalletId extends U8aFixed {}18241825 /** @name PalletTreasuryError (191) */1826 interface PalletTreasuryError extends Enum {1827 readonly isInsufficientProposersBalance: boolean;1828 readonly isInvalidIndex: boolean;1829 readonly isTooManyApprovals: boolean;1830 readonly isInsufficientPermission: boolean;1831 readonly isProposalNotApproved: boolean;1832 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1833 }18341835 /** @name PalletSudoCall (192) */1836 interface PalletSudoCall extends Enum {1837 readonly isSudo: boolean;1838 readonly asSudo: {1839 readonly call: Call;1840 } & Struct;1841 readonly isSudoUncheckedWeight: boolean;1842 readonly asSudoUncheckedWeight: {1843 readonly call: Call;1844 readonly weight: SpWeightsWeightV2Weight;1845 } & Struct;1846 readonly isSetKey: boolean;1847 readonly asSetKey: {1848 readonly new_: MultiAddress;1849 } & Struct;1850 readonly isSudoAs: boolean;1851 readonly asSudoAs: {1852 readonly who: MultiAddress;1853 readonly call: Call;1854 } & Struct;1855 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1856 }18571858 /** @name OrmlVestingModuleCall (194) */1859 interface OrmlVestingModuleCall extends Enum {1860 readonly isClaim: boolean;1861 readonly isVestedTransfer: boolean;1862 readonly asVestedTransfer: {1863 readonly dest: MultiAddress;1864 readonly schedule: OrmlVestingVestingSchedule;1865 } & Struct;1866 readonly isUpdateVestingSchedules: boolean;1867 readonly asUpdateVestingSchedules: {1868 readonly who: MultiAddress;1869 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1870 } & Struct;1871 readonly isClaimFor: boolean;1872 readonly asClaimFor: {1873 readonly dest: MultiAddress;1874 } & Struct;1875 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1876 }18771878 /** @name OrmlXtokensModuleCall (196) */1879 interface OrmlXtokensModuleCall extends Enum {1880 readonly isTransfer: boolean;1881 readonly asTransfer: {1882 readonly currencyId: PalletForeignAssetsAssetIds;1883 readonly amount: u128;1884 readonly dest: XcmVersionedMultiLocation;1885 readonly destWeightLimit: XcmV2WeightLimit;1886 } & Struct;1887 readonly isTransferMultiasset: boolean;1888 readonly asTransferMultiasset: {1889 readonly asset: XcmVersionedMultiAsset;1890 readonly dest: XcmVersionedMultiLocation;1891 readonly destWeightLimit: XcmV2WeightLimit;1892 } & Struct;1893 readonly isTransferWithFee: boolean;1894 readonly asTransferWithFee: {1895 readonly currencyId: PalletForeignAssetsAssetIds;1896 readonly amount: u128;1897 readonly fee: u128;1898 readonly dest: XcmVersionedMultiLocation;1899 readonly destWeightLimit: XcmV2WeightLimit;1900 } & Struct;1901 readonly isTransferMultiassetWithFee: boolean;1902 readonly asTransferMultiassetWithFee: {1903 readonly asset: XcmVersionedMultiAsset;1904 readonly fee: XcmVersionedMultiAsset;1905 readonly dest: XcmVersionedMultiLocation;1906 readonly destWeightLimit: XcmV2WeightLimit;1907 } & Struct;1908 readonly isTransferMulticurrencies: boolean;1909 readonly asTransferMulticurrencies: {1910 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1911 readonly feeItem: u32;1912 readonly dest: XcmVersionedMultiLocation;1913 readonly destWeightLimit: XcmV2WeightLimit;1914 } & Struct;1915 readonly isTransferMultiassets: boolean;1916 readonly asTransferMultiassets: {1917 readonly assets: XcmVersionedMultiAssets;1918 readonly feeItem: u32;1919 readonly dest: XcmVersionedMultiLocation;1920 readonly destWeightLimit: XcmV2WeightLimit;1921 } & Struct;1922 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1923 }19241925 /** @name XcmVersionedMultiAsset (197) */1926 interface XcmVersionedMultiAsset extends Enum {1927 readonly isV0: boolean;1928 readonly asV0: XcmV0MultiAsset;1929 readonly isV1: boolean;1930 readonly asV1: XcmV1MultiAsset;1931 readonly type: 'V0' | 'V1';1932 }19331934 /** @name OrmlTokensModuleCall (200) */1935 interface OrmlTokensModuleCall extends Enum {1936 readonly isTransfer: boolean;1937 readonly asTransfer: {1938 readonly dest: MultiAddress;1939 readonly currencyId: PalletForeignAssetsAssetIds;1940 readonly amount: Compact<u128>;1941 } & Struct;1942 readonly isTransferAll: boolean;1943 readonly asTransferAll: {1944 readonly dest: MultiAddress;1945 readonly currencyId: PalletForeignAssetsAssetIds;1946 readonly keepAlive: bool;1947 } & Struct;1948 readonly isTransferKeepAlive: boolean;1949 readonly asTransferKeepAlive: {1950 readonly dest: MultiAddress;1951 readonly currencyId: PalletForeignAssetsAssetIds;1952 readonly amount: Compact<u128>;1953 } & Struct;1954 readonly isForceTransfer: boolean;1955 readonly asForceTransfer: {1956 readonly source: MultiAddress;1957 readonly dest: MultiAddress;1958 readonly currencyId: PalletForeignAssetsAssetIds;1959 readonly amount: Compact<u128>;1960 } & Struct;1961 readonly isSetBalance: boolean;1962 readonly asSetBalance: {1963 readonly who: MultiAddress;1964 readonly currencyId: PalletForeignAssetsAssetIds;1965 readonly newFree: Compact<u128>;1966 readonly newReserved: Compact<u128>;1967 } & Struct;1968 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1969 }19701971 /** @name CumulusPalletXcmpQueueCall (201) */1972 interface CumulusPalletXcmpQueueCall extends Enum {1973 readonly isServiceOverweight: boolean;1974 readonly asServiceOverweight: {1975 readonly index: u64;1976 readonly weightLimit: u64;1977 } & Struct;1978 readonly isSuspendXcmExecution: boolean;1979 readonly isResumeXcmExecution: boolean;1980 readonly isUpdateSuspendThreshold: boolean;1981 readonly asUpdateSuspendThreshold: {1982 readonly new_: u32;1983 } & Struct;1984 readonly isUpdateDropThreshold: boolean;1985 readonly asUpdateDropThreshold: {1986 readonly new_: u32;1987 } & Struct;1988 readonly isUpdateResumeThreshold: boolean;1989 readonly asUpdateResumeThreshold: {1990 readonly new_: u32;1991 } & Struct;1992 readonly isUpdateThresholdWeight: boolean;1993 readonly asUpdateThresholdWeight: {1994 readonly new_: u64;1995 } & Struct;1996 readonly isUpdateWeightRestrictDecay: boolean;1997 readonly asUpdateWeightRestrictDecay: {1998 readonly new_: u64;1999 } & Struct;2000 readonly isUpdateXcmpMaxIndividualWeight: boolean;2001 readonly asUpdateXcmpMaxIndividualWeight: {2002 readonly new_: u64;2003 } & Struct;2004 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2005 }20062007 /** @name PalletXcmCall (202) */2008 interface PalletXcmCall extends Enum {2009 readonly isSend: boolean;2010 readonly asSend: {2011 readonly dest: XcmVersionedMultiLocation;2012 readonly message: XcmVersionedXcm;2013 } & Struct;2014 readonly isTeleportAssets: boolean;2015 readonly asTeleportAssets: {2016 readonly dest: XcmVersionedMultiLocation;2017 readonly beneficiary: XcmVersionedMultiLocation;2018 readonly assets: XcmVersionedMultiAssets;2019 readonly feeAssetItem: u32;2020 } & Struct;2021 readonly isReserveTransferAssets: boolean;2022 readonly asReserveTransferAssets: {2023 readonly dest: XcmVersionedMultiLocation;2024 readonly beneficiary: XcmVersionedMultiLocation;2025 readonly assets: XcmVersionedMultiAssets;2026 readonly feeAssetItem: u32;2027 } & Struct;2028 readonly isExecute: boolean;2029 readonly asExecute: {2030 readonly message: XcmVersionedXcm;2031 readonly maxWeight: u64;2032 } & Struct;2033 readonly isForceXcmVersion: boolean;2034 readonly asForceXcmVersion: {2035 readonly location: XcmV1MultiLocation;2036 readonly xcmVersion: u32;2037 } & Struct;2038 readonly isForceDefaultXcmVersion: boolean;2039 readonly asForceDefaultXcmVersion: {2040 readonly maybeXcmVersion: Option<u32>;2041 } & Struct;2042 readonly isForceSubscribeVersionNotify: boolean;2043 readonly asForceSubscribeVersionNotify: {2044 readonly location: XcmVersionedMultiLocation;2045 } & Struct;2046 readonly isForceUnsubscribeVersionNotify: boolean;2047 readonly asForceUnsubscribeVersionNotify: {2048 readonly location: XcmVersionedMultiLocation;2049 } & Struct;2050 readonly isLimitedReserveTransferAssets: boolean;2051 readonly asLimitedReserveTransferAssets: {2052 readonly dest: XcmVersionedMultiLocation;2053 readonly beneficiary: XcmVersionedMultiLocation;2054 readonly assets: XcmVersionedMultiAssets;2055 readonly feeAssetItem: u32;2056 readonly weightLimit: XcmV2WeightLimit;2057 } & Struct;2058 readonly isLimitedTeleportAssets: boolean;2059 readonly asLimitedTeleportAssets: {2060 readonly dest: XcmVersionedMultiLocation;2061 readonly beneficiary: XcmVersionedMultiLocation;2062 readonly assets: XcmVersionedMultiAssets;2063 readonly feeAssetItem: u32;2064 readonly weightLimit: XcmV2WeightLimit;2065 } & Struct;2066 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2067 }20682069 /** @name XcmVersionedXcm (203) */2070 interface XcmVersionedXcm extends Enum {2071 readonly isV0: boolean;2072 readonly asV0: XcmV0Xcm;2073 readonly isV1: boolean;2074 readonly asV1: XcmV1Xcm;2075 readonly isV2: boolean;2076 readonly asV2: XcmV2Xcm;2077 readonly type: 'V0' | 'V1' | 'V2';2078 }20792080 /** @name XcmV0Xcm (204) */2081 interface XcmV0Xcm extends Enum {2082 readonly isWithdrawAsset: boolean;2083 readonly asWithdrawAsset: {2084 readonly assets: Vec<XcmV0MultiAsset>;2085 readonly effects: Vec<XcmV0Order>;2086 } & Struct;2087 readonly isReserveAssetDeposit: boolean;2088 readonly asReserveAssetDeposit: {2089 readonly assets: Vec<XcmV0MultiAsset>;2090 readonly effects: Vec<XcmV0Order>;2091 } & Struct;2092 readonly isTeleportAsset: boolean;2093 readonly asTeleportAsset: {2094 readonly assets: Vec<XcmV0MultiAsset>;2095 readonly effects: Vec<XcmV0Order>;2096 } & Struct;2097 readonly isQueryResponse: boolean;2098 readonly asQueryResponse: {2099 readonly queryId: Compact<u64>;2100 readonly response: XcmV0Response;2101 } & Struct;2102 readonly isTransferAsset: boolean;2103 readonly asTransferAsset: {2104 readonly assets: Vec<XcmV0MultiAsset>;2105 readonly dest: XcmV0MultiLocation;2106 } & Struct;2107 readonly isTransferReserveAsset: boolean;2108 readonly asTransferReserveAsset: {2109 readonly assets: Vec<XcmV0MultiAsset>;2110 readonly dest: XcmV0MultiLocation;2111 readonly effects: Vec<XcmV0Order>;2112 } & Struct;2113 readonly isTransact: boolean;2114 readonly asTransact: {2115 readonly originType: XcmV0OriginKind;2116 readonly requireWeightAtMost: u64;2117 readonly call: XcmDoubleEncoded;2118 } & Struct;2119 readonly isHrmpNewChannelOpenRequest: boolean;2120 readonly asHrmpNewChannelOpenRequest: {2121 readonly sender: Compact<u32>;2122 readonly maxMessageSize: Compact<u32>;2123 readonly maxCapacity: Compact<u32>;2124 } & Struct;2125 readonly isHrmpChannelAccepted: boolean;2126 readonly asHrmpChannelAccepted: {2127 readonly recipient: Compact<u32>;2128 } & Struct;2129 readonly isHrmpChannelClosing: boolean;2130 readonly asHrmpChannelClosing: {2131 readonly initiator: Compact<u32>;2132 readonly sender: Compact<u32>;2133 readonly recipient: Compact<u32>;2134 } & Struct;2135 readonly isRelayedFrom: boolean;2136 readonly asRelayedFrom: {2137 readonly who: XcmV0MultiLocation;2138 readonly message: XcmV0Xcm;2139 } & Struct;2140 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2141 }21422143 /** @name XcmV0Order (206) */2144 interface XcmV0Order extends Enum {2145 readonly isNull: boolean;2146 readonly isDepositAsset: boolean;2147 readonly asDepositAsset: {2148 readonly assets: Vec<XcmV0MultiAsset>;2149 readonly dest: XcmV0MultiLocation;2150 } & Struct;2151 readonly isDepositReserveAsset: boolean;2152 readonly asDepositReserveAsset: {2153 readonly assets: Vec<XcmV0MultiAsset>;2154 readonly dest: XcmV0MultiLocation;2155 readonly effects: Vec<XcmV0Order>;2156 } & Struct;2157 readonly isExchangeAsset: boolean;2158 readonly asExchangeAsset: {2159 readonly give: Vec<XcmV0MultiAsset>;2160 readonly receive: Vec<XcmV0MultiAsset>;2161 } & Struct;2162 readonly isInitiateReserveWithdraw: boolean;2163 readonly asInitiateReserveWithdraw: {2164 readonly assets: Vec<XcmV0MultiAsset>;2165 readonly reserve: XcmV0MultiLocation;2166 readonly effects: Vec<XcmV0Order>;2167 } & Struct;2168 readonly isInitiateTeleport: boolean;2169 readonly asInitiateTeleport: {2170 readonly assets: Vec<XcmV0MultiAsset>;2171 readonly dest: XcmV0MultiLocation;2172 readonly effects: Vec<XcmV0Order>;2173 } & Struct;2174 readonly isQueryHolding: boolean;2175 readonly asQueryHolding: {2176 readonly queryId: Compact<u64>;2177 readonly dest: XcmV0MultiLocation;2178 readonly assets: Vec<XcmV0MultiAsset>;2179 } & Struct;2180 readonly isBuyExecution: boolean;2181 readonly asBuyExecution: {2182 readonly fees: XcmV0MultiAsset;2183 readonly weight: u64;2184 readonly debt: u64;2185 readonly haltOnError: bool;2186 readonly xcm: Vec<XcmV0Xcm>;2187 } & Struct;2188 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2189 }21902191 /** @name XcmV0Response (208) */2192 interface XcmV0Response extends Enum {2193 readonly isAssets: boolean;2194 readonly asAssets: Vec<XcmV0MultiAsset>;2195 readonly type: 'Assets';2196 }21972198 /** @name XcmV1Xcm (209) */2199 interface XcmV1Xcm extends Enum {2200 readonly isWithdrawAsset: boolean;2201 readonly asWithdrawAsset: {2202 readonly assets: XcmV1MultiassetMultiAssets;2203 readonly effects: Vec<XcmV1Order>;2204 } & Struct;2205 readonly isReserveAssetDeposited: boolean;2206 readonly asReserveAssetDeposited: {2207 readonly assets: XcmV1MultiassetMultiAssets;2208 readonly effects: Vec<XcmV1Order>;2209 } & Struct;2210 readonly isReceiveTeleportedAsset: boolean;2211 readonly asReceiveTeleportedAsset: {2212 readonly assets: XcmV1MultiassetMultiAssets;2213 readonly effects: Vec<XcmV1Order>;2214 } & Struct;2215 readonly isQueryResponse: boolean;2216 readonly asQueryResponse: {2217 readonly queryId: Compact<u64>;2218 readonly response: XcmV1Response;2219 } & Struct;2220 readonly isTransferAsset: boolean;2221 readonly asTransferAsset: {2222 readonly assets: XcmV1MultiassetMultiAssets;2223 readonly beneficiary: XcmV1MultiLocation;2224 } & Struct;2225 readonly isTransferReserveAsset: boolean;2226 readonly asTransferReserveAsset: {2227 readonly assets: XcmV1MultiassetMultiAssets;2228 readonly dest: XcmV1MultiLocation;2229 readonly effects: Vec<XcmV1Order>;2230 } & Struct;2231 readonly isTransact: boolean;2232 readonly asTransact: {2233 readonly originType: XcmV0OriginKind;2234 readonly requireWeightAtMost: u64;2235 readonly call: XcmDoubleEncoded;2236 } & Struct;2237 readonly isHrmpNewChannelOpenRequest: boolean;2238 readonly asHrmpNewChannelOpenRequest: {2239 readonly sender: Compact<u32>;2240 readonly maxMessageSize: Compact<u32>;2241 readonly maxCapacity: Compact<u32>;2242 } & Struct;2243 readonly isHrmpChannelAccepted: boolean;2244 readonly asHrmpChannelAccepted: {2245 readonly recipient: Compact<u32>;2246 } & Struct;2247 readonly isHrmpChannelClosing: boolean;2248 readonly asHrmpChannelClosing: {2249 readonly initiator: Compact<u32>;2250 readonly sender: Compact<u32>;2251 readonly recipient: Compact<u32>;2252 } & Struct;2253 readonly isRelayedFrom: boolean;2254 readonly asRelayedFrom: {2255 readonly who: XcmV1MultilocationJunctions;2256 readonly message: XcmV1Xcm;2257 } & Struct;2258 readonly isSubscribeVersion: boolean;2259 readonly asSubscribeVersion: {2260 readonly queryId: Compact<u64>;2261 readonly maxResponseWeight: Compact<u64>;2262 } & Struct;2263 readonly isUnsubscribeVersion: boolean;2264 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2265 }22662267 /** @name XcmV1Order (211) */2268 interface XcmV1Order extends Enum {2269 readonly isNoop: boolean;2270 readonly isDepositAsset: boolean;2271 readonly asDepositAsset: {2272 readonly assets: XcmV1MultiassetMultiAssetFilter;2273 readonly maxAssets: u32;2274 readonly beneficiary: XcmV1MultiLocation;2275 } & Struct;2276 readonly isDepositReserveAsset: boolean;2277 readonly asDepositReserveAsset: {2278 readonly assets: XcmV1MultiassetMultiAssetFilter;2279 readonly maxAssets: u32;2280 readonly dest: XcmV1MultiLocation;2281 readonly effects: Vec<XcmV1Order>;2282 } & Struct;2283 readonly isExchangeAsset: boolean;2284 readonly asExchangeAsset: {2285 readonly give: XcmV1MultiassetMultiAssetFilter;2286 readonly receive: XcmV1MultiassetMultiAssets;2287 } & Struct;2288 readonly isInitiateReserveWithdraw: boolean;2289 readonly asInitiateReserveWithdraw: {2290 readonly assets: XcmV1MultiassetMultiAssetFilter;2291 readonly reserve: XcmV1MultiLocation;2292 readonly effects: Vec<XcmV1Order>;2293 } & Struct;2294 readonly isInitiateTeleport: boolean;2295 readonly asInitiateTeleport: {2296 readonly assets: XcmV1MultiassetMultiAssetFilter;2297 readonly dest: XcmV1MultiLocation;2298 readonly effects: Vec<XcmV1Order>;2299 } & Struct;2300 readonly isQueryHolding: boolean;2301 readonly asQueryHolding: {2302 readonly queryId: Compact<u64>;2303 readonly dest: XcmV1MultiLocation;2304 readonly assets: XcmV1MultiassetMultiAssetFilter;2305 } & Struct;2306 readonly isBuyExecution: boolean;2307 readonly asBuyExecution: {2308 readonly fees: XcmV1MultiAsset;2309 readonly weight: u64;2310 readonly debt: u64;2311 readonly haltOnError: bool;2312 readonly instructions: Vec<XcmV1Xcm>;2313 } & Struct;2314 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2315 }23162317 /** @name XcmV1Response (213) */2318 interface XcmV1Response extends Enum {2319 readonly isAssets: boolean;2320 readonly asAssets: XcmV1MultiassetMultiAssets;2321 readonly isVersion: boolean;2322 readonly asVersion: u32;2323 readonly type: 'Assets' | 'Version';2324 }23252326 /** @name CumulusPalletXcmCall (227) */2327 type CumulusPalletXcmCall = Null;23282329 /** @name CumulusPalletDmpQueueCall (228) */2330 interface CumulusPalletDmpQueueCall extends Enum {2331 readonly isServiceOverweight: boolean;2332 readonly asServiceOverweight: {2333 readonly index: u64;2334 readonly weightLimit: u64;2335 } & Struct;2336 readonly type: 'ServiceOverweight';2337 }23382339 /** @name PalletInflationCall (229) */2340 interface PalletInflationCall extends Enum {2341 readonly isStartInflation: boolean;2342 readonly asStartInflation: {2343 readonly inflationStartRelayBlock: u32;2344 } & Struct;2345 readonly type: 'StartInflation';2346 }23472348 /** @name PalletUniqueCall (230) */2349 interface PalletUniqueCall extends Enum {2350 readonly isCreateCollection: boolean;2351 readonly asCreateCollection: {2352 readonly collectionName: Vec<u16>;2353 readonly collectionDescription: Vec<u16>;2354 readonly tokenPrefix: Bytes;2355 readonly mode: UpDataStructsCollectionMode;2356 } & Struct;2357 readonly isCreateCollectionEx: boolean;2358 readonly asCreateCollectionEx: {2359 readonly data: UpDataStructsCreateCollectionData;2360 } & Struct;2361 readonly isDestroyCollection: boolean;2362 readonly asDestroyCollection: {2363 readonly collectionId: u32;2364 } & Struct;2365 readonly isAddToAllowList: boolean;2366 readonly asAddToAllowList: {2367 readonly collectionId: u32;2368 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2369 } & Struct;2370 readonly isRemoveFromAllowList: boolean;2371 readonly asRemoveFromAllowList: {2372 readonly collectionId: u32;2373 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2374 } & Struct;2375 readonly isChangeCollectionOwner: boolean;2376 readonly asChangeCollectionOwner: {2377 readonly collectionId: u32;2378 readonly newOwner: AccountId32;2379 } & Struct;2380 readonly isAddCollectionAdmin: boolean;2381 readonly asAddCollectionAdmin: {2382 readonly collectionId: u32;2383 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2384 } & Struct;2385 readonly isRemoveCollectionAdmin: boolean;2386 readonly asRemoveCollectionAdmin: {2387 readonly collectionId: u32;2388 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2389 } & Struct;2390 readonly isSetCollectionSponsor: boolean;2391 readonly asSetCollectionSponsor: {2392 readonly collectionId: u32;2393 readonly newSponsor: AccountId32;2394 } & Struct;2395 readonly isConfirmSponsorship: boolean;2396 readonly asConfirmSponsorship: {2397 readonly collectionId: u32;2398 } & Struct;2399 readonly isRemoveCollectionSponsor: boolean;2400 readonly asRemoveCollectionSponsor: {2401 readonly collectionId: u32;2402 } & Struct;2403 readonly isCreateItem: boolean;2404 readonly asCreateItem: {2405 readonly collectionId: u32;2406 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2407 readonly data: UpDataStructsCreateItemData;2408 } & Struct;2409 readonly isCreateMultipleItems: boolean;2410 readonly asCreateMultipleItems: {2411 readonly collectionId: u32;2412 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2413 readonly itemsData: Vec<UpDataStructsCreateItemData>;2414 } & Struct;2415 readonly isSetCollectionProperties: boolean;2416 readonly asSetCollectionProperties: {2417 readonly collectionId: u32;2418 readonly properties: Vec<UpDataStructsProperty>;2419 } & Struct;2420 readonly isDeleteCollectionProperties: boolean;2421 readonly asDeleteCollectionProperties: {2422 readonly collectionId: u32;2423 readonly propertyKeys: Vec<Bytes>;2424 } & Struct;2425 readonly isSetTokenProperties: boolean;2426 readonly asSetTokenProperties: {2427 readonly collectionId: u32;2428 readonly tokenId: u32;2429 readonly properties: Vec<UpDataStructsProperty>;2430 } & Struct;2431 readonly isDeleteTokenProperties: boolean;2432 readonly asDeleteTokenProperties: {2433 readonly collectionId: u32;2434 readonly tokenId: u32;2435 readonly propertyKeys: Vec<Bytes>;2436 } & Struct;2437 readonly isSetTokenPropertyPermissions: boolean;2438 readonly asSetTokenPropertyPermissions: {2439 readonly collectionId: u32;2440 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2441 } & Struct;2442 readonly isCreateMultipleItemsEx: boolean;2443 readonly asCreateMultipleItemsEx: {2444 readonly collectionId: u32;2445 readonly data: UpDataStructsCreateItemExData;2446 } & Struct;2447 readonly isSetTransfersEnabledFlag: boolean;2448 readonly asSetTransfersEnabledFlag: {2449 readonly collectionId: u32;2450 readonly value: bool;2451 } & Struct;2452 readonly isBurnItem: boolean;2453 readonly asBurnItem: {2454 readonly collectionId: u32;2455 readonly itemId: u32;2456 readonly value: u128;2457 } & Struct;2458 readonly isBurnFrom: boolean;2459 readonly asBurnFrom: {2460 readonly collectionId: u32;2461 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2462 readonly itemId: u32;2463 readonly value: u128;2464 } & Struct;2465 readonly isTransfer: boolean;2466 readonly asTransfer: {2467 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2468 readonly collectionId: u32;2469 readonly itemId: u32;2470 readonly value: u128;2471 } & Struct;2472 readonly isApprove: boolean;2473 readonly asApprove: {2474 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2475 readonly collectionId: u32;2476 readonly itemId: u32;2477 readonly amount: u128;2478 } & Struct;2479 readonly isTransferFrom: boolean;2480 readonly asTransferFrom: {2481 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2482 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2483 readonly collectionId: u32;2484 readonly itemId: u32;2485 readonly value: u128;2486 } & Struct;2487 readonly isSetCollectionLimits: boolean;2488 readonly asSetCollectionLimits: {2489 readonly collectionId: u32;2490 readonly newLimit: UpDataStructsCollectionLimits;2491 } & Struct;2492 readonly isSetCollectionPermissions: boolean;2493 readonly asSetCollectionPermissions: {2494 readonly collectionId: u32;2495 readonly newPermission: UpDataStructsCollectionPermissions;2496 } & Struct;2497 readonly isRepartition: boolean;2498 readonly asRepartition: {2499 readonly collectionId: u32;2500 readonly tokenId: u32;2501 readonly amount: u128;2502 } & Struct;2503 readonly isSetAllowanceForAll: boolean;2504 readonly asSetAllowanceForAll: {2505 readonly collectionId: u32;2506 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2507 readonly approve: bool;2508 } & Struct;2509 readonly isForceRepairCollection: boolean;2510 readonly asForceRepairCollection: {2511 readonly collectionId: u32;2512 } & Struct;2513 readonly isForceRepairItem: boolean;2514 readonly asForceRepairItem: {2515 readonly collectionId: u32;2516 readonly itemId: u32;2517 } & Struct;2518 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2519 }25202521 /** @name UpDataStructsCollectionMode (235) */2522 interface UpDataStructsCollectionMode extends Enum {2523 readonly isNft: boolean;2524 readonly isFungible: boolean;2525 readonly asFungible: u8;2526 readonly isReFungible: boolean;2527 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2528 }25292530 /** @name UpDataStructsCreateCollectionData (236) */2531 interface UpDataStructsCreateCollectionData extends Struct {2532 readonly mode: UpDataStructsCollectionMode;2533 readonly access: Option<UpDataStructsAccessMode>;2534 readonly name: Vec<u16>;2535 readonly description: Vec<u16>;2536 readonly tokenPrefix: Bytes;2537 readonly pendingSponsor: Option<AccountId32>;2538 readonly limits: Option<UpDataStructsCollectionLimits>;2539 readonly permissions: Option<UpDataStructsCollectionPermissions>;2540 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2541 readonly properties: Vec<UpDataStructsProperty>;2542 }25432544 /** @name UpDataStructsAccessMode (238) */2545 interface UpDataStructsAccessMode extends Enum {2546 readonly isNormal: boolean;2547 readonly isAllowList: boolean;2548 readonly type: 'Normal' | 'AllowList';2549 }25502551 /** @name UpDataStructsCollectionLimits (240) */2552 interface UpDataStructsCollectionLimits extends Struct {2553 readonly accountTokenOwnershipLimit: Option<u32>;2554 readonly sponsoredDataSize: Option<u32>;2555 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2556 readonly tokenLimit: Option<u32>;2557 readonly sponsorTransferTimeout: Option<u32>;2558 readonly sponsorApproveTimeout: Option<u32>;2559 readonly ownerCanTransfer: Option<bool>;2560 readonly ownerCanDestroy: Option<bool>;2561 readonly transfersEnabled: Option<bool>;2562 }25632564 /** @name UpDataStructsSponsoringRateLimit (242) */2565 interface UpDataStructsSponsoringRateLimit extends Enum {2566 readonly isSponsoringDisabled: boolean;2567 readonly isBlocks: boolean;2568 readonly asBlocks: u32;2569 readonly type: 'SponsoringDisabled' | 'Blocks';2570 }25712572 /** @name UpDataStructsCollectionPermissions (245) */2573 interface UpDataStructsCollectionPermissions extends Struct {2574 readonly access: Option<UpDataStructsAccessMode>;2575 readonly mintMode: Option<bool>;2576 readonly nesting: Option<UpDataStructsNestingPermissions>;2577 }25782579 /** @name UpDataStructsNestingPermissions (247) */2580 interface UpDataStructsNestingPermissions extends Struct {2581 readonly tokenOwner: bool;2582 readonly collectionAdmin: bool;2583 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2584 }25852586 /** @name UpDataStructsOwnerRestrictedSet (249) */2587 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}25882589 /** @name UpDataStructsPropertyKeyPermission (254) */2590 interface UpDataStructsPropertyKeyPermission extends Struct {2591 readonly key: Bytes;2592 readonly permission: UpDataStructsPropertyPermission;2593 }25942595 /** @name UpDataStructsPropertyPermission (255) */2596 interface UpDataStructsPropertyPermission extends Struct {2597 readonly mutable: bool;2598 readonly collectionAdmin: bool;2599 readonly tokenOwner: bool;2600 }26012602 /** @name UpDataStructsProperty (258) */2603 interface UpDataStructsProperty extends Struct {2604 readonly key: Bytes;2605 readonly value: Bytes;2606 }26072608 /** @name UpDataStructsCreateItemData (261) */2609 interface UpDataStructsCreateItemData extends Enum {2610 readonly isNft: boolean;2611 readonly asNft: UpDataStructsCreateNftData;2612 readonly isFungible: boolean;2613 readonly asFungible: UpDataStructsCreateFungibleData;2614 readonly isReFungible: boolean;2615 readonly asReFungible: UpDataStructsCreateReFungibleData;2616 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2617 }26182619 /** @name UpDataStructsCreateNftData (262) */2620 interface UpDataStructsCreateNftData extends Struct {2621 readonly properties: Vec<UpDataStructsProperty>;2622 }26232624 /** @name UpDataStructsCreateFungibleData (263) */2625 interface UpDataStructsCreateFungibleData extends Struct {2626 readonly value: u128;2627 }26282629 /** @name UpDataStructsCreateReFungibleData (264) */2630 interface UpDataStructsCreateReFungibleData extends Struct {2631 readonly pieces: u128;2632 readonly properties: Vec<UpDataStructsProperty>;2633 }26342635 /** @name UpDataStructsCreateItemExData (267) */2636 interface UpDataStructsCreateItemExData extends Enum {2637 readonly isNft: boolean;2638 readonly asNft: Vec<UpDataStructsCreateNftExData>;2639 readonly isFungible: boolean;2640 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2641 readonly isRefungibleMultipleItems: boolean;2642 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2643 readonly isRefungibleMultipleOwners: boolean;2644 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2645 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2646 }26472648 /** @name UpDataStructsCreateNftExData (269) */2649 interface UpDataStructsCreateNftExData extends Struct {2650 readonly properties: Vec<UpDataStructsProperty>;2651 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2652 }26532654 /** @name UpDataStructsCreateRefungibleExSingleOwner (276) */2655 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2656 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2657 readonly pieces: u128;2658 readonly properties: Vec<UpDataStructsProperty>;2659 }26602661 /** @name UpDataStructsCreateRefungibleExMultipleOwners (278) */2662 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2663 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2664 readonly properties: Vec<UpDataStructsProperty>;2665 }26662667 /** @name PalletConfigurationCall (279) */2668 interface PalletConfigurationCall extends Enum {2669 readonly isSetWeightToFeeCoefficientOverride: boolean;2670 readonly asSetWeightToFeeCoefficientOverride: {2671 readonly coeff: Option<u64>;2672 } & Struct;2673 readonly isSetMinGasPriceOverride: boolean;2674 readonly asSetMinGasPriceOverride: {2675 readonly coeff: Option<u64>;2676 } & Struct;2677 readonly isSetXcmAllowedLocations: boolean;2678 readonly asSetXcmAllowedLocations: {2679 readonly locations: Option<Vec<XcmV1MultiLocation>>;2680 } & Struct;2681 readonly isSetAppPromotionConfigurationOverride: boolean;2682 readonly asSetAppPromotionConfigurationOverride: {2683 readonly configuration: PalletConfigurationAppPromotionConfiguration;2684 } & Struct;2685 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';2686 }26872688 /** @name PalletConfigurationAppPromotionConfiguration (284) */2689 interface PalletConfigurationAppPromotionConfiguration extends Struct {2690 readonly recalculationInterval: Option<u32>;2691 readonly pendingInterval: Option<u32>;2692 readonly intervalIncome: Option<Perbill>;2693 readonly maxStakersPerCalculation: Option<u8>;2694 }26952696 /** @name PalletTemplateTransactionPaymentCall (288) */2697 type PalletTemplateTransactionPaymentCall = Null;26982699 /** @name PalletStructureCall (289) */2700 type PalletStructureCall = Null;27012702 /** @name PalletRmrkCoreCall (290) */2703 interface PalletRmrkCoreCall extends Enum {2704 readonly isCreateCollection: boolean;2705 readonly asCreateCollection: {2706 readonly metadata: Bytes;2707 readonly max: Option<u32>;2708 readonly symbol: Bytes;2709 } & Struct;2710 readonly isDestroyCollection: boolean;2711 readonly asDestroyCollection: {2712 readonly collectionId: u32;2713 } & Struct;2714 readonly isChangeCollectionIssuer: boolean;2715 readonly asChangeCollectionIssuer: {2716 readonly collectionId: u32;2717 readonly newIssuer: MultiAddress;2718 } & Struct;2719 readonly isLockCollection: boolean;2720 readonly asLockCollection: {2721 readonly collectionId: u32;2722 } & Struct;2723 readonly isMintNft: boolean;2724 readonly asMintNft: {2725 readonly owner: Option<AccountId32>;2726 readonly collectionId: u32;2727 readonly recipient: Option<AccountId32>;2728 readonly royaltyAmount: Option<Permill>;2729 readonly metadata: Bytes;2730 readonly transferable: bool;2731 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2732 } & Struct;2733 readonly isBurnNft: boolean;2734 readonly asBurnNft: {2735 readonly collectionId: u32;2736 readonly nftId: u32;2737 readonly maxBurns: u32;2738 } & Struct;2739 readonly isSend: boolean;2740 readonly asSend: {2741 readonly rmrkCollectionId: u32;2742 readonly rmrkNftId: u32;2743 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2744 } & Struct;2745 readonly isAcceptNft: boolean;2746 readonly asAcceptNft: {2747 readonly rmrkCollectionId: u32;2748 readonly rmrkNftId: u32;2749 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2750 } & Struct;2751 readonly isRejectNft: boolean;2752 readonly asRejectNft: {2753 readonly rmrkCollectionId: u32;2754 readonly rmrkNftId: u32;2755 } & Struct;2756 readonly isAcceptResource: boolean;2757 readonly asAcceptResource: {2758 readonly rmrkCollectionId: u32;2759 readonly rmrkNftId: u32;2760 readonly resourceId: u32;2761 } & Struct;2762 readonly isAcceptResourceRemoval: boolean;2763 readonly asAcceptResourceRemoval: {2764 readonly rmrkCollectionId: u32;2765 readonly rmrkNftId: u32;2766 readonly resourceId: u32;2767 } & Struct;2768 readonly isSetProperty: boolean;2769 readonly asSetProperty: {2770 readonly rmrkCollectionId: Compact<u32>;2771 readonly maybeNftId: Option<u32>;2772 readonly key: Bytes;2773 readonly value: Bytes;2774 } & Struct;2775 readonly isSetPriority: boolean;2776 readonly asSetPriority: {2777 readonly rmrkCollectionId: u32;2778 readonly rmrkNftId: u32;2779 readonly priorities: Vec<u32>;2780 } & Struct;2781 readonly isAddBasicResource: boolean;2782 readonly asAddBasicResource: {2783 readonly rmrkCollectionId: u32;2784 readonly nftId: u32;2785 readonly resource: RmrkTraitsResourceBasicResource;2786 } & Struct;2787 readonly isAddComposableResource: boolean;2788 readonly asAddComposableResource: {2789 readonly rmrkCollectionId: u32;2790 readonly nftId: u32;2791 readonly resource: RmrkTraitsResourceComposableResource;2792 } & Struct;2793 readonly isAddSlotResource: boolean;2794 readonly asAddSlotResource: {2795 readonly rmrkCollectionId: u32;2796 readonly nftId: u32;2797 readonly resource: RmrkTraitsResourceSlotResource;2798 } & Struct;2799 readonly isRemoveResource: boolean;2800 readonly asRemoveResource: {2801 readonly rmrkCollectionId: u32;2802 readonly nftId: u32;2803 readonly resourceId: u32;2804 } & Struct;2805 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2806 }28072808 /** @name RmrkTraitsResourceResourceTypes (296) */2809 interface RmrkTraitsResourceResourceTypes extends Enum {2810 readonly isBasic: boolean;2811 readonly asBasic: RmrkTraitsResourceBasicResource;2812 readonly isComposable: boolean;2813 readonly asComposable: RmrkTraitsResourceComposableResource;2814 readonly isSlot: boolean;2815 readonly asSlot: RmrkTraitsResourceSlotResource;2816 readonly type: 'Basic' | 'Composable' | 'Slot';2817 }28182819 /** @name RmrkTraitsResourceBasicResource (298) */2820 interface RmrkTraitsResourceBasicResource extends Struct {2821 readonly src: Option<Bytes>;2822 readonly metadata: Option<Bytes>;2823 readonly license: Option<Bytes>;2824 readonly thumb: Option<Bytes>;2825 }28262827 /** @name RmrkTraitsResourceComposableResource (300) */2828 interface RmrkTraitsResourceComposableResource extends Struct {2829 readonly parts: Vec<u32>;2830 readonly base: u32;2831 readonly src: Option<Bytes>;2832 readonly metadata: Option<Bytes>;2833 readonly license: Option<Bytes>;2834 readonly thumb: Option<Bytes>;2835 }28362837 /** @name RmrkTraitsResourceSlotResource (301) */2838 interface RmrkTraitsResourceSlotResource extends Struct {2839 readonly base: u32;2840 readonly src: Option<Bytes>;2841 readonly metadata: Option<Bytes>;2842 readonly slot: u32;2843 readonly license: Option<Bytes>;2844 readonly thumb: Option<Bytes>;2845 }28462847 /** @name PalletRmrkEquipCall (304) */2848 interface PalletRmrkEquipCall extends Enum {2849 readonly isCreateBase: boolean;2850 readonly asCreateBase: {2851 readonly baseType: Bytes;2852 readonly symbol: Bytes;2853 readonly parts: Vec<RmrkTraitsPartPartType>;2854 } & Struct;2855 readonly isThemeAdd: boolean;2856 readonly asThemeAdd: {2857 readonly baseId: u32;2858 readonly theme: RmrkTraitsTheme;2859 } & Struct;2860 readonly isEquippable: boolean;2861 readonly asEquippable: {2862 readonly baseId: u32;2863 readonly slotId: u32;2864 readonly equippables: RmrkTraitsPartEquippableList;2865 } & Struct;2866 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2867 }28682869 /** @name RmrkTraitsPartPartType (307) */2870 interface RmrkTraitsPartPartType extends Enum {2871 readonly isFixedPart: boolean;2872 readonly asFixedPart: RmrkTraitsPartFixedPart;2873 readonly isSlotPart: boolean;2874 readonly asSlotPart: RmrkTraitsPartSlotPart;2875 readonly type: 'FixedPart' | 'SlotPart';2876 }28772878 /** @name RmrkTraitsPartFixedPart (309) */2879 interface RmrkTraitsPartFixedPart extends Struct {2880 readonly id: u32;2881 readonly z: u32;2882 readonly src: Bytes;2883 }28842885 /** @name RmrkTraitsPartSlotPart (310) */2886 interface RmrkTraitsPartSlotPart extends Struct {2887 readonly id: u32;2888 readonly equippable: RmrkTraitsPartEquippableList;2889 readonly src: Bytes;2890 readonly z: u32;2891 }28922893 /** @name RmrkTraitsPartEquippableList (311) */2894 interface RmrkTraitsPartEquippableList extends Enum {2895 readonly isAll: boolean;2896 readonly isEmpty: boolean;2897 readonly isCustom: boolean;2898 readonly asCustom: Vec<u32>;2899 readonly type: 'All' | 'Empty' | 'Custom';2900 }29012902 /** @name RmrkTraitsTheme (313) */2903 interface RmrkTraitsTheme extends Struct {2904 readonly name: Bytes;2905 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2906 readonly inherit: bool;2907 }29082909 /** @name RmrkTraitsThemeThemeProperty (315) */2910 interface RmrkTraitsThemeThemeProperty extends Struct {2911 readonly key: Bytes;2912 readonly value: Bytes;2913 }29142915 /** @name PalletAppPromotionCall (317) */2916 interface PalletAppPromotionCall extends Enum {2917 readonly isSetAdminAddress: boolean;2918 readonly asSetAdminAddress: {2919 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2920 } & Struct;2921 readonly isStake: boolean;2922 readonly asStake: {2923 readonly amount: u128;2924 } & Struct;2925 readonly isUnstake: boolean;2926 readonly isSponsorCollection: boolean;2927 readonly asSponsorCollection: {2928 readonly collectionId: u32;2929 } & Struct;2930 readonly isStopSponsoringCollection: boolean;2931 readonly asStopSponsoringCollection: {2932 readonly collectionId: u32;2933 } & Struct;2934 readonly isSponsorContract: boolean;2935 readonly asSponsorContract: {2936 readonly contractId: H160;2937 } & Struct;2938 readonly isStopSponsoringContract: boolean;2939 readonly asStopSponsoringContract: {2940 readonly contractId: H160;2941 } & Struct;2942 readonly isPayoutStakers: boolean;2943 readonly asPayoutStakers: {2944 readonly stakersNumber: Option<u8>;2945 } & Struct;2946 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2947 }29482949 /** @name PalletForeignAssetsModuleCall (318) */2950 interface PalletForeignAssetsModuleCall extends Enum {2951 readonly isRegisterForeignAsset: boolean;2952 readonly asRegisterForeignAsset: {2953 readonly owner: AccountId32;2954 readonly location: XcmVersionedMultiLocation;2955 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2956 } & Struct;2957 readonly isUpdateForeignAsset: boolean;2958 readonly asUpdateForeignAsset: {2959 readonly foreignAssetId: u32;2960 readonly location: XcmVersionedMultiLocation;2961 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2962 } & Struct;2963 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2964 }29652966 /** @name PalletEvmCall (319) */2967 interface PalletEvmCall extends Enum {2968 readonly isWithdraw: boolean;2969 readonly asWithdraw: {2970 readonly address: H160;2971 readonly value: u128;2972 } & Struct;2973 readonly isCall: boolean;2974 readonly asCall: {2975 readonly source: H160;2976 readonly target: H160;2977 readonly input: Bytes;2978 readonly value: U256;2979 readonly gasLimit: u64;2980 readonly maxFeePerGas: U256;2981 readonly maxPriorityFeePerGas: Option<U256>;2982 readonly nonce: Option<U256>;2983 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2984 } & Struct;2985 readonly isCreate: boolean;2986 readonly asCreate: {2987 readonly source: H160;2988 readonly init: Bytes;2989 readonly value: U256;2990 readonly gasLimit: u64;2991 readonly maxFeePerGas: U256;2992 readonly maxPriorityFeePerGas: Option<U256>;2993 readonly nonce: Option<U256>;2994 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2995 } & Struct;2996 readonly isCreate2: boolean;2997 readonly asCreate2: {2998 readonly source: H160;2999 readonly init: Bytes;3000 readonly salt: H256;3001 readonly value: U256;3002 readonly gasLimit: u64;3003 readonly maxFeePerGas: U256;3004 readonly maxPriorityFeePerGas: Option<U256>;3005 readonly nonce: Option<U256>;3006 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3007 } & Struct;3008 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3009 }30103011 /** @name PalletEthereumCall (325) */3012 interface PalletEthereumCall extends Enum {3013 readonly isTransact: boolean;3014 readonly asTransact: {3015 readonly transaction: EthereumTransactionTransactionV2;3016 } & Struct;3017 readonly type: 'Transact';3018 }30193020 /** @name EthereumTransactionTransactionV2 (326) */3021 interface EthereumTransactionTransactionV2 extends Enum {3022 readonly isLegacy: boolean;3023 readonly asLegacy: EthereumTransactionLegacyTransaction;3024 readonly isEip2930: boolean;3025 readonly asEip2930: EthereumTransactionEip2930Transaction;3026 readonly isEip1559: boolean;3027 readonly asEip1559: EthereumTransactionEip1559Transaction;3028 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3029 }30303031 /** @name EthereumTransactionLegacyTransaction (327) */3032 interface EthereumTransactionLegacyTransaction extends Struct {3033 readonly nonce: U256;3034 readonly gasPrice: U256;3035 readonly gasLimit: U256;3036 readonly action: EthereumTransactionTransactionAction;3037 readonly value: U256;3038 readonly input: Bytes;3039 readonly signature: EthereumTransactionTransactionSignature;3040 }30413042 /** @name EthereumTransactionTransactionAction (328) */3043 interface EthereumTransactionTransactionAction extends Enum {3044 readonly isCall: boolean;3045 readonly asCall: H160;3046 readonly isCreate: boolean;3047 readonly type: 'Call' | 'Create';3048 }30493050 /** @name EthereumTransactionTransactionSignature (329) */3051 interface EthereumTransactionTransactionSignature extends Struct {3052 readonly v: u64;3053 readonly r: H256;3054 readonly s: H256;3055 }30563057 /** @name EthereumTransactionEip2930Transaction (331) */3058 interface EthereumTransactionEip2930Transaction extends Struct {3059 readonly chainId: u64;3060 readonly nonce: U256;3061 readonly gasPrice: U256;3062 readonly gasLimit: U256;3063 readonly action: EthereumTransactionTransactionAction;3064 readonly value: U256;3065 readonly input: Bytes;3066 readonly accessList: Vec<EthereumTransactionAccessListItem>;3067 readonly oddYParity: bool;3068 readonly r: H256;3069 readonly s: H256;3070 }30713072 /** @name EthereumTransactionAccessListItem (333) */3073 interface EthereumTransactionAccessListItem extends Struct {3074 readonly address: H160;3075 readonly storageKeys: Vec<H256>;3076 }30773078 /** @name EthereumTransactionEip1559Transaction (334) */3079 interface EthereumTransactionEip1559Transaction extends Struct {3080 readonly chainId: u64;3081 readonly nonce: U256;3082 readonly maxPriorityFeePerGas: U256;3083 readonly maxFeePerGas: U256;3084 readonly gasLimit: U256;3085 readonly action: EthereumTransactionTransactionAction;3086 readonly value: U256;3087 readonly input: Bytes;3088 readonly accessList: Vec<EthereumTransactionAccessListItem>;3089 readonly oddYParity: bool;3090 readonly r: H256;3091 readonly s: H256;3092 }30933094 /** @name PalletEvmMigrationCall (335) */3095 interface PalletEvmMigrationCall extends Enum {3096 readonly isBegin: boolean;3097 readonly asBegin: {3098 readonly address: H160;3099 } & Struct;3100 readonly isSetData: boolean;3101 readonly asSetData: {3102 readonly address: H160;3103 readonly data: Vec<ITuple<[H256, H256]>>;3104 } & Struct;3105 readonly isFinish: boolean;3106 readonly asFinish: {3107 readonly address: H160;3108 readonly code: Bytes;3109 } & Struct;3110 readonly isInsertEthLogs: boolean;3111 readonly asInsertEthLogs: {3112 readonly logs: Vec<EthereumLog>;3113 } & Struct;3114 readonly isInsertEvents: boolean;3115 readonly asInsertEvents: {3116 readonly events: Vec<Bytes>;3117 } & Struct;3118 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3119 }31203121 /** @name PalletMaintenanceCall (339) */3122 interface PalletMaintenanceCall extends Enum {3123 readonly isEnable: boolean;3124 readonly isDisable: boolean;3125 readonly type: 'Enable' | 'Disable';3126 }31273128 /** @name PalletTestUtilsCall (340) */3129 interface PalletTestUtilsCall extends Enum {3130 readonly isEnable: boolean;3131 readonly isSetTestValue: boolean;3132 readonly asSetTestValue: {3133 readonly value: u32;3134 } & Struct;3135 readonly isSetTestValueAndRollback: boolean;3136 readonly asSetTestValueAndRollback: {3137 readonly value: u32;3138 } & Struct;3139 readonly isIncTestValue: boolean;3140 readonly isJustTakeFee: boolean;3141 readonly isBatchAll: boolean;3142 readonly asBatchAll: {3143 readonly calls: Vec<Call>;3144 } & Struct;3145 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3146 }31473148 /** @name PalletSudoError (342) */3149 interface PalletSudoError extends Enum {3150 readonly isRequireSudo: boolean;3151 readonly type: 'RequireSudo';3152 }31533154 /** @name OrmlVestingModuleError (344) */3155 interface OrmlVestingModuleError extends Enum {3156 readonly isZeroVestingPeriod: boolean;3157 readonly isZeroVestingPeriodCount: boolean;3158 readonly isInsufficientBalanceToLock: boolean;3159 readonly isTooManyVestingSchedules: boolean;3160 readonly isAmountLow: boolean;3161 readonly isMaxVestingSchedulesExceeded: boolean;3162 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3163 }31643165 /** @name OrmlXtokensModuleError (345) */3166 interface OrmlXtokensModuleError extends Enum {3167 readonly isAssetHasNoReserve: boolean;3168 readonly isNotCrossChainTransfer: boolean;3169 readonly isInvalidDest: boolean;3170 readonly isNotCrossChainTransferableCurrency: boolean;3171 readonly isUnweighableMessage: boolean;3172 readonly isXcmExecutionFailed: boolean;3173 readonly isCannotReanchor: boolean;3174 readonly isInvalidAncestry: boolean;3175 readonly isInvalidAsset: boolean;3176 readonly isDestinationNotInvertible: boolean;3177 readonly isBadVersion: boolean;3178 readonly isDistinctReserveForAssetAndFee: boolean;3179 readonly isZeroFee: boolean;3180 readonly isZeroAmount: boolean;3181 readonly isTooManyAssetsBeingSent: boolean;3182 readonly isAssetIndexNonExistent: boolean;3183 readonly isFeeNotEnough: boolean;3184 readonly isNotSupportedMultiLocation: boolean;3185 readonly isMinXcmFeeNotDefined: boolean;3186 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3187 }31883189 /** @name OrmlTokensBalanceLock (348) */3190 interface OrmlTokensBalanceLock extends Struct {3191 readonly id: U8aFixed;3192 readonly amount: u128;3193 }31943195 /** @name OrmlTokensAccountData (350) */3196 interface OrmlTokensAccountData extends Struct {3197 readonly free: u128;3198 readonly reserved: u128;3199 readonly frozen: u128;3200 }32013202 /** @name OrmlTokensReserveData (352) */3203 interface OrmlTokensReserveData extends Struct {3204 readonly id: Null;3205 readonly amount: u128;3206 }32073208 /** @name OrmlTokensModuleError (354) */3209 interface OrmlTokensModuleError extends Enum {3210 readonly isBalanceTooLow: boolean;3211 readonly isAmountIntoBalanceFailed: boolean;3212 readonly isLiquidityRestrictions: boolean;3213 readonly isMaxLocksExceeded: boolean;3214 readonly isKeepAlive: boolean;3215 readonly isExistentialDeposit: boolean;3216 readonly isDeadAccount: boolean;3217 readonly isTooManyReserves: boolean;3218 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3219 }32203221 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3222 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3223 readonly sender: u32;3224 readonly state: CumulusPalletXcmpQueueInboundState;3225 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3226 }32273228 /** @name CumulusPalletXcmpQueueInboundState (357) */3229 interface CumulusPalletXcmpQueueInboundState extends Enum {3230 readonly isOk: boolean;3231 readonly isSuspended: boolean;3232 readonly type: 'Ok' | 'Suspended';3233 }32343235 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3236 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3237 readonly isConcatenatedVersionedXcm: boolean;3238 readonly isConcatenatedEncodedBlob: boolean;3239 readonly isSignals: boolean;3240 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3241 }32423243 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3244 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3245 readonly recipient: u32;3246 readonly state: CumulusPalletXcmpQueueOutboundState;3247 readonly signalsExist: bool;3248 readonly firstIndex: u16;3249 readonly lastIndex: u16;3250 }32513252 /** @name CumulusPalletXcmpQueueOutboundState (364) */3253 interface CumulusPalletXcmpQueueOutboundState extends Enum {3254 readonly isOk: boolean;3255 readonly isSuspended: boolean;3256 readonly type: 'Ok' | 'Suspended';3257 }32583259 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3260 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3261 readonly suspendThreshold: u32;3262 readonly dropThreshold: u32;3263 readonly resumeThreshold: u32;3264 readonly thresholdWeight: SpWeightsWeightV2Weight;3265 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3266 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3267 }32683269 /** @name CumulusPalletXcmpQueueError (368) */3270 interface CumulusPalletXcmpQueueError extends Enum {3271 readonly isFailedToSend: boolean;3272 readonly isBadXcmOrigin: boolean;3273 readonly isBadXcm: boolean;3274 readonly isBadOverweightIndex: boolean;3275 readonly isWeightOverLimit: boolean;3276 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3277 }32783279 /** @name PalletXcmError (369) */3280 interface PalletXcmError extends Enum {3281 readonly isUnreachable: boolean;3282 readonly isSendFailure: boolean;3283 readonly isFiltered: boolean;3284 readonly isUnweighableMessage: boolean;3285 readonly isDestinationNotInvertible: boolean;3286 readonly isEmpty: boolean;3287 readonly isCannotReanchor: boolean;3288 readonly isTooManyAssets: boolean;3289 readonly isInvalidOrigin: boolean;3290 readonly isBadVersion: boolean;3291 readonly isBadLocation: boolean;3292 readonly isNoSubscription: boolean;3293 readonly isAlreadySubscribed: boolean;3294 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3295 }32963297 /** @name CumulusPalletXcmError (370) */3298 type CumulusPalletXcmError = Null;32993300 /** @name CumulusPalletDmpQueueConfigData (371) */3301 interface CumulusPalletDmpQueueConfigData extends Struct {3302 readonly maxIndividual: SpWeightsWeightV2Weight;3303 }33043305 /** @name CumulusPalletDmpQueuePageIndexData (372) */3306 interface CumulusPalletDmpQueuePageIndexData extends Struct {3307 readonly beginUsed: u32;3308 readonly endUsed: u32;3309 readonly overweightCount: u64;3310 }33113312 /** @name CumulusPalletDmpQueueError (375) */3313 interface CumulusPalletDmpQueueError extends Enum {3314 readonly isUnknown: boolean;3315 readonly isOverLimit: boolean;3316 readonly type: 'Unknown' | 'OverLimit';3317 }33183319 /** @name PalletUniqueError (379) */3320 interface PalletUniqueError extends Enum {3321 readonly isCollectionDecimalPointLimitExceeded: boolean;3322 readonly isEmptyArgument: boolean;3323 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3324 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3325 }33263327 /** @name PalletConfigurationError (380) */3328 interface PalletConfigurationError extends Enum {3329 readonly isInconsistentConfiguration: boolean;3330 readonly type: 'InconsistentConfiguration';3331 }33323333 /** @name UpDataStructsCollection (381) */3334 interface UpDataStructsCollection extends Struct {3335 readonly owner: AccountId32;3336 readonly mode: UpDataStructsCollectionMode;3337 readonly name: Vec<u16>;3338 readonly description: Vec<u16>;3339 readonly tokenPrefix: Bytes;3340 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3341 readonly limits: UpDataStructsCollectionLimits;3342 readonly permissions: UpDataStructsCollectionPermissions;3343 readonly flags: U8aFixed;3344 }33453346 /** @name UpDataStructsSponsorshipStateAccountId32 (382) */3347 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3348 readonly isDisabled: boolean;3349 readonly isUnconfirmed: boolean;3350 readonly asUnconfirmed: AccountId32;3351 readonly isConfirmed: boolean;3352 readonly asConfirmed: AccountId32;3353 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3354 }33553356 /** @name UpDataStructsProperties (384) */3357 interface UpDataStructsProperties extends Struct {3358 readonly map: UpDataStructsPropertiesMapBoundedVec;3359 readonly consumedSpace: u32;3360 readonly spaceLimit: u32;3361 }33623363 /** @name UpDataStructsPropertiesMapBoundedVec (385) */3364 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}33653366 /** @name UpDataStructsPropertiesMapPropertyPermission (390) */3367 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}33683369 /** @name UpDataStructsCollectionStats (397) */3370 interface UpDataStructsCollectionStats extends Struct {3371 readonly created: u32;3372 readonly destroyed: u32;3373 readonly alive: u32;3374 }33753376 /** @name UpDataStructsTokenChild (398) */3377 interface UpDataStructsTokenChild extends Struct {3378 readonly token: u32;3379 readonly collection: u32;3380 }33813382 /** @name PhantomTypeUpDataStructs (399) */3383 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}33843385 /** @name UpDataStructsTokenData (401) */3386 interface UpDataStructsTokenData extends Struct {3387 readonly properties: Vec<UpDataStructsProperty>;3388 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3389 readonly pieces: u128;3390 }33913392 /** @name UpDataStructsRpcCollection (403) */3393 interface UpDataStructsRpcCollection extends Struct {3394 readonly owner: AccountId32;3395 readonly mode: UpDataStructsCollectionMode;3396 readonly name: Vec<u16>;3397 readonly description: Vec<u16>;3398 readonly tokenPrefix: Bytes;3399 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3400 readonly limits: UpDataStructsCollectionLimits;3401 readonly permissions: UpDataStructsCollectionPermissions;3402 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3403 readonly properties: Vec<UpDataStructsProperty>;3404 readonly readOnly: bool;3405 readonly flags: UpDataStructsRpcCollectionFlags;3406 }34073408 /** @name UpDataStructsRpcCollectionFlags (404) */3409 interface UpDataStructsRpcCollectionFlags extends Struct {3410 readonly foreign: bool;3411 readonly erc721metadata: bool;3412 }34133414 /** @name RmrkTraitsCollectionCollectionInfo (405) */3415 interface RmrkTraitsCollectionCollectionInfo extends Struct {3416 readonly issuer: AccountId32;3417 readonly metadata: Bytes;3418 readonly max: Option<u32>;3419 readonly symbol: Bytes;3420 readonly nftsCount: u32;3421 }34223423 /** @name RmrkTraitsNftNftInfo (406) */3424 interface RmrkTraitsNftNftInfo extends Struct {3425 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3426 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3427 readonly metadata: Bytes;3428 readonly equipped: bool;3429 readonly pending: bool;3430 }34313432 /** @name RmrkTraitsNftRoyaltyInfo (408) */3433 interface RmrkTraitsNftRoyaltyInfo extends Struct {3434 readonly recipient: AccountId32;3435 readonly amount: Permill;3436 }34373438 /** @name RmrkTraitsResourceResourceInfo (409) */3439 interface RmrkTraitsResourceResourceInfo extends Struct {3440 readonly id: u32;3441 readonly resource: RmrkTraitsResourceResourceTypes;3442 readonly pending: bool;3443 readonly pendingRemoval: bool;3444 }34453446 /** @name RmrkTraitsPropertyPropertyInfo (410) */3447 interface RmrkTraitsPropertyPropertyInfo extends Struct {3448 readonly key: Bytes;3449 readonly value: Bytes;3450 }34513452 /** @name RmrkTraitsBaseBaseInfo (411) */3453 interface RmrkTraitsBaseBaseInfo extends Struct {3454 readonly issuer: AccountId32;3455 readonly baseType: Bytes;3456 readonly symbol: Bytes;3457 }34583459 /** @name RmrkTraitsNftNftChild (412) */3460 interface RmrkTraitsNftNftChild extends Struct {3461 readonly collectionId: u32;3462 readonly nftId: u32;3463 }34643465 /** @name PalletCommonError (414) */3466 interface PalletCommonError extends Enum {3467 readonly isCollectionNotFound: boolean;3468 readonly isMustBeTokenOwner: boolean;3469 readonly isNoPermission: boolean;3470 readonly isCantDestroyNotEmptyCollection: boolean;3471 readonly isPublicMintingNotAllowed: boolean;3472 readonly isAddressNotInAllowlist: boolean;3473 readonly isCollectionNameLimitExceeded: boolean;3474 readonly isCollectionDescriptionLimitExceeded: boolean;3475 readonly isCollectionTokenPrefixLimitExceeded: boolean;3476 readonly isTotalCollectionsLimitExceeded: boolean;3477 readonly isCollectionAdminCountExceeded: boolean;3478 readonly isCollectionLimitBoundsExceeded: boolean;3479 readonly isOwnerPermissionsCantBeReverted: boolean;3480 readonly isTransferNotAllowed: boolean;3481 readonly isAccountTokenLimitExceeded: boolean;3482 readonly isCollectionTokenLimitExceeded: boolean;3483 readonly isMetadataFlagFrozen: boolean;3484 readonly isTokenNotFound: boolean;3485 readonly isTokenValueTooLow: boolean;3486 readonly isApprovedValueTooLow: boolean;3487 readonly isCantApproveMoreThanOwned: boolean;3488 readonly isAddressIsZero: boolean;3489 readonly isUnsupportedOperation: boolean;3490 readonly isNotSufficientFounds: boolean;3491 readonly isUserIsNotAllowedToNest: boolean;3492 readonly isSourceCollectionIsNotAllowedToNest: boolean;3493 readonly isCollectionFieldSizeExceeded: boolean;3494 readonly isNoSpaceForProperty: boolean;3495 readonly isPropertyLimitReached: boolean;3496 readonly isPropertyKeyIsTooLong: boolean;3497 readonly isInvalidCharacterInPropertyKey: boolean;3498 readonly isEmptyPropertyKey: boolean;3499 readonly isCollectionIsExternal: boolean;3500 readonly isCollectionIsInternal: boolean;3501 readonly isConfirmSponsorshipFail: boolean;3502 readonly isUserIsNotCollectionAdmin: boolean;3503 readonly type: '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';3504 }35053506 /** @name PalletFungibleError (416) */3507 interface PalletFungibleError extends Enum {3508 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3509 readonly isFungibleItemsHaveNoId: boolean;3510 readonly isFungibleItemsDontHaveData: boolean;3511 readonly isFungibleDisallowsNesting: boolean;3512 readonly isSettingPropertiesNotAllowed: boolean;3513 readonly isSettingAllowanceForAllNotAllowed: boolean;3514 readonly isFungibleTokensAreAlwaysValid: boolean;3515 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3516 }35173518 /** @name PalletRefungibleError (420) */3519 interface PalletRefungibleError extends Enum {3520 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3521 readonly isWrongRefungiblePieces: boolean;3522 readonly isRepartitionWhileNotOwningAllPieces: boolean;3523 readonly isRefungibleDisallowsNesting: boolean;3524 readonly isSettingPropertiesNotAllowed: boolean;3525 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3526 }35273528 /** @name PalletNonfungibleItemData (421) */3529 interface PalletNonfungibleItemData extends Struct {3530 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3531 }35323533 /** @name UpDataStructsPropertyScope (423) */3534 interface UpDataStructsPropertyScope extends Enum {3535 readonly isNone: boolean;3536 readonly isRmrk: boolean;3537 readonly type: 'None' | 'Rmrk';3538 }35393540 /** @name PalletNonfungibleError (426) */3541 interface PalletNonfungibleError extends Enum {3542 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3543 readonly isNonfungibleItemsHaveNoAmount: boolean;3544 readonly isCantBurnNftWithChildren: boolean;3545 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3546 }35473548 /** @name PalletStructureError (427) */3549 interface PalletStructureError extends Enum {3550 readonly isOuroborosDetected: boolean;3551 readonly isDepthLimit: boolean;3552 readonly isBreadthLimit: boolean;3553 readonly isTokenNotFound: boolean;3554 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3555 }35563557 /** @name PalletRmrkCoreError (428) */3558 interface PalletRmrkCoreError extends Enum {3559 readonly isCorruptedCollectionType: boolean;3560 readonly isRmrkPropertyKeyIsTooLong: boolean;3561 readonly isRmrkPropertyValueIsTooLong: boolean;3562 readonly isRmrkPropertyIsNotFound: boolean;3563 readonly isUnableToDecodeRmrkData: boolean;3564 readonly isCollectionNotEmpty: boolean;3565 readonly isNoAvailableCollectionId: boolean;3566 readonly isNoAvailableNftId: boolean;3567 readonly isCollectionUnknown: boolean;3568 readonly isNoPermission: boolean;3569 readonly isNonTransferable: boolean;3570 readonly isCollectionFullOrLocked: boolean;3571 readonly isResourceDoesntExist: boolean;3572 readonly isCannotSendToDescendentOrSelf: boolean;3573 readonly isCannotAcceptNonOwnedNft: boolean;3574 readonly isCannotRejectNonOwnedNft: boolean;3575 readonly isCannotRejectNonPendingNft: boolean;3576 readonly isResourceNotPending: boolean;3577 readonly isNoAvailableResourceId: boolean;3578 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3579 }35803581 /** @name PalletRmrkEquipError (430) */3582 interface PalletRmrkEquipError extends Enum {3583 readonly isPermissionError: boolean;3584 readonly isNoAvailableBaseId: boolean;3585 readonly isNoAvailablePartId: boolean;3586 readonly isBaseDoesntExist: boolean;3587 readonly isNeedsDefaultThemeFirst: boolean;3588 readonly isPartDoesntExist: boolean;3589 readonly isNoEquippableOnFixedPart: boolean;3590 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3591 }35923593 /** @name PalletAppPromotionError (436) */3594 interface PalletAppPromotionError extends Enum {3595 readonly isAdminNotSet: boolean;3596 readonly isNoPermission: boolean;3597 readonly isNotSufficientFunds: boolean;3598 readonly isPendingForBlockOverflow: boolean;3599 readonly isSponsorNotSet: boolean;3600 readonly isIncorrectLockedBalanceOperation: boolean;3601 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3602 }36033604 /** @name PalletForeignAssetsModuleError (437) */3605 interface PalletForeignAssetsModuleError extends Enum {3606 readonly isBadLocation: boolean;3607 readonly isMultiLocationExisted: boolean;3608 readonly isAssetIdNotExists: boolean;3609 readonly isAssetIdExisted: boolean;3610 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3611 }36123613 /** @name PalletEvmError (439) */3614 interface PalletEvmError extends Enum {3615 readonly isBalanceLow: boolean;3616 readonly isFeeOverflow: boolean;3617 readonly isPaymentOverflow: boolean;3618 readonly isWithdrawFailed: boolean;3619 readonly isGasPriceTooLow: boolean;3620 readonly isInvalidNonce: boolean;3621 readonly isGasLimitTooLow: boolean;3622 readonly isGasLimitTooHigh: boolean;3623 readonly isUndefined: boolean;3624 readonly isReentrancy: boolean;3625 readonly isTransactionMustComeFromEOA: boolean;3626 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3627 }36283629 /** @name FpRpcTransactionStatus (442) */3630 interface FpRpcTransactionStatus extends Struct {3631 readonly transactionHash: H256;3632 readonly transactionIndex: u32;3633 readonly from: H160;3634 readonly to: Option<H160>;3635 readonly contractAddress: Option<H160>;3636 readonly logs: Vec<EthereumLog>;3637 readonly logsBloom: EthbloomBloom;3638 }36393640 /** @name EthbloomBloom (444) */3641 interface EthbloomBloom extends U8aFixed {}36423643 /** @name EthereumReceiptReceiptV3 (446) */3644 interface EthereumReceiptReceiptV3 extends Enum {3645 readonly isLegacy: boolean;3646 readonly asLegacy: EthereumReceiptEip658ReceiptData;3647 readonly isEip2930: boolean;3648 readonly asEip2930: EthereumReceiptEip658ReceiptData;3649 readonly isEip1559: boolean;3650 readonly asEip1559: EthereumReceiptEip658ReceiptData;3651 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3652 }36533654 /** @name EthereumReceiptEip658ReceiptData (447) */3655 interface EthereumReceiptEip658ReceiptData extends Struct {3656 readonly statusCode: u8;3657 readonly usedGas: U256;3658 readonly logsBloom: EthbloomBloom;3659 readonly logs: Vec<EthereumLog>;3660 }36613662 /** @name EthereumBlock (448) */3663 interface EthereumBlock extends Struct {3664 readonly header: EthereumHeader;3665 readonly transactions: Vec<EthereumTransactionTransactionV2>;3666 readonly ommers: Vec<EthereumHeader>;3667 }36683669 /** @name EthereumHeader (449) */3670 interface EthereumHeader extends Struct {3671 readonly parentHash: H256;3672 readonly ommersHash: H256;3673 readonly beneficiary: H160;3674 readonly stateRoot: H256;3675 readonly transactionsRoot: H256;3676 readonly receiptsRoot: H256;3677 readonly logsBloom: EthbloomBloom;3678 readonly difficulty: U256;3679 readonly number: U256;3680 readonly gasLimit: U256;3681 readonly gasUsed: U256;3682 readonly timestamp: u64;3683 readonly extraData: Bytes;3684 readonly mixHash: H256;3685 readonly nonce: EthereumTypesHashH64;3686 }36873688 /** @name EthereumTypesHashH64 (450) */3689 interface EthereumTypesHashH64 extends U8aFixed {}36903691 /** @name PalletEthereumError (455) */3692 interface PalletEthereumError extends Enum {3693 readonly isInvalidSignature: boolean;3694 readonly isPreLogExists: boolean;3695 readonly type: 'InvalidSignature' | 'PreLogExists';3696 }36973698 /** @name PalletEvmCoderSubstrateError (456) */3699 interface PalletEvmCoderSubstrateError extends Enum {3700 readonly isOutOfGas: boolean;3701 readonly isOutOfFund: boolean;3702 readonly type: 'OutOfGas' | 'OutOfFund';3703 }37043705 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (457) */3706 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3707 readonly isDisabled: boolean;3708 readonly isUnconfirmed: boolean;3709 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3710 readonly isConfirmed: boolean;3711 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3712 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3713 }37143715 /** @name PalletEvmContractHelpersSponsoringModeT (458) */3716 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3717 readonly isDisabled: boolean;3718 readonly isAllowlisted: boolean;3719 readonly isGenerous: boolean;3720 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3721 }37223723 /** @name PalletEvmContractHelpersError (464) */3724 interface PalletEvmContractHelpersError extends Enum {3725 readonly isNoPermission: boolean;3726 readonly isNoPendingSponsor: boolean;3727 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3728 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3729 }37303731 /** @name PalletEvmMigrationError (465) */3732 interface PalletEvmMigrationError extends Enum {3733 readonly isAccountNotEmpty: boolean;3734 readonly isAccountIsNotMigrating: boolean;3735 readonly isBadEvent: boolean;3736 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3737 }37383739 /** @name PalletMaintenanceError (466) */3740 type PalletMaintenanceError = Null;37413742 /** @name PalletTestUtilsError (467) */3743 interface PalletTestUtilsError extends Enum {3744 readonly isTestPalletDisabled: boolean;3745 readonly isTriggerRollback: boolean;3746 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3747 }37483749 /** @name SpRuntimeMultiSignature (469) */3750 interface SpRuntimeMultiSignature extends Enum {3751 readonly isEd25519: boolean;3752 readonly asEd25519: SpCoreEd25519Signature;3753 readonly isSr25519: boolean;3754 readonly asSr25519: SpCoreSr25519Signature;3755 readonly isEcdsa: boolean;3756 readonly asEcdsa: SpCoreEcdsaSignature;3757 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3758 }37593760 /** @name SpCoreEd25519Signature (470) */3761 interface SpCoreEd25519Signature extends U8aFixed {}37623763 /** @name SpCoreSr25519Signature (472) */3764 interface SpCoreSr25519Signature extends U8aFixed {}37653766 /** @name SpCoreEcdsaSignature (473) */3767 interface SpCoreEcdsaSignature extends U8aFixed {}37683769 /** @name FrameSystemExtensionsCheckSpecVersion (476) */3770 type FrameSystemExtensionsCheckSpecVersion = Null;37713772 /** @name FrameSystemExtensionsCheckTxVersion (477) */3773 type FrameSystemExtensionsCheckTxVersion = Null;37743775 /** @name FrameSystemExtensionsCheckGenesis (478) */3776 type FrameSystemExtensionsCheckGenesis = Null;37773778 /** @name FrameSystemExtensionsCheckNonce (481) */3779 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}37803781 /** @name FrameSystemExtensionsCheckWeight (482) */3782 type FrameSystemExtensionsCheckWeight = Null;37833784 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (483) */3785 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;37863787 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (484) */3788 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}37893790 /** @name OpalRuntimeRuntime (485) */3791 type OpalRuntimeRuntime = Null;37923793 /** @name PalletEthereumFakeTransactionFinalizer (486) */3794 type PalletEthereumFakeTransactionFinalizer = Null;37953796} // declare moduletests/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==