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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: SpWeightsWeightV2Weight;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: {35 readonly messageId: U8aFixed;36 } & Struct;37 readonly isUnsupportedVersion: boolean;38 readonly asUnsupportedVersion: {39 readonly messageId: U8aFixed;40 } & Struct;41 readonly isExecutedDownward: boolean;42 readonly asExecutedDownward: {43 readonly messageId: U8aFixed;44 readonly outcome: XcmV2TraitsOutcome;45 } & Struct;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;49 readonly remainingWeight: SpWeightsWeightV2Weight;50 readonly requiredWeight: SpWeightsWeightV2Weight;51 } & Struct;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;56 readonly requiredWeight: SpWeightsWeightV2Weight;57 } & Struct;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;61 readonly weightUsed: SpWeightsWeightV2Weight;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68 readonly beginUsed: u32;69 readonly endUsed: u32;70 readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75 readonly isSetValidationData: boolean;76 readonly asSetValidationData: {77 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78 } & Struct;79 readonly isSudoSendUpwardMessage: boolean;80 readonly asSudoSendUpwardMessage: {81 readonly message: Bytes;82 } & Struct;83 readonly isAuthorizeUpgrade: boolean;84 readonly asAuthorizeUpgrade: {85 readonly codeHash: H256;86 } & Struct;87 readonly isEnactAuthorizedUpgrade: boolean;88 readonly asEnactAuthorizedUpgrade: {89 readonly code: Bytes;90 } & Struct;91 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96 readonly isOverlappingUpgrades: boolean;97 readonly isProhibitedByPolkadot: boolean;98 readonly isTooBig: boolean;99 readonly isValidationDataNotAvailable: boolean;100 readonly isHostConfigurationNotAvailable: boolean;101 readonly isNotScheduled: boolean;102 readonly isNothingAuthorized: boolean;103 readonly isUnauthorized: boolean;104 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: {112 readonly relayChainBlockNum: u32;113 } & Struct;114 readonly isValidationFunctionDiscarded: boolean;115 readonly isUpgradeAuthorized: boolean;116 readonly asUpgradeAuthorized: {117 readonly codeHash: H256;118 } & Struct;119 readonly isDownwardMessagesReceived: boolean;120 readonly asDownwardMessagesReceived: {121 readonly count: u32;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: SpWeightsWeightV2Weight;126 readonly dmqHead: H256;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133 readonly dmqMqcHead: H256;134 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147 readonly isInvalidFormat: boolean;148 readonly asInvalidFormat: U8aFixed;149 readonly isUnsupportedVersion: boolean;150 readonly asUnsupportedVersion: U8aFixed;151 readonly isExecutedDownward: boolean;152 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmpQueueCall */157export interface CumulusPalletXcmpQueueCall extends Enum {158 readonly isServiceOverweight: boolean;159 readonly asServiceOverweight: {160 readonly index: u64;161 readonly weightLimit: u64;162 } & Struct;163 readonly isSuspendXcmExecution: boolean;164 readonly isResumeXcmExecution: boolean;165 readonly isUpdateSuspendThreshold: boolean;166 readonly asUpdateSuspendThreshold: {167 readonly new_: u32;168 } & Struct;169 readonly isUpdateDropThreshold: boolean;170 readonly asUpdateDropThreshold: {171 readonly new_: u32;172 } & Struct;173 readonly isUpdateResumeThreshold: boolean;174 readonly asUpdateResumeThreshold: {175 readonly new_: u32;176 } & Struct;177 readonly isUpdateThresholdWeight: boolean;178 readonly asUpdateThresholdWeight: {179 readonly new_: u64;180 } & Struct;181 readonly isUpdateWeightRestrictDecay: boolean;182 readonly asUpdateWeightRestrictDecay: {183 readonly new_: u64;184 } & Struct;185 readonly isUpdateXcmpMaxIndividualWeight: boolean;186 readonly asUpdateXcmpMaxIndividualWeight: {187 readonly new_: u64;188 } & Struct;189 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';190}191192/** @name CumulusPalletXcmpQueueError */193export interface CumulusPalletXcmpQueueError extends Enum {194 readonly isFailedToSend: boolean;195 readonly isBadXcmOrigin: boolean;196 readonly isBadXcm: boolean;197 readonly isBadOverweightIndex: boolean;198 readonly isWeightOverLimit: boolean;199 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';200}201202/** @name CumulusPalletXcmpQueueEvent */203export interface CumulusPalletXcmpQueueEvent extends Enum {204 readonly isSuccess: boolean;205 readonly asSuccess: {206 readonly messageHash: Option<H256>;207 readonly weight: SpWeightsWeightV2Weight;208 } & Struct;209 readonly isFail: boolean;210 readonly asFail: {211 readonly messageHash: Option<H256>;212 readonly error: XcmV2TraitsError;213 readonly weight: SpWeightsWeightV2Weight;214 } & Struct;215 readonly isBadVersion: boolean;216 readonly asBadVersion: {217 readonly messageHash: Option<H256>;218 } & Struct;219 readonly isBadFormat: boolean;220 readonly asBadFormat: {221 readonly messageHash: Option<H256>;222 } & Struct;223 readonly isUpwardMessageSent: boolean;224 readonly asUpwardMessageSent: {225 readonly messageHash: Option<H256>;226 } & Struct;227 readonly isXcmpMessageSent: boolean;228 readonly asXcmpMessageSent: {229 readonly messageHash: Option<H256>;230 } & Struct;231 readonly isOverweightEnqueued: boolean;232 readonly asOverweightEnqueued: {233 readonly sender: u32;234 readonly sentAt: u32;235 readonly index: u64;236 readonly required: SpWeightsWeightV2Weight;237 } & Struct;238 readonly isOverweightServiced: boolean;239 readonly asOverweightServiced: {240 readonly index: u64;241 readonly used: SpWeightsWeightV2Weight;242 } & Struct;243 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';244}245246/** @name CumulusPalletXcmpQueueInboundChannelDetails */247export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {248 readonly sender: u32;249 readonly state: CumulusPalletXcmpQueueInboundState;250 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;251}252253/** @name CumulusPalletXcmpQueueInboundState */254export interface CumulusPalletXcmpQueueInboundState extends Enum {255 readonly isOk: boolean;256 readonly isSuspended: boolean;257 readonly type: 'Ok' | 'Suspended';258}259260/** @name CumulusPalletXcmpQueueOutboundChannelDetails */261export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {262 readonly recipient: u32;263 readonly state: CumulusPalletXcmpQueueOutboundState;264 readonly signalsExist: bool;265 readonly firstIndex: u16;266 readonly lastIndex: u16;267}268269/** @name CumulusPalletXcmpQueueOutboundState */270export interface CumulusPalletXcmpQueueOutboundState extends Enum {271 readonly isOk: boolean;272 readonly isSuspended: boolean;273 readonly type: 'Ok' | 'Suspended';274}275276/** @name CumulusPalletXcmpQueueQueueConfigData */277export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {278 readonly suspendThreshold: u32;279 readonly dropThreshold: u32;280 readonly resumeThreshold: u32;281 readonly thresholdWeight: SpWeightsWeightV2Weight;282 readonly weightRestrictDecay: SpWeightsWeightV2Weight;283 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;284}285286/** @name CumulusPrimitivesParachainInherentParachainInherentData */287export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {288 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;289 readonly relayChainState: SpTrieStorageProof;290 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;291 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;292}293294/** @name EthbloomBloom */295export interface EthbloomBloom extends U8aFixed {}296297/** @name EthereumBlock */298export interface EthereumBlock extends Struct {299 readonly header: EthereumHeader;300 readonly transactions: Vec<EthereumTransactionTransactionV2>;301 readonly ommers: Vec<EthereumHeader>;302}303304/** @name EthereumHeader */305export interface EthereumHeader extends Struct {306 readonly parentHash: H256;307 readonly ommersHash: H256;308 readonly beneficiary: H160;309 readonly stateRoot: H256;310 readonly transactionsRoot: H256;311 readonly receiptsRoot: H256;312 readonly logsBloom: EthbloomBloom;313 readonly difficulty: U256;314 readonly number: U256;315 readonly gasLimit: U256;316 readonly gasUsed: U256;317 readonly timestamp: u64;318 readonly extraData: Bytes;319 readonly mixHash: H256;320 readonly nonce: EthereumTypesHashH64;321}322323/** @name EthereumLog */324export interface EthereumLog extends Struct {325 readonly address: H160;326 readonly topics: Vec<H256>;327 readonly data: Bytes;328}329330/** @name EthereumReceiptEip658ReceiptData */331export interface EthereumReceiptEip658ReceiptData extends Struct {332 readonly statusCode: u8;333 readonly usedGas: U256;334 readonly logsBloom: EthbloomBloom;335 readonly logs: Vec<EthereumLog>;336}337338/** @name EthereumReceiptReceiptV3 */339export interface EthereumReceiptReceiptV3 extends Enum {340 readonly isLegacy: boolean;341 readonly asLegacy: EthereumReceiptEip658ReceiptData;342 readonly isEip2930: boolean;343 readonly asEip2930: EthereumReceiptEip658ReceiptData;344 readonly isEip1559: boolean;345 readonly asEip1559: EthereumReceiptEip658ReceiptData;346 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';347}348349/** @name EthereumTransactionAccessListItem */350export interface EthereumTransactionAccessListItem extends Struct {351 readonly address: H160;352 readonly storageKeys: Vec<H256>;353}354355/** @name EthereumTransactionEip1559Transaction */356export interface EthereumTransactionEip1559Transaction extends Struct {357 readonly chainId: u64;358 readonly nonce: U256;359 readonly maxPriorityFeePerGas: U256;360 readonly maxFeePerGas: U256;361 readonly gasLimit: U256;362 readonly action: EthereumTransactionTransactionAction;363 readonly value: U256;364 readonly input: Bytes;365 readonly accessList: Vec<EthereumTransactionAccessListItem>;366 readonly oddYParity: bool;367 readonly r: H256;368 readonly s: H256;369}370371/** @name EthereumTransactionEip2930Transaction */372export interface EthereumTransactionEip2930Transaction extends Struct {373 readonly chainId: u64;374 readonly nonce: U256;375 readonly gasPrice: U256;376 readonly gasLimit: U256;377 readonly action: EthereumTransactionTransactionAction;378 readonly value: U256;379 readonly input: Bytes;380 readonly accessList: Vec<EthereumTransactionAccessListItem>;381 readonly oddYParity: bool;382 readonly r: H256;383 readonly s: H256;384}385386/** @name EthereumTransactionLegacyTransaction */387export interface EthereumTransactionLegacyTransaction extends Struct {388 readonly nonce: U256;389 readonly gasPrice: U256;390 readonly gasLimit: U256;391 readonly action: EthereumTransactionTransactionAction;392 readonly value: U256;393 readonly input: Bytes;394 readonly signature: EthereumTransactionTransactionSignature;395}396397/** @name EthereumTransactionTransactionAction */398export interface EthereumTransactionTransactionAction extends Enum {399 readonly isCall: boolean;400 readonly asCall: H160;401 readonly isCreate: boolean;402 readonly type: 'Call' | 'Create';403}404405/** @name EthereumTransactionTransactionSignature */406export interface EthereumTransactionTransactionSignature extends Struct {407 readonly v: u64;408 readonly r: H256;409 readonly s: H256;410}411412/** @name EthereumTransactionTransactionV2 */413export interface EthereumTransactionTransactionV2 extends Enum {414 readonly isLegacy: boolean;415 readonly asLegacy: EthereumTransactionLegacyTransaction;416 readonly isEip2930: boolean;417 readonly asEip2930: EthereumTransactionEip2930Transaction;418 readonly isEip1559: boolean;419 readonly asEip1559: EthereumTransactionEip1559Transaction;420 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';421}422423/** @name EthereumTypesHashH64 */424export interface EthereumTypesHashH64 extends U8aFixed {}425426/** @name EvmCoreErrorExitError */427export interface EvmCoreErrorExitError extends Enum {428 readonly isStackUnderflow: boolean;429 readonly isStackOverflow: boolean;430 readonly isInvalidJump: boolean;431 readonly isInvalidRange: boolean;432 readonly isDesignatedInvalid: boolean;433 readonly isCallTooDeep: boolean;434 readonly isCreateCollision: boolean;435 readonly isCreateContractLimit: boolean;436 readonly isOutOfOffset: boolean;437 readonly isOutOfGas: boolean;438 readonly isOutOfFund: boolean;439 readonly isPcUnderflow: boolean;440 readonly isCreateEmpty: boolean;441 readonly isOther: boolean;442 readonly asOther: Text;443 readonly isInvalidCode: boolean;444 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';445}446447/** @name EvmCoreErrorExitFatal */448export interface EvmCoreErrorExitFatal extends Enum {449 readonly isNotSupported: boolean;450 readonly isUnhandledInterrupt: boolean;451 readonly isCallErrorAsFatal: boolean;452 readonly asCallErrorAsFatal: EvmCoreErrorExitError;453 readonly isOther: boolean;454 readonly asOther: Text;455 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';456}457458/** @name EvmCoreErrorExitReason */459export interface EvmCoreErrorExitReason extends Enum {460 readonly isSucceed: boolean;461 readonly asSucceed: EvmCoreErrorExitSucceed;462 readonly isError: boolean;463 readonly asError: EvmCoreErrorExitError;464 readonly isRevert: boolean;465 readonly asRevert: EvmCoreErrorExitRevert;466 readonly isFatal: boolean;467 readonly asFatal: EvmCoreErrorExitFatal;468 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';469}470471/** @name EvmCoreErrorExitRevert */472export interface EvmCoreErrorExitRevert extends Enum {473 readonly isReverted: boolean;474 readonly type: 'Reverted';475}476477/** @name EvmCoreErrorExitSucceed */478export interface EvmCoreErrorExitSucceed extends Enum {479 readonly isStopped: boolean;480 readonly isReturned: boolean;481 readonly isSuicided: boolean;482 readonly type: 'Stopped' | 'Returned' | 'Suicided';483}484485/** @name FpRpcTransactionStatus */486export interface FpRpcTransactionStatus extends Struct {487 readonly transactionHash: H256;488 readonly transactionIndex: u32;489 readonly from: H160;490 readonly to: Option<H160>;491 readonly contractAddress: Option<H160>;492 readonly logs: Vec<EthereumLog>;493 readonly logsBloom: EthbloomBloom;494}495496/** @name FrameSupportDispatchDispatchClass */497export interface FrameSupportDispatchDispatchClass extends Enum {498 readonly isNormal: boolean;499 readonly isOperational: boolean;500 readonly isMandatory: boolean;501 readonly type: 'Normal' | 'Operational' | 'Mandatory';502}503504/** @name FrameSupportDispatchDispatchInfo */505export interface FrameSupportDispatchDispatchInfo extends Struct {506 readonly weight: SpWeightsWeightV2Weight;507 readonly class: FrameSupportDispatchDispatchClass;508 readonly paysFee: FrameSupportDispatchPays;509}510511/** @name FrameSupportDispatchPays */512export interface FrameSupportDispatchPays extends Enum {513 readonly isYes: boolean;514 readonly isNo: boolean;515 readonly type: 'Yes' | 'No';516}517518/** @name FrameSupportDispatchPerDispatchClassU32 */519export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {520 readonly normal: u32;521 readonly operational: u32;522 readonly mandatory: u32;523}524525/** @name FrameSupportDispatchPerDispatchClassWeight */526export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {527 readonly normal: SpWeightsWeightV2Weight;528 readonly operational: SpWeightsWeightV2Weight;529 readonly mandatory: SpWeightsWeightV2Weight;530}531532/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */533export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {534 readonly normal: FrameSystemLimitsWeightsPerClass;535 readonly operational: FrameSystemLimitsWeightsPerClass;536 readonly mandatory: FrameSystemLimitsWeightsPerClass;537}538539/** @name FrameSupportPalletId */540export interface FrameSupportPalletId extends U8aFixed {}541542/** @name FrameSupportTokensMiscBalanceStatus */543export interface FrameSupportTokensMiscBalanceStatus extends Enum {544 readonly isFree: boolean;545 readonly isReserved: boolean;546 readonly type: 'Free' | 'Reserved';547}548549/** @name FrameSystemAccountInfo */550export interface FrameSystemAccountInfo extends Struct {551 readonly nonce: u32;552 readonly consumers: u32;553 readonly providers: u32;554 readonly sufficients: u32;555 readonly data: PalletBalancesAccountData;556}557558/** @name FrameSystemCall */559export interface FrameSystemCall extends Enum {560 readonly isRemark: boolean;561 readonly asRemark: {562 readonly remark: Bytes;563 } & Struct;564 readonly isSetHeapPages: boolean;565 readonly asSetHeapPages: {566 readonly pages: u64;567 } & Struct;568 readonly isSetCode: boolean;569 readonly asSetCode: {570 readonly code: Bytes;571 } & Struct;572 readonly isSetCodeWithoutChecks: boolean;573 readonly asSetCodeWithoutChecks: {574 readonly code: Bytes;575 } & Struct;576 readonly isSetStorage: boolean;577 readonly asSetStorage: {578 readonly items: Vec<ITuple<[Bytes, Bytes]>>;579 } & Struct;580 readonly isKillStorage: boolean;581 readonly asKillStorage: {582 readonly keys_: Vec<Bytes>;583 } & Struct;584 readonly isKillPrefix: boolean;585 readonly asKillPrefix: {586 readonly prefix: Bytes;587 readonly subkeys: u32;588 } & Struct;589 readonly isRemarkWithEvent: boolean;590 readonly asRemarkWithEvent: {591 readonly remark: Bytes;592 } & Struct;593 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';594}595596/** @name FrameSystemError */597export interface FrameSystemError extends Enum {598 readonly isInvalidSpecName: boolean;599 readonly isSpecVersionNeedsToIncrease: boolean;600 readonly isFailedToExtractRuntimeVersion: boolean;601 readonly isNonDefaultComposite: boolean;602 readonly isNonZeroRefCount: boolean;603 readonly isCallFiltered: boolean;604 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';605}606607/** @name FrameSystemEvent */608export interface FrameSystemEvent extends Enum {609 readonly isExtrinsicSuccess: boolean;610 readonly asExtrinsicSuccess: {611 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;612 } & Struct;613 readonly isExtrinsicFailed: boolean;614 readonly asExtrinsicFailed: {615 readonly dispatchError: SpRuntimeDispatchError;616 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;617 } & Struct;618 readonly isCodeUpdated: boolean;619 readonly isNewAccount: boolean;620 readonly asNewAccount: {621 readonly account: AccountId32;622 } & Struct;623 readonly isKilledAccount: boolean;624 readonly asKilledAccount: {625 readonly account: AccountId32;626 } & Struct;627 readonly isRemarked: boolean;628 readonly asRemarked: {629 readonly sender: AccountId32;630 readonly hash_: H256;631 } & Struct;632 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';633}634635/** @name FrameSystemEventRecord */636export interface FrameSystemEventRecord extends Struct {637 readonly phase: FrameSystemPhase;638 readonly event: Event;639 readonly topics: Vec<H256>;640}641642/** @name FrameSystemExtensionsCheckGenesis */643export interface FrameSystemExtensionsCheckGenesis extends Null {}644645/** @name FrameSystemExtensionsCheckNonce */646export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}647648/** @name FrameSystemExtensionsCheckSpecVersion */649export interface FrameSystemExtensionsCheckSpecVersion extends Null {}650651/** @name FrameSystemExtensionsCheckTxVersion */652export interface FrameSystemExtensionsCheckTxVersion extends Null {}653654/** @name FrameSystemExtensionsCheckWeight */655export interface FrameSystemExtensionsCheckWeight extends Null {}656657/** @name FrameSystemLastRuntimeUpgradeInfo */658export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {659 readonly specVersion: Compact<u32>;660 readonly specName: Text;661}662663/** @name FrameSystemLimitsBlockLength */664export interface FrameSystemLimitsBlockLength extends Struct {665 readonly max: FrameSupportDispatchPerDispatchClassU32;666}667668/** @name FrameSystemLimitsBlockWeights */669export interface FrameSystemLimitsBlockWeights extends Struct {670 readonly baseBlock: SpWeightsWeightV2Weight;671 readonly maxBlock: SpWeightsWeightV2Weight;672 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;673}674675/** @name FrameSystemLimitsWeightsPerClass */676export interface FrameSystemLimitsWeightsPerClass extends Struct {677 readonly baseExtrinsic: SpWeightsWeightV2Weight;678 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;679 readonly maxTotal: Option<SpWeightsWeightV2Weight>;680 readonly reserved: Option<SpWeightsWeightV2Weight>;681}682683/** @name FrameSystemPhase */684export interface FrameSystemPhase extends Enum {685 readonly isApplyExtrinsic: boolean;686 readonly asApplyExtrinsic: u32;687 readonly isFinalization: boolean;688 readonly isInitialization: boolean;689 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';690}691692/** @name OpalRuntimeRuntime */693export interface OpalRuntimeRuntime extends Null {}694695/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */696export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}697698/** @name OrmlTokensAccountData */699export interface OrmlTokensAccountData extends Struct {700 readonly free: u128;701 readonly reserved: u128;702 readonly frozen: u128;703}704705/** @name OrmlTokensBalanceLock */706export interface OrmlTokensBalanceLock extends Struct {707 readonly id: U8aFixed;708 readonly amount: u128;709}710711/** @name OrmlTokensModuleCall */712export interface OrmlTokensModuleCall extends Enum {713 readonly isTransfer: boolean;714 readonly asTransfer: {715 readonly dest: MultiAddress;716 readonly currencyId: PalletForeignAssetsAssetIds;717 readonly amount: Compact<u128>;718 } & Struct;719 readonly isTransferAll: boolean;720 readonly asTransferAll: {721 readonly dest: MultiAddress;722 readonly currencyId: PalletForeignAssetsAssetIds;723 readonly keepAlive: bool;724 } & Struct;725 readonly isTransferKeepAlive: boolean;726 readonly asTransferKeepAlive: {727 readonly dest: MultiAddress;728 readonly currencyId: PalletForeignAssetsAssetIds;729 readonly amount: Compact<u128>;730 } & Struct;731 readonly isForceTransfer: boolean;732 readonly asForceTransfer: {733 readonly source: MultiAddress;734 readonly dest: MultiAddress;735 readonly currencyId: PalletForeignAssetsAssetIds;736 readonly amount: Compact<u128>;737 } & Struct;738 readonly isSetBalance: boolean;739 readonly asSetBalance: {740 readonly who: MultiAddress;741 readonly currencyId: PalletForeignAssetsAssetIds;742 readonly newFree: Compact<u128>;743 readonly newReserved: Compact<u128>;744 } & Struct;745 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';746}747748/** @name OrmlTokensModuleError */749export interface OrmlTokensModuleError extends Enum {750 readonly isBalanceTooLow: boolean;751 readonly isAmountIntoBalanceFailed: boolean;752 readonly isLiquidityRestrictions: boolean;753 readonly isMaxLocksExceeded: boolean;754 readonly isKeepAlive: boolean;755 readonly isExistentialDeposit: boolean;756 readonly isDeadAccount: boolean;757 readonly isTooManyReserves: boolean;758 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';759}760761/** @name OrmlTokensModuleEvent */762export interface OrmlTokensModuleEvent extends Enum {763 readonly isEndowed: boolean;764 readonly asEndowed: {765 readonly currencyId: PalletForeignAssetsAssetIds;766 readonly who: AccountId32;767 readonly amount: u128;768 } & Struct;769 readonly isDustLost: boolean;770 readonly asDustLost: {771 readonly currencyId: PalletForeignAssetsAssetIds;772 readonly who: AccountId32;773 readonly amount: u128;774 } & Struct;775 readonly isTransfer: boolean;776 readonly asTransfer: {777 readonly currencyId: PalletForeignAssetsAssetIds;778 readonly from: AccountId32;779 readonly to: AccountId32;780 readonly amount: u128;781 } & Struct;782 readonly isReserved: boolean;783 readonly asReserved: {784 readonly currencyId: PalletForeignAssetsAssetIds;785 readonly who: AccountId32;786 readonly amount: u128;787 } & Struct;788 readonly isUnreserved: boolean;789 readonly asUnreserved: {790 readonly currencyId: PalletForeignAssetsAssetIds;791 readonly who: AccountId32;792 readonly amount: u128;793 } & Struct;794 readonly isReserveRepatriated: boolean;795 readonly asReserveRepatriated: {796 readonly currencyId: PalletForeignAssetsAssetIds;797 readonly from: AccountId32;798 readonly to: AccountId32;799 readonly amount: u128;800 readonly status: FrameSupportTokensMiscBalanceStatus;801 } & Struct;802 readonly isBalanceSet: boolean;803 readonly asBalanceSet: {804 readonly currencyId: PalletForeignAssetsAssetIds;805 readonly who: AccountId32;806 readonly free: u128;807 readonly reserved: u128;808 } & Struct;809 readonly isTotalIssuanceSet: boolean;810 readonly asTotalIssuanceSet: {811 readonly currencyId: PalletForeignAssetsAssetIds;812 readonly amount: u128;813 } & Struct;814 readonly isWithdrawn: boolean;815 readonly asWithdrawn: {816 readonly currencyId: PalletForeignAssetsAssetIds;817 readonly who: AccountId32;818 readonly amount: u128;819 } & Struct;820 readonly isSlashed: boolean;821 readonly asSlashed: {822 readonly currencyId: PalletForeignAssetsAssetIds;823 readonly who: AccountId32;824 readonly freeAmount: u128;825 readonly reservedAmount: u128;826 } & Struct;827 readonly isDeposited: boolean;828 readonly asDeposited: {829 readonly currencyId: PalletForeignAssetsAssetIds;830 readonly who: AccountId32;831 readonly amount: u128;832 } & Struct;833 readonly isLockSet: boolean;834 readonly asLockSet: {835 readonly lockId: U8aFixed;836 readonly currencyId: PalletForeignAssetsAssetIds;837 readonly who: AccountId32;838 readonly amount: u128;839 } & Struct;840 readonly isLockRemoved: boolean;841 readonly asLockRemoved: {842 readonly lockId: U8aFixed;843 readonly currencyId: PalletForeignAssetsAssetIds;844 readonly who: AccountId32;845 } & Struct;846 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';847}848849/** @name OrmlTokensReserveData */850export interface OrmlTokensReserveData extends Struct {851 readonly id: Null;852 readonly amount: u128;853}854855/** @name OrmlVestingModuleCall */856export interface OrmlVestingModuleCall extends Enum {857 readonly isClaim: boolean;858 readonly isVestedTransfer: boolean;859 readonly asVestedTransfer: {860 readonly dest: MultiAddress;861 readonly schedule: OrmlVestingVestingSchedule;862 } & Struct;863 readonly isUpdateVestingSchedules: boolean;864 readonly asUpdateVestingSchedules: {865 readonly who: MultiAddress;866 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;867 } & Struct;868 readonly isClaimFor: boolean;869 readonly asClaimFor: {870 readonly dest: MultiAddress;871 } & Struct;872 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';873}874875/** @name OrmlVestingModuleError */876export interface OrmlVestingModuleError extends Enum {877 readonly isZeroVestingPeriod: boolean;878 readonly isZeroVestingPeriodCount: boolean;879 readonly isInsufficientBalanceToLock: boolean;880 readonly isTooManyVestingSchedules: boolean;881 readonly isAmountLow: boolean;882 readonly isMaxVestingSchedulesExceeded: boolean;883 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';884}885886/** @name OrmlVestingModuleEvent */887export interface OrmlVestingModuleEvent extends Enum {888 readonly isVestingScheduleAdded: boolean;889 readonly asVestingScheduleAdded: {890 readonly from: AccountId32;891 readonly to: AccountId32;892 readonly vestingSchedule: OrmlVestingVestingSchedule;893 } & Struct;894 readonly isClaimed: boolean;895 readonly asClaimed: {896 readonly who: AccountId32;897 readonly amount: u128;898 } & Struct;899 readonly isVestingSchedulesUpdated: boolean;900 readonly asVestingSchedulesUpdated: {901 readonly who: AccountId32;902 } & Struct;903 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';904}905906/** @name OrmlVestingVestingSchedule */907export interface OrmlVestingVestingSchedule extends Struct {908 readonly start: u32;909 readonly period: u32;910 readonly periodCount: u32;911 readonly perPeriod: Compact<u128>;912}913914/** @name OrmlXtokensModuleCall */915export interface OrmlXtokensModuleCall extends Enum {916 readonly isTransfer: boolean;917 readonly asTransfer: {918 readonly currencyId: PalletForeignAssetsAssetIds;919 readonly amount: u128;920 readonly dest: XcmVersionedMultiLocation;921 readonly destWeightLimit: XcmV2WeightLimit;922 } & Struct;923 readonly isTransferMultiasset: boolean;924 readonly asTransferMultiasset: {925 readonly asset: XcmVersionedMultiAsset;926 readonly dest: XcmVersionedMultiLocation;927 readonly destWeightLimit: XcmV2WeightLimit;928 } & Struct;929 readonly isTransferWithFee: boolean;930 readonly asTransferWithFee: {931 readonly currencyId: PalletForeignAssetsAssetIds;932 readonly amount: u128;933 readonly fee: u128;934 readonly dest: XcmVersionedMultiLocation;935 readonly destWeightLimit: XcmV2WeightLimit;936 } & Struct;937 readonly isTransferMultiassetWithFee: boolean;938 readonly asTransferMultiassetWithFee: {939 readonly asset: XcmVersionedMultiAsset;940 readonly fee: XcmVersionedMultiAsset;941 readonly dest: XcmVersionedMultiLocation;942 readonly destWeightLimit: XcmV2WeightLimit;943 } & Struct;944 readonly isTransferMulticurrencies: boolean;945 readonly asTransferMulticurrencies: {946 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;947 readonly feeItem: u32;948 readonly dest: XcmVersionedMultiLocation;949 readonly destWeightLimit: XcmV2WeightLimit;950 } & Struct;951 readonly isTransferMultiassets: boolean;952 readonly asTransferMultiassets: {953 readonly assets: XcmVersionedMultiAssets;954 readonly feeItem: u32;955 readonly dest: XcmVersionedMultiLocation;956 readonly destWeightLimit: XcmV2WeightLimit;957 } & Struct;958 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';959}960961/** @name OrmlXtokensModuleError */962export interface OrmlXtokensModuleError extends Enum {963 readonly isAssetHasNoReserve: boolean;964 readonly isNotCrossChainTransfer: boolean;965 readonly isInvalidDest: boolean;966 readonly isNotCrossChainTransferableCurrency: boolean;967 readonly isUnweighableMessage: boolean;968 readonly isXcmExecutionFailed: boolean;969 readonly isCannotReanchor: boolean;970 readonly isInvalidAncestry: boolean;971 readonly isInvalidAsset: boolean;972 readonly isDestinationNotInvertible: boolean;973 readonly isBadVersion: boolean;974 readonly isDistinctReserveForAssetAndFee: boolean;975 readonly isZeroFee: boolean;976 readonly isZeroAmount: boolean;977 readonly isTooManyAssetsBeingSent: boolean;978 readonly isAssetIndexNonExistent: boolean;979 readonly isFeeNotEnough: boolean;980 readonly isNotSupportedMultiLocation: boolean;981 readonly isMinXcmFeeNotDefined: boolean;982 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';983}984985/** @name OrmlXtokensModuleEvent */986export interface OrmlXtokensModuleEvent extends Enum {987 readonly isTransferredMultiAssets: boolean;988 readonly asTransferredMultiAssets: {989 readonly sender: AccountId32;990 readonly assets: XcmV1MultiassetMultiAssets;991 readonly fee: XcmV1MultiAsset;992 readonly dest: XcmV1MultiLocation;993 } & Struct;994 readonly type: 'TransferredMultiAssets';995}996997/** @name PalletAppPromotionCall */998export interface PalletAppPromotionCall extends Enum {999 readonly isSetAdminAddress: boolean;1000 readonly asSetAdminAddress: {1001 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1002 } & Struct;1003 readonly isStake: boolean;1004 readonly asStake: {1005 readonly amount: u128;1006 } & Struct;1007 readonly isUnstake: boolean;1008 readonly isSponsorCollection: boolean;1009 readonly asSponsorCollection: {1010 readonly collectionId: u32;1011 } & Struct;1012 readonly isStopSponsoringCollection: boolean;1013 readonly asStopSponsoringCollection: {1014 readonly collectionId: u32;1015 } & Struct;1016 readonly isSponsorContract: boolean;1017 readonly asSponsorContract: {1018 readonly contractId: H160;1019 } & Struct;1020 readonly isStopSponsoringContract: boolean;1021 readonly asStopSponsoringContract: {1022 readonly contractId: H160;1023 } & Struct;1024 readonly isPayoutStakers: boolean;1025 readonly asPayoutStakers: {1026 readonly stakersNumber: Option<u8>;1027 } & Struct;1028 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1029}10301031/** @name PalletAppPromotionError */1032export interface PalletAppPromotionError extends Enum {1033 readonly isAdminNotSet: boolean;1034 readonly isNoPermission: boolean;1035 readonly isNotSufficientFunds: boolean;1036 readonly isPendingForBlockOverflow: boolean;1037 readonly isSponsorNotSet: boolean;1038 readonly isIncorrectLockedBalanceOperation: boolean;1039 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1040}10411042/** @name PalletAppPromotionEvent */1043export interface PalletAppPromotionEvent extends Enum {1044 readonly isStakingRecalculation: boolean;1045 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1046 readonly isStake: boolean;1047 readonly asStake: ITuple<[AccountId32, u128]>;1048 readonly isUnstake: boolean;1049 readonly asUnstake: ITuple<[AccountId32, u128]>;1050 readonly isSetAdmin: boolean;1051 readonly asSetAdmin: AccountId32;1052 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1053}10541055/** @name PalletBalancesAccountData */1056export interface PalletBalancesAccountData extends Struct {1057 readonly free: u128;1058 readonly reserved: u128;1059 readonly miscFrozen: u128;1060 readonly feeFrozen: u128;1061}10621063/** @name PalletBalancesBalanceLock */1064export interface PalletBalancesBalanceLock extends Struct {1065 readonly id: U8aFixed;1066 readonly amount: u128;1067 readonly reasons: PalletBalancesReasons;1068}10691070/** @name PalletBalancesCall */1071export interface PalletBalancesCall extends Enum {1072 readonly isTransfer: boolean;1073 readonly asTransfer: {1074 readonly dest: MultiAddress;1075 readonly value: Compact<u128>;1076 } & Struct;1077 readonly isSetBalance: boolean;1078 readonly asSetBalance: {1079 readonly who: MultiAddress;1080 readonly newFree: Compact<u128>;1081 readonly newReserved: Compact<u128>;1082 } & Struct;1083 readonly isForceTransfer: boolean;1084 readonly asForceTransfer: {1085 readonly source: MultiAddress;1086 readonly dest: MultiAddress;1087 readonly value: Compact<u128>;1088 } & Struct;1089 readonly isTransferKeepAlive: boolean;1090 readonly asTransferKeepAlive: {1091 readonly dest: MultiAddress;1092 readonly value: Compact<u128>;1093 } & Struct;1094 readonly isTransferAll: boolean;1095 readonly asTransferAll: {1096 readonly dest: MultiAddress;1097 readonly keepAlive: bool;1098 } & Struct;1099 readonly isForceUnreserve: boolean;1100 readonly asForceUnreserve: {1101 readonly who: MultiAddress;1102 readonly amount: u128;1103 } & Struct;1104 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1105}11061107/** @name PalletBalancesError */1108export interface PalletBalancesError extends Enum {1109 readonly isVestingBalance: boolean;1110 readonly isLiquidityRestrictions: boolean;1111 readonly isInsufficientBalance: boolean;1112 readonly isExistentialDeposit: boolean;1113 readonly isKeepAlive: boolean;1114 readonly isExistingVestingSchedule: boolean;1115 readonly isDeadAccount: boolean;1116 readonly isTooManyReserves: boolean;1117 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1118}11191120/** @name PalletBalancesEvent */1121export interface PalletBalancesEvent extends Enum {1122 readonly isEndowed: boolean;1123 readonly asEndowed: {1124 readonly account: AccountId32;1125 readonly freeBalance: u128;1126 } & Struct;1127 readonly isDustLost: boolean;1128 readonly asDustLost: {1129 readonly account: AccountId32;1130 readonly amount: u128;1131 } & Struct;1132 readonly isTransfer: boolean;1133 readonly asTransfer: {1134 readonly from: AccountId32;1135 readonly to: AccountId32;1136 readonly amount: u128;1137 } & Struct;1138 readonly isBalanceSet: boolean;1139 readonly asBalanceSet: {1140 readonly who: AccountId32;1141 readonly free: u128;1142 readonly reserved: u128;1143 } & Struct;1144 readonly isReserved: boolean;1145 readonly asReserved: {1146 readonly who: AccountId32;1147 readonly amount: u128;1148 } & Struct;1149 readonly isUnreserved: boolean;1150 readonly asUnreserved: {1151 readonly who: AccountId32;1152 readonly amount: u128;1153 } & Struct;1154 readonly isReserveRepatriated: boolean;1155 readonly asReserveRepatriated: {1156 readonly from: AccountId32;1157 readonly to: AccountId32;1158 readonly amount: u128;1159 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1160 } & Struct;1161 readonly isDeposit: boolean;1162 readonly asDeposit: {1163 readonly who: AccountId32;1164 readonly amount: u128;1165 } & Struct;1166 readonly isWithdraw: boolean;1167 readonly asWithdraw: {1168 readonly who: AccountId32;1169 readonly amount: u128;1170 } & Struct;1171 readonly isSlashed: boolean;1172 readonly asSlashed: {1173 readonly who: AccountId32;1174 readonly amount: u128;1175 } & Struct;1176 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1177}11781179/** @name PalletBalancesReasons */1180export interface PalletBalancesReasons extends Enum {1181 readonly isFee: boolean;1182 readonly isMisc: boolean;1183 readonly isAll: boolean;1184 readonly type: 'Fee' | 'Misc' | 'All';1185}11861187/** @name PalletBalancesReserveData */1188export interface PalletBalancesReserveData extends Struct {1189 readonly id: U8aFixed;1190 readonly amount: u128;1191}11921193/** @name PalletCommonError */1194export interface PalletCommonError extends Enum {1195 readonly isCollectionNotFound: boolean;1196 readonly isMustBeTokenOwner: boolean;1197 readonly isNoPermission: boolean;1198 readonly isCantDestroyNotEmptyCollection: boolean;1199 readonly isPublicMintingNotAllowed: boolean;1200 readonly isAddressNotInAllowlist: boolean;1201 readonly isCollectionNameLimitExceeded: boolean;1202 readonly isCollectionDescriptionLimitExceeded: boolean;1203 readonly isCollectionTokenPrefixLimitExceeded: boolean;1204 readonly isTotalCollectionsLimitExceeded: boolean;1205 readonly isCollectionAdminCountExceeded: boolean;1206 readonly isCollectionLimitBoundsExceeded: boolean;1207 readonly isOwnerPermissionsCantBeReverted: boolean;1208 readonly isTransferNotAllowed: boolean;1209 readonly isAccountTokenLimitExceeded: boolean;1210 readonly isCollectionTokenLimitExceeded: boolean;1211 readonly isMetadataFlagFrozen: boolean;1212 readonly isTokenNotFound: boolean;1213 readonly isTokenValueTooLow: boolean;1214 readonly isApprovedValueTooLow: boolean;1215 readonly isCantApproveMoreThanOwned: boolean;1216 readonly isAddressIsZero: boolean;1217 readonly isUnsupportedOperation: boolean;1218 readonly isNotSufficientFounds: boolean;1219 readonly isUserIsNotAllowedToNest: boolean;1220 readonly isSourceCollectionIsNotAllowedToNest: boolean;1221 readonly isCollectionFieldSizeExceeded: boolean;1222 readonly isNoSpaceForProperty: boolean;1223 readonly isPropertyLimitReached: boolean;1224 readonly isPropertyKeyIsTooLong: boolean;1225 readonly isInvalidCharacterInPropertyKey: boolean;1226 readonly isEmptyPropertyKey: boolean;1227 readonly isCollectionIsExternal: boolean;1228 readonly isCollectionIsInternal: boolean;1229 readonly isConfirmSponsorshipFail: boolean;1230 readonly isUserIsNotCollectionAdmin: boolean;1231 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';1232}12331234/** @name PalletCommonEvent */1235export interface PalletCommonEvent extends Enum {1236 readonly isCollectionCreated: boolean;1237 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1238 readonly isCollectionDestroyed: boolean;1239 readonly asCollectionDestroyed: u32;1240 readonly isItemCreated: boolean;1241 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1242 readonly isItemDestroyed: boolean;1243 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1244 readonly isTransfer: boolean;1245 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1246 readonly isApproved: boolean;1247 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1248 readonly isApprovedForAll: boolean;1249 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1250 readonly isCollectionPropertySet: boolean;1251 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1252 readonly isCollectionPropertyDeleted: boolean;1253 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1254 readonly isTokenPropertySet: boolean;1255 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1256 readonly isTokenPropertyDeleted: boolean;1257 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1258 readonly isPropertyPermissionSet: boolean;1259 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1260 readonly isAllowListAddressAdded: boolean;1261 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1262 readonly isAllowListAddressRemoved: boolean;1263 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1264 readonly isCollectionAdminAdded: boolean;1265 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1266 readonly isCollectionAdminRemoved: boolean;1267 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1268 readonly isCollectionLimitSet: boolean;1269 readonly asCollectionLimitSet: u32;1270 readonly isCollectionOwnerChanged: boolean;1271 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1272 readonly isCollectionPermissionSet: boolean;1273 readonly asCollectionPermissionSet: u32;1274 readonly isCollectionSponsorSet: boolean;1275 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1276 readonly isSponsorshipConfirmed: boolean;1277 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1278 readonly isCollectionSponsorRemoved: boolean;1279 readonly asCollectionSponsorRemoved: u32;1280 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1281}12821283/** @name PalletConfigurationAppPromotionConfiguration */1284export interface PalletConfigurationAppPromotionConfiguration extends Struct {1285 readonly recalculationInterval: Option<u32>;1286 readonly pendingInterval: Option<u32>;1287 readonly intervalIncome: Option<Perbill>;1288 readonly maxStakersPerCalculation: Option<u8>;1289}12901291/** @name PalletConfigurationCall */1292export interface PalletConfigurationCall extends Enum {1293 readonly isSetWeightToFeeCoefficientOverride: boolean;1294 readonly asSetWeightToFeeCoefficientOverride: {1295 readonly coeff: Option<u64>;1296 } & Struct;1297 readonly isSetMinGasPriceOverride: boolean;1298 readonly asSetMinGasPriceOverride: {1299 readonly coeff: Option<u64>;1300 } & Struct;1301 readonly isSetXcmAllowedLocations: boolean;1302 readonly asSetXcmAllowedLocations: {1303 readonly locations: Option<Vec<XcmV1MultiLocation>>;1304 } & Struct;1305 readonly isSetAppPromotionConfigurationOverride: boolean;1306 readonly asSetAppPromotionConfigurationOverride: {1307 readonly configuration: PalletConfigurationAppPromotionConfiguration;1308 } & Struct;1309 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';1310}13111312/** @name PalletConfigurationError */1313export interface PalletConfigurationError extends Enum {1314 readonly isInconsistentConfiguration: boolean;1315 readonly type: 'InconsistentConfiguration';1316}13171318/** @name PalletEthereumCall */1319export interface PalletEthereumCall extends Enum {1320 readonly isTransact: boolean;1321 readonly asTransact: {1322 readonly transaction: EthereumTransactionTransactionV2;1323 } & Struct;1324 readonly type: 'Transact';1325}13261327/** @name PalletEthereumError */1328export interface PalletEthereumError extends Enum {1329 readonly isInvalidSignature: boolean;1330 readonly isPreLogExists: boolean;1331 readonly type: 'InvalidSignature' | 'PreLogExists';1332}13331334/** @name PalletEthereumEvent */1335export interface PalletEthereumEvent extends Enum {1336 readonly isExecuted: boolean;1337 readonly asExecuted: {1338 readonly from: H160;1339 readonly to: H160;1340 readonly transactionHash: H256;1341 readonly exitReason: EvmCoreErrorExitReason;1342 } & Struct;1343 readonly type: 'Executed';1344}13451346/** @name PalletEthereumFakeTransactionFinalizer */1347export interface PalletEthereumFakeTransactionFinalizer extends Null {}13481349/** @name PalletEvmAccountBasicCrossAccountIdRepr */1350export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1351 readonly isSubstrate: boolean;1352 readonly asSubstrate: AccountId32;1353 readonly isEthereum: boolean;1354 readonly asEthereum: H160;1355 readonly type: 'Substrate' | 'Ethereum';1356}13571358/** @name PalletEvmCall */1359export interface PalletEvmCall extends Enum {1360 readonly isWithdraw: boolean;1361 readonly asWithdraw: {1362 readonly address: H160;1363 readonly value: u128;1364 } & Struct;1365 readonly isCall: boolean;1366 readonly asCall: {1367 readonly source: H160;1368 readonly target: H160;1369 readonly input: Bytes;1370 readonly value: U256;1371 readonly gasLimit: u64;1372 readonly maxFeePerGas: U256;1373 readonly maxPriorityFeePerGas: Option<U256>;1374 readonly nonce: Option<U256>;1375 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1376 } & Struct;1377 readonly isCreate: boolean;1378 readonly asCreate: {1379 readonly source: H160;1380 readonly init: Bytes;1381 readonly value: U256;1382 readonly gasLimit: u64;1383 readonly maxFeePerGas: U256;1384 readonly maxPriorityFeePerGas: Option<U256>;1385 readonly nonce: Option<U256>;1386 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1387 } & Struct;1388 readonly isCreate2: boolean;1389 readonly asCreate2: {1390 readonly source: H160;1391 readonly init: Bytes;1392 readonly salt: H256;1393 readonly value: U256;1394 readonly gasLimit: u64;1395 readonly maxFeePerGas: U256;1396 readonly maxPriorityFeePerGas: Option<U256>;1397 readonly nonce: Option<U256>;1398 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1399 } & Struct;1400 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1401}14021403/** @name PalletEvmCoderSubstrateError */1404export interface PalletEvmCoderSubstrateError extends Enum {1405 readonly isOutOfGas: boolean;1406 readonly isOutOfFund: boolean;1407 readonly type: 'OutOfGas' | 'OutOfFund';1408}14091410/** @name PalletEvmContractHelpersError */1411export interface PalletEvmContractHelpersError extends Enum {1412 readonly isNoPermission: boolean;1413 readonly isNoPendingSponsor: boolean;1414 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1415 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1416}14171418/** @name PalletEvmContractHelpersEvent */1419export interface PalletEvmContractHelpersEvent extends Enum {1420 readonly isContractSponsorSet: boolean;1421 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1422 readonly isContractSponsorshipConfirmed: boolean;1423 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1424 readonly isContractSponsorRemoved: boolean;1425 readonly asContractSponsorRemoved: H160;1426 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1427}14281429/** @name PalletEvmContractHelpersSponsoringModeT */1430export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1431 readonly isDisabled: boolean;1432 readonly isAllowlisted: boolean;1433 readonly isGenerous: boolean;1434 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1435}14361437/** @name PalletEvmError */1438export interface PalletEvmError extends Enum {1439 readonly isBalanceLow: boolean;1440 readonly isFeeOverflow: boolean;1441 readonly isPaymentOverflow: boolean;1442 readonly isWithdrawFailed: boolean;1443 readonly isGasPriceTooLow: boolean;1444 readonly isInvalidNonce: boolean;1445 readonly isGasLimitTooLow: boolean;1446 readonly isGasLimitTooHigh: boolean;1447 readonly isUndefined: boolean;1448 readonly isReentrancy: boolean;1449 readonly isTransactionMustComeFromEOA: boolean;1450 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';1451}14521453/** @name PalletEvmEvent */1454export interface PalletEvmEvent extends Enum {1455 readonly isLog: boolean;1456 readonly asLog: {1457 readonly log: EthereumLog;1458 } & Struct;1459 readonly isCreated: boolean;1460 readonly asCreated: {1461 readonly address: H160;1462 } & Struct;1463 readonly isCreatedFailed: boolean;1464 readonly asCreatedFailed: {1465 readonly address: H160;1466 } & Struct;1467 readonly isExecuted: boolean;1468 readonly asExecuted: {1469 readonly address: H160;1470 } & Struct;1471 readonly isExecutedFailed: boolean;1472 readonly asExecutedFailed: {1473 readonly address: H160;1474 } & Struct;1475 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1476}14771478/** @name PalletEvmMigrationCall */1479export interface PalletEvmMigrationCall extends Enum {1480 readonly isBegin: boolean;1481 readonly asBegin: {1482 readonly address: H160;1483 } & Struct;1484 readonly isSetData: boolean;1485 readonly asSetData: {1486 readonly address: H160;1487 readonly data: Vec<ITuple<[H256, H256]>>;1488 } & Struct;1489 readonly isFinish: boolean;1490 readonly asFinish: {1491 readonly address: H160;1492 readonly code: Bytes;1493 } & Struct;1494 readonly isInsertEthLogs: boolean;1495 readonly asInsertEthLogs: {1496 readonly logs: Vec<EthereumLog>;1497 } & Struct;1498 readonly isInsertEvents: boolean;1499 readonly asInsertEvents: {1500 readonly events: Vec<Bytes>;1501 } & Struct;1502 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1503}15041505/** @name PalletEvmMigrationError */1506export interface PalletEvmMigrationError extends Enum {1507 readonly isAccountNotEmpty: boolean;1508 readonly isAccountIsNotMigrating: boolean;1509 readonly isBadEvent: boolean;1510 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1511}15121513/** @name PalletEvmMigrationEvent */1514export interface PalletEvmMigrationEvent extends Enum {1515 readonly isTestEvent: boolean;1516 readonly type: 'TestEvent';1517}15181519/** @name PalletForeignAssetsAssetIds */1520export interface PalletForeignAssetsAssetIds extends Enum {1521 readonly isForeignAssetId: boolean;1522 readonly asForeignAssetId: u32;1523 readonly isNativeAssetId: boolean;1524 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1525 readonly type: 'ForeignAssetId' | 'NativeAssetId';1526}15271528/** @name PalletForeignAssetsModuleAssetMetadata */1529export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1530 readonly name: Bytes;1531 readonly symbol: Bytes;1532 readonly decimals: u8;1533 readonly minimalBalance: u128;1534}15351536/** @name PalletForeignAssetsModuleCall */1537export interface PalletForeignAssetsModuleCall extends Enum {1538 readonly isRegisterForeignAsset: boolean;1539 readonly asRegisterForeignAsset: {1540 readonly owner: AccountId32;1541 readonly location: XcmVersionedMultiLocation;1542 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1543 } & Struct;1544 readonly isUpdateForeignAsset: boolean;1545 readonly asUpdateForeignAsset: {1546 readonly foreignAssetId: u32;1547 readonly location: XcmVersionedMultiLocation;1548 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1549 } & Struct;1550 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1551}15521553/** @name PalletForeignAssetsModuleError */1554export interface PalletForeignAssetsModuleError extends Enum {1555 readonly isBadLocation: boolean;1556 readonly isMultiLocationExisted: boolean;1557 readonly isAssetIdNotExists: boolean;1558 readonly isAssetIdExisted: boolean;1559 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1560}15611562/** @name PalletForeignAssetsModuleEvent */1563export interface PalletForeignAssetsModuleEvent extends Enum {1564 readonly isForeignAssetRegistered: boolean;1565 readonly asForeignAssetRegistered: {1566 readonly assetId: u32;1567 readonly assetAddress: XcmV1MultiLocation;1568 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1569 } & Struct;1570 readonly isForeignAssetUpdated: boolean;1571 readonly asForeignAssetUpdated: {1572 readonly assetId: u32;1573 readonly assetAddress: XcmV1MultiLocation;1574 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1575 } & Struct;1576 readonly isAssetRegistered: boolean;1577 readonly asAssetRegistered: {1578 readonly assetId: PalletForeignAssetsAssetIds;1579 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1580 } & Struct;1581 readonly isAssetUpdated: boolean;1582 readonly asAssetUpdated: {1583 readonly assetId: PalletForeignAssetsAssetIds;1584 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1585 } & Struct;1586 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1587}15881589/** @name PalletForeignAssetsNativeCurrency */1590export interface PalletForeignAssetsNativeCurrency extends Enum {1591 readonly isHere: boolean;1592 readonly isParent: boolean;1593 readonly type: 'Here' | 'Parent';1594}15951596/** @name PalletFungibleError */1597export interface PalletFungibleError extends Enum {1598 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1599 readonly isFungibleItemsHaveNoId: boolean;1600 readonly isFungibleItemsDontHaveData: boolean;1601 readonly isFungibleDisallowsNesting: boolean;1602 readonly isSettingPropertiesNotAllowed: boolean;1603 readonly isSettingAllowanceForAllNotAllowed: boolean;1604 readonly isFungibleTokensAreAlwaysValid: boolean;1605 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1606}16071608/** @name PalletInflationCall */1609export interface PalletInflationCall extends Enum {1610 readonly isStartInflation: boolean;1611 readonly asStartInflation: {1612 readonly inflationStartRelayBlock: u32;1613 } & Struct;1614 readonly type: 'StartInflation';1615}16161617/** @name PalletMaintenanceCall */1618export interface PalletMaintenanceCall extends Enum {1619 readonly isEnable: boolean;1620 readonly isDisable: boolean;1621 readonly type: 'Enable' | 'Disable';1622}16231624/** @name PalletMaintenanceError */1625export interface PalletMaintenanceError extends Null {}16261627/** @name PalletMaintenanceEvent */1628export interface PalletMaintenanceEvent extends Enum {1629 readonly isMaintenanceEnabled: boolean;1630 readonly isMaintenanceDisabled: boolean;1631 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1632}16331634/** @name PalletNonfungibleError */1635export interface PalletNonfungibleError extends Enum {1636 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1637 readonly isNonfungibleItemsHaveNoAmount: boolean;1638 readonly isCantBurnNftWithChildren: boolean;1639 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1640}16411642/** @name PalletNonfungibleItemData */1643export interface PalletNonfungibleItemData extends Struct {1644 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1645}16461647/** @name PalletRefungibleError */1648export interface PalletRefungibleError extends Enum {1649 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1650 readonly isWrongRefungiblePieces: boolean;1651 readonly isRepartitionWhileNotOwningAllPieces: boolean;1652 readonly isRefungibleDisallowsNesting: boolean;1653 readonly isSettingPropertiesNotAllowed: boolean;1654 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1655}16561657/** @name PalletRefungibleItemData */1658export interface PalletRefungibleItemData extends Struct {1659 readonly constData: Bytes;1660}16611662/** @name PalletRmrkCoreCall */1663export interface PalletRmrkCoreCall extends Enum {1664 readonly isCreateCollection: boolean;1665 readonly asCreateCollection: {1666 readonly metadata: Bytes;1667 readonly max: Option<u32>;1668 readonly symbol: Bytes;1669 } & Struct;1670 readonly isDestroyCollection: boolean;1671 readonly asDestroyCollection: {1672 readonly collectionId: u32;1673 } & Struct;1674 readonly isChangeCollectionIssuer: boolean;1675 readonly asChangeCollectionIssuer: {1676 readonly collectionId: u32;1677 readonly newIssuer: MultiAddress;1678 } & Struct;1679 readonly isLockCollection: boolean;1680 readonly asLockCollection: {1681 readonly collectionId: u32;1682 } & Struct;1683 readonly isMintNft: boolean;1684 readonly asMintNft: {1685 readonly owner: Option<AccountId32>;1686 readonly collectionId: u32;1687 readonly recipient: Option<AccountId32>;1688 readonly royaltyAmount: Option<Permill>;1689 readonly metadata: Bytes;1690 readonly transferable: bool;1691 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1692 } & Struct;1693 readonly isBurnNft: boolean;1694 readonly asBurnNft: {1695 readonly collectionId: u32;1696 readonly nftId: u32;1697 readonly maxBurns: u32;1698 } & Struct;1699 readonly isSend: boolean;1700 readonly asSend: {1701 readonly rmrkCollectionId: u32;1702 readonly rmrkNftId: u32;1703 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1704 } & Struct;1705 readonly isAcceptNft: boolean;1706 readonly asAcceptNft: {1707 readonly rmrkCollectionId: u32;1708 readonly rmrkNftId: u32;1709 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1710 } & Struct;1711 readonly isRejectNft: boolean;1712 readonly asRejectNft: {1713 readonly rmrkCollectionId: u32;1714 readonly rmrkNftId: u32;1715 } & Struct;1716 readonly isAcceptResource: boolean;1717 readonly asAcceptResource: {1718 readonly rmrkCollectionId: u32;1719 readonly rmrkNftId: u32;1720 readonly resourceId: u32;1721 } & Struct;1722 readonly isAcceptResourceRemoval: boolean;1723 readonly asAcceptResourceRemoval: {1724 readonly rmrkCollectionId: u32;1725 readonly rmrkNftId: u32;1726 readonly resourceId: u32;1727 } & Struct;1728 readonly isSetProperty: boolean;1729 readonly asSetProperty: {1730 readonly rmrkCollectionId: Compact<u32>;1731 readonly maybeNftId: Option<u32>;1732 readonly key: Bytes;1733 readonly value: Bytes;1734 } & Struct;1735 readonly isSetPriority: boolean;1736 readonly asSetPriority: {1737 readonly rmrkCollectionId: u32;1738 readonly rmrkNftId: u32;1739 readonly priorities: Vec<u32>;1740 } & Struct;1741 readonly isAddBasicResource: boolean;1742 readonly asAddBasicResource: {1743 readonly rmrkCollectionId: u32;1744 readonly nftId: u32;1745 readonly resource: RmrkTraitsResourceBasicResource;1746 } & Struct;1747 readonly isAddComposableResource: boolean;1748 readonly asAddComposableResource: {1749 readonly rmrkCollectionId: u32;1750 readonly nftId: u32;1751 readonly resource: RmrkTraitsResourceComposableResource;1752 } & Struct;1753 readonly isAddSlotResource: boolean;1754 readonly asAddSlotResource: {1755 readonly rmrkCollectionId: u32;1756 readonly nftId: u32;1757 readonly resource: RmrkTraitsResourceSlotResource;1758 } & Struct;1759 readonly isRemoveResource: boolean;1760 readonly asRemoveResource: {1761 readonly rmrkCollectionId: u32;1762 readonly nftId: u32;1763 readonly resourceId: u32;1764 } & Struct;1765 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1766}17671768/** @name PalletRmrkCoreError */1769export interface PalletRmrkCoreError extends Enum {1770 readonly isCorruptedCollectionType: boolean;1771 readonly isRmrkPropertyKeyIsTooLong: boolean;1772 readonly isRmrkPropertyValueIsTooLong: boolean;1773 readonly isRmrkPropertyIsNotFound: boolean;1774 readonly isUnableToDecodeRmrkData: boolean;1775 readonly isCollectionNotEmpty: boolean;1776 readonly isNoAvailableCollectionId: boolean;1777 readonly isNoAvailableNftId: boolean;1778 readonly isCollectionUnknown: boolean;1779 readonly isNoPermission: boolean;1780 readonly isNonTransferable: boolean;1781 readonly isCollectionFullOrLocked: boolean;1782 readonly isResourceDoesntExist: boolean;1783 readonly isCannotSendToDescendentOrSelf: boolean;1784 readonly isCannotAcceptNonOwnedNft: boolean;1785 readonly isCannotRejectNonOwnedNft: boolean;1786 readonly isCannotRejectNonPendingNft: boolean;1787 readonly isResourceNotPending: boolean;1788 readonly isNoAvailableResourceId: boolean;1789 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1790}17911792/** @name PalletRmrkCoreEvent */1793export interface PalletRmrkCoreEvent extends Enum {1794 readonly isCollectionCreated: boolean;1795 readonly asCollectionCreated: {1796 readonly issuer: AccountId32;1797 readonly collectionId: u32;1798 } & Struct;1799 readonly isCollectionDestroyed: boolean;1800 readonly asCollectionDestroyed: {1801 readonly issuer: AccountId32;1802 readonly collectionId: u32;1803 } & Struct;1804 readonly isIssuerChanged: boolean;1805 readonly asIssuerChanged: {1806 readonly oldIssuer: AccountId32;1807 readonly newIssuer: AccountId32;1808 readonly collectionId: u32;1809 } & Struct;1810 readonly isCollectionLocked: boolean;1811 readonly asCollectionLocked: {1812 readonly issuer: AccountId32;1813 readonly collectionId: u32;1814 } & Struct;1815 readonly isNftMinted: boolean;1816 readonly asNftMinted: {1817 readonly owner: AccountId32;1818 readonly collectionId: u32;1819 readonly nftId: u32;1820 } & Struct;1821 readonly isNftBurned: boolean;1822 readonly asNftBurned: {1823 readonly owner: AccountId32;1824 readonly nftId: u32;1825 } & Struct;1826 readonly isNftSent: boolean;1827 readonly asNftSent: {1828 readonly sender: AccountId32;1829 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1830 readonly collectionId: u32;1831 readonly nftId: u32;1832 readonly approvalRequired: bool;1833 } & Struct;1834 readonly isNftAccepted: boolean;1835 readonly asNftAccepted: {1836 readonly sender: AccountId32;1837 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1838 readonly collectionId: u32;1839 readonly nftId: u32;1840 } & Struct;1841 readonly isNftRejected: boolean;1842 readonly asNftRejected: {1843 readonly sender: AccountId32;1844 readonly collectionId: u32;1845 readonly nftId: u32;1846 } & Struct;1847 readonly isPropertySet: boolean;1848 readonly asPropertySet: {1849 readonly collectionId: u32;1850 readonly maybeNftId: Option<u32>;1851 readonly key: Bytes;1852 readonly value: Bytes;1853 } & Struct;1854 readonly isResourceAdded: boolean;1855 readonly asResourceAdded: {1856 readonly nftId: u32;1857 readonly resourceId: u32;1858 } & Struct;1859 readonly isResourceRemoval: boolean;1860 readonly asResourceRemoval: {1861 readonly nftId: u32;1862 readonly resourceId: u32;1863 } & Struct;1864 readonly isResourceAccepted: boolean;1865 readonly asResourceAccepted: {1866 readonly nftId: u32;1867 readonly resourceId: u32;1868 } & Struct;1869 readonly isResourceRemovalAccepted: boolean;1870 readonly asResourceRemovalAccepted: {1871 readonly nftId: u32;1872 readonly resourceId: u32;1873 } & Struct;1874 readonly isPrioritySet: boolean;1875 readonly asPrioritySet: {1876 readonly collectionId: u32;1877 readonly nftId: u32;1878 } & Struct;1879 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1880}18811882/** @name PalletRmrkEquipCall */1883export interface PalletRmrkEquipCall extends Enum {1884 readonly isCreateBase: boolean;1885 readonly asCreateBase: {1886 readonly baseType: Bytes;1887 readonly symbol: Bytes;1888 readonly parts: Vec<RmrkTraitsPartPartType>;1889 } & Struct;1890 readonly isThemeAdd: boolean;1891 readonly asThemeAdd: {1892 readonly baseId: u32;1893 readonly theme: RmrkTraitsTheme;1894 } & Struct;1895 readonly isEquippable: boolean;1896 readonly asEquippable: {1897 readonly baseId: u32;1898 readonly slotId: u32;1899 readonly equippables: RmrkTraitsPartEquippableList;1900 } & Struct;1901 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1902}19031904/** @name PalletRmrkEquipError */1905export interface PalletRmrkEquipError extends Enum {1906 readonly isPermissionError: boolean;1907 readonly isNoAvailableBaseId: boolean;1908 readonly isNoAvailablePartId: boolean;1909 readonly isBaseDoesntExist: boolean;1910 readonly isNeedsDefaultThemeFirst: boolean;1911 readonly isPartDoesntExist: boolean;1912 readonly isNoEquippableOnFixedPart: boolean;1913 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1914}19151916/** @name PalletRmrkEquipEvent */1917export interface PalletRmrkEquipEvent extends Enum {1918 readonly isBaseCreated: boolean;1919 readonly asBaseCreated: {1920 readonly issuer: AccountId32;1921 readonly baseId: u32;1922 } & Struct;1923 readonly isEquippablesUpdated: boolean;1924 readonly asEquippablesUpdated: {1925 readonly baseId: u32;1926 readonly slotId: u32;1927 } & Struct;1928 readonly type: 'BaseCreated' | 'EquippablesUpdated';1929}19301931/** @name PalletStructureCall */1932export interface PalletStructureCall extends Null {}19331934/** @name PalletStructureError */1935export interface PalletStructureError extends Enum {1936 readonly isOuroborosDetected: boolean;1937 readonly isDepthLimit: boolean;1938 readonly isBreadthLimit: boolean;1939 readonly isTokenNotFound: boolean;1940 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1941}19421943/** @name PalletStructureEvent */1944export interface PalletStructureEvent extends Enum {1945 readonly isExecuted: boolean;1946 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1947 readonly type: 'Executed';1948}19491950/** @name PalletSudoCall */1951export interface PalletSudoCall extends Enum {1952 readonly isSudo: boolean;1953 readonly asSudo: {1954 readonly call: Call;1955 } & Struct;1956 readonly isSudoUncheckedWeight: boolean;1957 readonly asSudoUncheckedWeight: {1958 readonly call: Call;1959 readonly weight: SpWeightsWeightV2Weight;1960 } & Struct;1961 readonly isSetKey: boolean;1962 readonly asSetKey: {1963 readonly new_: MultiAddress;1964 } & Struct;1965 readonly isSudoAs: boolean;1966 readonly asSudoAs: {1967 readonly who: MultiAddress;1968 readonly call: Call;1969 } & Struct;1970 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1971}19721973/** @name PalletSudoError */1974export interface PalletSudoError extends Enum {1975 readonly isRequireSudo: boolean;1976 readonly type: 'RequireSudo';1977}19781979/** @name PalletSudoEvent */1980export interface PalletSudoEvent extends Enum {1981 readonly isSudid: boolean;1982 readonly asSudid: {1983 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1984 } & Struct;1985 readonly isKeyChanged: boolean;1986 readonly asKeyChanged: {1987 readonly oldSudoer: Option<AccountId32>;1988 } & Struct;1989 readonly isSudoAsDone: boolean;1990 readonly asSudoAsDone: {1991 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1992 } & Struct;1993 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1994}19951996/** @name PalletTemplateTransactionPaymentCall */1997export interface PalletTemplateTransactionPaymentCall extends Null {}19981999/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2000export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}20012002/** @name PalletTestUtilsCall */2003export interface PalletTestUtilsCall extends Enum {2004 readonly isEnable: boolean;2005 readonly isSetTestValue: boolean;2006 readonly asSetTestValue: {2007 readonly value: u32;2008 } & Struct;2009 readonly isSetTestValueAndRollback: boolean;2010 readonly asSetTestValueAndRollback: {2011 readonly value: u32;2012 } & Struct;2013 readonly isIncTestValue: boolean;2014 readonly isJustTakeFee: boolean;2015 readonly isBatchAll: boolean;2016 readonly asBatchAll: {2017 readonly calls: Vec<Call>;2018 } & Struct;2019 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';2020}20212022/** @name PalletTestUtilsError */2023export interface PalletTestUtilsError extends Enum {2024 readonly isTestPalletDisabled: boolean;2025 readonly isTriggerRollback: boolean;2026 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2027}20282029/** @name PalletTestUtilsEvent */2030export interface PalletTestUtilsEvent extends Enum {2031 readonly isValueIsSet: boolean;2032 readonly isShouldRollback: boolean;2033 readonly isBatchCompleted: boolean;2034 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2035}20362037/** @name PalletTimestampCall */2038export interface PalletTimestampCall extends Enum {2039 readonly isSet: boolean;2040 readonly asSet: {2041 readonly now: Compact<u64>;2042 } & Struct;2043 readonly type: 'Set';2044}20452046/** @name PalletTransactionPaymentEvent */2047export interface PalletTransactionPaymentEvent extends Enum {2048 readonly isTransactionFeePaid: boolean;2049 readonly asTransactionFeePaid: {2050 readonly who: AccountId32;2051 readonly actualFee: u128;2052 readonly tip: u128;2053 } & Struct;2054 readonly type: 'TransactionFeePaid';2055}20562057/** @name PalletTransactionPaymentReleases */2058export interface PalletTransactionPaymentReleases extends Enum {2059 readonly isV1Ancient: boolean;2060 readonly isV2: boolean;2061 readonly type: 'V1Ancient' | 'V2';2062}20632064/** @name PalletTreasuryCall */2065export interface PalletTreasuryCall extends Enum {2066 readonly isProposeSpend: boolean;2067 readonly asProposeSpend: {2068 readonly value: Compact<u128>;2069 readonly beneficiary: MultiAddress;2070 } & Struct;2071 readonly isRejectProposal: boolean;2072 readonly asRejectProposal: {2073 readonly proposalId: Compact<u32>;2074 } & Struct;2075 readonly isApproveProposal: boolean;2076 readonly asApproveProposal: {2077 readonly proposalId: Compact<u32>;2078 } & Struct;2079 readonly isSpend: boolean;2080 readonly asSpend: {2081 readonly amount: Compact<u128>;2082 readonly beneficiary: MultiAddress;2083 } & Struct;2084 readonly isRemoveApproval: boolean;2085 readonly asRemoveApproval: {2086 readonly proposalId: Compact<u32>;2087 } & Struct;2088 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2089}20902091/** @name PalletTreasuryError */2092export interface PalletTreasuryError extends Enum {2093 readonly isInsufficientProposersBalance: boolean;2094 readonly isInvalidIndex: boolean;2095 readonly isTooManyApprovals: boolean;2096 readonly isInsufficientPermission: boolean;2097 readonly isProposalNotApproved: boolean;2098 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2099}21002101/** @name PalletTreasuryEvent */2102export interface PalletTreasuryEvent extends Enum {2103 readonly isProposed: boolean;2104 readonly asProposed: {2105 readonly proposalIndex: u32;2106 } & Struct;2107 readonly isSpending: boolean;2108 readonly asSpending: {2109 readonly budgetRemaining: u128;2110 } & Struct;2111 readonly isAwarded: boolean;2112 readonly asAwarded: {2113 readonly proposalIndex: u32;2114 readonly award: u128;2115 readonly account: AccountId32;2116 } & Struct;2117 readonly isRejected: boolean;2118 readonly asRejected: {2119 readonly proposalIndex: u32;2120 readonly slashed: u128;2121 } & Struct;2122 readonly isBurnt: boolean;2123 readonly asBurnt: {2124 readonly burntFunds: u128;2125 } & Struct;2126 readonly isRollover: boolean;2127 readonly asRollover: {2128 readonly rolloverBalance: u128;2129 } & Struct;2130 readonly isDeposit: boolean;2131 readonly asDeposit: {2132 readonly value: u128;2133 } & Struct;2134 readonly isSpendApproved: boolean;2135 readonly asSpendApproved: {2136 readonly proposalIndex: u32;2137 readonly amount: u128;2138 readonly beneficiary: AccountId32;2139 } & Struct;2140 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2141}21422143/** @name PalletTreasuryProposal */2144export interface PalletTreasuryProposal extends Struct {2145 readonly proposer: AccountId32;2146 readonly value: u128;2147 readonly beneficiary: AccountId32;2148 readonly bond: u128;2149}21502151/** @name PalletUniqueCall */2152export interface PalletUniqueCall extends Enum {2153 readonly isCreateCollection: boolean;2154 readonly asCreateCollection: {2155 readonly collectionName: Vec<u16>;2156 readonly collectionDescription: Vec<u16>;2157 readonly tokenPrefix: Bytes;2158 readonly mode: UpDataStructsCollectionMode;2159 } & Struct;2160 readonly isCreateCollectionEx: boolean;2161 readonly asCreateCollectionEx: {2162 readonly data: UpDataStructsCreateCollectionData;2163 } & Struct;2164 readonly isDestroyCollection: boolean;2165 readonly asDestroyCollection: {2166 readonly collectionId: u32;2167 } & Struct;2168 readonly isAddToAllowList: boolean;2169 readonly asAddToAllowList: {2170 readonly collectionId: u32;2171 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2172 } & Struct;2173 readonly isRemoveFromAllowList: boolean;2174 readonly asRemoveFromAllowList: {2175 readonly collectionId: u32;2176 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2177 } & Struct;2178 readonly isChangeCollectionOwner: boolean;2179 readonly asChangeCollectionOwner: {2180 readonly collectionId: u32;2181 readonly newOwner: AccountId32;2182 } & Struct;2183 readonly isAddCollectionAdmin: boolean;2184 readonly asAddCollectionAdmin: {2185 readonly collectionId: u32;2186 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2187 } & Struct;2188 readonly isRemoveCollectionAdmin: boolean;2189 readonly asRemoveCollectionAdmin: {2190 readonly collectionId: u32;2191 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2192 } & Struct;2193 readonly isSetCollectionSponsor: boolean;2194 readonly asSetCollectionSponsor: {2195 readonly collectionId: u32;2196 readonly newSponsor: AccountId32;2197 } & Struct;2198 readonly isConfirmSponsorship: boolean;2199 readonly asConfirmSponsorship: {2200 readonly collectionId: u32;2201 } & Struct;2202 readonly isRemoveCollectionSponsor: boolean;2203 readonly asRemoveCollectionSponsor: {2204 readonly collectionId: u32;2205 } & Struct;2206 readonly isCreateItem: boolean;2207 readonly asCreateItem: {2208 readonly collectionId: u32;2209 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2210 readonly data: UpDataStructsCreateItemData;2211 } & Struct;2212 readonly isCreateMultipleItems: boolean;2213 readonly asCreateMultipleItems: {2214 readonly collectionId: u32;2215 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2216 readonly itemsData: Vec<UpDataStructsCreateItemData>;2217 } & Struct;2218 readonly isSetCollectionProperties: boolean;2219 readonly asSetCollectionProperties: {2220 readonly collectionId: u32;2221 readonly properties: Vec<UpDataStructsProperty>;2222 } & Struct;2223 readonly isDeleteCollectionProperties: boolean;2224 readonly asDeleteCollectionProperties: {2225 readonly collectionId: u32;2226 readonly propertyKeys: Vec<Bytes>;2227 } & Struct;2228 readonly isSetTokenProperties: boolean;2229 readonly asSetTokenProperties: {2230 readonly collectionId: u32;2231 readonly tokenId: u32;2232 readonly properties: Vec<UpDataStructsProperty>;2233 } & Struct;2234 readonly isDeleteTokenProperties: boolean;2235 readonly asDeleteTokenProperties: {2236 readonly collectionId: u32;2237 readonly tokenId: u32;2238 readonly propertyKeys: Vec<Bytes>;2239 } & Struct;2240 readonly isSetTokenPropertyPermissions: boolean;2241 readonly asSetTokenPropertyPermissions: {2242 readonly collectionId: u32;2243 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2244 } & Struct;2245 readonly isCreateMultipleItemsEx: boolean;2246 readonly asCreateMultipleItemsEx: {2247 readonly collectionId: u32;2248 readonly data: UpDataStructsCreateItemExData;2249 } & Struct;2250 readonly isSetTransfersEnabledFlag: boolean;2251 readonly asSetTransfersEnabledFlag: {2252 readonly collectionId: u32;2253 readonly value: bool;2254 } & Struct;2255 readonly isBurnItem: boolean;2256 readonly asBurnItem: {2257 readonly collectionId: u32;2258 readonly itemId: u32;2259 readonly value: u128;2260 } & Struct;2261 readonly isBurnFrom: boolean;2262 readonly asBurnFrom: {2263 readonly collectionId: u32;2264 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2265 readonly itemId: u32;2266 readonly value: u128;2267 } & Struct;2268 readonly isTransfer: boolean;2269 readonly asTransfer: {2270 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2271 readonly collectionId: u32;2272 readonly itemId: u32;2273 readonly value: u128;2274 } & Struct;2275 readonly isApprove: boolean;2276 readonly asApprove: {2277 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2278 readonly collectionId: u32;2279 readonly itemId: u32;2280 readonly amount: u128;2281 } & Struct;2282 readonly isTransferFrom: boolean;2283 readonly asTransferFrom: {2284 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2285 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2286 readonly collectionId: u32;2287 readonly itemId: u32;2288 readonly value: u128;2289 } & Struct;2290 readonly isSetCollectionLimits: boolean;2291 readonly asSetCollectionLimits: {2292 readonly collectionId: u32;2293 readonly newLimit: UpDataStructsCollectionLimits;2294 } & Struct;2295 readonly isSetCollectionPermissions: boolean;2296 readonly asSetCollectionPermissions: {2297 readonly collectionId: u32;2298 readonly newPermission: UpDataStructsCollectionPermissions;2299 } & Struct;2300 readonly isRepartition: boolean;2301 readonly asRepartition: {2302 readonly collectionId: u32;2303 readonly tokenId: u32;2304 readonly amount: u128;2305 } & Struct;2306 readonly isSetAllowanceForAll: boolean;2307 readonly asSetAllowanceForAll: {2308 readonly collectionId: u32;2309 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2310 readonly approve: bool;2311 } & Struct;2312 readonly isForceRepairCollection: boolean;2313 readonly asForceRepairCollection: {2314 readonly collectionId: u32;2315 } & Struct;2316 readonly isForceRepairItem: boolean;2317 readonly asForceRepairItem: {2318 readonly collectionId: u32;2319 readonly itemId: u32;2320 } & Struct;2321 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';2322}23232324/** @name PalletUniqueError */2325export interface PalletUniqueError extends Enum {2326 readonly isCollectionDecimalPointLimitExceeded: boolean;2327 readonly isEmptyArgument: boolean;2328 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2329 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2330}23312332/** @name PalletXcmCall */2333export interface PalletXcmCall extends Enum {2334 readonly isSend: boolean;2335 readonly asSend: {2336 readonly dest: XcmVersionedMultiLocation;2337 readonly message: XcmVersionedXcm;2338 } & Struct;2339 readonly isTeleportAssets: boolean;2340 readonly asTeleportAssets: {2341 readonly dest: XcmVersionedMultiLocation;2342 readonly beneficiary: XcmVersionedMultiLocation;2343 readonly assets: XcmVersionedMultiAssets;2344 readonly feeAssetItem: u32;2345 } & Struct;2346 readonly isReserveTransferAssets: boolean;2347 readonly asReserveTransferAssets: {2348 readonly dest: XcmVersionedMultiLocation;2349 readonly beneficiary: XcmVersionedMultiLocation;2350 readonly assets: XcmVersionedMultiAssets;2351 readonly feeAssetItem: u32;2352 } & Struct;2353 readonly isExecute: boolean;2354 readonly asExecute: {2355 readonly message: XcmVersionedXcm;2356 readonly maxWeight: u64;2357 } & Struct;2358 readonly isForceXcmVersion: boolean;2359 readonly asForceXcmVersion: {2360 readonly location: XcmV1MultiLocation;2361 readonly xcmVersion: u32;2362 } & Struct;2363 readonly isForceDefaultXcmVersion: boolean;2364 readonly asForceDefaultXcmVersion: {2365 readonly maybeXcmVersion: Option<u32>;2366 } & Struct;2367 readonly isForceSubscribeVersionNotify: boolean;2368 readonly asForceSubscribeVersionNotify: {2369 readonly location: XcmVersionedMultiLocation;2370 } & Struct;2371 readonly isForceUnsubscribeVersionNotify: boolean;2372 readonly asForceUnsubscribeVersionNotify: {2373 readonly location: XcmVersionedMultiLocation;2374 } & Struct;2375 readonly isLimitedReserveTransferAssets: boolean;2376 readonly asLimitedReserveTransferAssets: {2377 readonly dest: XcmVersionedMultiLocation;2378 readonly beneficiary: XcmVersionedMultiLocation;2379 readonly assets: XcmVersionedMultiAssets;2380 readonly feeAssetItem: u32;2381 readonly weightLimit: XcmV2WeightLimit;2382 } & Struct;2383 readonly isLimitedTeleportAssets: boolean;2384 readonly asLimitedTeleportAssets: {2385 readonly dest: XcmVersionedMultiLocation;2386 readonly beneficiary: XcmVersionedMultiLocation;2387 readonly assets: XcmVersionedMultiAssets;2388 readonly feeAssetItem: u32;2389 readonly weightLimit: XcmV2WeightLimit;2390 } & Struct;2391 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2392}23932394/** @name PalletXcmError */2395export interface PalletXcmError extends Enum {2396 readonly isUnreachable: boolean;2397 readonly isSendFailure: boolean;2398 readonly isFiltered: boolean;2399 readonly isUnweighableMessage: boolean;2400 readonly isDestinationNotInvertible: boolean;2401 readonly isEmpty: boolean;2402 readonly isCannotReanchor: boolean;2403 readonly isTooManyAssets: boolean;2404 readonly isInvalidOrigin: boolean;2405 readonly isBadVersion: boolean;2406 readonly isBadLocation: boolean;2407 readonly isNoSubscription: boolean;2408 readonly isAlreadySubscribed: boolean;2409 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2410}24112412/** @name PalletXcmEvent */2413export interface PalletXcmEvent extends Enum {2414 readonly isAttempted: boolean;2415 readonly asAttempted: XcmV2TraitsOutcome;2416 readonly isSent: boolean;2417 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2418 readonly isUnexpectedResponse: boolean;2419 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2420 readonly isResponseReady: boolean;2421 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2422 readonly isNotified: boolean;2423 readonly asNotified: ITuple<[u64, u8, u8]>;2424 readonly isNotifyOverweight: boolean;2425 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2426 readonly isNotifyDispatchError: boolean;2427 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2428 readonly isNotifyDecodeFailed: boolean;2429 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2430 readonly isInvalidResponder: boolean;2431 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2432 readonly isInvalidResponderVersion: boolean;2433 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2434 readonly isResponseTaken: boolean;2435 readonly asResponseTaken: u64;2436 readonly isAssetsTrapped: boolean;2437 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2438 readonly isVersionChangeNotified: boolean;2439 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2440 readonly isSupportedVersionChanged: boolean;2441 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2442 readonly isNotifyTargetSendFail: boolean;2443 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2444 readonly isNotifyTargetMigrationFail: boolean;2445 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2446 readonly isAssetsClaimed: boolean;2447 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2448 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2449}24502451/** @name PhantomTypeUpDataStructs */2452export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}24532454/** @name PolkadotCorePrimitivesInboundDownwardMessage */2455export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2456 readonly sentAt: u32;2457 readonly msg: Bytes;2458}24592460/** @name PolkadotCorePrimitivesInboundHrmpMessage */2461export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2462 readonly sentAt: u32;2463 readonly data: Bytes;2464}24652466/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2467export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2468 readonly recipient: u32;2469 readonly data: Bytes;2470}24712472/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2473export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2474 readonly isConcatenatedVersionedXcm: boolean;2475 readonly isConcatenatedEncodedBlob: boolean;2476 readonly isSignals: boolean;2477 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2478}24792480/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2481export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2482 readonly maxCodeSize: u32;2483 readonly maxHeadDataSize: u32;2484 readonly maxUpwardQueueCount: u32;2485 readonly maxUpwardQueueSize: u32;2486 readonly maxUpwardMessageSize: u32;2487 readonly maxUpwardMessageNumPerCandidate: u32;2488 readonly hrmpMaxMessageNumPerCandidate: u32;2489 readonly validationUpgradeCooldown: u32;2490 readonly validationUpgradeDelay: u32;2491}24922493/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2494export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2495 readonly maxCapacity: u32;2496 readonly maxTotalSize: u32;2497 readonly maxMessageSize: u32;2498 readonly msgCount: u32;2499 readonly totalSize: u32;2500 readonly mqcHead: Option<H256>;2501}25022503/** @name PolkadotPrimitivesV2PersistedValidationData */2504export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2505 readonly parentHead: Bytes;2506 readonly relayParentNumber: u32;2507 readonly relayParentStorageRoot: H256;2508 readonly maxPovSize: u32;2509}25102511/** @name PolkadotPrimitivesV2UpgradeRestriction */2512export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2513 readonly isPresent: boolean;2514 readonly type: 'Present';2515}25162517/** @name RmrkTraitsBaseBaseInfo */2518export interface RmrkTraitsBaseBaseInfo extends Struct {2519 readonly issuer: AccountId32;2520 readonly baseType: Bytes;2521 readonly symbol: Bytes;2522}25232524/** @name RmrkTraitsCollectionCollectionInfo */2525export interface RmrkTraitsCollectionCollectionInfo extends Struct {2526 readonly issuer: AccountId32;2527 readonly metadata: Bytes;2528 readonly max: Option<u32>;2529 readonly symbol: Bytes;2530 readonly nftsCount: u32;2531}25322533/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2534export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2535 readonly isAccountId: boolean;2536 readonly asAccountId: AccountId32;2537 readonly isCollectionAndNftTuple: boolean;2538 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2539 readonly type: 'AccountId' | 'CollectionAndNftTuple';2540}25412542/** @name RmrkTraitsNftNftChild */2543export interface RmrkTraitsNftNftChild extends Struct {2544 readonly collectionId: u32;2545 readonly nftId: u32;2546}25472548/** @name RmrkTraitsNftNftInfo */2549export interface RmrkTraitsNftNftInfo extends Struct {2550 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2551 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2552 readonly metadata: Bytes;2553 readonly equipped: bool;2554 readonly pending: bool;2555}25562557/** @name RmrkTraitsNftRoyaltyInfo */2558export interface RmrkTraitsNftRoyaltyInfo extends Struct {2559 readonly recipient: AccountId32;2560 readonly amount: Permill;2561}25622563/** @name RmrkTraitsPartEquippableList */2564export interface RmrkTraitsPartEquippableList extends Enum {2565 readonly isAll: boolean;2566 readonly isEmpty: boolean;2567 readonly isCustom: boolean;2568 readonly asCustom: Vec<u32>;2569 readonly type: 'All' | 'Empty' | 'Custom';2570}25712572/** @name RmrkTraitsPartFixedPart */2573export interface RmrkTraitsPartFixedPart extends Struct {2574 readonly id: u32;2575 readonly z: u32;2576 readonly src: Bytes;2577}25782579/** @name RmrkTraitsPartPartType */2580export interface RmrkTraitsPartPartType extends Enum {2581 readonly isFixedPart: boolean;2582 readonly asFixedPart: RmrkTraitsPartFixedPart;2583 readonly isSlotPart: boolean;2584 readonly asSlotPart: RmrkTraitsPartSlotPart;2585 readonly type: 'FixedPart' | 'SlotPart';2586}25872588/** @name RmrkTraitsPartSlotPart */2589export interface RmrkTraitsPartSlotPart extends Struct {2590 readonly id: u32;2591 readonly equippable: RmrkTraitsPartEquippableList;2592 readonly src: Bytes;2593 readonly z: u32;2594}25952596/** @name RmrkTraitsPropertyPropertyInfo */2597export interface RmrkTraitsPropertyPropertyInfo extends Struct {2598 readonly key: Bytes;2599 readonly value: Bytes;2600}26012602/** @name RmrkTraitsResourceBasicResource */2603export interface RmrkTraitsResourceBasicResource extends Struct {2604 readonly src: Option<Bytes>;2605 readonly metadata: Option<Bytes>;2606 readonly license: Option<Bytes>;2607 readonly thumb: Option<Bytes>;2608}26092610/** @name RmrkTraitsResourceComposableResource */2611export interface RmrkTraitsResourceComposableResource extends Struct {2612 readonly parts: Vec<u32>;2613 readonly base: u32;2614 readonly src: Option<Bytes>;2615 readonly metadata: Option<Bytes>;2616 readonly license: Option<Bytes>;2617 readonly thumb: Option<Bytes>;2618}26192620/** @name RmrkTraitsResourceResourceInfo */2621export interface RmrkTraitsResourceResourceInfo extends Struct {2622 readonly id: u32;2623 readonly resource: RmrkTraitsResourceResourceTypes;2624 readonly pending: bool;2625 readonly pendingRemoval: bool;2626}26272628/** @name RmrkTraitsResourceResourceTypes */2629export interface RmrkTraitsResourceResourceTypes extends Enum {2630 readonly isBasic: boolean;2631 readonly asBasic: RmrkTraitsResourceBasicResource;2632 readonly isComposable: boolean;2633 readonly asComposable: RmrkTraitsResourceComposableResource;2634 readonly isSlot: boolean;2635 readonly asSlot: RmrkTraitsResourceSlotResource;2636 readonly type: 'Basic' | 'Composable' | 'Slot';2637}26382639/** @name RmrkTraitsResourceSlotResource */2640export interface RmrkTraitsResourceSlotResource extends Struct {2641 readonly base: u32;2642 readonly src: Option<Bytes>;2643 readonly metadata: Option<Bytes>;2644 readonly slot: u32;2645 readonly license: Option<Bytes>;2646 readonly thumb: Option<Bytes>;2647}26482649/** @name RmrkTraitsTheme */2650export interface RmrkTraitsTheme extends Struct {2651 readonly name: Bytes;2652 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2653 readonly inherit: bool;2654}26552656/** @name RmrkTraitsThemeThemeProperty */2657export interface RmrkTraitsThemeThemeProperty extends Struct {2658 readonly key: Bytes;2659 readonly value: Bytes;2660}26612662/** @name SpCoreEcdsaSignature */2663export interface SpCoreEcdsaSignature extends U8aFixed {}26642665/** @name SpCoreEd25519Signature */2666export interface SpCoreEd25519Signature extends U8aFixed {}26672668/** @name SpCoreSr25519Signature */2669export interface SpCoreSr25519Signature extends U8aFixed {}26702671/** @name SpRuntimeArithmeticError */2672export interface SpRuntimeArithmeticError extends Enum {2673 readonly isUnderflow: boolean;2674 readonly isOverflow: boolean;2675 readonly isDivisionByZero: boolean;2676 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2677}26782679/** @name SpRuntimeDigest */2680export interface SpRuntimeDigest extends Struct {2681 readonly logs: Vec<SpRuntimeDigestDigestItem>;2682}26832684/** @name SpRuntimeDigestDigestItem */2685export interface SpRuntimeDigestDigestItem extends Enum {2686 readonly isOther: boolean;2687 readonly asOther: Bytes;2688 readonly isConsensus: boolean;2689 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2690 readonly isSeal: boolean;2691 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2692 readonly isPreRuntime: boolean;2693 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2694 readonly isRuntimeEnvironmentUpdated: boolean;2695 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2696}26972698/** @name SpRuntimeDispatchError */2699export interface SpRuntimeDispatchError extends Enum {2700 readonly isOther: boolean;2701 readonly isCannotLookup: boolean;2702 readonly isBadOrigin: boolean;2703 readonly isModule: boolean;2704 readonly asModule: SpRuntimeModuleError;2705 readonly isConsumerRemaining: boolean;2706 readonly isNoProviders: boolean;2707 readonly isTooManyConsumers: boolean;2708 readonly isToken: boolean;2709 readonly asToken: SpRuntimeTokenError;2710 readonly isArithmetic: boolean;2711 readonly asArithmetic: SpRuntimeArithmeticError;2712 readonly isTransactional: boolean;2713 readonly asTransactional: SpRuntimeTransactionalError;2714 readonly isExhausted: boolean;2715 readonly isCorruption: boolean;2716 readonly isUnavailable: boolean;2717 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2718}27192720/** @name SpRuntimeModuleError */2721export interface SpRuntimeModuleError extends Struct {2722 readonly index: u8;2723 readonly error: U8aFixed;2724}27252726/** @name SpRuntimeMultiSignature */2727export interface SpRuntimeMultiSignature extends Enum {2728 readonly isEd25519: boolean;2729 readonly asEd25519: SpCoreEd25519Signature;2730 readonly isSr25519: boolean;2731 readonly asSr25519: SpCoreSr25519Signature;2732 readonly isEcdsa: boolean;2733 readonly asEcdsa: SpCoreEcdsaSignature;2734 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2735}27362737/** @name SpRuntimeTokenError */2738export interface SpRuntimeTokenError extends Enum {2739 readonly isNoFunds: boolean;2740 readonly isWouldDie: boolean;2741 readonly isBelowMinimum: boolean;2742 readonly isCannotCreate: boolean;2743 readonly isUnknownAsset: boolean;2744 readonly isFrozen: boolean;2745 readonly isUnsupported: boolean;2746 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2747}27482749/** @name SpRuntimeTransactionalError */2750export interface SpRuntimeTransactionalError extends Enum {2751 readonly isLimitReached: boolean;2752 readonly isNoLayer: boolean;2753 readonly type: 'LimitReached' | 'NoLayer';2754}27552756/** @name SpTrieStorageProof */2757export interface SpTrieStorageProof extends Struct {2758 readonly trieNodes: BTreeSet<Bytes>;2759}27602761/** @name SpVersionRuntimeVersion */2762export interface SpVersionRuntimeVersion extends Struct {2763 readonly specName: Text;2764 readonly implName: Text;2765 readonly authoringVersion: u32;2766 readonly specVersion: u32;2767 readonly implVersion: u32;2768 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2769 readonly transactionVersion: u32;2770 readonly stateVersion: u8;2771}27722773/** @name SpWeightsRuntimeDbWeight */2774export interface SpWeightsRuntimeDbWeight extends Struct {2775 readonly read: u64;2776 readonly write: u64;2777}27782779/** @name SpWeightsWeightV2Weight */2780export interface SpWeightsWeightV2Weight extends Struct {2781 readonly refTime: Compact<u64>;2782 readonly proofSize: Compact<u64>;2783}27842785/** @name UpDataStructsAccessMode */2786export interface UpDataStructsAccessMode extends Enum {2787 readonly isNormal: boolean;2788 readonly isAllowList: boolean;2789 readonly type: 'Normal' | 'AllowList';2790}27912792/** @name UpDataStructsCollection */2793export interface UpDataStructsCollection extends Struct {2794 readonly owner: AccountId32;2795 readonly mode: UpDataStructsCollectionMode;2796 readonly name: Vec<u16>;2797 readonly description: Vec<u16>;2798 readonly tokenPrefix: Bytes;2799 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2800 readonly limits: UpDataStructsCollectionLimits;2801 readonly permissions: UpDataStructsCollectionPermissions;2802 readonly flags: U8aFixed;2803}28042805/** @name UpDataStructsCollectionLimits */2806export interface UpDataStructsCollectionLimits extends Struct {2807 readonly accountTokenOwnershipLimit: Option<u32>;2808 readonly sponsoredDataSize: Option<u32>;2809 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2810 readonly tokenLimit: Option<u32>;2811 readonly sponsorTransferTimeout: Option<u32>;2812 readonly sponsorApproveTimeout: Option<u32>;2813 readonly ownerCanTransfer: Option<bool>;2814 readonly ownerCanDestroy: Option<bool>;2815 readonly transfersEnabled: Option<bool>;2816}28172818/** @name UpDataStructsCollectionMode */2819export interface UpDataStructsCollectionMode extends Enum {2820 readonly isNft: boolean;2821 readonly isFungible: boolean;2822 readonly asFungible: u8;2823 readonly isReFungible: boolean;2824 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2825}28262827/** @name UpDataStructsCollectionPermissions */2828export interface UpDataStructsCollectionPermissions extends Struct {2829 readonly access: Option<UpDataStructsAccessMode>;2830 readonly mintMode: Option<bool>;2831 readonly nesting: Option<UpDataStructsNestingPermissions>;2832}28332834/** @name UpDataStructsCollectionStats */2835export interface UpDataStructsCollectionStats extends Struct {2836 readonly created: u32;2837 readonly destroyed: u32;2838 readonly alive: u32;2839}28402841/** @name UpDataStructsCreateCollectionData */2842export interface UpDataStructsCreateCollectionData extends Struct {2843 readonly mode: UpDataStructsCollectionMode;2844 readonly access: Option<UpDataStructsAccessMode>;2845 readonly name: Vec<u16>;2846 readonly description: Vec<u16>;2847 readonly tokenPrefix: Bytes;2848 readonly pendingSponsor: Option<AccountId32>;2849 readonly limits: Option<UpDataStructsCollectionLimits>;2850 readonly permissions: Option<UpDataStructsCollectionPermissions>;2851 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2852 readonly properties: Vec<UpDataStructsProperty>;2853}28542855/** @name UpDataStructsCreateFungibleData */2856export interface UpDataStructsCreateFungibleData extends Struct {2857 readonly value: u128;2858}28592860/** @name UpDataStructsCreateItemData */2861export interface UpDataStructsCreateItemData extends Enum {2862 readonly isNft: boolean;2863 readonly asNft: UpDataStructsCreateNftData;2864 readonly isFungible: boolean;2865 readonly asFungible: UpDataStructsCreateFungibleData;2866 readonly isReFungible: boolean;2867 readonly asReFungible: UpDataStructsCreateReFungibleData;2868 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2869}28702871/** @name UpDataStructsCreateItemExData */2872export interface UpDataStructsCreateItemExData extends Enum {2873 readonly isNft: boolean;2874 readonly asNft: Vec<UpDataStructsCreateNftExData>;2875 readonly isFungible: boolean;2876 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2877 readonly isRefungibleMultipleItems: boolean;2878 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2879 readonly isRefungibleMultipleOwners: boolean;2880 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2881 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2882}28832884/** @name UpDataStructsCreateNftData */2885export interface UpDataStructsCreateNftData extends Struct {2886 readonly properties: Vec<UpDataStructsProperty>;2887}28882889/** @name UpDataStructsCreateNftExData */2890export interface UpDataStructsCreateNftExData extends Struct {2891 readonly properties: Vec<UpDataStructsProperty>;2892 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2893}28942895/** @name UpDataStructsCreateReFungibleData */2896export interface UpDataStructsCreateReFungibleData extends Struct {2897 readonly pieces: u128;2898 readonly properties: Vec<UpDataStructsProperty>;2899}29002901/** @name UpDataStructsCreateRefungibleExMultipleOwners */2902export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2903 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2904 readonly properties: Vec<UpDataStructsProperty>;2905}29062907/** @name UpDataStructsCreateRefungibleExSingleOwner */2908export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2909 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2910 readonly pieces: u128;2911 readonly properties: Vec<UpDataStructsProperty>;2912}29132914/** @name UpDataStructsNestingPermissions */2915export interface UpDataStructsNestingPermissions extends Struct {2916 readonly tokenOwner: bool;2917 readonly collectionAdmin: bool;2918 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2919}29202921/** @name UpDataStructsOwnerRestrictedSet */2922export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}29232924/** @name UpDataStructsProperties */2925export interface UpDataStructsProperties extends Struct {2926 readonly map: UpDataStructsPropertiesMapBoundedVec;2927 readonly consumedSpace: u32;2928 readonly spaceLimit: u32;2929}29302931/** @name UpDataStructsPropertiesMapBoundedVec */2932export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}29332934/** @name UpDataStructsPropertiesMapPropertyPermission */2935export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}29362937/** @name UpDataStructsProperty */2938export interface UpDataStructsProperty extends Struct {2939 readonly key: Bytes;2940 readonly value: Bytes;2941}29422943/** @name UpDataStructsPropertyKeyPermission */2944export interface UpDataStructsPropertyKeyPermission extends Struct {2945 readonly key: Bytes;2946 readonly permission: UpDataStructsPropertyPermission;2947}29482949/** @name UpDataStructsPropertyPermission */2950export interface UpDataStructsPropertyPermission extends Struct {2951 readonly mutable: bool;2952 readonly collectionAdmin: bool;2953 readonly tokenOwner: bool;2954}29552956/** @name UpDataStructsPropertyScope */2957export interface UpDataStructsPropertyScope extends Enum {2958 readonly isNone: boolean;2959 readonly isRmrk: boolean;2960 readonly type: 'None' | 'Rmrk';2961}29622963/** @name UpDataStructsRpcCollection */2964export interface UpDataStructsRpcCollection extends Struct {2965 readonly owner: AccountId32;2966 readonly mode: UpDataStructsCollectionMode;2967 readonly name: Vec<u16>;2968 readonly description: Vec<u16>;2969 readonly tokenPrefix: Bytes;2970 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2971 readonly limits: UpDataStructsCollectionLimits;2972 readonly permissions: UpDataStructsCollectionPermissions;2973 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2974 readonly properties: Vec<UpDataStructsProperty>;2975 readonly readOnly: bool;2976 readonly flags: UpDataStructsRpcCollectionFlags;2977}29782979/** @name UpDataStructsRpcCollectionFlags */2980export interface UpDataStructsRpcCollectionFlags extends Struct {2981 readonly foreign: bool;2982 readonly erc721metadata: bool;2983}29842985/** @name UpDataStructsSponsoringRateLimit */2986export interface UpDataStructsSponsoringRateLimit extends Enum {2987 readonly isSponsoringDisabled: boolean;2988 readonly isBlocks: boolean;2989 readonly asBlocks: u32;2990 readonly type: 'SponsoringDisabled' | 'Blocks';2991}29922993/** @name UpDataStructsSponsorshipStateAccountId32 */2994export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {2995 readonly isDisabled: boolean;2996 readonly isUnconfirmed: boolean;2997 readonly asUnconfirmed: AccountId32;2998 readonly isConfirmed: boolean;2999 readonly asConfirmed: AccountId32;3000 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3001}30023003/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3004export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3005 readonly isDisabled: boolean;3006 readonly isUnconfirmed: boolean;3007 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3008 readonly isConfirmed: boolean;3009 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3010 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3011}30123013/** @name UpDataStructsTokenChild */3014export interface UpDataStructsTokenChild extends Struct {3015 readonly token: u32;3016 readonly collection: u32;3017}30183019/** @name UpDataStructsTokenData */3020export interface UpDataStructsTokenData extends Struct {3021 readonly properties: Vec<UpDataStructsProperty>;3022 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3023 readonly pieces: u128;3024}30253026/** @name XcmDoubleEncoded */3027export interface XcmDoubleEncoded extends Struct {3028 readonly encoded: Bytes;3029}30303031/** @name XcmV0Junction */3032export interface XcmV0Junction extends Enum {3033 readonly isParent: boolean;3034 readonly isParachain: boolean;3035 readonly asParachain: Compact<u32>;3036 readonly isAccountId32: boolean;3037 readonly asAccountId32: {3038 readonly network: XcmV0JunctionNetworkId;3039 readonly id: U8aFixed;3040 } & Struct;3041 readonly isAccountIndex64: boolean;3042 readonly asAccountIndex64: {3043 readonly network: XcmV0JunctionNetworkId;3044 readonly index: Compact<u64>;3045 } & Struct;3046 readonly isAccountKey20: boolean;3047 readonly asAccountKey20: {3048 readonly network: XcmV0JunctionNetworkId;3049 readonly key: U8aFixed;3050 } & Struct;3051 readonly isPalletInstance: boolean;3052 readonly asPalletInstance: u8;3053 readonly isGeneralIndex: boolean;3054 readonly asGeneralIndex: Compact<u128>;3055 readonly isGeneralKey: boolean;3056 readonly asGeneralKey: Bytes;3057 readonly isOnlyChild: boolean;3058 readonly isPlurality: boolean;3059 readonly asPlurality: {3060 readonly id: XcmV0JunctionBodyId;3061 readonly part: XcmV0JunctionBodyPart;3062 } & Struct;3063 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3064}30653066/** @name XcmV0JunctionBodyId */3067export interface XcmV0JunctionBodyId extends Enum {3068 readonly isUnit: boolean;3069 readonly isNamed: boolean;3070 readonly asNamed: Bytes;3071 readonly isIndex: boolean;3072 readonly asIndex: Compact<u32>;3073 readonly isExecutive: boolean;3074 readonly isTechnical: boolean;3075 readonly isLegislative: boolean;3076 readonly isJudicial: boolean;3077 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3078}30793080/** @name XcmV0JunctionBodyPart */3081export interface XcmV0JunctionBodyPart extends Enum {3082 readonly isVoice: boolean;3083 readonly isMembers: boolean;3084 readonly asMembers: {3085 readonly count: Compact<u32>;3086 } & Struct;3087 readonly isFraction: boolean;3088 readonly asFraction: {3089 readonly nom: Compact<u32>;3090 readonly denom: Compact<u32>;3091 } & Struct;3092 readonly isAtLeastProportion: boolean;3093 readonly asAtLeastProportion: {3094 readonly nom: Compact<u32>;3095 readonly denom: Compact<u32>;3096 } & Struct;3097 readonly isMoreThanProportion: boolean;3098 readonly asMoreThanProportion: {3099 readonly nom: Compact<u32>;3100 readonly denom: Compact<u32>;3101 } & Struct;3102 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3103}31043105/** @name XcmV0JunctionNetworkId */3106export interface XcmV0JunctionNetworkId extends Enum {3107 readonly isAny: boolean;3108 readonly isNamed: boolean;3109 readonly asNamed: Bytes;3110 readonly isPolkadot: boolean;3111 readonly isKusama: boolean;3112 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3113}31143115/** @name XcmV0MultiAsset */3116export interface XcmV0MultiAsset extends Enum {3117 readonly isNone: boolean;3118 readonly isAll: boolean;3119 readonly isAllFungible: boolean;3120 readonly isAllNonFungible: boolean;3121 readonly isAllAbstractFungible: boolean;3122 readonly asAllAbstractFungible: {3123 readonly id: Bytes;3124 } & Struct;3125 readonly isAllAbstractNonFungible: boolean;3126 readonly asAllAbstractNonFungible: {3127 readonly class: Bytes;3128 } & Struct;3129 readonly isAllConcreteFungible: boolean;3130 readonly asAllConcreteFungible: {3131 readonly id: XcmV0MultiLocation;3132 } & Struct;3133 readonly isAllConcreteNonFungible: boolean;3134 readonly asAllConcreteNonFungible: {3135 readonly class: XcmV0MultiLocation;3136 } & Struct;3137 readonly isAbstractFungible: boolean;3138 readonly asAbstractFungible: {3139 readonly id: Bytes;3140 readonly amount: Compact<u128>;3141 } & Struct;3142 readonly isAbstractNonFungible: boolean;3143 readonly asAbstractNonFungible: {3144 readonly class: Bytes;3145 readonly instance: XcmV1MultiassetAssetInstance;3146 } & Struct;3147 readonly isConcreteFungible: boolean;3148 readonly asConcreteFungible: {3149 readonly id: XcmV0MultiLocation;3150 readonly amount: Compact<u128>;3151 } & Struct;3152 readonly isConcreteNonFungible: boolean;3153 readonly asConcreteNonFungible: {3154 readonly class: XcmV0MultiLocation;3155 readonly instance: XcmV1MultiassetAssetInstance;3156 } & Struct;3157 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3158}31593160/** @name XcmV0MultiLocation */3161export interface XcmV0MultiLocation extends Enum {3162 readonly isNull: boolean;3163 readonly isX1: boolean;3164 readonly asX1: XcmV0Junction;3165 readonly isX2: boolean;3166 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3167 readonly isX3: boolean;3168 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3169 readonly isX4: boolean;3170 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3171 readonly isX5: boolean;3172 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3173 readonly isX6: boolean;3174 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3175 readonly isX7: boolean;3176 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3177 readonly isX8: boolean;3178 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3179 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3180}31813182/** @name XcmV0Order */3183export interface XcmV0Order extends Enum {3184 readonly isNull: boolean;3185 readonly isDepositAsset: boolean;3186 readonly asDepositAsset: {3187 readonly assets: Vec<XcmV0MultiAsset>;3188 readonly dest: XcmV0MultiLocation;3189 } & Struct;3190 readonly isDepositReserveAsset: boolean;3191 readonly asDepositReserveAsset: {3192 readonly assets: Vec<XcmV0MultiAsset>;3193 readonly dest: XcmV0MultiLocation;3194 readonly effects: Vec<XcmV0Order>;3195 } & Struct;3196 readonly isExchangeAsset: boolean;3197 readonly asExchangeAsset: {3198 readonly give: Vec<XcmV0MultiAsset>;3199 readonly receive: Vec<XcmV0MultiAsset>;3200 } & Struct;3201 readonly isInitiateReserveWithdraw: boolean;3202 readonly asInitiateReserveWithdraw: {3203 readonly assets: Vec<XcmV0MultiAsset>;3204 readonly reserve: XcmV0MultiLocation;3205 readonly effects: Vec<XcmV0Order>;3206 } & Struct;3207 readonly isInitiateTeleport: boolean;3208 readonly asInitiateTeleport: {3209 readonly assets: Vec<XcmV0MultiAsset>;3210 readonly dest: XcmV0MultiLocation;3211 readonly effects: Vec<XcmV0Order>;3212 } & Struct;3213 readonly isQueryHolding: boolean;3214 readonly asQueryHolding: {3215 readonly queryId: Compact<u64>;3216 readonly dest: XcmV0MultiLocation;3217 readonly assets: Vec<XcmV0MultiAsset>;3218 } & Struct;3219 readonly isBuyExecution: boolean;3220 readonly asBuyExecution: {3221 readonly fees: XcmV0MultiAsset;3222 readonly weight: u64;3223 readonly debt: u64;3224 readonly haltOnError: bool;3225 readonly xcm: Vec<XcmV0Xcm>;3226 } & Struct;3227 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3228}32293230/** @name XcmV0OriginKind */3231export interface XcmV0OriginKind extends Enum {3232 readonly isNative: boolean;3233 readonly isSovereignAccount: boolean;3234 readonly isSuperuser: boolean;3235 readonly isXcm: boolean;3236 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3237}32383239/** @name XcmV0Response */3240export interface XcmV0Response extends Enum {3241 readonly isAssets: boolean;3242 readonly asAssets: Vec<XcmV0MultiAsset>;3243 readonly type: 'Assets';3244}32453246/** @name XcmV0Xcm */3247export interface XcmV0Xcm extends Enum {3248 readonly isWithdrawAsset: boolean;3249 readonly asWithdrawAsset: {3250 readonly assets: Vec<XcmV0MultiAsset>;3251 readonly effects: Vec<XcmV0Order>;3252 } & Struct;3253 readonly isReserveAssetDeposit: boolean;3254 readonly asReserveAssetDeposit: {3255 readonly assets: Vec<XcmV0MultiAsset>;3256 readonly effects: Vec<XcmV0Order>;3257 } & Struct;3258 readonly isTeleportAsset: boolean;3259 readonly asTeleportAsset: {3260 readonly assets: Vec<XcmV0MultiAsset>;3261 readonly effects: Vec<XcmV0Order>;3262 } & Struct;3263 readonly isQueryResponse: boolean;3264 readonly asQueryResponse: {3265 readonly queryId: Compact<u64>;3266 readonly response: XcmV0Response;3267 } & Struct;3268 readonly isTransferAsset: boolean;3269 readonly asTransferAsset: {3270 readonly assets: Vec<XcmV0MultiAsset>;3271 readonly dest: XcmV0MultiLocation;3272 } & Struct;3273 readonly isTransferReserveAsset: boolean;3274 readonly asTransferReserveAsset: {3275 readonly assets: Vec<XcmV0MultiAsset>;3276 readonly dest: XcmV0MultiLocation;3277 readonly effects: Vec<XcmV0Order>;3278 } & Struct;3279 readonly isTransact: boolean;3280 readonly asTransact: {3281 readonly originType: XcmV0OriginKind;3282 readonly requireWeightAtMost: u64;3283 readonly call: XcmDoubleEncoded;3284 } & Struct;3285 readonly isHrmpNewChannelOpenRequest: boolean;3286 readonly asHrmpNewChannelOpenRequest: {3287 readonly sender: Compact<u32>;3288 readonly maxMessageSize: Compact<u32>;3289 readonly maxCapacity: Compact<u32>;3290 } & Struct;3291 readonly isHrmpChannelAccepted: boolean;3292 readonly asHrmpChannelAccepted: {3293 readonly recipient: Compact<u32>;3294 } & Struct;3295 readonly isHrmpChannelClosing: boolean;3296 readonly asHrmpChannelClosing: {3297 readonly initiator: Compact<u32>;3298 readonly sender: Compact<u32>;3299 readonly recipient: Compact<u32>;3300 } & Struct;3301 readonly isRelayedFrom: boolean;3302 readonly asRelayedFrom: {3303 readonly who: XcmV0MultiLocation;3304 readonly message: XcmV0Xcm;3305 } & Struct;3306 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3307}33083309/** @name XcmV1Junction */3310export interface XcmV1Junction extends Enum {3311 readonly isParachain: boolean;3312 readonly asParachain: Compact<u32>;3313 readonly isAccountId32: boolean;3314 readonly asAccountId32: {3315 readonly network: XcmV0JunctionNetworkId;3316 readonly id: U8aFixed;3317 } & Struct;3318 readonly isAccountIndex64: boolean;3319 readonly asAccountIndex64: {3320 readonly network: XcmV0JunctionNetworkId;3321 readonly index: Compact<u64>;3322 } & Struct;3323 readonly isAccountKey20: boolean;3324 readonly asAccountKey20: {3325 readonly network: XcmV0JunctionNetworkId;3326 readonly key: U8aFixed;3327 } & Struct;3328 readonly isPalletInstance: boolean;3329 readonly asPalletInstance: u8;3330 readonly isGeneralIndex: boolean;3331 readonly asGeneralIndex: Compact<u128>;3332 readonly isGeneralKey: boolean;3333 readonly asGeneralKey: Bytes;3334 readonly isOnlyChild: boolean;3335 readonly isPlurality: boolean;3336 readonly asPlurality: {3337 readonly id: XcmV0JunctionBodyId;3338 readonly part: XcmV0JunctionBodyPart;3339 } & Struct;3340 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3341}33423343/** @name XcmV1MultiAsset */3344export interface XcmV1MultiAsset extends Struct {3345 readonly id: XcmV1MultiassetAssetId;3346 readonly fun: XcmV1MultiassetFungibility;3347}33483349/** @name XcmV1MultiassetAssetId */3350export interface XcmV1MultiassetAssetId extends Enum {3351 readonly isConcrete: boolean;3352 readonly asConcrete: XcmV1MultiLocation;3353 readonly isAbstract: boolean;3354 readonly asAbstract: Bytes;3355 readonly type: 'Concrete' | 'Abstract';3356}33573358/** @name XcmV1MultiassetAssetInstance */3359export interface XcmV1MultiassetAssetInstance extends Enum {3360 readonly isUndefined: boolean;3361 readonly isIndex: boolean;3362 readonly asIndex: Compact<u128>;3363 readonly isArray4: boolean;3364 readonly asArray4: U8aFixed;3365 readonly isArray8: boolean;3366 readonly asArray8: U8aFixed;3367 readonly isArray16: boolean;3368 readonly asArray16: U8aFixed;3369 readonly isArray32: boolean;3370 readonly asArray32: U8aFixed;3371 readonly isBlob: boolean;3372 readonly asBlob: Bytes;3373 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3374}33753376/** @name XcmV1MultiassetFungibility */3377export interface XcmV1MultiassetFungibility extends Enum {3378 readonly isFungible: boolean;3379 readonly asFungible: Compact<u128>;3380 readonly isNonFungible: boolean;3381 readonly asNonFungible: XcmV1MultiassetAssetInstance;3382 readonly type: 'Fungible' | 'NonFungible';3383}33843385/** @name XcmV1MultiassetMultiAssetFilter */3386export interface XcmV1MultiassetMultiAssetFilter extends Enum {3387 readonly isDefinite: boolean;3388 readonly asDefinite: XcmV1MultiassetMultiAssets;3389 readonly isWild: boolean;3390 readonly asWild: XcmV1MultiassetWildMultiAsset;3391 readonly type: 'Definite' | 'Wild';3392}33933394/** @name XcmV1MultiassetMultiAssets */3395export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}33963397/** @name XcmV1MultiassetWildFungibility */3398export interface XcmV1MultiassetWildFungibility extends Enum {3399 readonly isFungible: boolean;3400 readonly isNonFungible: boolean;3401 readonly type: 'Fungible' | 'NonFungible';3402}34033404/** @name XcmV1MultiassetWildMultiAsset */3405export interface XcmV1MultiassetWildMultiAsset extends Enum {3406 readonly isAll: boolean;3407 readonly isAllOf: boolean;3408 readonly asAllOf: {3409 readonly id: XcmV1MultiassetAssetId;3410 readonly fun: XcmV1MultiassetWildFungibility;3411 } & Struct;3412 readonly type: 'All' | 'AllOf';3413}34143415/** @name XcmV1MultiLocation */3416export interface XcmV1MultiLocation extends Struct {3417 readonly parents: u8;3418 readonly interior: XcmV1MultilocationJunctions;3419}34203421/** @name XcmV1MultilocationJunctions */3422export interface XcmV1MultilocationJunctions extends Enum {3423 readonly isHere: boolean;3424 readonly isX1: boolean;3425 readonly asX1: XcmV1Junction;3426 readonly isX2: boolean;3427 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3428 readonly isX3: boolean;3429 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3430 readonly isX4: boolean;3431 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3432 readonly isX5: boolean;3433 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3434 readonly isX6: boolean;3435 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3436 readonly isX7: boolean;3437 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3438 readonly isX8: boolean;3439 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3440 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3441}34423443/** @name XcmV1Order */3444export interface XcmV1Order extends Enum {3445 readonly isNoop: boolean;3446 readonly isDepositAsset: boolean;3447 readonly asDepositAsset: {3448 readonly assets: XcmV1MultiassetMultiAssetFilter;3449 readonly maxAssets: u32;3450 readonly beneficiary: XcmV1MultiLocation;3451 } & Struct;3452 readonly isDepositReserveAsset: boolean;3453 readonly asDepositReserveAsset: {3454 readonly assets: XcmV1MultiassetMultiAssetFilter;3455 readonly maxAssets: u32;3456 readonly dest: XcmV1MultiLocation;3457 readonly effects: Vec<XcmV1Order>;3458 } & Struct;3459 readonly isExchangeAsset: boolean;3460 readonly asExchangeAsset: {3461 readonly give: XcmV1MultiassetMultiAssetFilter;3462 readonly receive: XcmV1MultiassetMultiAssets;3463 } & Struct;3464 readonly isInitiateReserveWithdraw: boolean;3465 readonly asInitiateReserveWithdraw: {3466 readonly assets: XcmV1MultiassetMultiAssetFilter;3467 readonly reserve: XcmV1MultiLocation;3468 readonly effects: Vec<XcmV1Order>;3469 } & Struct;3470 readonly isInitiateTeleport: boolean;3471 readonly asInitiateTeleport: {3472 readonly assets: XcmV1MultiassetMultiAssetFilter;3473 readonly dest: XcmV1MultiLocation;3474 readonly effects: Vec<XcmV1Order>;3475 } & Struct;3476 readonly isQueryHolding: boolean;3477 readonly asQueryHolding: {3478 readonly queryId: Compact<u64>;3479 readonly dest: XcmV1MultiLocation;3480 readonly assets: XcmV1MultiassetMultiAssetFilter;3481 } & Struct;3482 readonly isBuyExecution: boolean;3483 readonly asBuyExecution: {3484 readonly fees: XcmV1MultiAsset;3485 readonly weight: u64;3486 readonly debt: u64;3487 readonly haltOnError: bool;3488 readonly instructions: Vec<XcmV1Xcm>;3489 } & Struct;3490 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3491}34923493/** @name XcmV1Response */3494export interface XcmV1Response extends Enum {3495 readonly isAssets: boolean;3496 readonly asAssets: XcmV1MultiassetMultiAssets;3497 readonly isVersion: boolean;3498 readonly asVersion: u32;3499 readonly type: 'Assets' | 'Version';3500}35013502/** @name XcmV1Xcm */3503export interface XcmV1Xcm extends Enum {3504 readonly isWithdrawAsset: boolean;3505 readonly asWithdrawAsset: {3506 readonly assets: XcmV1MultiassetMultiAssets;3507 readonly effects: Vec<XcmV1Order>;3508 } & Struct;3509 readonly isReserveAssetDeposited: boolean;3510 readonly asReserveAssetDeposited: {3511 readonly assets: XcmV1MultiassetMultiAssets;3512 readonly effects: Vec<XcmV1Order>;3513 } & Struct;3514 readonly isReceiveTeleportedAsset: boolean;3515 readonly asReceiveTeleportedAsset: {3516 readonly assets: XcmV1MultiassetMultiAssets;3517 readonly effects: Vec<XcmV1Order>;3518 } & Struct;3519 readonly isQueryResponse: boolean;3520 readonly asQueryResponse: {3521 readonly queryId: Compact<u64>;3522 readonly response: XcmV1Response;3523 } & Struct;3524 readonly isTransferAsset: boolean;3525 readonly asTransferAsset: {3526 readonly assets: XcmV1MultiassetMultiAssets;3527 readonly beneficiary: XcmV1MultiLocation;3528 } & Struct;3529 readonly isTransferReserveAsset: boolean;3530 readonly asTransferReserveAsset: {3531 readonly assets: XcmV1MultiassetMultiAssets;3532 readonly dest: XcmV1MultiLocation;3533 readonly effects: Vec<XcmV1Order>;3534 } & Struct;3535 readonly isTransact: boolean;3536 readonly asTransact: {3537 readonly originType: XcmV0OriginKind;3538 readonly requireWeightAtMost: u64;3539 readonly call: XcmDoubleEncoded;3540 } & Struct;3541 readonly isHrmpNewChannelOpenRequest: boolean;3542 readonly asHrmpNewChannelOpenRequest: {3543 readonly sender: Compact<u32>;3544 readonly maxMessageSize: Compact<u32>;3545 readonly maxCapacity: Compact<u32>;3546 } & Struct;3547 readonly isHrmpChannelAccepted: boolean;3548 readonly asHrmpChannelAccepted: {3549 readonly recipient: Compact<u32>;3550 } & Struct;3551 readonly isHrmpChannelClosing: boolean;3552 readonly asHrmpChannelClosing: {3553 readonly initiator: Compact<u32>;3554 readonly sender: Compact<u32>;3555 readonly recipient: Compact<u32>;3556 } & Struct;3557 readonly isRelayedFrom: boolean;3558 readonly asRelayedFrom: {3559 readonly who: XcmV1MultilocationJunctions;3560 readonly message: XcmV1Xcm;3561 } & Struct;3562 readonly isSubscribeVersion: boolean;3563 readonly asSubscribeVersion: {3564 readonly queryId: Compact<u64>;3565 readonly maxResponseWeight: Compact<u64>;3566 } & Struct;3567 readonly isUnsubscribeVersion: boolean;3568 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3569}35703571/** @name XcmV2Instruction */3572export interface XcmV2Instruction extends Enum {3573 readonly isWithdrawAsset: boolean;3574 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3575 readonly isReserveAssetDeposited: boolean;3576 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3577 readonly isReceiveTeleportedAsset: boolean;3578 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3579 readonly isQueryResponse: boolean;3580 readonly asQueryResponse: {3581 readonly queryId: Compact<u64>;3582 readonly response: XcmV2Response;3583 readonly maxWeight: Compact<u64>;3584 } & Struct;3585 readonly isTransferAsset: boolean;3586 readonly asTransferAsset: {3587 readonly assets: XcmV1MultiassetMultiAssets;3588 readonly beneficiary: XcmV1MultiLocation;3589 } & Struct;3590 readonly isTransferReserveAsset: boolean;3591 readonly asTransferReserveAsset: {3592 readonly assets: XcmV1MultiassetMultiAssets;3593 readonly dest: XcmV1MultiLocation;3594 readonly xcm: XcmV2Xcm;3595 } & Struct;3596 readonly isTransact: boolean;3597 readonly asTransact: {3598 readonly originType: XcmV0OriginKind;3599 readonly requireWeightAtMost: Compact<u64>;3600 readonly call: XcmDoubleEncoded;3601 } & Struct;3602 readonly isHrmpNewChannelOpenRequest: boolean;3603 readonly asHrmpNewChannelOpenRequest: {3604 readonly sender: Compact<u32>;3605 readonly maxMessageSize: Compact<u32>;3606 readonly maxCapacity: Compact<u32>;3607 } & Struct;3608 readonly isHrmpChannelAccepted: boolean;3609 readonly asHrmpChannelAccepted: {3610 readonly recipient: Compact<u32>;3611 } & Struct;3612 readonly isHrmpChannelClosing: boolean;3613 readonly asHrmpChannelClosing: {3614 readonly initiator: Compact<u32>;3615 readonly sender: Compact<u32>;3616 readonly recipient: Compact<u32>;3617 } & Struct;3618 readonly isClearOrigin: boolean;3619 readonly isDescendOrigin: boolean;3620 readonly asDescendOrigin: XcmV1MultilocationJunctions;3621 readonly isReportError: boolean;3622 readonly asReportError: {3623 readonly queryId: Compact<u64>;3624 readonly dest: XcmV1MultiLocation;3625 readonly maxResponseWeight: Compact<u64>;3626 } & Struct;3627 readonly isDepositAsset: boolean;3628 readonly asDepositAsset: {3629 readonly assets: XcmV1MultiassetMultiAssetFilter;3630 readonly maxAssets: Compact<u32>;3631 readonly beneficiary: XcmV1MultiLocation;3632 } & Struct;3633 readonly isDepositReserveAsset: boolean;3634 readonly asDepositReserveAsset: {3635 readonly assets: XcmV1MultiassetMultiAssetFilter;3636 readonly maxAssets: Compact<u32>;3637 readonly dest: XcmV1MultiLocation;3638 readonly xcm: XcmV2Xcm;3639 } & Struct;3640 readonly isExchangeAsset: boolean;3641 readonly asExchangeAsset: {3642 readonly give: XcmV1MultiassetMultiAssetFilter;3643 readonly receive: XcmV1MultiassetMultiAssets;3644 } & Struct;3645 readonly isInitiateReserveWithdraw: boolean;3646 readonly asInitiateReserveWithdraw: {3647 readonly assets: XcmV1MultiassetMultiAssetFilter;3648 readonly reserve: XcmV1MultiLocation;3649 readonly xcm: XcmV2Xcm;3650 } & Struct;3651 readonly isInitiateTeleport: boolean;3652 readonly asInitiateTeleport: {3653 readonly assets: XcmV1MultiassetMultiAssetFilter;3654 readonly dest: XcmV1MultiLocation;3655 readonly xcm: XcmV2Xcm;3656 } & Struct;3657 readonly isQueryHolding: boolean;3658 readonly asQueryHolding: {3659 readonly queryId: Compact<u64>;3660 readonly dest: XcmV1MultiLocation;3661 readonly assets: XcmV1MultiassetMultiAssetFilter;3662 readonly maxResponseWeight: Compact<u64>;3663 } & Struct;3664 readonly isBuyExecution: boolean;3665 readonly asBuyExecution: {3666 readonly fees: XcmV1MultiAsset;3667 readonly weightLimit: XcmV2WeightLimit;3668 } & Struct;3669 readonly isRefundSurplus: boolean;3670 readonly isSetErrorHandler: boolean;3671 readonly asSetErrorHandler: XcmV2Xcm;3672 readonly isSetAppendix: boolean;3673 readonly asSetAppendix: XcmV2Xcm;3674 readonly isClearError: boolean;3675 readonly isClaimAsset: boolean;3676 readonly asClaimAsset: {3677 readonly assets: XcmV1MultiassetMultiAssets;3678 readonly ticket: XcmV1MultiLocation;3679 } & Struct;3680 readonly isTrap: boolean;3681 readonly asTrap: Compact<u64>;3682 readonly isSubscribeVersion: boolean;3683 readonly asSubscribeVersion: {3684 readonly queryId: Compact<u64>;3685 readonly maxResponseWeight: Compact<u64>;3686 } & Struct;3687 readonly isUnsubscribeVersion: boolean;3688 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';3689}36903691/** @name XcmV2Response */3692export interface XcmV2Response extends Enum {3693 readonly isNull: boolean;3694 readonly isAssets: boolean;3695 readonly asAssets: XcmV1MultiassetMultiAssets;3696 readonly isExecutionResult: boolean;3697 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3698 readonly isVersion: boolean;3699 readonly asVersion: u32;3700 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3701}37023703/** @name XcmV2TraitsError */3704export interface XcmV2TraitsError extends Enum {3705 readonly isOverflow: boolean;3706 readonly isUnimplemented: boolean;3707 readonly isUntrustedReserveLocation: boolean;3708 readonly isUntrustedTeleportLocation: boolean;3709 readonly isMultiLocationFull: boolean;3710 readonly isMultiLocationNotInvertible: boolean;3711 readonly isBadOrigin: boolean;3712 readonly isInvalidLocation: boolean;3713 readonly isAssetNotFound: boolean;3714 readonly isFailedToTransactAsset: boolean;3715 readonly isNotWithdrawable: boolean;3716 readonly isLocationCannotHold: boolean;3717 readonly isExceedsMaxMessageSize: boolean;3718 readonly isDestinationUnsupported: boolean;3719 readonly isTransport: boolean;3720 readonly isUnroutable: boolean;3721 readonly isUnknownClaim: boolean;3722 readonly isFailedToDecode: boolean;3723 readonly isMaxWeightInvalid: boolean;3724 readonly isNotHoldingFees: boolean;3725 readonly isTooExpensive: boolean;3726 readonly isTrap: boolean;3727 readonly asTrap: u64;3728 readonly isUnhandledXcmVersion: boolean;3729 readonly isWeightLimitReached: boolean;3730 readonly asWeightLimitReached: u64;3731 readonly isBarrier: boolean;3732 readonly isWeightNotComputable: boolean;3733 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';3734}37353736/** @name XcmV2TraitsOutcome */3737export interface XcmV2TraitsOutcome extends Enum {3738 readonly isComplete: boolean;3739 readonly asComplete: u64;3740 readonly isIncomplete: boolean;3741 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3742 readonly isError: boolean;3743 readonly asError: XcmV2TraitsError;3744 readonly type: 'Complete' | 'Incomplete' | 'Error';3745}37463747/** @name XcmV2WeightLimit */3748export interface XcmV2WeightLimit extends Enum {3749 readonly isUnlimited: boolean;3750 readonly isLimited: boolean;3751 readonly asLimited: Compact<u64>;3752 readonly type: 'Unlimited' | 'Limited';3753}37543755/** @name XcmV2Xcm */3756export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}37573758/** @name XcmVersionedMultiAsset */3759export interface XcmVersionedMultiAsset extends Enum {3760 readonly isV0: boolean;3761 readonly asV0: XcmV0MultiAsset;3762 readonly isV1: boolean;3763 readonly asV1: XcmV1MultiAsset;3764 readonly type: 'V0' | 'V1';3765}37663767/** @name XcmVersionedMultiAssets */3768export interface XcmVersionedMultiAssets extends Enum {3769 readonly isV0: boolean;3770 readonly asV0: Vec<XcmV0MultiAsset>;3771 readonly isV1: boolean;3772 readonly asV1: XcmV1MultiassetMultiAssets;3773 readonly type: 'V0' | 'V1';3774}37753776/** @name XcmVersionedMultiLocation */3777export interface XcmVersionedMultiLocation extends Enum {3778 readonly isV0: boolean;3779 readonly asV0: XcmV0MultiLocation;3780 readonly isV1: boolean;3781 readonly asV1: XcmV1MultiLocation;3782 readonly type: 'V0' | 'V1';3783}37843785/** @name XcmVersionedXcm */3786export interface XcmVersionedXcm extends Enum {3787 readonly isV0: boolean;3788 readonly asV0: XcmV0Xcm;3789 readonly isV1: boolean;3790 readonly asV1: XcmV1Xcm;3791 readonly isV2: boolean;3792 readonly asV2: XcmV2Xcm;3793 readonly type: 'V0' | 'V1' | 'V2';3794}37953796export type PHANTOM_DEFAULT = 'default';1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: SpWeightsWeightV2Weight;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: {35 readonly messageId: U8aFixed;36 } & Struct;37 readonly isUnsupportedVersion: boolean;38 readonly asUnsupportedVersion: {39 readonly messageId: U8aFixed;40 } & Struct;41 readonly isExecutedDownward: boolean;42 readonly asExecutedDownward: {43 readonly messageId: U8aFixed;44 readonly outcome: XcmV2TraitsOutcome;45 } & Struct;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;49 readonly remainingWeight: SpWeightsWeightV2Weight;50 readonly requiredWeight: SpWeightsWeightV2Weight;51 } & Struct;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;56 readonly requiredWeight: SpWeightsWeightV2Weight;57 } & Struct;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;61 readonly weightUsed: SpWeightsWeightV2Weight;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68 readonly beginUsed: u32;69 readonly endUsed: u32;70 readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75 readonly isSetValidationData: boolean;76 readonly asSetValidationData: {77 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78 } & Struct;79 readonly isSudoSendUpwardMessage: boolean;80 readonly asSudoSendUpwardMessage: {81 readonly message: Bytes;82 } & Struct;83 readonly isAuthorizeUpgrade: boolean;84 readonly asAuthorizeUpgrade: {85 readonly codeHash: H256;86 } & Struct;87 readonly isEnactAuthorizedUpgrade: boolean;88 readonly asEnactAuthorizedUpgrade: {89 readonly code: Bytes;90 } & Struct;91 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96 readonly isOverlappingUpgrades: boolean;97 readonly isProhibitedByPolkadot: boolean;98 readonly isTooBig: boolean;99 readonly isValidationDataNotAvailable: boolean;100 readonly isHostConfigurationNotAvailable: boolean;101 readonly isNotScheduled: boolean;102 readonly isNothingAuthorized: boolean;103 readonly isUnauthorized: boolean;104 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: {112 readonly relayChainBlockNum: u32;113 } & Struct;114 readonly isValidationFunctionDiscarded: boolean;115 readonly isUpgradeAuthorized: boolean;116 readonly asUpgradeAuthorized: {117 readonly codeHash: H256;118 } & Struct;119 readonly isDownwardMessagesReceived: boolean;120 readonly asDownwardMessagesReceived: {121 readonly count: u32;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: SpWeightsWeightV2Weight;126 readonly dmqHead: H256;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133 readonly dmqMqcHead: H256;134 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147 readonly isInvalidFormat: boolean;148 readonly asInvalidFormat: U8aFixed;149 readonly isUnsupportedVersion: boolean;150 readonly asUnsupportedVersion: U8aFixed;151 readonly isExecutedDownward: boolean;152 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmpQueueCall */157export interface CumulusPalletXcmpQueueCall extends Enum {158 readonly isServiceOverweight: boolean;159 readonly asServiceOverweight: {160 readonly index: u64;161 readonly weightLimit: u64;162 } & Struct;163 readonly isSuspendXcmExecution: boolean;164 readonly isResumeXcmExecution: boolean;165 readonly isUpdateSuspendThreshold: boolean;166 readonly asUpdateSuspendThreshold: {167 readonly new_: u32;168 } & Struct;169 readonly isUpdateDropThreshold: boolean;170 readonly asUpdateDropThreshold: {171 readonly new_: u32;172 } & Struct;173 readonly isUpdateResumeThreshold: boolean;174 readonly asUpdateResumeThreshold: {175 readonly new_: u32;176 } & Struct;177 readonly isUpdateThresholdWeight: boolean;178 readonly asUpdateThresholdWeight: {179 readonly new_: u64;180 } & Struct;181 readonly isUpdateWeightRestrictDecay: boolean;182 readonly asUpdateWeightRestrictDecay: {183 readonly new_: u64;184 } & Struct;185 readonly isUpdateXcmpMaxIndividualWeight: boolean;186 readonly asUpdateXcmpMaxIndividualWeight: {187 readonly new_: u64;188 } & Struct;189 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';190}191192/** @name CumulusPalletXcmpQueueError */193export interface CumulusPalletXcmpQueueError extends Enum {194 readonly isFailedToSend: boolean;195 readonly isBadXcmOrigin: boolean;196 readonly isBadXcm: boolean;197 readonly isBadOverweightIndex: boolean;198 readonly isWeightOverLimit: boolean;199 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';200}201202/** @name CumulusPalletXcmpQueueEvent */203export interface CumulusPalletXcmpQueueEvent extends Enum {204 readonly isSuccess: boolean;205 readonly asSuccess: {206 readonly messageHash: Option<H256>;207 readonly weight: SpWeightsWeightV2Weight;208 } & Struct;209 readonly isFail: boolean;210 readonly asFail: {211 readonly messageHash: Option<H256>;212 readonly error: XcmV2TraitsError;213 readonly weight: SpWeightsWeightV2Weight;214 } & Struct;215 readonly isBadVersion: boolean;216 readonly asBadVersion: {217 readonly messageHash: Option<H256>;218 } & Struct;219 readonly isBadFormat: boolean;220 readonly asBadFormat: {221 readonly messageHash: Option<H256>;222 } & Struct;223 readonly isUpwardMessageSent: boolean;224 readonly asUpwardMessageSent: {225 readonly messageHash: Option<H256>;226 } & Struct;227 readonly isXcmpMessageSent: boolean;228 readonly asXcmpMessageSent: {229 readonly messageHash: Option<H256>;230 } & Struct;231 readonly isOverweightEnqueued: boolean;232 readonly asOverweightEnqueued: {233 readonly sender: u32;234 readonly sentAt: u32;235 readonly index: u64;236 readonly required: SpWeightsWeightV2Weight;237 } & Struct;238 readonly isOverweightServiced: boolean;239 readonly asOverweightServiced: {240 readonly index: u64;241 readonly used: SpWeightsWeightV2Weight;242 } & Struct;243 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';244}245246/** @name CumulusPalletXcmpQueueInboundChannelDetails */247export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {248 readonly sender: u32;249 readonly state: CumulusPalletXcmpQueueInboundState;250 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;251}252253/** @name CumulusPalletXcmpQueueInboundState */254export interface CumulusPalletXcmpQueueInboundState extends Enum {255 readonly isOk: boolean;256 readonly isSuspended: boolean;257 readonly type: 'Ok' | 'Suspended';258}259260/** @name CumulusPalletXcmpQueueOutboundChannelDetails */261export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {262 readonly recipient: u32;263 readonly state: CumulusPalletXcmpQueueOutboundState;264 readonly signalsExist: bool;265 readonly firstIndex: u16;266 readonly lastIndex: u16;267}268269/** @name CumulusPalletXcmpQueueOutboundState */270export interface CumulusPalletXcmpQueueOutboundState extends Enum {271 readonly isOk: boolean;272 readonly isSuspended: boolean;273 readonly type: 'Ok' | 'Suspended';274}275276/** @name CumulusPalletXcmpQueueQueueConfigData */277export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {278 readonly suspendThreshold: u32;279 readonly dropThreshold: u32;280 readonly resumeThreshold: u32;281 readonly thresholdWeight: SpWeightsWeightV2Weight;282 readonly weightRestrictDecay: SpWeightsWeightV2Weight;283 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;284}285286/** @name CumulusPrimitivesParachainInherentParachainInherentData */287export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {288 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;289 readonly relayChainState: SpTrieStorageProof;290 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;291 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;292}293294/** @name EthbloomBloom */295export interface EthbloomBloom extends U8aFixed {}296297/** @name EthereumBlock */298export interface EthereumBlock extends Struct {299 readonly header: EthereumHeader;300 readonly transactions: Vec<EthereumTransactionTransactionV2>;301 readonly ommers: Vec<EthereumHeader>;302}303304/** @name EthereumHeader */305export interface EthereumHeader extends Struct {306 readonly parentHash: H256;307 readonly ommersHash: H256;308 readonly beneficiary: H160;309 readonly stateRoot: H256;310 readonly transactionsRoot: H256;311 readonly receiptsRoot: H256;312 readonly logsBloom: EthbloomBloom;313 readonly difficulty: U256;314 readonly number: U256;315 readonly gasLimit: U256;316 readonly gasUsed: U256;317 readonly timestamp: u64;318 readonly extraData: Bytes;319 readonly mixHash: H256;320 readonly nonce: EthereumTypesHashH64;321}322323/** @name EthereumLog */324export interface EthereumLog extends Struct {325 readonly address: H160;326 readonly topics: Vec<H256>;327 readonly data: Bytes;328}329330/** @name EthereumReceiptEip658ReceiptData */331export interface EthereumReceiptEip658ReceiptData extends Struct {332 readonly statusCode: u8;333 readonly usedGas: U256;334 readonly logsBloom: EthbloomBloom;335 readonly logs: Vec<EthereumLog>;336}337338/** @name EthereumReceiptReceiptV3 */339export interface EthereumReceiptReceiptV3 extends Enum {340 readonly isLegacy: boolean;341 readonly asLegacy: EthereumReceiptEip658ReceiptData;342 readonly isEip2930: boolean;343 readonly asEip2930: EthereumReceiptEip658ReceiptData;344 readonly isEip1559: boolean;345 readonly asEip1559: EthereumReceiptEip658ReceiptData;346 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';347}348349/** @name EthereumTransactionAccessListItem */350export interface EthereumTransactionAccessListItem extends Struct {351 readonly address: H160;352 readonly storageKeys: Vec<H256>;353}354355/** @name EthereumTransactionEip1559Transaction */356export interface EthereumTransactionEip1559Transaction extends Struct {357 readonly chainId: u64;358 readonly nonce: U256;359 readonly maxPriorityFeePerGas: U256;360 readonly maxFeePerGas: U256;361 readonly gasLimit: U256;362 readonly action: EthereumTransactionTransactionAction;363 readonly value: U256;364 readonly input: Bytes;365 readonly accessList: Vec<EthereumTransactionAccessListItem>;366 readonly oddYParity: bool;367 readonly r: H256;368 readonly s: H256;369}370371/** @name EthereumTransactionEip2930Transaction */372export interface EthereumTransactionEip2930Transaction extends Struct {373 readonly chainId: u64;374 readonly nonce: U256;375 readonly gasPrice: U256;376 readonly gasLimit: U256;377 readonly action: EthereumTransactionTransactionAction;378 readonly value: U256;379 readonly input: Bytes;380 readonly accessList: Vec<EthereumTransactionAccessListItem>;381 readonly oddYParity: bool;382 readonly r: H256;383 readonly s: H256;384}385386/** @name EthereumTransactionLegacyTransaction */387export interface EthereumTransactionLegacyTransaction extends Struct {388 readonly nonce: U256;389 readonly gasPrice: U256;390 readonly gasLimit: U256;391 readonly action: EthereumTransactionTransactionAction;392 readonly value: U256;393 readonly input: Bytes;394 readonly signature: EthereumTransactionTransactionSignature;395}396397/** @name EthereumTransactionTransactionAction */398export interface EthereumTransactionTransactionAction extends Enum {399 readonly isCall: boolean;400 readonly asCall: H160;401 readonly isCreate: boolean;402 readonly type: 'Call' | 'Create';403}404405/** @name EthereumTransactionTransactionSignature */406export interface EthereumTransactionTransactionSignature extends Struct {407 readonly v: u64;408 readonly r: H256;409 readonly s: H256;410}411412/** @name EthereumTransactionTransactionV2 */413export interface EthereumTransactionTransactionV2 extends Enum {414 readonly isLegacy: boolean;415 readonly asLegacy: EthereumTransactionLegacyTransaction;416 readonly isEip2930: boolean;417 readonly asEip2930: EthereumTransactionEip2930Transaction;418 readonly isEip1559: boolean;419 readonly asEip1559: EthereumTransactionEip1559Transaction;420 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';421}422423/** @name EthereumTypesHashH64 */424export interface EthereumTypesHashH64 extends U8aFixed {}425426/** @name EvmCoreErrorExitError */427export interface EvmCoreErrorExitError extends Enum {428 readonly isStackUnderflow: boolean;429 readonly isStackOverflow: boolean;430 readonly isInvalidJump: boolean;431 readonly isInvalidRange: boolean;432 readonly isDesignatedInvalid: boolean;433 readonly isCallTooDeep: boolean;434 readonly isCreateCollision: boolean;435 readonly isCreateContractLimit: boolean;436 readonly isOutOfOffset: boolean;437 readonly isOutOfGas: boolean;438 readonly isOutOfFund: boolean;439 readonly isPcUnderflow: boolean;440 readonly isCreateEmpty: boolean;441 readonly isOther: boolean;442 readonly asOther: Text;443 readonly isInvalidCode: boolean;444 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';445}446447/** @name EvmCoreErrorExitFatal */448export interface EvmCoreErrorExitFatal extends Enum {449 readonly isNotSupported: boolean;450 readonly isUnhandledInterrupt: boolean;451 readonly isCallErrorAsFatal: boolean;452 readonly asCallErrorAsFatal: EvmCoreErrorExitError;453 readonly isOther: boolean;454 readonly asOther: Text;455 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';456}457458/** @name EvmCoreErrorExitReason */459export interface EvmCoreErrorExitReason extends Enum {460 readonly isSucceed: boolean;461 readonly asSucceed: EvmCoreErrorExitSucceed;462 readonly isError: boolean;463 readonly asError: EvmCoreErrorExitError;464 readonly isRevert: boolean;465 readonly asRevert: EvmCoreErrorExitRevert;466 readonly isFatal: boolean;467 readonly asFatal: EvmCoreErrorExitFatal;468 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';469}470471/** @name EvmCoreErrorExitRevert */472export interface EvmCoreErrorExitRevert extends Enum {473 readonly isReverted: boolean;474 readonly type: 'Reverted';475}476477/** @name EvmCoreErrorExitSucceed */478export interface EvmCoreErrorExitSucceed extends Enum {479 readonly isStopped: boolean;480 readonly isReturned: boolean;481 readonly isSuicided: boolean;482 readonly type: 'Stopped' | 'Returned' | 'Suicided';483}484485/** @name FpRpcTransactionStatus */486export interface FpRpcTransactionStatus extends Struct {487 readonly transactionHash: H256;488 readonly transactionIndex: u32;489 readonly from: H160;490 readonly to: Option<H160>;491 readonly contractAddress: Option<H160>;492 readonly logs: Vec<EthereumLog>;493 readonly logsBloom: EthbloomBloom;494}495496/** @name FrameSupportDispatchDispatchClass */497export interface FrameSupportDispatchDispatchClass extends Enum {498 readonly isNormal: boolean;499 readonly isOperational: boolean;500 readonly isMandatory: boolean;501 readonly type: 'Normal' | 'Operational' | 'Mandatory';502}503504/** @name FrameSupportDispatchDispatchInfo */505export interface FrameSupportDispatchDispatchInfo extends Struct {506 readonly weight: SpWeightsWeightV2Weight;507 readonly class: FrameSupportDispatchDispatchClass;508 readonly paysFee: FrameSupportDispatchPays;509}510511/** @name FrameSupportDispatchPays */512export interface FrameSupportDispatchPays extends Enum {513 readonly isYes: boolean;514 readonly isNo: boolean;515 readonly type: 'Yes' | 'No';516}517518/** @name FrameSupportDispatchPerDispatchClassU32 */519export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {520 readonly normal: u32;521 readonly operational: u32;522 readonly mandatory: u32;523}524525/** @name FrameSupportDispatchPerDispatchClassWeight */526export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {527 readonly normal: SpWeightsWeightV2Weight;528 readonly operational: SpWeightsWeightV2Weight;529 readonly mandatory: SpWeightsWeightV2Weight;530}531532/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */533export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {534 readonly normal: FrameSystemLimitsWeightsPerClass;535 readonly operational: FrameSystemLimitsWeightsPerClass;536 readonly mandatory: FrameSystemLimitsWeightsPerClass;537}538539/** @name FrameSupportPalletId */540export interface FrameSupportPalletId extends U8aFixed {}541542/** @name FrameSupportTokensMiscBalanceStatus */543export interface FrameSupportTokensMiscBalanceStatus extends Enum {544 readonly isFree: boolean;545 readonly isReserved: boolean;546 readonly type: 'Free' | 'Reserved';547}548549/** @name FrameSystemAccountInfo */550export interface FrameSystemAccountInfo extends Struct {551 readonly nonce: u32;552 readonly consumers: u32;553 readonly providers: u32;554 readonly sufficients: u32;555 readonly data: PalletBalancesAccountData;556}557558/** @name FrameSystemCall */559export interface FrameSystemCall extends Enum {560 readonly isRemark: boolean;561 readonly asRemark: {562 readonly remark: Bytes;563 } & Struct;564 readonly isSetHeapPages: boolean;565 readonly asSetHeapPages: {566 readonly pages: u64;567 } & Struct;568 readonly isSetCode: boolean;569 readonly asSetCode: {570 readonly code: Bytes;571 } & Struct;572 readonly isSetCodeWithoutChecks: boolean;573 readonly asSetCodeWithoutChecks: {574 readonly code: Bytes;575 } & Struct;576 readonly isSetStorage: boolean;577 readonly asSetStorage: {578 readonly items: Vec<ITuple<[Bytes, Bytes]>>;579 } & Struct;580 readonly isKillStorage: boolean;581 readonly asKillStorage: {582 readonly keys_: Vec<Bytes>;583 } & Struct;584 readonly isKillPrefix: boolean;585 readonly asKillPrefix: {586 readonly prefix: Bytes;587 readonly subkeys: u32;588 } & Struct;589 readonly isRemarkWithEvent: boolean;590 readonly asRemarkWithEvent: {591 readonly remark: Bytes;592 } & Struct;593 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';594}595596/** @name FrameSystemError */597export interface FrameSystemError extends Enum {598 readonly isInvalidSpecName: boolean;599 readonly isSpecVersionNeedsToIncrease: boolean;600 readonly isFailedToExtractRuntimeVersion: boolean;601 readonly isNonDefaultComposite: boolean;602 readonly isNonZeroRefCount: boolean;603 readonly isCallFiltered: boolean;604 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';605}606607/** @name FrameSystemEvent */608export interface FrameSystemEvent extends Enum {609 readonly isExtrinsicSuccess: boolean;610 readonly asExtrinsicSuccess: {611 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;612 } & Struct;613 readonly isExtrinsicFailed: boolean;614 readonly asExtrinsicFailed: {615 readonly dispatchError: SpRuntimeDispatchError;616 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;617 } & Struct;618 readonly isCodeUpdated: boolean;619 readonly isNewAccount: boolean;620 readonly asNewAccount: {621 readonly account: AccountId32;622 } & Struct;623 readonly isKilledAccount: boolean;624 readonly asKilledAccount: {625 readonly account: AccountId32;626 } & Struct;627 readonly isRemarked: boolean;628 readonly asRemarked: {629 readonly sender: AccountId32;630 readonly hash_: H256;631 } & Struct;632 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';633}634635/** @name FrameSystemEventRecord */636export interface FrameSystemEventRecord extends Struct {637 readonly phase: FrameSystemPhase;638 readonly event: Event;639 readonly topics: Vec<H256>;640}641642/** @name FrameSystemExtensionsCheckGenesis */643export interface FrameSystemExtensionsCheckGenesis extends Null {}644645/** @name FrameSystemExtensionsCheckNonce */646export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}647648/** @name FrameSystemExtensionsCheckSpecVersion */649export interface FrameSystemExtensionsCheckSpecVersion extends Null {}650651/** @name FrameSystemExtensionsCheckTxVersion */652export interface FrameSystemExtensionsCheckTxVersion extends Null {}653654/** @name FrameSystemExtensionsCheckWeight */655export interface FrameSystemExtensionsCheckWeight extends Null {}656657/** @name FrameSystemLastRuntimeUpgradeInfo */658export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {659 readonly specVersion: Compact<u32>;660 readonly specName: Text;661}662663/** @name FrameSystemLimitsBlockLength */664export interface FrameSystemLimitsBlockLength extends Struct {665 readonly max: FrameSupportDispatchPerDispatchClassU32;666}667668/** @name FrameSystemLimitsBlockWeights */669export interface FrameSystemLimitsBlockWeights extends Struct {670 readonly baseBlock: SpWeightsWeightV2Weight;671 readonly maxBlock: SpWeightsWeightV2Weight;672 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;673}674675/** @name FrameSystemLimitsWeightsPerClass */676export interface FrameSystemLimitsWeightsPerClass extends Struct {677 readonly baseExtrinsic: SpWeightsWeightV2Weight;678 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;679 readonly maxTotal: Option<SpWeightsWeightV2Weight>;680 readonly reserved: Option<SpWeightsWeightV2Weight>;681}682683/** @name FrameSystemPhase */684export interface FrameSystemPhase extends Enum {685 readonly isApplyExtrinsic: boolean;686 readonly asApplyExtrinsic: u32;687 readonly isFinalization: boolean;688 readonly isInitialization: boolean;689 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';690}691692/** @name OpalRuntimeRuntime */693export interface OpalRuntimeRuntime extends Null {}694695/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */696export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}697698/** @name OrmlTokensAccountData */699export interface OrmlTokensAccountData extends Struct {700 readonly free: u128;701 readonly reserved: u128;702 readonly frozen: u128;703}704705/** @name OrmlTokensBalanceLock */706export interface OrmlTokensBalanceLock extends Struct {707 readonly id: U8aFixed;708 readonly amount: u128;709}710711/** @name OrmlTokensModuleCall */712export interface OrmlTokensModuleCall extends Enum {713 readonly isTransfer: boolean;714 readonly asTransfer: {715 readonly dest: MultiAddress;716 readonly currencyId: PalletForeignAssetsAssetIds;717 readonly amount: Compact<u128>;718 } & Struct;719 readonly isTransferAll: boolean;720 readonly asTransferAll: {721 readonly dest: MultiAddress;722 readonly currencyId: PalletForeignAssetsAssetIds;723 readonly keepAlive: bool;724 } & Struct;725 readonly isTransferKeepAlive: boolean;726 readonly asTransferKeepAlive: {727 readonly dest: MultiAddress;728 readonly currencyId: PalletForeignAssetsAssetIds;729 readonly amount: Compact<u128>;730 } & Struct;731 readonly isForceTransfer: boolean;732 readonly asForceTransfer: {733 readonly source: MultiAddress;734 readonly dest: MultiAddress;735 readonly currencyId: PalletForeignAssetsAssetIds;736 readonly amount: Compact<u128>;737 } & Struct;738 readonly isSetBalance: boolean;739 readonly asSetBalance: {740 readonly who: MultiAddress;741 readonly currencyId: PalletForeignAssetsAssetIds;742 readonly newFree: Compact<u128>;743 readonly newReserved: Compact<u128>;744 } & Struct;745 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';746}747748/** @name OrmlTokensModuleError */749export interface OrmlTokensModuleError extends Enum {750 readonly isBalanceTooLow: boolean;751 readonly isAmountIntoBalanceFailed: boolean;752 readonly isLiquidityRestrictions: boolean;753 readonly isMaxLocksExceeded: boolean;754 readonly isKeepAlive: boolean;755 readonly isExistentialDeposit: boolean;756 readonly isDeadAccount: boolean;757 readonly isTooManyReserves: boolean;758 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';759}760761/** @name OrmlTokensModuleEvent */762export interface OrmlTokensModuleEvent extends Enum {763 readonly isEndowed: boolean;764 readonly asEndowed: {765 readonly currencyId: PalletForeignAssetsAssetIds;766 readonly who: AccountId32;767 readonly amount: u128;768 } & Struct;769 readonly isDustLost: boolean;770 readonly asDustLost: {771 readonly currencyId: PalletForeignAssetsAssetIds;772 readonly who: AccountId32;773 readonly amount: u128;774 } & Struct;775 readonly isTransfer: boolean;776 readonly asTransfer: {777 readonly currencyId: PalletForeignAssetsAssetIds;778 readonly from: AccountId32;779 readonly to: AccountId32;780 readonly amount: u128;781 } & Struct;782 readonly isReserved: boolean;783 readonly asReserved: {784 readonly currencyId: PalletForeignAssetsAssetIds;785 readonly who: AccountId32;786 readonly amount: u128;787 } & Struct;788 readonly isUnreserved: boolean;789 readonly asUnreserved: {790 readonly currencyId: PalletForeignAssetsAssetIds;791 readonly who: AccountId32;792 readonly amount: u128;793 } & Struct;794 readonly isReserveRepatriated: boolean;795 readonly asReserveRepatriated: {796 readonly currencyId: PalletForeignAssetsAssetIds;797 readonly from: AccountId32;798 readonly to: AccountId32;799 readonly amount: u128;800 readonly status: FrameSupportTokensMiscBalanceStatus;801 } & Struct;802 readonly isBalanceSet: boolean;803 readonly asBalanceSet: {804 readonly currencyId: PalletForeignAssetsAssetIds;805 readonly who: AccountId32;806 readonly free: u128;807 readonly reserved: u128;808 } & Struct;809 readonly isTotalIssuanceSet: boolean;810 readonly asTotalIssuanceSet: {811 readonly currencyId: PalletForeignAssetsAssetIds;812 readonly amount: u128;813 } & Struct;814 readonly isWithdrawn: boolean;815 readonly asWithdrawn: {816 readonly currencyId: PalletForeignAssetsAssetIds;817 readonly who: AccountId32;818 readonly amount: u128;819 } & Struct;820 readonly isSlashed: boolean;821 readonly asSlashed: {822 readonly currencyId: PalletForeignAssetsAssetIds;823 readonly who: AccountId32;824 readonly freeAmount: u128;825 readonly reservedAmount: u128;826 } & Struct;827 readonly isDeposited: boolean;828 readonly asDeposited: {829 readonly currencyId: PalletForeignAssetsAssetIds;830 readonly who: AccountId32;831 readonly amount: u128;832 } & Struct;833 readonly isLockSet: boolean;834 readonly asLockSet: {835 readonly lockId: U8aFixed;836 readonly currencyId: PalletForeignAssetsAssetIds;837 readonly who: AccountId32;838 readonly amount: u128;839 } & Struct;840 readonly isLockRemoved: boolean;841 readonly asLockRemoved: {842 readonly lockId: U8aFixed;843 readonly currencyId: PalletForeignAssetsAssetIds;844 readonly who: AccountId32;845 } & Struct;846 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';847}848849/** @name OrmlTokensReserveData */850export interface OrmlTokensReserveData extends Struct {851 readonly id: Null;852 readonly amount: u128;853}854855/** @name OrmlVestingModuleCall */856export interface OrmlVestingModuleCall extends Enum {857 readonly isClaim: boolean;858 readonly isVestedTransfer: boolean;859 readonly asVestedTransfer: {860 readonly dest: MultiAddress;861 readonly schedule: OrmlVestingVestingSchedule;862 } & Struct;863 readonly isUpdateVestingSchedules: boolean;864 readonly asUpdateVestingSchedules: {865 readonly who: MultiAddress;866 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;867 } & Struct;868 readonly isClaimFor: boolean;869 readonly asClaimFor: {870 readonly dest: MultiAddress;871 } & Struct;872 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';873}874875/** @name OrmlVestingModuleError */876export interface OrmlVestingModuleError extends Enum {877 readonly isZeroVestingPeriod: boolean;878 readonly isZeroVestingPeriodCount: boolean;879 readonly isInsufficientBalanceToLock: boolean;880 readonly isTooManyVestingSchedules: boolean;881 readonly isAmountLow: boolean;882 readonly isMaxVestingSchedulesExceeded: boolean;883 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';884}885886/** @name OrmlVestingModuleEvent */887export interface OrmlVestingModuleEvent extends Enum {888 readonly isVestingScheduleAdded: boolean;889 readonly asVestingScheduleAdded: {890 readonly from: AccountId32;891 readonly to: AccountId32;892 readonly vestingSchedule: OrmlVestingVestingSchedule;893 } & Struct;894 readonly isClaimed: boolean;895 readonly asClaimed: {896 readonly who: AccountId32;897 readonly amount: u128;898 } & Struct;899 readonly isVestingSchedulesUpdated: boolean;900 readonly asVestingSchedulesUpdated: {901 readonly who: AccountId32;902 } & Struct;903 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';904}905906/** @name OrmlVestingVestingSchedule */907export interface OrmlVestingVestingSchedule extends Struct {908 readonly start: u32;909 readonly period: u32;910 readonly periodCount: u32;911 readonly perPeriod: Compact<u128>;912}913914/** @name OrmlXtokensModuleCall */915export interface OrmlXtokensModuleCall extends Enum {916 readonly isTransfer: boolean;917 readonly asTransfer: {918 readonly currencyId: PalletForeignAssetsAssetIds;919 readonly amount: u128;920 readonly dest: XcmVersionedMultiLocation;921 readonly destWeightLimit: XcmV2WeightLimit;922 } & Struct;923 readonly isTransferMultiasset: boolean;924 readonly asTransferMultiasset: {925 readonly asset: XcmVersionedMultiAsset;926 readonly dest: XcmVersionedMultiLocation;927 readonly destWeightLimit: XcmV2WeightLimit;928 } & Struct;929 readonly isTransferWithFee: boolean;930 readonly asTransferWithFee: {931 readonly currencyId: PalletForeignAssetsAssetIds;932 readonly amount: u128;933 readonly fee: u128;934 readonly dest: XcmVersionedMultiLocation;935 readonly destWeightLimit: XcmV2WeightLimit;936 } & Struct;937 readonly isTransferMultiassetWithFee: boolean;938 readonly asTransferMultiassetWithFee: {939 readonly asset: XcmVersionedMultiAsset;940 readonly fee: XcmVersionedMultiAsset;941 readonly dest: XcmVersionedMultiLocation;942 readonly destWeightLimit: XcmV2WeightLimit;943 } & Struct;944 readonly isTransferMulticurrencies: boolean;945 readonly asTransferMulticurrencies: {946 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;947 readonly feeItem: u32;948 readonly dest: XcmVersionedMultiLocation;949 readonly destWeightLimit: XcmV2WeightLimit;950 } & Struct;951 readonly isTransferMultiassets: boolean;952 readonly asTransferMultiassets: {953 readonly assets: XcmVersionedMultiAssets;954 readonly feeItem: u32;955 readonly dest: XcmVersionedMultiLocation;956 readonly destWeightLimit: XcmV2WeightLimit;957 } & Struct;958 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';959}960961/** @name OrmlXtokensModuleError */962export interface OrmlXtokensModuleError extends Enum {963 readonly isAssetHasNoReserve: boolean;964 readonly isNotCrossChainTransfer: boolean;965 readonly isInvalidDest: boolean;966 readonly isNotCrossChainTransferableCurrency: boolean;967 readonly isUnweighableMessage: boolean;968 readonly isXcmExecutionFailed: boolean;969 readonly isCannotReanchor: boolean;970 readonly isInvalidAncestry: boolean;971 readonly isInvalidAsset: boolean;972 readonly isDestinationNotInvertible: boolean;973 readonly isBadVersion: boolean;974 readonly isDistinctReserveForAssetAndFee: boolean;975 readonly isZeroFee: boolean;976 readonly isZeroAmount: boolean;977 readonly isTooManyAssetsBeingSent: boolean;978 readonly isAssetIndexNonExistent: boolean;979 readonly isFeeNotEnough: boolean;980 readonly isNotSupportedMultiLocation: boolean;981 readonly isMinXcmFeeNotDefined: boolean;982 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';983}984985/** @name OrmlXtokensModuleEvent */986export interface OrmlXtokensModuleEvent extends Enum {987 readonly isTransferredMultiAssets: boolean;988 readonly asTransferredMultiAssets: {989 readonly sender: AccountId32;990 readonly assets: XcmV1MultiassetMultiAssets;991 readonly fee: XcmV1MultiAsset;992 readonly dest: XcmV1MultiLocation;993 } & Struct;994 readonly type: 'TransferredMultiAssets';995}996997/** @name PalletAppPromotionCall */998export interface PalletAppPromotionCall extends Enum {999 readonly isSetAdminAddress: boolean;1000 readonly asSetAdminAddress: {1001 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1002 } & Struct;1003 readonly isStake: boolean;1004 readonly asStake: {1005 readonly amount: u128;1006 } & Struct;1007 readonly isUnstake: boolean;1008 readonly isSponsorCollection: boolean;1009 readonly asSponsorCollection: {1010 readonly collectionId: u32;1011 } & Struct;1012 readonly isStopSponsoringCollection: boolean;1013 readonly asStopSponsoringCollection: {1014 readonly collectionId: u32;1015 } & Struct;1016 readonly isSponsorContract: boolean;1017 readonly asSponsorContract: {1018 readonly contractId: H160;1019 } & Struct;1020 readonly isStopSponsoringContract: boolean;1021 readonly asStopSponsoringContract: {1022 readonly contractId: H160;1023 } & Struct;1024 readonly isPayoutStakers: boolean;1025 readonly asPayoutStakers: {1026 readonly stakersNumber: Option<u8>;1027 } & Struct;1028 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1029}10301031/** @name PalletAppPromotionError */1032export interface PalletAppPromotionError extends Enum {1033 readonly isAdminNotSet: boolean;1034 readonly isNoPermission: boolean;1035 readonly isNotSufficientFunds: boolean;1036 readonly isPendingForBlockOverflow: boolean;1037 readonly isSponsorNotSet: boolean;1038 readonly isIncorrectLockedBalanceOperation: boolean;1039 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1040}10411042/** @name PalletAppPromotionEvent */1043export interface PalletAppPromotionEvent extends Enum {1044 readonly isStakingRecalculation: boolean;1045 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1046 readonly isStake: boolean;1047 readonly asStake: ITuple<[AccountId32, u128]>;1048 readonly isUnstake: boolean;1049 readonly asUnstake: ITuple<[AccountId32, u128]>;1050 readonly isSetAdmin: boolean;1051 readonly asSetAdmin: AccountId32;1052 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1053}10541055/** @name PalletBalancesAccountData */1056export interface PalletBalancesAccountData extends Struct {1057 readonly free: u128;1058 readonly reserved: u128;1059 readonly miscFrozen: u128;1060 readonly feeFrozen: u128;1061}10621063/** @name PalletBalancesBalanceLock */1064export interface PalletBalancesBalanceLock extends Struct {1065 readonly id: U8aFixed;1066 readonly amount: u128;1067 readonly reasons: PalletBalancesReasons;1068}10691070/** @name PalletBalancesCall */1071export interface PalletBalancesCall extends Enum {1072 readonly isTransfer: boolean;1073 readonly asTransfer: {1074 readonly dest: MultiAddress;1075 readonly value: Compact<u128>;1076 } & Struct;1077 readonly isSetBalance: boolean;1078 readonly asSetBalance: {1079 readonly who: MultiAddress;1080 readonly newFree: Compact<u128>;1081 readonly newReserved: Compact<u128>;1082 } & Struct;1083 readonly isForceTransfer: boolean;1084 readonly asForceTransfer: {1085 readonly source: MultiAddress;1086 readonly dest: MultiAddress;1087 readonly value: Compact<u128>;1088 } & Struct;1089 readonly isTransferKeepAlive: boolean;1090 readonly asTransferKeepAlive: {1091 readonly dest: MultiAddress;1092 readonly value: Compact<u128>;1093 } & Struct;1094 readonly isTransferAll: boolean;1095 readonly asTransferAll: {1096 readonly dest: MultiAddress;1097 readonly keepAlive: bool;1098 } & Struct;1099 readonly isForceUnreserve: boolean;1100 readonly asForceUnreserve: {1101 readonly who: MultiAddress;1102 readonly amount: u128;1103 } & Struct;1104 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1105}11061107/** @name PalletBalancesError */1108export interface PalletBalancesError extends Enum {1109 readonly isVestingBalance: boolean;1110 readonly isLiquidityRestrictions: boolean;1111 readonly isInsufficientBalance: boolean;1112 readonly isExistentialDeposit: boolean;1113 readonly isKeepAlive: boolean;1114 readonly isExistingVestingSchedule: boolean;1115 readonly isDeadAccount: boolean;1116 readonly isTooManyReserves: boolean;1117 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1118}11191120/** @name PalletBalancesEvent */1121export interface PalletBalancesEvent extends Enum {1122 readonly isEndowed: boolean;1123 readonly asEndowed: {1124 readonly account: AccountId32;1125 readonly freeBalance: u128;1126 } & Struct;1127 readonly isDustLost: boolean;1128 readonly asDustLost: {1129 readonly account: AccountId32;1130 readonly amount: u128;1131 } & Struct;1132 readonly isTransfer: boolean;1133 readonly asTransfer: {1134 readonly from: AccountId32;1135 readonly to: AccountId32;1136 readonly amount: u128;1137 } & Struct;1138 readonly isBalanceSet: boolean;1139 readonly asBalanceSet: {1140 readonly who: AccountId32;1141 readonly free: u128;1142 readonly reserved: u128;1143 } & Struct;1144 readonly isReserved: boolean;1145 readonly asReserved: {1146 readonly who: AccountId32;1147 readonly amount: u128;1148 } & Struct;1149 readonly isUnreserved: boolean;1150 readonly asUnreserved: {1151 readonly who: AccountId32;1152 readonly amount: u128;1153 } & Struct;1154 readonly isReserveRepatriated: boolean;1155 readonly asReserveRepatriated: {1156 readonly from: AccountId32;1157 readonly to: AccountId32;1158 readonly amount: u128;1159 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1160 } & Struct;1161 readonly isDeposit: boolean;1162 readonly asDeposit: {1163 readonly who: AccountId32;1164 readonly amount: u128;1165 } & Struct;1166 readonly isWithdraw: boolean;1167 readonly asWithdraw: {1168 readonly who: AccountId32;1169 readonly amount: u128;1170 } & Struct;1171 readonly isSlashed: boolean;1172 readonly asSlashed: {1173 readonly who: AccountId32;1174 readonly amount: u128;1175 } & Struct;1176 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1177}11781179/** @name PalletBalancesReasons */1180export interface PalletBalancesReasons extends Enum {1181 readonly isFee: boolean;1182 readonly isMisc: boolean;1183 readonly isAll: boolean;1184 readonly type: 'Fee' | 'Misc' | 'All';1185}11861187/** @name PalletBalancesReserveData */1188export interface PalletBalancesReserveData extends Struct {1189 readonly id: U8aFixed;1190 readonly amount: u128;1191}11921193/** @name PalletCommonError */1194export interface PalletCommonError extends Enum {1195 readonly isCollectionNotFound: boolean;1196 readonly isMustBeTokenOwner: boolean;1197 readonly isNoPermission: boolean;1198 readonly isCantDestroyNotEmptyCollection: boolean;1199 readonly isPublicMintingNotAllowed: boolean;1200 readonly isAddressNotInAllowlist: boolean;1201 readonly isCollectionNameLimitExceeded: boolean;1202 readonly isCollectionDescriptionLimitExceeded: boolean;1203 readonly isCollectionTokenPrefixLimitExceeded: boolean;1204 readonly isTotalCollectionsLimitExceeded: boolean;1205 readonly isCollectionAdminCountExceeded: boolean;1206 readonly isCollectionLimitBoundsExceeded: boolean;1207 readonly isOwnerPermissionsCantBeReverted: boolean;1208 readonly isTransferNotAllowed: boolean;1209 readonly isAccountTokenLimitExceeded: boolean;1210 readonly isCollectionTokenLimitExceeded: boolean;1211 readonly isMetadataFlagFrozen: boolean;1212 readonly isTokenNotFound: boolean;1213 readonly isTokenValueTooLow: boolean;1214 readonly isApprovedValueTooLow: boolean;1215 readonly isCantApproveMoreThanOwned: boolean;1216 readonly isAddressIsZero: boolean;1217 readonly isUnsupportedOperation: boolean;1218 readonly isNotSufficientFounds: boolean;1219 readonly isUserIsNotAllowedToNest: boolean;1220 readonly isSourceCollectionIsNotAllowedToNest: boolean;1221 readonly isCollectionFieldSizeExceeded: boolean;1222 readonly isNoSpaceForProperty: boolean;1223 readonly isPropertyLimitReached: boolean;1224 readonly isPropertyKeyIsTooLong: boolean;1225 readonly isInvalidCharacterInPropertyKey: boolean;1226 readonly isEmptyPropertyKey: boolean;1227 readonly isCollectionIsExternal: boolean;1228 readonly isCollectionIsInternal: boolean;1229 readonly isConfirmSponsorshipFail: boolean;1230 readonly isUserIsNotCollectionAdmin: boolean;1231 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';1232}12331234/** @name PalletCommonEvent */1235export interface PalletCommonEvent extends Enum {1236 readonly isCollectionCreated: boolean;1237 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1238 readonly isCollectionDestroyed: boolean;1239 readonly asCollectionDestroyed: u32;1240 readonly isItemCreated: boolean;1241 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1242 readonly isItemDestroyed: boolean;1243 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1244 readonly isTransfer: boolean;1245 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1246 readonly isApproved: boolean;1247 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1248 readonly isApprovedForAll: boolean;1249 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1250 readonly isCollectionPropertySet: boolean;1251 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1252 readonly isCollectionPropertyDeleted: boolean;1253 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1254 readonly isTokenPropertySet: boolean;1255 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1256 readonly isTokenPropertyDeleted: boolean;1257 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1258 readonly isPropertyPermissionSet: boolean;1259 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1260 readonly isAllowListAddressAdded: boolean;1261 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1262 readonly isAllowListAddressRemoved: boolean;1263 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1264 readonly isCollectionAdminAdded: boolean;1265 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1266 readonly isCollectionAdminRemoved: boolean;1267 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1268 readonly isCollectionLimitSet: boolean;1269 readonly asCollectionLimitSet: u32;1270 readonly isCollectionOwnerChanged: boolean;1271 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1272 readonly isCollectionPermissionSet: boolean;1273 readonly asCollectionPermissionSet: u32;1274 readonly isCollectionSponsorSet: boolean;1275 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1276 readonly isSponsorshipConfirmed: boolean;1277 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1278 readonly isCollectionSponsorRemoved: boolean;1279 readonly asCollectionSponsorRemoved: u32;1280 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1281}12821283/** @name PalletConfigurationAppPromotionConfiguration */1284export interface PalletConfigurationAppPromotionConfiguration extends Struct {1285 readonly recalculationInterval: Option<u32>;1286 readonly pendingInterval: Option<u32>;1287 readonly intervalIncome: Option<Perbill>;1288 readonly maxStakersPerCalculation: Option<u8>;1289}12901291/** @name PalletConfigurationCall */1292export interface PalletConfigurationCall extends Enum {1293 readonly isSetWeightToFeeCoefficientOverride: boolean;1294 readonly asSetWeightToFeeCoefficientOverride: {1295 readonly coeff: Option<u64>;1296 } & Struct;1297 readonly isSetMinGasPriceOverride: boolean;1298 readonly asSetMinGasPriceOverride: {1299 readonly coeff: Option<u64>;1300 } & Struct;1301 readonly isSetXcmAllowedLocations: boolean;1302 readonly asSetXcmAllowedLocations: {1303 readonly locations: Option<Vec<XcmV1MultiLocation>>;1304 } & Struct;1305 readonly isSetAppPromotionConfigurationOverride: boolean;1306 readonly asSetAppPromotionConfigurationOverride: {1307 readonly configuration: PalletConfigurationAppPromotionConfiguration;1308 } & Struct;1309 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';1310}13111312/** @name PalletConfigurationError */1313export interface PalletConfigurationError extends Enum {1314 readonly isInconsistentConfiguration: boolean;1315 readonly type: 'InconsistentConfiguration';1316}13171318/** @name PalletEthereumCall */1319export interface PalletEthereumCall extends Enum {1320 readonly isTransact: boolean;1321 readonly asTransact: {1322 readonly transaction: EthereumTransactionTransactionV2;1323 } & Struct;1324 readonly type: 'Transact';1325}13261327/** @name PalletEthereumError */1328export interface PalletEthereumError extends Enum {1329 readonly isInvalidSignature: boolean;1330 readonly isPreLogExists: boolean;1331 readonly type: 'InvalidSignature' | 'PreLogExists';1332}13331334/** @name PalletEthereumEvent */1335export interface PalletEthereumEvent extends Enum {1336 readonly isExecuted: boolean;1337 readonly asExecuted: {1338 readonly from: H160;1339 readonly to: H160;1340 readonly transactionHash: H256;1341 readonly exitReason: EvmCoreErrorExitReason;1342 } & Struct;1343 readonly type: 'Executed';1344}13451346/** @name PalletEthereumFakeTransactionFinalizer */1347export interface PalletEthereumFakeTransactionFinalizer extends Null {}13481349/** @name PalletEvmAccountBasicCrossAccountIdRepr */1350export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1351 readonly isSubstrate: boolean;1352 readonly asSubstrate: AccountId32;1353 readonly isEthereum: boolean;1354 readonly asEthereum: H160;1355 readonly type: 'Substrate' | 'Ethereum';1356}13571358/** @name PalletEvmCall */1359export interface PalletEvmCall extends Enum {1360 readonly isWithdraw: boolean;1361 readonly asWithdraw: {1362 readonly address: H160;1363 readonly value: u128;1364 } & Struct;1365 readonly isCall: boolean;1366 readonly asCall: {1367 readonly source: H160;1368 readonly target: H160;1369 readonly input: Bytes;1370 readonly value: U256;1371 readonly gasLimit: u64;1372 readonly maxFeePerGas: U256;1373 readonly maxPriorityFeePerGas: Option<U256>;1374 readonly nonce: Option<U256>;1375 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1376 } & Struct;1377 readonly isCreate: boolean;1378 readonly asCreate: {1379 readonly source: H160;1380 readonly init: Bytes;1381 readonly value: U256;1382 readonly gasLimit: u64;1383 readonly maxFeePerGas: U256;1384 readonly maxPriorityFeePerGas: Option<U256>;1385 readonly nonce: Option<U256>;1386 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1387 } & Struct;1388 readonly isCreate2: boolean;1389 readonly asCreate2: {1390 readonly source: H160;1391 readonly init: Bytes;1392 readonly salt: H256;1393 readonly value: U256;1394 readonly gasLimit: u64;1395 readonly maxFeePerGas: U256;1396 readonly maxPriorityFeePerGas: Option<U256>;1397 readonly nonce: Option<U256>;1398 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1399 } & Struct;1400 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1401}14021403/** @name PalletEvmCoderSubstrateError */1404export interface PalletEvmCoderSubstrateError extends Enum {1405 readonly isOutOfGas: boolean;1406 readonly isOutOfFund: boolean;1407 readonly type: 'OutOfGas' | 'OutOfFund';1408}14091410/** @name PalletEvmContractHelpersError */1411export interface PalletEvmContractHelpersError extends Enum {1412 readonly isNoPermission: boolean;1413 readonly isNoPendingSponsor: boolean;1414 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1415 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1416}14171418/** @name PalletEvmContractHelpersEvent */1419export interface PalletEvmContractHelpersEvent extends Enum {1420 readonly isContractSponsorSet: boolean;1421 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1422 readonly isContractSponsorshipConfirmed: boolean;1423 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1424 readonly isContractSponsorRemoved: boolean;1425 readonly asContractSponsorRemoved: H160;1426 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1427}14281429/** @name PalletEvmContractHelpersSponsoringModeT */1430export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1431 readonly isDisabled: boolean;1432 readonly isAllowlisted: boolean;1433 readonly isGenerous: boolean;1434 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1435}14361437/** @name PalletEvmError */1438export interface PalletEvmError extends Enum {1439 readonly isBalanceLow: boolean;1440 readonly isFeeOverflow: boolean;1441 readonly isPaymentOverflow: boolean;1442 readonly isWithdrawFailed: boolean;1443 readonly isGasPriceTooLow: boolean;1444 readonly isInvalidNonce: boolean;1445 readonly isGasLimitTooLow: boolean;1446 readonly isGasLimitTooHigh: boolean;1447 readonly isUndefined: boolean;1448 readonly isReentrancy: boolean;1449 readonly isTransactionMustComeFromEOA: boolean;1450 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';1451}14521453/** @name PalletEvmEvent */1454export interface PalletEvmEvent extends Enum {1455 readonly isLog: boolean;1456 readonly asLog: {1457 readonly log: EthereumLog;1458 } & Struct;1459 readonly isCreated: boolean;1460 readonly asCreated: {1461 readonly address: H160;1462 } & Struct;1463 readonly isCreatedFailed: boolean;1464 readonly asCreatedFailed: {1465 readonly address: H160;1466 } & Struct;1467 readonly isExecuted: boolean;1468 readonly asExecuted: {1469 readonly address: H160;1470 } & Struct;1471 readonly isExecutedFailed: boolean;1472 readonly asExecutedFailed: {1473 readonly address: H160;1474 } & Struct;1475 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1476}14771478/** @name PalletEvmMigrationCall */1479export interface PalletEvmMigrationCall extends Enum {1480 readonly isBegin: boolean;1481 readonly asBegin: {1482 readonly address: H160;1483 } & Struct;1484 readonly isSetData: boolean;1485 readonly asSetData: {1486 readonly address: H160;1487 readonly data: Vec<ITuple<[H256, H256]>>;1488 } & Struct;1489 readonly isFinish: boolean;1490 readonly asFinish: {1491 readonly address: H160;1492 readonly code: Bytes;1493 } & Struct;1494 readonly isInsertEthLogs: boolean;1495 readonly asInsertEthLogs: {1496 readonly logs: Vec<EthereumLog>;1497 } & Struct;1498 readonly isInsertEvents: boolean;1499 readonly asInsertEvents: {1500 readonly events: Vec<Bytes>;1501 } & Struct;1502 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1503}15041505/** @name PalletEvmMigrationError */1506export interface PalletEvmMigrationError extends Enum {1507 readonly isAccountNotEmpty: boolean;1508 readonly isAccountIsNotMigrating: boolean;1509 readonly isBadEvent: boolean;1510 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1511}15121513/** @name PalletEvmMigrationEvent */1514export interface PalletEvmMigrationEvent extends Enum {1515 readonly isTestEvent: boolean;1516 readonly type: 'TestEvent';1517}15181519/** @name PalletForeignAssetsAssetIds */1520export interface PalletForeignAssetsAssetIds extends Enum {1521 readonly isForeignAssetId: boolean;1522 readonly asForeignAssetId: u32;1523 readonly isNativeAssetId: boolean;1524 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1525 readonly type: 'ForeignAssetId' | 'NativeAssetId';1526}15271528/** @name PalletForeignAssetsModuleAssetMetadata */1529export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1530 readonly name: Bytes;1531 readonly symbol: Bytes;1532 readonly decimals: u8;1533 readonly minimalBalance: u128;1534}15351536/** @name PalletForeignAssetsModuleCall */1537export interface PalletForeignAssetsModuleCall extends Enum {1538 readonly isRegisterForeignAsset: boolean;1539 readonly asRegisterForeignAsset: {1540 readonly owner: AccountId32;1541 readonly location: XcmVersionedMultiLocation;1542 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1543 } & Struct;1544 readonly isUpdateForeignAsset: boolean;1545 readonly asUpdateForeignAsset: {1546 readonly foreignAssetId: u32;1547 readonly location: XcmVersionedMultiLocation;1548 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1549 } & Struct;1550 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1551}15521553/** @name PalletForeignAssetsModuleError */1554export interface PalletForeignAssetsModuleError extends Enum {1555 readonly isBadLocation: boolean;1556 readonly isMultiLocationExisted: boolean;1557 readonly isAssetIdNotExists: boolean;1558 readonly isAssetIdExisted: boolean;1559 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1560}15611562/** @name PalletForeignAssetsModuleEvent */1563export interface PalletForeignAssetsModuleEvent extends Enum {1564 readonly isForeignAssetRegistered: boolean;1565 readonly asForeignAssetRegistered: {1566 readonly assetId: u32;1567 readonly assetAddress: XcmV1MultiLocation;1568 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1569 } & Struct;1570 readonly isForeignAssetUpdated: boolean;1571 readonly asForeignAssetUpdated: {1572 readonly assetId: u32;1573 readonly assetAddress: XcmV1MultiLocation;1574 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1575 } & Struct;1576 readonly isAssetRegistered: boolean;1577 readonly asAssetRegistered: {1578 readonly assetId: PalletForeignAssetsAssetIds;1579 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1580 } & Struct;1581 readonly isAssetUpdated: boolean;1582 readonly asAssetUpdated: {1583 readonly assetId: PalletForeignAssetsAssetIds;1584 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1585 } & Struct;1586 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1587}15881589/** @name PalletForeignAssetsNativeCurrency */1590export interface PalletForeignAssetsNativeCurrency extends Enum {1591 readonly isHere: boolean;1592 readonly isParent: boolean;1593 readonly type: 'Here' | 'Parent';1594}15951596/** @name PalletFungibleError */1597export interface PalletFungibleError extends Enum {1598 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1599 readonly isFungibleItemsHaveNoId: boolean;1600 readonly isFungibleItemsDontHaveData: boolean;1601 readonly isFungibleDisallowsNesting: boolean;1602 readonly isSettingPropertiesNotAllowed: boolean;1603 readonly isSettingAllowanceForAllNotAllowed: boolean;1604 readonly isFungibleTokensAreAlwaysValid: boolean;1605 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1606}16071608/** @name PalletInflationCall */1609export interface PalletInflationCall extends Enum {1610 readonly isStartInflation: boolean;1611 readonly asStartInflation: {1612 readonly inflationStartRelayBlock: u32;1613 } & Struct;1614 readonly type: 'StartInflation';1615}16161617/** @name PalletMaintenanceCall */1618export interface PalletMaintenanceCall extends Enum {1619 readonly isEnable: boolean;1620 readonly isDisable: boolean;1621 readonly type: 'Enable' | 'Disable';1622}16231624/** @name PalletMaintenanceError */1625export interface PalletMaintenanceError extends Null {}16261627/** @name PalletMaintenanceEvent */1628export interface PalletMaintenanceEvent extends Enum {1629 readonly isMaintenanceEnabled: boolean;1630 readonly isMaintenanceDisabled: boolean;1631 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1632}16331634/** @name PalletNonfungibleError */1635export interface PalletNonfungibleError extends Enum {1636 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1637 readonly isNonfungibleItemsHaveNoAmount: boolean;1638 readonly isCantBurnNftWithChildren: boolean;1639 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1640}16411642/** @name PalletNonfungibleItemData */1643export interface PalletNonfungibleItemData extends Struct {1644 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1645}16461647/** @name PalletRefungibleError */1648export interface PalletRefungibleError extends Enum {1649 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1650 readonly isWrongRefungiblePieces: boolean;1651 readonly isRepartitionWhileNotOwningAllPieces: boolean;1652 readonly isRefungibleDisallowsNesting: boolean;1653 readonly isSettingPropertiesNotAllowed: boolean;1654 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1655}16561657/** @name PalletRmrkCoreCall */1658export interface PalletRmrkCoreCall extends Enum {1659 readonly isCreateCollection: boolean;1660 readonly asCreateCollection: {1661 readonly metadata: Bytes;1662 readonly max: Option<u32>;1663 readonly symbol: Bytes;1664 } & Struct;1665 readonly isDestroyCollection: boolean;1666 readonly asDestroyCollection: {1667 readonly collectionId: u32;1668 } & Struct;1669 readonly isChangeCollectionIssuer: boolean;1670 readonly asChangeCollectionIssuer: {1671 readonly collectionId: u32;1672 readonly newIssuer: MultiAddress;1673 } & Struct;1674 readonly isLockCollection: boolean;1675 readonly asLockCollection: {1676 readonly collectionId: u32;1677 } & Struct;1678 readonly isMintNft: boolean;1679 readonly asMintNft: {1680 readonly owner: Option<AccountId32>;1681 readonly collectionId: u32;1682 readonly recipient: Option<AccountId32>;1683 readonly royaltyAmount: Option<Permill>;1684 readonly metadata: Bytes;1685 readonly transferable: bool;1686 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1687 } & Struct;1688 readonly isBurnNft: boolean;1689 readonly asBurnNft: {1690 readonly collectionId: u32;1691 readonly nftId: u32;1692 readonly maxBurns: u32;1693 } & Struct;1694 readonly isSend: boolean;1695 readonly asSend: {1696 readonly rmrkCollectionId: u32;1697 readonly rmrkNftId: u32;1698 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1699 } & Struct;1700 readonly isAcceptNft: boolean;1701 readonly asAcceptNft: {1702 readonly rmrkCollectionId: u32;1703 readonly rmrkNftId: u32;1704 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1705 } & Struct;1706 readonly isRejectNft: boolean;1707 readonly asRejectNft: {1708 readonly rmrkCollectionId: u32;1709 readonly rmrkNftId: u32;1710 } & Struct;1711 readonly isAcceptResource: boolean;1712 readonly asAcceptResource: {1713 readonly rmrkCollectionId: u32;1714 readonly rmrkNftId: u32;1715 readonly resourceId: u32;1716 } & Struct;1717 readonly isAcceptResourceRemoval: boolean;1718 readonly asAcceptResourceRemoval: {1719 readonly rmrkCollectionId: u32;1720 readonly rmrkNftId: u32;1721 readonly resourceId: u32;1722 } & Struct;1723 readonly isSetProperty: boolean;1724 readonly asSetProperty: {1725 readonly rmrkCollectionId: Compact<u32>;1726 readonly maybeNftId: Option<u32>;1727 readonly key: Bytes;1728 readonly value: Bytes;1729 } & Struct;1730 readonly isSetPriority: boolean;1731 readonly asSetPriority: {1732 readonly rmrkCollectionId: u32;1733 readonly rmrkNftId: u32;1734 readonly priorities: Vec<u32>;1735 } & Struct;1736 readonly isAddBasicResource: boolean;1737 readonly asAddBasicResource: {1738 readonly rmrkCollectionId: u32;1739 readonly nftId: u32;1740 readonly resource: RmrkTraitsResourceBasicResource;1741 } & Struct;1742 readonly isAddComposableResource: boolean;1743 readonly asAddComposableResource: {1744 readonly rmrkCollectionId: u32;1745 readonly nftId: u32;1746 readonly resource: RmrkTraitsResourceComposableResource;1747 } & Struct;1748 readonly isAddSlotResource: boolean;1749 readonly asAddSlotResource: {1750 readonly rmrkCollectionId: u32;1751 readonly nftId: u32;1752 readonly resource: RmrkTraitsResourceSlotResource;1753 } & Struct;1754 readonly isRemoveResource: boolean;1755 readonly asRemoveResource: {1756 readonly rmrkCollectionId: u32;1757 readonly nftId: u32;1758 readonly resourceId: u32;1759 } & Struct;1760 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1761}17621763/** @name PalletRmrkCoreError */1764export interface PalletRmrkCoreError extends Enum {1765 readonly isCorruptedCollectionType: boolean;1766 readonly isRmrkPropertyKeyIsTooLong: boolean;1767 readonly isRmrkPropertyValueIsTooLong: boolean;1768 readonly isRmrkPropertyIsNotFound: boolean;1769 readonly isUnableToDecodeRmrkData: boolean;1770 readonly isCollectionNotEmpty: boolean;1771 readonly isNoAvailableCollectionId: boolean;1772 readonly isNoAvailableNftId: boolean;1773 readonly isCollectionUnknown: boolean;1774 readonly isNoPermission: boolean;1775 readonly isNonTransferable: boolean;1776 readonly isCollectionFullOrLocked: boolean;1777 readonly isResourceDoesntExist: boolean;1778 readonly isCannotSendToDescendentOrSelf: boolean;1779 readonly isCannotAcceptNonOwnedNft: boolean;1780 readonly isCannotRejectNonOwnedNft: boolean;1781 readonly isCannotRejectNonPendingNft: boolean;1782 readonly isResourceNotPending: boolean;1783 readonly isNoAvailableResourceId: boolean;1784 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1785}17861787/** @name PalletRmrkCoreEvent */1788export interface PalletRmrkCoreEvent extends Enum {1789 readonly isCollectionCreated: boolean;1790 readonly asCollectionCreated: {1791 readonly issuer: AccountId32;1792 readonly collectionId: u32;1793 } & Struct;1794 readonly isCollectionDestroyed: boolean;1795 readonly asCollectionDestroyed: {1796 readonly issuer: AccountId32;1797 readonly collectionId: u32;1798 } & Struct;1799 readonly isIssuerChanged: boolean;1800 readonly asIssuerChanged: {1801 readonly oldIssuer: AccountId32;1802 readonly newIssuer: AccountId32;1803 readonly collectionId: u32;1804 } & Struct;1805 readonly isCollectionLocked: boolean;1806 readonly asCollectionLocked: {1807 readonly issuer: AccountId32;1808 readonly collectionId: u32;1809 } & Struct;1810 readonly isNftMinted: boolean;1811 readonly asNftMinted: {1812 readonly owner: AccountId32;1813 readonly collectionId: u32;1814 readonly nftId: u32;1815 } & Struct;1816 readonly isNftBurned: boolean;1817 readonly asNftBurned: {1818 readonly owner: AccountId32;1819 readonly nftId: u32;1820 } & Struct;1821 readonly isNftSent: boolean;1822 readonly asNftSent: {1823 readonly sender: AccountId32;1824 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1825 readonly collectionId: u32;1826 readonly nftId: u32;1827 readonly approvalRequired: bool;1828 } & Struct;1829 readonly isNftAccepted: boolean;1830 readonly asNftAccepted: {1831 readonly sender: AccountId32;1832 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1833 readonly collectionId: u32;1834 readonly nftId: u32;1835 } & Struct;1836 readonly isNftRejected: boolean;1837 readonly asNftRejected: {1838 readonly sender: AccountId32;1839 readonly collectionId: u32;1840 readonly nftId: u32;1841 } & Struct;1842 readonly isPropertySet: boolean;1843 readonly asPropertySet: {1844 readonly collectionId: u32;1845 readonly maybeNftId: Option<u32>;1846 readonly key: Bytes;1847 readonly value: Bytes;1848 } & Struct;1849 readonly isResourceAdded: boolean;1850 readonly asResourceAdded: {1851 readonly nftId: u32;1852 readonly resourceId: u32;1853 } & Struct;1854 readonly isResourceRemoval: boolean;1855 readonly asResourceRemoval: {1856 readonly nftId: u32;1857 readonly resourceId: u32;1858 } & Struct;1859 readonly isResourceAccepted: boolean;1860 readonly asResourceAccepted: {1861 readonly nftId: u32;1862 readonly resourceId: u32;1863 } & Struct;1864 readonly isResourceRemovalAccepted: boolean;1865 readonly asResourceRemovalAccepted: {1866 readonly nftId: u32;1867 readonly resourceId: u32;1868 } & Struct;1869 readonly isPrioritySet: boolean;1870 readonly asPrioritySet: {1871 readonly collectionId: u32;1872 readonly nftId: u32;1873 } & Struct;1874 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1875}18761877/** @name PalletRmrkEquipCall */1878export interface PalletRmrkEquipCall extends Enum {1879 readonly isCreateBase: boolean;1880 readonly asCreateBase: {1881 readonly baseType: Bytes;1882 readonly symbol: Bytes;1883 readonly parts: Vec<RmrkTraitsPartPartType>;1884 } & Struct;1885 readonly isThemeAdd: boolean;1886 readonly asThemeAdd: {1887 readonly baseId: u32;1888 readonly theme: RmrkTraitsTheme;1889 } & Struct;1890 readonly isEquippable: boolean;1891 readonly asEquippable: {1892 readonly baseId: u32;1893 readonly slotId: u32;1894 readonly equippables: RmrkTraitsPartEquippableList;1895 } & Struct;1896 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1897}18981899/** @name PalletRmrkEquipError */1900export interface PalletRmrkEquipError extends Enum {1901 readonly isPermissionError: boolean;1902 readonly isNoAvailableBaseId: boolean;1903 readonly isNoAvailablePartId: boolean;1904 readonly isBaseDoesntExist: boolean;1905 readonly isNeedsDefaultThemeFirst: boolean;1906 readonly isPartDoesntExist: boolean;1907 readonly isNoEquippableOnFixedPart: boolean;1908 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1909}19101911/** @name PalletRmrkEquipEvent */1912export interface PalletRmrkEquipEvent extends Enum {1913 readonly isBaseCreated: boolean;1914 readonly asBaseCreated: {1915 readonly issuer: AccountId32;1916 readonly baseId: u32;1917 } & Struct;1918 readonly isEquippablesUpdated: boolean;1919 readonly asEquippablesUpdated: {1920 readonly baseId: u32;1921 readonly slotId: u32;1922 } & Struct;1923 readonly type: 'BaseCreated' | 'EquippablesUpdated';1924}19251926/** @name PalletStructureCall */1927export interface PalletStructureCall extends Null {}19281929/** @name PalletStructureError */1930export interface PalletStructureError extends Enum {1931 readonly isOuroborosDetected: boolean;1932 readonly isDepthLimit: boolean;1933 readonly isBreadthLimit: boolean;1934 readonly isTokenNotFound: boolean;1935 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1936}19371938/** @name PalletStructureEvent */1939export interface PalletStructureEvent extends Enum {1940 readonly isExecuted: boolean;1941 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1942 readonly type: 'Executed';1943}19441945/** @name PalletSudoCall */1946export interface PalletSudoCall extends Enum {1947 readonly isSudo: boolean;1948 readonly asSudo: {1949 readonly call: Call;1950 } & Struct;1951 readonly isSudoUncheckedWeight: boolean;1952 readonly asSudoUncheckedWeight: {1953 readonly call: Call;1954 readonly weight: SpWeightsWeightV2Weight;1955 } & Struct;1956 readonly isSetKey: boolean;1957 readonly asSetKey: {1958 readonly new_: MultiAddress;1959 } & Struct;1960 readonly isSudoAs: boolean;1961 readonly asSudoAs: {1962 readonly who: MultiAddress;1963 readonly call: Call;1964 } & Struct;1965 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1966}19671968/** @name PalletSudoError */1969export interface PalletSudoError extends Enum {1970 readonly isRequireSudo: boolean;1971 readonly type: 'RequireSudo';1972}19731974/** @name PalletSudoEvent */1975export interface PalletSudoEvent extends Enum {1976 readonly isSudid: boolean;1977 readonly asSudid: {1978 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1979 } & Struct;1980 readonly isKeyChanged: boolean;1981 readonly asKeyChanged: {1982 readonly oldSudoer: Option<AccountId32>;1983 } & Struct;1984 readonly isSudoAsDone: boolean;1985 readonly asSudoAsDone: {1986 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1987 } & Struct;1988 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1989}19901991/** @name PalletTemplateTransactionPaymentCall */1992export interface PalletTemplateTransactionPaymentCall extends Null {}19931994/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1995export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}19961997/** @name PalletTestUtilsCall */1998export interface PalletTestUtilsCall extends Enum {1999 readonly isEnable: boolean;2000 readonly isSetTestValue: boolean;2001 readonly asSetTestValue: {2002 readonly value: u32;2003 } & Struct;2004 readonly isSetTestValueAndRollback: boolean;2005 readonly asSetTestValueAndRollback: {2006 readonly value: u32;2007 } & Struct;2008 readonly isIncTestValue: boolean;2009 readonly isJustTakeFee: boolean;2010 readonly isBatchAll: boolean;2011 readonly asBatchAll: {2012 readonly calls: Vec<Call>;2013 } & Struct;2014 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';2015}20162017/** @name PalletTestUtilsError */2018export interface PalletTestUtilsError extends Enum {2019 readonly isTestPalletDisabled: boolean;2020 readonly isTriggerRollback: boolean;2021 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2022}20232024/** @name PalletTestUtilsEvent */2025export interface PalletTestUtilsEvent extends Enum {2026 readonly isValueIsSet: boolean;2027 readonly isShouldRollback: boolean;2028 readonly isBatchCompleted: boolean;2029 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2030}20312032/** @name PalletTimestampCall */2033export interface PalletTimestampCall extends Enum {2034 readonly isSet: boolean;2035 readonly asSet: {2036 readonly now: Compact<u64>;2037 } & Struct;2038 readonly type: 'Set';2039}20402041/** @name PalletTransactionPaymentEvent */2042export interface PalletTransactionPaymentEvent extends Enum {2043 readonly isTransactionFeePaid: boolean;2044 readonly asTransactionFeePaid: {2045 readonly who: AccountId32;2046 readonly actualFee: u128;2047 readonly tip: u128;2048 } & Struct;2049 readonly type: 'TransactionFeePaid';2050}20512052/** @name PalletTransactionPaymentReleases */2053export interface PalletTransactionPaymentReleases extends Enum {2054 readonly isV1Ancient: boolean;2055 readonly isV2: boolean;2056 readonly type: 'V1Ancient' | 'V2';2057}20582059/** @name PalletTreasuryCall */2060export interface PalletTreasuryCall extends Enum {2061 readonly isProposeSpend: boolean;2062 readonly asProposeSpend: {2063 readonly value: Compact<u128>;2064 readonly beneficiary: MultiAddress;2065 } & Struct;2066 readonly isRejectProposal: boolean;2067 readonly asRejectProposal: {2068 readonly proposalId: Compact<u32>;2069 } & Struct;2070 readonly isApproveProposal: boolean;2071 readonly asApproveProposal: {2072 readonly proposalId: Compact<u32>;2073 } & Struct;2074 readonly isSpend: boolean;2075 readonly asSpend: {2076 readonly amount: Compact<u128>;2077 readonly beneficiary: MultiAddress;2078 } & Struct;2079 readonly isRemoveApproval: boolean;2080 readonly asRemoveApproval: {2081 readonly proposalId: Compact<u32>;2082 } & Struct;2083 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2084}20852086/** @name PalletTreasuryError */2087export interface PalletTreasuryError extends Enum {2088 readonly isInsufficientProposersBalance: boolean;2089 readonly isInvalidIndex: boolean;2090 readonly isTooManyApprovals: boolean;2091 readonly isInsufficientPermission: boolean;2092 readonly isProposalNotApproved: boolean;2093 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2094}20952096/** @name PalletTreasuryEvent */2097export interface PalletTreasuryEvent extends Enum {2098 readonly isProposed: boolean;2099 readonly asProposed: {2100 readonly proposalIndex: u32;2101 } & Struct;2102 readonly isSpending: boolean;2103 readonly asSpending: {2104 readonly budgetRemaining: u128;2105 } & Struct;2106 readonly isAwarded: boolean;2107 readonly asAwarded: {2108 readonly proposalIndex: u32;2109 readonly award: u128;2110 readonly account: AccountId32;2111 } & Struct;2112 readonly isRejected: boolean;2113 readonly asRejected: {2114 readonly proposalIndex: u32;2115 readonly slashed: u128;2116 } & Struct;2117 readonly isBurnt: boolean;2118 readonly asBurnt: {2119 readonly burntFunds: u128;2120 } & Struct;2121 readonly isRollover: boolean;2122 readonly asRollover: {2123 readonly rolloverBalance: u128;2124 } & Struct;2125 readonly isDeposit: boolean;2126 readonly asDeposit: {2127 readonly value: u128;2128 } & Struct;2129 readonly isSpendApproved: boolean;2130 readonly asSpendApproved: {2131 readonly proposalIndex: u32;2132 readonly amount: u128;2133 readonly beneficiary: AccountId32;2134 } & Struct;2135 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2136}21372138/** @name PalletTreasuryProposal */2139export interface PalletTreasuryProposal extends Struct {2140 readonly proposer: AccountId32;2141 readonly value: u128;2142 readonly beneficiary: AccountId32;2143 readonly bond: u128;2144}21452146/** @name PalletUniqueCall */2147export interface PalletUniqueCall extends Enum {2148 readonly isCreateCollection: boolean;2149 readonly asCreateCollection: {2150 readonly collectionName: Vec<u16>;2151 readonly collectionDescription: Vec<u16>;2152 readonly tokenPrefix: Bytes;2153 readonly mode: UpDataStructsCollectionMode;2154 } & Struct;2155 readonly isCreateCollectionEx: boolean;2156 readonly asCreateCollectionEx: {2157 readonly data: UpDataStructsCreateCollectionData;2158 } & Struct;2159 readonly isDestroyCollection: boolean;2160 readonly asDestroyCollection: {2161 readonly collectionId: u32;2162 } & Struct;2163 readonly isAddToAllowList: boolean;2164 readonly asAddToAllowList: {2165 readonly collectionId: u32;2166 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2167 } & Struct;2168 readonly isRemoveFromAllowList: boolean;2169 readonly asRemoveFromAllowList: {2170 readonly collectionId: u32;2171 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2172 } & Struct;2173 readonly isChangeCollectionOwner: boolean;2174 readonly asChangeCollectionOwner: {2175 readonly collectionId: u32;2176 readonly newOwner: AccountId32;2177 } & Struct;2178 readonly isAddCollectionAdmin: boolean;2179 readonly asAddCollectionAdmin: {2180 readonly collectionId: u32;2181 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2182 } & Struct;2183 readonly isRemoveCollectionAdmin: boolean;2184 readonly asRemoveCollectionAdmin: {2185 readonly collectionId: u32;2186 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2187 } & Struct;2188 readonly isSetCollectionSponsor: boolean;2189 readonly asSetCollectionSponsor: {2190 readonly collectionId: u32;2191 readonly newSponsor: AccountId32;2192 } & Struct;2193 readonly isConfirmSponsorship: boolean;2194 readonly asConfirmSponsorship: {2195 readonly collectionId: u32;2196 } & Struct;2197 readonly isRemoveCollectionSponsor: boolean;2198 readonly asRemoveCollectionSponsor: {2199 readonly collectionId: u32;2200 } & Struct;2201 readonly isCreateItem: boolean;2202 readonly asCreateItem: {2203 readonly collectionId: u32;2204 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2205 readonly data: UpDataStructsCreateItemData;2206 } & Struct;2207 readonly isCreateMultipleItems: boolean;2208 readonly asCreateMultipleItems: {2209 readonly collectionId: u32;2210 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2211 readonly itemsData: Vec<UpDataStructsCreateItemData>;2212 } & Struct;2213 readonly isSetCollectionProperties: boolean;2214 readonly asSetCollectionProperties: {2215 readonly collectionId: u32;2216 readonly properties: Vec<UpDataStructsProperty>;2217 } & Struct;2218 readonly isDeleteCollectionProperties: boolean;2219 readonly asDeleteCollectionProperties: {2220 readonly collectionId: u32;2221 readonly propertyKeys: Vec<Bytes>;2222 } & Struct;2223 readonly isSetTokenProperties: boolean;2224 readonly asSetTokenProperties: {2225 readonly collectionId: u32;2226 readonly tokenId: u32;2227 readonly properties: Vec<UpDataStructsProperty>;2228 } & Struct;2229 readonly isDeleteTokenProperties: boolean;2230 readonly asDeleteTokenProperties: {2231 readonly collectionId: u32;2232 readonly tokenId: u32;2233 readonly propertyKeys: Vec<Bytes>;2234 } & Struct;2235 readonly isSetTokenPropertyPermissions: boolean;2236 readonly asSetTokenPropertyPermissions: {2237 readonly collectionId: u32;2238 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2239 } & Struct;2240 readonly isCreateMultipleItemsEx: boolean;2241 readonly asCreateMultipleItemsEx: {2242 readonly collectionId: u32;2243 readonly data: UpDataStructsCreateItemExData;2244 } & Struct;2245 readonly isSetTransfersEnabledFlag: boolean;2246 readonly asSetTransfersEnabledFlag: {2247 readonly collectionId: u32;2248 readonly value: bool;2249 } & Struct;2250 readonly isBurnItem: boolean;2251 readonly asBurnItem: {2252 readonly collectionId: u32;2253 readonly itemId: u32;2254 readonly value: u128;2255 } & Struct;2256 readonly isBurnFrom: boolean;2257 readonly asBurnFrom: {2258 readonly collectionId: u32;2259 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2260 readonly itemId: u32;2261 readonly value: u128;2262 } & Struct;2263 readonly isTransfer: boolean;2264 readonly asTransfer: {2265 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2266 readonly collectionId: u32;2267 readonly itemId: u32;2268 readonly value: u128;2269 } & Struct;2270 readonly isApprove: boolean;2271 readonly asApprove: {2272 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2273 readonly collectionId: u32;2274 readonly itemId: u32;2275 readonly amount: u128;2276 } & Struct;2277 readonly isTransferFrom: boolean;2278 readonly asTransferFrom: {2279 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2280 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2281 readonly collectionId: u32;2282 readonly itemId: u32;2283 readonly value: u128;2284 } & Struct;2285 readonly isSetCollectionLimits: boolean;2286 readonly asSetCollectionLimits: {2287 readonly collectionId: u32;2288 readonly newLimit: UpDataStructsCollectionLimits;2289 } & Struct;2290 readonly isSetCollectionPermissions: boolean;2291 readonly asSetCollectionPermissions: {2292 readonly collectionId: u32;2293 readonly newPermission: UpDataStructsCollectionPermissions;2294 } & Struct;2295 readonly isRepartition: boolean;2296 readonly asRepartition: {2297 readonly collectionId: u32;2298 readonly tokenId: u32;2299 readonly amount: u128;2300 } & Struct;2301 readonly isSetAllowanceForAll: boolean;2302 readonly asSetAllowanceForAll: {2303 readonly collectionId: u32;2304 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2305 readonly approve: bool;2306 } & Struct;2307 readonly isForceRepairCollection: boolean;2308 readonly asForceRepairCollection: {2309 readonly collectionId: u32;2310 } & Struct;2311 readonly isForceRepairItem: boolean;2312 readonly asForceRepairItem: {2313 readonly collectionId: u32;2314 readonly itemId: u32;2315 } & Struct;2316 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';2317}23182319/** @name PalletUniqueError */2320export interface PalletUniqueError extends Enum {2321 readonly isCollectionDecimalPointLimitExceeded: boolean;2322 readonly isEmptyArgument: boolean;2323 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2324 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2325}23262327/** @name PalletXcmCall */2328export interface PalletXcmCall extends Enum {2329 readonly isSend: boolean;2330 readonly asSend: {2331 readonly dest: XcmVersionedMultiLocation;2332 readonly message: XcmVersionedXcm;2333 } & Struct;2334 readonly isTeleportAssets: boolean;2335 readonly asTeleportAssets: {2336 readonly dest: XcmVersionedMultiLocation;2337 readonly beneficiary: XcmVersionedMultiLocation;2338 readonly assets: XcmVersionedMultiAssets;2339 readonly feeAssetItem: u32;2340 } & Struct;2341 readonly isReserveTransferAssets: boolean;2342 readonly asReserveTransferAssets: {2343 readonly dest: XcmVersionedMultiLocation;2344 readonly beneficiary: XcmVersionedMultiLocation;2345 readonly assets: XcmVersionedMultiAssets;2346 readonly feeAssetItem: u32;2347 } & Struct;2348 readonly isExecute: boolean;2349 readonly asExecute: {2350 readonly message: XcmVersionedXcm;2351 readonly maxWeight: u64;2352 } & Struct;2353 readonly isForceXcmVersion: boolean;2354 readonly asForceXcmVersion: {2355 readonly location: XcmV1MultiLocation;2356 readonly xcmVersion: u32;2357 } & Struct;2358 readonly isForceDefaultXcmVersion: boolean;2359 readonly asForceDefaultXcmVersion: {2360 readonly maybeXcmVersion: Option<u32>;2361 } & Struct;2362 readonly isForceSubscribeVersionNotify: boolean;2363 readonly asForceSubscribeVersionNotify: {2364 readonly location: XcmVersionedMultiLocation;2365 } & Struct;2366 readonly isForceUnsubscribeVersionNotify: boolean;2367 readonly asForceUnsubscribeVersionNotify: {2368 readonly location: XcmVersionedMultiLocation;2369 } & Struct;2370 readonly isLimitedReserveTransferAssets: boolean;2371 readonly asLimitedReserveTransferAssets: {2372 readonly dest: XcmVersionedMultiLocation;2373 readonly beneficiary: XcmVersionedMultiLocation;2374 readonly assets: XcmVersionedMultiAssets;2375 readonly feeAssetItem: u32;2376 readonly weightLimit: XcmV2WeightLimit;2377 } & Struct;2378 readonly isLimitedTeleportAssets: boolean;2379 readonly asLimitedTeleportAssets: {2380 readonly dest: XcmVersionedMultiLocation;2381 readonly beneficiary: XcmVersionedMultiLocation;2382 readonly assets: XcmVersionedMultiAssets;2383 readonly feeAssetItem: u32;2384 readonly weightLimit: XcmV2WeightLimit;2385 } & Struct;2386 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2387}23882389/** @name PalletXcmError */2390export interface PalletXcmError extends Enum {2391 readonly isUnreachable: boolean;2392 readonly isSendFailure: boolean;2393 readonly isFiltered: boolean;2394 readonly isUnweighableMessage: boolean;2395 readonly isDestinationNotInvertible: boolean;2396 readonly isEmpty: boolean;2397 readonly isCannotReanchor: boolean;2398 readonly isTooManyAssets: boolean;2399 readonly isInvalidOrigin: boolean;2400 readonly isBadVersion: boolean;2401 readonly isBadLocation: boolean;2402 readonly isNoSubscription: boolean;2403 readonly isAlreadySubscribed: boolean;2404 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2405}24062407/** @name PalletXcmEvent */2408export interface PalletXcmEvent extends Enum {2409 readonly isAttempted: boolean;2410 readonly asAttempted: XcmV2TraitsOutcome;2411 readonly isSent: boolean;2412 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2413 readonly isUnexpectedResponse: boolean;2414 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2415 readonly isResponseReady: boolean;2416 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2417 readonly isNotified: boolean;2418 readonly asNotified: ITuple<[u64, u8, u8]>;2419 readonly isNotifyOverweight: boolean;2420 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2421 readonly isNotifyDispatchError: boolean;2422 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2423 readonly isNotifyDecodeFailed: boolean;2424 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2425 readonly isInvalidResponder: boolean;2426 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2427 readonly isInvalidResponderVersion: boolean;2428 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2429 readonly isResponseTaken: boolean;2430 readonly asResponseTaken: u64;2431 readonly isAssetsTrapped: boolean;2432 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2433 readonly isVersionChangeNotified: boolean;2434 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2435 readonly isSupportedVersionChanged: boolean;2436 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2437 readonly isNotifyTargetSendFail: boolean;2438 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2439 readonly isNotifyTargetMigrationFail: boolean;2440 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2441 readonly isAssetsClaimed: boolean;2442 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2443 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2444}24452446/** @name PhantomTypeUpDataStructs */2447export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}24482449/** @name PolkadotCorePrimitivesInboundDownwardMessage */2450export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2451 readonly sentAt: u32;2452 readonly msg: Bytes;2453}24542455/** @name PolkadotCorePrimitivesInboundHrmpMessage */2456export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2457 readonly sentAt: u32;2458 readonly data: Bytes;2459}24602461/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2462export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2463 readonly recipient: u32;2464 readonly data: Bytes;2465}24662467/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2468export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2469 readonly isConcatenatedVersionedXcm: boolean;2470 readonly isConcatenatedEncodedBlob: boolean;2471 readonly isSignals: boolean;2472 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2473}24742475/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2476export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2477 readonly maxCodeSize: u32;2478 readonly maxHeadDataSize: u32;2479 readonly maxUpwardQueueCount: u32;2480 readonly maxUpwardQueueSize: u32;2481 readonly maxUpwardMessageSize: u32;2482 readonly maxUpwardMessageNumPerCandidate: u32;2483 readonly hrmpMaxMessageNumPerCandidate: u32;2484 readonly validationUpgradeCooldown: u32;2485 readonly validationUpgradeDelay: u32;2486}24872488/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2489export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2490 readonly maxCapacity: u32;2491 readonly maxTotalSize: u32;2492 readonly maxMessageSize: u32;2493 readonly msgCount: u32;2494 readonly totalSize: u32;2495 readonly mqcHead: Option<H256>;2496}24972498/** @name PolkadotPrimitivesV2PersistedValidationData */2499export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2500 readonly parentHead: Bytes;2501 readonly relayParentNumber: u32;2502 readonly relayParentStorageRoot: H256;2503 readonly maxPovSize: u32;2504}25052506/** @name PolkadotPrimitivesV2UpgradeRestriction */2507export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2508 readonly isPresent: boolean;2509 readonly type: 'Present';2510}25112512/** @name RmrkTraitsBaseBaseInfo */2513export interface RmrkTraitsBaseBaseInfo extends Struct {2514 readonly issuer: AccountId32;2515 readonly baseType: Bytes;2516 readonly symbol: Bytes;2517}25182519/** @name RmrkTraitsCollectionCollectionInfo */2520export interface RmrkTraitsCollectionCollectionInfo extends Struct {2521 readonly issuer: AccountId32;2522 readonly metadata: Bytes;2523 readonly max: Option<u32>;2524 readonly symbol: Bytes;2525 readonly nftsCount: u32;2526}25272528/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2529export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2530 readonly isAccountId: boolean;2531 readonly asAccountId: AccountId32;2532 readonly isCollectionAndNftTuple: boolean;2533 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2534 readonly type: 'AccountId' | 'CollectionAndNftTuple';2535}25362537/** @name RmrkTraitsNftNftChild */2538export interface RmrkTraitsNftNftChild extends Struct {2539 readonly collectionId: u32;2540 readonly nftId: u32;2541}25422543/** @name RmrkTraitsNftNftInfo */2544export interface RmrkTraitsNftNftInfo extends Struct {2545 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2546 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2547 readonly metadata: Bytes;2548 readonly equipped: bool;2549 readonly pending: bool;2550}25512552/** @name RmrkTraitsNftRoyaltyInfo */2553export interface RmrkTraitsNftRoyaltyInfo extends Struct {2554 readonly recipient: AccountId32;2555 readonly amount: Permill;2556}25572558/** @name RmrkTraitsPartEquippableList */2559export interface RmrkTraitsPartEquippableList extends Enum {2560 readonly isAll: boolean;2561 readonly isEmpty: boolean;2562 readonly isCustom: boolean;2563 readonly asCustom: Vec<u32>;2564 readonly type: 'All' | 'Empty' | 'Custom';2565}25662567/** @name RmrkTraitsPartFixedPart */2568export interface RmrkTraitsPartFixedPart extends Struct {2569 readonly id: u32;2570 readonly z: u32;2571 readonly src: Bytes;2572}25732574/** @name RmrkTraitsPartPartType */2575export interface RmrkTraitsPartPartType extends Enum {2576 readonly isFixedPart: boolean;2577 readonly asFixedPart: RmrkTraitsPartFixedPart;2578 readonly isSlotPart: boolean;2579 readonly asSlotPart: RmrkTraitsPartSlotPart;2580 readonly type: 'FixedPart' | 'SlotPart';2581}25822583/** @name RmrkTraitsPartSlotPart */2584export interface RmrkTraitsPartSlotPart extends Struct {2585 readonly id: u32;2586 readonly equippable: RmrkTraitsPartEquippableList;2587 readonly src: Bytes;2588 readonly z: u32;2589}25902591/** @name RmrkTraitsPropertyPropertyInfo */2592export interface RmrkTraitsPropertyPropertyInfo extends Struct {2593 readonly key: Bytes;2594 readonly value: Bytes;2595}25962597/** @name RmrkTraitsResourceBasicResource */2598export interface RmrkTraitsResourceBasicResource extends Struct {2599 readonly src: Option<Bytes>;2600 readonly metadata: Option<Bytes>;2601 readonly license: Option<Bytes>;2602 readonly thumb: Option<Bytes>;2603}26042605/** @name RmrkTraitsResourceComposableResource */2606export interface RmrkTraitsResourceComposableResource extends Struct {2607 readonly parts: Vec<u32>;2608 readonly base: u32;2609 readonly src: Option<Bytes>;2610 readonly metadata: Option<Bytes>;2611 readonly license: Option<Bytes>;2612 readonly thumb: Option<Bytes>;2613}26142615/** @name RmrkTraitsResourceResourceInfo */2616export interface RmrkTraitsResourceResourceInfo extends Struct {2617 readonly id: u32;2618 readonly resource: RmrkTraitsResourceResourceTypes;2619 readonly pending: bool;2620 readonly pendingRemoval: bool;2621}26222623/** @name RmrkTraitsResourceResourceTypes */2624export interface RmrkTraitsResourceResourceTypes extends Enum {2625 readonly isBasic: boolean;2626 readonly asBasic: RmrkTraitsResourceBasicResource;2627 readonly isComposable: boolean;2628 readonly asComposable: RmrkTraitsResourceComposableResource;2629 readonly isSlot: boolean;2630 readonly asSlot: RmrkTraitsResourceSlotResource;2631 readonly type: 'Basic' | 'Composable' | 'Slot';2632}26332634/** @name RmrkTraitsResourceSlotResource */2635export interface RmrkTraitsResourceSlotResource extends Struct {2636 readonly base: u32;2637 readonly src: Option<Bytes>;2638 readonly metadata: Option<Bytes>;2639 readonly slot: u32;2640 readonly license: Option<Bytes>;2641 readonly thumb: Option<Bytes>;2642}26432644/** @name RmrkTraitsTheme */2645export interface RmrkTraitsTheme extends Struct {2646 readonly name: Bytes;2647 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2648 readonly inherit: bool;2649}26502651/** @name RmrkTraitsThemeThemeProperty */2652export interface RmrkTraitsThemeThemeProperty extends Struct {2653 readonly key: Bytes;2654 readonly value: Bytes;2655}26562657/** @name SpCoreEcdsaSignature */2658export interface SpCoreEcdsaSignature extends U8aFixed {}26592660/** @name SpCoreEd25519Signature */2661export interface SpCoreEd25519Signature extends U8aFixed {}26622663/** @name SpCoreSr25519Signature */2664export interface SpCoreSr25519Signature extends U8aFixed {}26652666/** @name SpRuntimeArithmeticError */2667export interface SpRuntimeArithmeticError extends Enum {2668 readonly isUnderflow: boolean;2669 readonly isOverflow: boolean;2670 readonly isDivisionByZero: boolean;2671 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2672}26732674/** @name SpRuntimeDigest */2675export interface SpRuntimeDigest extends Struct {2676 readonly logs: Vec<SpRuntimeDigestDigestItem>;2677}26782679/** @name SpRuntimeDigestDigestItem */2680export interface SpRuntimeDigestDigestItem extends Enum {2681 readonly isOther: boolean;2682 readonly asOther: Bytes;2683 readonly isConsensus: boolean;2684 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2685 readonly isSeal: boolean;2686 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2687 readonly isPreRuntime: boolean;2688 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2689 readonly isRuntimeEnvironmentUpdated: boolean;2690 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2691}26922693/** @name SpRuntimeDispatchError */2694export interface SpRuntimeDispatchError extends Enum {2695 readonly isOther: boolean;2696 readonly isCannotLookup: boolean;2697 readonly isBadOrigin: boolean;2698 readonly isModule: boolean;2699 readonly asModule: SpRuntimeModuleError;2700 readonly isConsumerRemaining: boolean;2701 readonly isNoProviders: boolean;2702 readonly isTooManyConsumers: boolean;2703 readonly isToken: boolean;2704 readonly asToken: SpRuntimeTokenError;2705 readonly isArithmetic: boolean;2706 readonly asArithmetic: SpRuntimeArithmeticError;2707 readonly isTransactional: boolean;2708 readonly asTransactional: SpRuntimeTransactionalError;2709 readonly isExhausted: boolean;2710 readonly isCorruption: boolean;2711 readonly isUnavailable: boolean;2712 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2713}27142715/** @name SpRuntimeModuleError */2716export interface SpRuntimeModuleError extends Struct {2717 readonly index: u8;2718 readonly error: U8aFixed;2719}27202721/** @name SpRuntimeMultiSignature */2722export interface SpRuntimeMultiSignature extends Enum {2723 readonly isEd25519: boolean;2724 readonly asEd25519: SpCoreEd25519Signature;2725 readonly isSr25519: boolean;2726 readonly asSr25519: SpCoreSr25519Signature;2727 readonly isEcdsa: boolean;2728 readonly asEcdsa: SpCoreEcdsaSignature;2729 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2730}27312732/** @name SpRuntimeTokenError */2733export interface SpRuntimeTokenError extends Enum {2734 readonly isNoFunds: boolean;2735 readonly isWouldDie: boolean;2736 readonly isBelowMinimum: boolean;2737 readonly isCannotCreate: boolean;2738 readonly isUnknownAsset: boolean;2739 readonly isFrozen: boolean;2740 readonly isUnsupported: boolean;2741 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2742}27432744/** @name SpRuntimeTransactionalError */2745export interface SpRuntimeTransactionalError extends Enum {2746 readonly isLimitReached: boolean;2747 readonly isNoLayer: boolean;2748 readonly type: 'LimitReached' | 'NoLayer';2749}27502751/** @name SpTrieStorageProof */2752export interface SpTrieStorageProof extends Struct {2753 readonly trieNodes: BTreeSet<Bytes>;2754}27552756/** @name SpVersionRuntimeVersion */2757export interface SpVersionRuntimeVersion extends Struct {2758 readonly specName: Text;2759 readonly implName: Text;2760 readonly authoringVersion: u32;2761 readonly specVersion: u32;2762 readonly implVersion: u32;2763 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2764 readonly transactionVersion: u32;2765 readonly stateVersion: u8;2766}27672768/** @name SpWeightsRuntimeDbWeight */2769export interface SpWeightsRuntimeDbWeight extends Struct {2770 readonly read: u64;2771 readonly write: u64;2772}27732774/** @name SpWeightsWeightV2Weight */2775export interface SpWeightsWeightV2Weight extends Struct {2776 readonly refTime: Compact<u64>;2777 readonly proofSize: Compact<u64>;2778}27792780/** @name UpDataStructsAccessMode */2781export interface UpDataStructsAccessMode extends Enum {2782 readonly isNormal: boolean;2783 readonly isAllowList: boolean;2784 readonly type: 'Normal' | 'AllowList';2785}27862787/** @name UpDataStructsCollection */2788export interface UpDataStructsCollection extends Struct {2789 readonly owner: AccountId32;2790 readonly mode: UpDataStructsCollectionMode;2791 readonly name: Vec<u16>;2792 readonly description: Vec<u16>;2793 readonly tokenPrefix: Bytes;2794 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2795 readonly limits: UpDataStructsCollectionLimits;2796 readonly permissions: UpDataStructsCollectionPermissions;2797 readonly flags: U8aFixed;2798}27992800/** @name UpDataStructsCollectionLimits */2801export interface UpDataStructsCollectionLimits extends Struct {2802 readonly accountTokenOwnershipLimit: Option<u32>;2803 readonly sponsoredDataSize: Option<u32>;2804 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2805 readonly tokenLimit: Option<u32>;2806 readonly sponsorTransferTimeout: Option<u32>;2807 readonly sponsorApproveTimeout: Option<u32>;2808 readonly ownerCanTransfer: Option<bool>;2809 readonly ownerCanDestroy: Option<bool>;2810 readonly transfersEnabled: Option<bool>;2811}28122813/** @name UpDataStructsCollectionMode */2814export interface UpDataStructsCollectionMode extends Enum {2815 readonly isNft: boolean;2816 readonly isFungible: boolean;2817 readonly asFungible: u8;2818 readonly isReFungible: boolean;2819 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2820}28212822/** @name UpDataStructsCollectionPermissions */2823export interface UpDataStructsCollectionPermissions extends Struct {2824 readonly access: Option<UpDataStructsAccessMode>;2825 readonly mintMode: Option<bool>;2826 readonly nesting: Option<UpDataStructsNestingPermissions>;2827}28282829/** @name UpDataStructsCollectionStats */2830export interface UpDataStructsCollectionStats extends Struct {2831 readonly created: u32;2832 readonly destroyed: u32;2833 readonly alive: u32;2834}28352836/** @name UpDataStructsCreateCollectionData */2837export interface UpDataStructsCreateCollectionData extends Struct {2838 readonly mode: UpDataStructsCollectionMode;2839 readonly access: Option<UpDataStructsAccessMode>;2840 readonly name: Vec<u16>;2841 readonly description: Vec<u16>;2842 readonly tokenPrefix: Bytes;2843 readonly pendingSponsor: Option<AccountId32>;2844 readonly limits: Option<UpDataStructsCollectionLimits>;2845 readonly permissions: Option<UpDataStructsCollectionPermissions>;2846 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2847 readonly properties: Vec<UpDataStructsProperty>;2848}28492850/** @name UpDataStructsCreateFungibleData */2851export interface UpDataStructsCreateFungibleData extends Struct {2852 readonly value: u128;2853}28542855/** @name UpDataStructsCreateItemData */2856export interface UpDataStructsCreateItemData extends Enum {2857 readonly isNft: boolean;2858 readonly asNft: UpDataStructsCreateNftData;2859 readonly isFungible: boolean;2860 readonly asFungible: UpDataStructsCreateFungibleData;2861 readonly isReFungible: boolean;2862 readonly asReFungible: UpDataStructsCreateReFungibleData;2863 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2864}28652866/** @name UpDataStructsCreateItemExData */2867export interface UpDataStructsCreateItemExData extends Enum {2868 readonly isNft: boolean;2869 readonly asNft: Vec<UpDataStructsCreateNftExData>;2870 readonly isFungible: boolean;2871 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2872 readonly isRefungibleMultipleItems: boolean;2873 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2874 readonly isRefungibleMultipleOwners: boolean;2875 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2876 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2877}28782879/** @name UpDataStructsCreateNftData */2880export interface UpDataStructsCreateNftData extends Struct {2881 readonly properties: Vec<UpDataStructsProperty>;2882}28832884/** @name UpDataStructsCreateNftExData */2885export interface UpDataStructsCreateNftExData extends Struct {2886 readonly properties: Vec<UpDataStructsProperty>;2887 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2888}28892890/** @name UpDataStructsCreateReFungibleData */2891export interface UpDataStructsCreateReFungibleData extends Struct {2892 readonly pieces: u128;2893 readonly properties: Vec<UpDataStructsProperty>;2894}28952896/** @name UpDataStructsCreateRefungibleExMultipleOwners */2897export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2898 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2899 readonly properties: Vec<UpDataStructsProperty>;2900}29012902/** @name UpDataStructsCreateRefungibleExSingleOwner */2903export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2904 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2905 readonly pieces: u128;2906 readonly properties: Vec<UpDataStructsProperty>;2907}29082909/** @name UpDataStructsNestingPermissions */2910export interface UpDataStructsNestingPermissions extends Struct {2911 readonly tokenOwner: bool;2912 readonly collectionAdmin: bool;2913 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2914}29152916/** @name UpDataStructsOwnerRestrictedSet */2917export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}29182919/** @name UpDataStructsProperties */2920export interface UpDataStructsProperties extends Struct {2921 readonly map: UpDataStructsPropertiesMapBoundedVec;2922 readonly consumedSpace: u32;2923 readonly spaceLimit: u32;2924}29252926/** @name UpDataStructsPropertiesMapBoundedVec */2927export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}29282929/** @name UpDataStructsPropertiesMapPropertyPermission */2930export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}29312932/** @name UpDataStructsProperty */2933export interface UpDataStructsProperty extends Struct {2934 readonly key: Bytes;2935 readonly value: Bytes;2936}29372938/** @name UpDataStructsPropertyKeyPermission */2939export interface UpDataStructsPropertyKeyPermission extends Struct {2940 readonly key: Bytes;2941 readonly permission: UpDataStructsPropertyPermission;2942}29432944/** @name UpDataStructsPropertyPermission */2945export interface UpDataStructsPropertyPermission extends Struct {2946 readonly mutable: bool;2947 readonly collectionAdmin: bool;2948 readonly tokenOwner: bool;2949}29502951/** @name UpDataStructsPropertyScope */2952export interface UpDataStructsPropertyScope extends Enum {2953 readonly isNone: boolean;2954 readonly isRmrk: boolean;2955 readonly type: 'None' | 'Rmrk';2956}29572958/** @name UpDataStructsRpcCollection */2959export interface UpDataStructsRpcCollection extends Struct {2960 readonly owner: AccountId32;2961 readonly mode: UpDataStructsCollectionMode;2962 readonly name: Vec<u16>;2963 readonly description: Vec<u16>;2964 readonly tokenPrefix: Bytes;2965 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2966 readonly limits: UpDataStructsCollectionLimits;2967 readonly permissions: UpDataStructsCollectionPermissions;2968 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2969 readonly properties: Vec<UpDataStructsProperty>;2970 readonly readOnly: bool;2971 readonly flags: UpDataStructsRpcCollectionFlags;2972}29732974/** @name UpDataStructsRpcCollectionFlags */2975export interface UpDataStructsRpcCollectionFlags extends Struct {2976 readonly foreign: bool;2977 readonly erc721metadata: bool;2978}29792980/** @name UpDataStructsSponsoringRateLimit */2981export interface UpDataStructsSponsoringRateLimit extends Enum {2982 readonly isSponsoringDisabled: boolean;2983 readonly isBlocks: boolean;2984 readonly asBlocks: u32;2985 readonly type: 'SponsoringDisabled' | 'Blocks';2986}29872988/** @name UpDataStructsSponsorshipStateAccountId32 */2989export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {2990 readonly isDisabled: boolean;2991 readonly isUnconfirmed: boolean;2992 readonly asUnconfirmed: AccountId32;2993 readonly isConfirmed: boolean;2994 readonly asConfirmed: AccountId32;2995 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2996}29972998/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */2999export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3000 readonly isDisabled: boolean;3001 readonly isUnconfirmed: boolean;3002 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3003 readonly isConfirmed: boolean;3004 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3005 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3006}30073008/** @name UpDataStructsTokenChild */3009export interface UpDataStructsTokenChild extends Struct {3010 readonly token: u32;3011 readonly collection: u32;3012}30133014/** @name UpDataStructsTokenData */3015export interface UpDataStructsTokenData extends Struct {3016 readonly properties: Vec<UpDataStructsProperty>;3017 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3018 readonly pieces: u128;3019}30203021/** @name XcmDoubleEncoded */3022export interface XcmDoubleEncoded extends Struct {3023 readonly encoded: Bytes;3024}30253026/** @name XcmV0Junction */3027export interface XcmV0Junction extends Enum {3028 readonly isParent: boolean;3029 readonly isParachain: boolean;3030 readonly asParachain: Compact<u32>;3031 readonly isAccountId32: boolean;3032 readonly asAccountId32: {3033 readonly network: XcmV0JunctionNetworkId;3034 readonly id: U8aFixed;3035 } & Struct;3036 readonly isAccountIndex64: boolean;3037 readonly asAccountIndex64: {3038 readonly network: XcmV0JunctionNetworkId;3039 readonly index: Compact<u64>;3040 } & Struct;3041 readonly isAccountKey20: boolean;3042 readonly asAccountKey20: {3043 readonly network: XcmV0JunctionNetworkId;3044 readonly key: U8aFixed;3045 } & Struct;3046 readonly isPalletInstance: boolean;3047 readonly asPalletInstance: u8;3048 readonly isGeneralIndex: boolean;3049 readonly asGeneralIndex: Compact<u128>;3050 readonly isGeneralKey: boolean;3051 readonly asGeneralKey: Bytes;3052 readonly isOnlyChild: boolean;3053 readonly isPlurality: boolean;3054 readonly asPlurality: {3055 readonly id: XcmV0JunctionBodyId;3056 readonly part: XcmV0JunctionBodyPart;3057 } & Struct;3058 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3059}30603061/** @name XcmV0JunctionBodyId */3062export interface XcmV0JunctionBodyId extends Enum {3063 readonly isUnit: boolean;3064 readonly isNamed: boolean;3065 readonly asNamed: Bytes;3066 readonly isIndex: boolean;3067 readonly asIndex: Compact<u32>;3068 readonly isExecutive: boolean;3069 readonly isTechnical: boolean;3070 readonly isLegislative: boolean;3071 readonly isJudicial: boolean;3072 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3073}30743075/** @name XcmV0JunctionBodyPart */3076export interface XcmV0JunctionBodyPart extends Enum {3077 readonly isVoice: boolean;3078 readonly isMembers: boolean;3079 readonly asMembers: {3080 readonly count: Compact<u32>;3081 } & Struct;3082 readonly isFraction: boolean;3083 readonly asFraction: {3084 readonly nom: Compact<u32>;3085 readonly denom: Compact<u32>;3086 } & Struct;3087 readonly isAtLeastProportion: boolean;3088 readonly asAtLeastProportion: {3089 readonly nom: Compact<u32>;3090 readonly denom: Compact<u32>;3091 } & Struct;3092 readonly isMoreThanProportion: boolean;3093 readonly asMoreThanProportion: {3094 readonly nom: Compact<u32>;3095 readonly denom: Compact<u32>;3096 } & Struct;3097 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3098}30993100/** @name XcmV0JunctionNetworkId */3101export interface XcmV0JunctionNetworkId extends Enum {3102 readonly isAny: boolean;3103 readonly isNamed: boolean;3104 readonly asNamed: Bytes;3105 readonly isPolkadot: boolean;3106 readonly isKusama: boolean;3107 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3108}31093110/** @name XcmV0MultiAsset */3111export interface XcmV0MultiAsset extends Enum {3112 readonly isNone: boolean;3113 readonly isAll: boolean;3114 readonly isAllFungible: boolean;3115 readonly isAllNonFungible: boolean;3116 readonly isAllAbstractFungible: boolean;3117 readonly asAllAbstractFungible: {3118 readonly id: Bytes;3119 } & Struct;3120 readonly isAllAbstractNonFungible: boolean;3121 readonly asAllAbstractNonFungible: {3122 readonly class: Bytes;3123 } & Struct;3124 readonly isAllConcreteFungible: boolean;3125 readonly asAllConcreteFungible: {3126 readonly id: XcmV0MultiLocation;3127 } & Struct;3128 readonly isAllConcreteNonFungible: boolean;3129 readonly asAllConcreteNonFungible: {3130 readonly class: XcmV0MultiLocation;3131 } & Struct;3132 readonly isAbstractFungible: boolean;3133 readonly asAbstractFungible: {3134 readonly id: Bytes;3135 readonly amount: Compact<u128>;3136 } & Struct;3137 readonly isAbstractNonFungible: boolean;3138 readonly asAbstractNonFungible: {3139 readonly class: Bytes;3140 readonly instance: XcmV1MultiassetAssetInstance;3141 } & Struct;3142 readonly isConcreteFungible: boolean;3143 readonly asConcreteFungible: {3144 readonly id: XcmV0MultiLocation;3145 readonly amount: Compact<u128>;3146 } & Struct;3147 readonly isConcreteNonFungible: boolean;3148 readonly asConcreteNonFungible: {3149 readonly class: XcmV0MultiLocation;3150 readonly instance: XcmV1MultiassetAssetInstance;3151 } & Struct;3152 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3153}31543155/** @name XcmV0MultiLocation */3156export interface XcmV0MultiLocation extends Enum {3157 readonly isNull: boolean;3158 readonly isX1: boolean;3159 readonly asX1: XcmV0Junction;3160 readonly isX2: boolean;3161 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3162 readonly isX3: boolean;3163 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3164 readonly isX4: boolean;3165 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3166 readonly isX5: boolean;3167 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3168 readonly isX6: boolean;3169 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3170 readonly isX7: boolean;3171 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3172 readonly isX8: boolean;3173 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3174 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3175}31763177/** @name XcmV0Order */3178export interface XcmV0Order extends Enum {3179 readonly isNull: boolean;3180 readonly isDepositAsset: boolean;3181 readonly asDepositAsset: {3182 readonly assets: Vec<XcmV0MultiAsset>;3183 readonly dest: XcmV0MultiLocation;3184 } & Struct;3185 readonly isDepositReserveAsset: boolean;3186 readonly asDepositReserveAsset: {3187 readonly assets: Vec<XcmV0MultiAsset>;3188 readonly dest: XcmV0MultiLocation;3189 readonly effects: Vec<XcmV0Order>;3190 } & Struct;3191 readonly isExchangeAsset: boolean;3192 readonly asExchangeAsset: {3193 readonly give: Vec<XcmV0MultiAsset>;3194 readonly receive: Vec<XcmV0MultiAsset>;3195 } & Struct;3196 readonly isInitiateReserveWithdraw: boolean;3197 readonly asInitiateReserveWithdraw: {3198 readonly assets: Vec<XcmV0MultiAsset>;3199 readonly reserve: XcmV0MultiLocation;3200 readonly effects: Vec<XcmV0Order>;3201 } & Struct;3202 readonly isInitiateTeleport: boolean;3203 readonly asInitiateTeleport: {3204 readonly assets: Vec<XcmV0MultiAsset>;3205 readonly dest: XcmV0MultiLocation;3206 readonly effects: Vec<XcmV0Order>;3207 } & Struct;3208 readonly isQueryHolding: boolean;3209 readonly asQueryHolding: {3210 readonly queryId: Compact<u64>;3211 readonly dest: XcmV0MultiLocation;3212 readonly assets: Vec<XcmV0MultiAsset>;3213 } & Struct;3214 readonly isBuyExecution: boolean;3215 readonly asBuyExecution: {3216 readonly fees: XcmV0MultiAsset;3217 readonly weight: u64;3218 readonly debt: u64;3219 readonly haltOnError: bool;3220 readonly xcm: Vec<XcmV0Xcm>;3221 } & Struct;3222 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3223}32243225/** @name XcmV0OriginKind */3226export interface XcmV0OriginKind extends Enum {3227 readonly isNative: boolean;3228 readonly isSovereignAccount: boolean;3229 readonly isSuperuser: boolean;3230 readonly isXcm: boolean;3231 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3232}32333234/** @name XcmV0Response */3235export interface XcmV0Response extends Enum {3236 readonly isAssets: boolean;3237 readonly asAssets: Vec<XcmV0MultiAsset>;3238 readonly type: 'Assets';3239}32403241/** @name XcmV0Xcm */3242export interface XcmV0Xcm extends Enum {3243 readonly isWithdrawAsset: boolean;3244 readonly asWithdrawAsset: {3245 readonly assets: Vec<XcmV0MultiAsset>;3246 readonly effects: Vec<XcmV0Order>;3247 } & Struct;3248 readonly isReserveAssetDeposit: boolean;3249 readonly asReserveAssetDeposit: {3250 readonly assets: Vec<XcmV0MultiAsset>;3251 readonly effects: Vec<XcmV0Order>;3252 } & Struct;3253 readonly isTeleportAsset: boolean;3254 readonly asTeleportAsset: {3255 readonly assets: Vec<XcmV0MultiAsset>;3256 readonly effects: Vec<XcmV0Order>;3257 } & Struct;3258 readonly isQueryResponse: boolean;3259 readonly asQueryResponse: {3260 readonly queryId: Compact<u64>;3261 readonly response: XcmV0Response;3262 } & Struct;3263 readonly isTransferAsset: boolean;3264 readonly asTransferAsset: {3265 readonly assets: Vec<XcmV0MultiAsset>;3266 readonly dest: XcmV0MultiLocation;3267 } & Struct;3268 readonly isTransferReserveAsset: boolean;3269 readonly asTransferReserveAsset: {3270 readonly assets: Vec<XcmV0MultiAsset>;3271 readonly dest: XcmV0MultiLocation;3272 readonly effects: Vec<XcmV0Order>;3273 } & Struct;3274 readonly isTransact: boolean;3275 readonly asTransact: {3276 readonly originType: XcmV0OriginKind;3277 readonly requireWeightAtMost: u64;3278 readonly call: XcmDoubleEncoded;3279 } & Struct;3280 readonly isHrmpNewChannelOpenRequest: boolean;3281 readonly asHrmpNewChannelOpenRequest: {3282 readonly sender: Compact<u32>;3283 readonly maxMessageSize: Compact<u32>;3284 readonly maxCapacity: Compact<u32>;3285 } & Struct;3286 readonly isHrmpChannelAccepted: boolean;3287 readonly asHrmpChannelAccepted: {3288 readonly recipient: Compact<u32>;3289 } & Struct;3290 readonly isHrmpChannelClosing: boolean;3291 readonly asHrmpChannelClosing: {3292 readonly initiator: Compact<u32>;3293 readonly sender: Compact<u32>;3294 readonly recipient: Compact<u32>;3295 } & Struct;3296 readonly isRelayedFrom: boolean;3297 readonly asRelayedFrom: {3298 readonly who: XcmV0MultiLocation;3299 readonly message: XcmV0Xcm;3300 } & Struct;3301 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3302}33033304/** @name XcmV1Junction */3305export interface XcmV1Junction extends Enum {3306 readonly isParachain: boolean;3307 readonly asParachain: Compact<u32>;3308 readonly isAccountId32: boolean;3309 readonly asAccountId32: {3310 readonly network: XcmV0JunctionNetworkId;3311 readonly id: U8aFixed;3312 } & Struct;3313 readonly isAccountIndex64: boolean;3314 readonly asAccountIndex64: {3315 readonly network: XcmV0JunctionNetworkId;3316 readonly index: Compact<u64>;3317 } & Struct;3318 readonly isAccountKey20: boolean;3319 readonly asAccountKey20: {3320 readonly network: XcmV0JunctionNetworkId;3321 readonly key: U8aFixed;3322 } & Struct;3323 readonly isPalletInstance: boolean;3324 readonly asPalletInstance: u8;3325 readonly isGeneralIndex: boolean;3326 readonly asGeneralIndex: Compact<u128>;3327 readonly isGeneralKey: boolean;3328 readonly asGeneralKey: Bytes;3329 readonly isOnlyChild: boolean;3330 readonly isPlurality: boolean;3331 readonly asPlurality: {3332 readonly id: XcmV0JunctionBodyId;3333 readonly part: XcmV0JunctionBodyPart;3334 } & Struct;3335 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3336}33373338/** @name XcmV1MultiAsset */3339export interface XcmV1MultiAsset extends Struct {3340 readonly id: XcmV1MultiassetAssetId;3341 readonly fun: XcmV1MultiassetFungibility;3342}33433344/** @name XcmV1MultiassetAssetId */3345export interface XcmV1MultiassetAssetId extends Enum {3346 readonly isConcrete: boolean;3347 readonly asConcrete: XcmV1MultiLocation;3348 readonly isAbstract: boolean;3349 readonly asAbstract: Bytes;3350 readonly type: 'Concrete' | 'Abstract';3351}33523353/** @name XcmV1MultiassetAssetInstance */3354export interface XcmV1MultiassetAssetInstance extends Enum {3355 readonly isUndefined: boolean;3356 readonly isIndex: boolean;3357 readonly asIndex: Compact<u128>;3358 readonly isArray4: boolean;3359 readonly asArray4: U8aFixed;3360 readonly isArray8: boolean;3361 readonly asArray8: U8aFixed;3362 readonly isArray16: boolean;3363 readonly asArray16: U8aFixed;3364 readonly isArray32: boolean;3365 readonly asArray32: U8aFixed;3366 readonly isBlob: boolean;3367 readonly asBlob: Bytes;3368 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3369}33703371/** @name XcmV1MultiassetFungibility */3372export interface XcmV1MultiassetFungibility extends Enum {3373 readonly isFungible: boolean;3374 readonly asFungible: Compact<u128>;3375 readonly isNonFungible: boolean;3376 readonly asNonFungible: XcmV1MultiassetAssetInstance;3377 readonly type: 'Fungible' | 'NonFungible';3378}33793380/** @name XcmV1MultiassetMultiAssetFilter */3381export interface XcmV1MultiassetMultiAssetFilter extends Enum {3382 readonly isDefinite: boolean;3383 readonly asDefinite: XcmV1MultiassetMultiAssets;3384 readonly isWild: boolean;3385 readonly asWild: XcmV1MultiassetWildMultiAsset;3386 readonly type: 'Definite' | 'Wild';3387}33883389/** @name XcmV1MultiassetMultiAssets */3390export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}33913392/** @name XcmV1MultiassetWildFungibility */3393export interface XcmV1MultiassetWildFungibility extends Enum {3394 readonly isFungible: boolean;3395 readonly isNonFungible: boolean;3396 readonly type: 'Fungible' | 'NonFungible';3397}33983399/** @name XcmV1MultiassetWildMultiAsset */3400export interface XcmV1MultiassetWildMultiAsset extends Enum {3401 readonly isAll: boolean;3402 readonly isAllOf: boolean;3403 readonly asAllOf: {3404 readonly id: XcmV1MultiassetAssetId;3405 readonly fun: XcmV1MultiassetWildFungibility;3406 } & Struct;3407 readonly type: 'All' | 'AllOf';3408}34093410/** @name XcmV1MultiLocation */3411export interface XcmV1MultiLocation extends Struct {3412 readonly parents: u8;3413 readonly interior: XcmV1MultilocationJunctions;3414}34153416/** @name XcmV1MultilocationJunctions */3417export interface XcmV1MultilocationJunctions extends Enum {3418 readonly isHere: boolean;3419 readonly isX1: boolean;3420 readonly asX1: XcmV1Junction;3421 readonly isX2: boolean;3422 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3423 readonly isX3: boolean;3424 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3425 readonly isX4: boolean;3426 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3427 readonly isX5: boolean;3428 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3429 readonly isX6: boolean;3430 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3431 readonly isX7: boolean;3432 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3433 readonly isX8: boolean;3434 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3435 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3436}34373438/** @name XcmV1Order */3439export interface XcmV1Order extends Enum {3440 readonly isNoop: boolean;3441 readonly isDepositAsset: boolean;3442 readonly asDepositAsset: {3443 readonly assets: XcmV1MultiassetMultiAssetFilter;3444 readonly maxAssets: u32;3445 readonly beneficiary: XcmV1MultiLocation;3446 } & Struct;3447 readonly isDepositReserveAsset: boolean;3448 readonly asDepositReserveAsset: {3449 readonly assets: XcmV1MultiassetMultiAssetFilter;3450 readonly maxAssets: u32;3451 readonly dest: XcmV1MultiLocation;3452 readonly effects: Vec<XcmV1Order>;3453 } & Struct;3454 readonly isExchangeAsset: boolean;3455 readonly asExchangeAsset: {3456 readonly give: XcmV1MultiassetMultiAssetFilter;3457 readonly receive: XcmV1MultiassetMultiAssets;3458 } & Struct;3459 readonly isInitiateReserveWithdraw: boolean;3460 readonly asInitiateReserveWithdraw: {3461 readonly assets: XcmV1MultiassetMultiAssetFilter;3462 readonly reserve: XcmV1MultiLocation;3463 readonly effects: Vec<XcmV1Order>;3464 } & Struct;3465 readonly isInitiateTeleport: boolean;3466 readonly asInitiateTeleport: {3467 readonly assets: XcmV1MultiassetMultiAssetFilter;3468 readonly dest: XcmV1MultiLocation;3469 readonly effects: Vec<XcmV1Order>;3470 } & Struct;3471 readonly isQueryHolding: boolean;3472 readonly asQueryHolding: {3473 readonly queryId: Compact<u64>;3474 readonly dest: XcmV1MultiLocation;3475 readonly assets: XcmV1MultiassetMultiAssetFilter;3476 } & Struct;3477 readonly isBuyExecution: boolean;3478 readonly asBuyExecution: {3479 readonly fees: XcmV1MultiAsset;3480 readonly weight: u64;3481 readonly debt: u64;3482 readonly haltOnError: bool;3483 readonly instructions: Vec<XcmV1Xcm>;3484 } & Struct;3485 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3486}34873488/** @name XcmV1Response */3489export interface XcmV1Response extends Enum {3490 readonly isAssets: boolean;3491 readonly asAssets: XcmV1MultiassetMultiAssets;3492 readonly isVersion: boolean;3493 readonly asVersion: u32;3494 readonly type: 'Assets' | 'Version';3495}34963497/** @name XcmV1Xcm */3498export interface XcmV1Xcm extends Enum {3499 readonly isWithdrawAsset: boolean;3500 readonly asWithdrawAsset: {3501 readonly assets: XcmV1MultiassetMultiAssets;3502 readonly effects: Vec<XcmV1Order>;3503 } & Struct;3504 readonly isReserveAssetDeposited: boolean;3505 readonly asReserveAssetDeposited: {3506 readonly assets: XcmV1MultiassetMultiAssets;3507 readonly effects: Vec<XcmV1Order>;3508 } & Struct;3509 readonly isReceiveTeleportedAsset: boolean;3510 readonly asReceiveTeleportedAsset: {3511 readonly assets: XcmV1MultiassetMultiAssets;3512 readonly effects: Vec<XcmV1Order>;3513 } & Struct;3514 readonly isQueryResponse: boolean;3515 readonly asQueryResponse: {3516 readonly queryId: Compact<u64>;3517 readonly response: XcmV1Response;3518 } & Struct;3519 readonly isTransferAsset: boolean;3520 readonly asTransferAsset: {3521 readonly assets: XcmV1MultiassetMultiAssets;3522 readonly beneficiary: XcmV1MultiLocation;3523 } & Struct;3524 readonly isTransferReserveAsset: boolean;3525 readonly asTransferReserveAsset: {3526 readonly assets: XcmV1MultiassetMultiAssets;3527 readonly dest: XcmV1MultiLocation;3528 readonly effects: Vec<XcmV1Order>;3529 } & Struct;3530 readonly isTransact: boolean;3531 readonly asTransact: {3532 readonly originType: XcmV0OriginKind;3533 readonly requireWeightAtMost: u64;3534 readonly call: XcmDoubleEncoded;3535 } & Struct;3536 readonly isHrmpNewChannelOpenRequest: boolean;3537 readonly asHrmpNewChannelOpenRequest: {3538 readonly sender: Compact<u32>;3539 readonly maxMessageSize: Compact<u32>;3540 readonly maxCapacity: Compact<u32>;3541 } & Struct;3542 readonly isHrmpChannelAccepted: boolean;3543 readonly asHrmpChannelAccepted: {3544 readonly recipient: Compact<u32>;3545 } & Struct;3546 readonly isHrmpChannelClosing: boolean;3547 readonly asHrmpChannelClosing: {3548 readonly initiator: Compact<u32>;3549 readonly sender: Compact<u32>;3550 readonly recipient: Compact<u32>;3551 } & Struct;3552 readonly isRelayedFrom: boolean;3553 readonly asRelayedFrom: {3554 readonly who: XcmV1MultilocationJunctions;3555 readonly message: XcmV1Xcm;3556 } & Struct;3557 readonly isSubscribeVersion: boolean;3558 readonly asSubscribeVersion: {3559 readonly queryId: Compact<u64>;3560 readonly maxResponseWeight: Compact<u64>;3561 } & Struct;3562 readonly isUnsubscribeVersion: boolean;3563 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3564}35653566/** @name XcmV2Instruction */3567export interface XcmV2Instruction extends Enum {3568 readonly isWithdrawAsset: boolean;3569 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3570 readonly isReserveAssetDeposited: boolean;3571 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3572 readonly isReceiveTeleportedAsset: boolean;3573 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3574 readonly isQueryResponse: boolean;3575 readonly asQueryResponse: {3576 readonly queryId: Compact<u64>;3577 readonly response: XcmV2Response;3578 readonly maxWeight: Compact<u64>;3579 } & Struct;3580 readonly isTransferAsset: boolean;3581 readonly asTransferAsset: {3582 readonly assets: XcmV1MultiassetMultiAssets;3583 readonly beneficiary: XcmV1MultiLocation;3584 } & Struct;3585 readonly isTransferReserveAsset: boolean;3586 readonly asTransferReserveAsset: {3587 readonly assets: XcmV1MultiassetMultiAssets;3588 readonly dest: XcmV1MultiLocation;3589 readonly xcm: XcmV2Xcm;3590 } & Struct;3591 readonly isTransact: boolean;3592 readonly asTransact: {3593 readonly originType: XcmV0OriginKind;3594 readonly requireWeightAtMost: Compact<u64>;3595 readonly call: XcmDoubleEncoded;3596 } & Struct;3597 readonly isHrmpNewChannelOpenRequest: boolean;3598 readonly asHrmpNewChannelOpenRequest: {3599 readonly sender: Compact<u32>;3600 readonly maxMessageSize: Compact<u32>;3601 readonly maxCapacity: Compact<u32>;3602 } & Struct;3603 readonly isHrmpChannelAccepted: boolean;3604 readonly asHrmpChannelAccepted: {3605 readonly recipient: Compact<u32>;3606 } & Struct;3607 readonly isHrmpChannelClosing: boolean;3608 readonly asHrmpChannelClosing: {3609 readonly initiator: Compact<u32>;3610 readonly sender: Compact<u32>;3611 readonly recipient: Compact<u32>;3612 } & Struct;3613 readonly isClearOrigin: boolean;3614 readonly isDescendOrigin: boolean;3615 readonly asDescendOrigin: XcmV1MultilocationJunctions;3616 readonly isReportError: boolean;3617 readonly asReportError: {3618 readonly queryId: Compact<u64>;3619 readonly dest: XcmV1MultiLocation;3620 readonly maxResponseWeight: Compact<u64>;3621 } & Struct;3622 readonly isDepositAsset: boolean;3623 readonly asDepositAsset: {3624 readonly assets: XcmV1MultiassetMultiAssetFilter;3625 readonly maxAssets: Compact<u32>;3626 readonly beneficiary: XcmV1MultiLocation;3627 } & Struct;3628 readonly isDepositReserveAsset: boolean;3629 readonly asDepositReserveAsset: {3630 readonly assets: XcmV1MultiassetMultiAssetFilter;3631 readonly maxAssets: Compact<u32>;3632 readonly dest: XcmV1MultiLocation;3633 readonly xcm: XcmV2Xcm;3634 } & Struct;3635 readonly isExchangeAsset: boolean;3636 readonly asExchangeAsset: {3637 readonly give: XcmV1MultiassetMultiAssetFilter;3638 readonly receive: XcmV1MultiassetMultiAssets;3639 } & Struct;3640 readonly isInitiateReserveWithdraw: boolean;3641 readonly asInitiateReserveWithdraw: {3642 readonly assets: XcmV1MultiassetMultiAssetFilter;3643 readonly reserve: XcmV1MultiLocation;3644 readonly xcm: XcmV2Xcm;3645 } & Struct;3646 readonly isInitiateTeleport: boolean;3647 readonly asInitiateTeleport: {3648 readonly assets: XcmV1MultiassetMultiAssetFilter;3649 readonly dest: XcmV1MultiLocation;3650 readonly xcm: XcmV2Xcm;3651 } & Struct;3652 readonly isQueryHolding: boolean;3653 readonly asQueryHolding: {3654 readonly queryId: Compact<u64>;3655 readonly dest: XcmV1MultiLocation;3656 readonly assets: XcmV1MultiassetMultiAssetFilter;3657 readonly maxResponseWeight: Compact<u64>;3658 } & Struct;3659 readonly isBuyExecution: boolean;3660 readonly asBuyExecution: {3661 readonly fees: XcmV1MultiAsset;3662 readonly weightLimit: XcmV2WeightLimit;3663 } & Struct;3664 readonly isRefundSurplus: boolean;3665 readonly isSetErrorHandler: boolean;3666 readonly asSetErrorHandler: XcmV2Xcm;3667 readonly isSetAppendix: boolean;3668 readonly asSetAppendix: XcmV2Xcm;3669 readonly isClearError: boolean;3670 readonly isClaimAsset: boolean;3671 readonly asClaimAsset: {3672 readonly assets: XcmV1MultiassetMultiAssets;3673 readonly ticket: XcmV1MultiLocation;3674 } & Struct;3675 readonly isTrap: boolean;3676 readonly asTrap: Compact<u64>;3677 readonly isSubscribeVersion: boolean;3678 readonly asSubscribeVersion: {3679 readonly queryId: Compact<u64>;3680 readonly maxResponseWeight: Compact<u64>;3681 } & Struct;3682 readonly isUnsubscribeVersion: boolean;3683 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';3684}36853686/** @name XcmV2Response */3687export interface XcmV2Response extends Enum {3688 readonly isNull: boolean;3689 readonly isAssets: boolean;3690 readonly asAssets: XcmV1MultiassetMultiAssets;3691 readonly isExecutionResult: boolean;3692 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3693 readonly isVersion: boolean;3694 readonly asVersion: u32;3695 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3696}36973698/** @name XcmV2TraitsError */3699export interface XcmV2TraitsError extends Enum {3700 readonly isOverflow: boolean;3701 readonly isUnimplemented: boolean;3702 readonly isUntrustedReserveLocation: boolean;3703 readonly isUntrustedTeleportLocation: boolean;3704 readonly isMultiLocationFull: boolean;3705 readonly isMultiLocationNotInvertible: boolean;3706 readonly isBadOrigin: boolean;3707 readonly isInvalidLocation: boolean;3708 readonly isAssetNotFound: boolean;3709 readonly isFailedToTransactAsset: boolean;3710 readonly isNotWithdrawable: boolean;3711 readonly isLocationCannotHold: boolean;3712 readonly isExceedsMaxMessageSize: boolean;3713 readonly isDestinationUnsupported: boolean;3714 readonly isTransport: boolean;3715 readonly isUnroutable: boolean;3716 readonly isUnknownClaim: boolean;3717 readonly isFailedToDecode: boolean;3718 readonly isMaxWeightInvalid: boolean;3719 readonly isNotHoldingFees: boolean;3720 readonly isTooExpensive: boolean;3721 readonly isTrap: boolean;3722 readonly asTrap: u64;3723 readonly isUnhandledXcmVersion: boolean;3724 readonly isWeightLimitReached: boolean;3725 readonly asWeightLimitReached: u64;3726 readonly isBarrier: boolean;3727 readonly isWeightNotComputable: boolean;3728 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';3729}37303731/** @name XcmV2TraitsOutcome */3732export interface XcmV2TraitsOutcome extends Enum {3733 readonly isComplete: boolean;3734 readonly asComplete: u64;3735 readonly isIncomplete: boolean;3736 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3737 readonly isError: boolean;3738 readonly asError: XcmV2TraitsError;3739 readonly type: 'Complete' | 'Incomplete' | 'Error';3740}37413742/** @name XcmV2WeightLimit */3743export interface XcmV2WeightLimit extends Enum {3744 readonly isUnlimited: boolean;3745 readonly isLimited: boolean;3746 readonly asLimited: Compact<u64>;3747 readonly type: 'Unlimited' | 'Limited';3748}37493750/** @name XcmV2Xcm */3751export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}37523753/** @name XcmVersionedMultiAsset */3754export interface XcmVersionedMultiAsset extends Enum {3755 readonly isV0: boolean;3756 readonly asV0: XcmV0MultiAsset;3757 readonly isV1: boolean;3758 readonly asV1: XcmV1MultiAsset;3759 readonly type: 'V0' | 'V1';3760}37613762/** @name XcmVersionedMultiAssets */3763export interface XcmVersionedMultiAssets extends Enum {3764 readonly isV0: boolean;3765 readonly asV0: Vec<XcmV0MultiAsset>;3766 readonly isV1: boolean;3767 readonly asV1: XcmV1MultiassetMultiAssets;3768 readonly type: 'V0' | 'V1';3769}37703771/** @name XcmVersionedMultiLocation */3772export interface XcmVersionedMultiLocation extends Enum {3773 readonly isV0: boolean;3774 readonly asV0: XcmV0MultiLocation;3775 readonly isV1: boolean;3776 readonly asV1: XcmV1MultiLocation;3777 readonly type: 'V0' | 'V1';3778}37793780/** @name XcmVersionedXcm */3781export interface XcmVersionedXcm extends Enum {3782 readonly isV0: boolean;3783 readonly asV0: XcmV0Xcm;3784 readonly isV1: boolean;3785 readonly asV1: XcmV1Xcm;3786 readonly isV2: boolean;3787 readonly asV2: XcmV2Xcm;3788 readonly type: 'V0' | 'V1' | 'V2';3789}37903791export type PHANTOM_DEFAULT = 'default';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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -3515,12 +3515,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleItemData (417) */
- interface PalletRefungibleItemData extends Struct {
- readonly constData: Bytes;
- }
-
- /** @name PalletRefungibleError (422) */
+ /** @name PalletRefungibleError (420) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3530,19 +3525,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (423) */
+ /** @name PalletNonfungibleItemData (421) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (425) */
+ /** @name UpDataStructsPropertyScope (423) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (427) */
+ /** @name PalletNonfungibleError (426) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3550,7 +3545,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (428) */
+ /** @name PalletStructureError (427) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3559,7 +3554,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (429) */
+ /** @name PalletRmrkCoreError (428) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3583,7 +3578,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (431) */
+ /** @name PalletRmrkEquipError (430) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3595,7 +3590,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (437) */
+ /** @name PalletAppPromotionError (436) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3606,7 +3601,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (438) */
+ /** @name PalletForeignAssetsModuleError (437) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3615,7 +3610,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (440) */
+ /** @name PalletEvmError (439) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3631,7 +3626,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (443) */
+ /** @name FpRpcTransactionStatus (442) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3642,10 +3637,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (445) */
+ /** @name EthbloomBloom (444) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (447) */
+ /** @name EthereumReceiptReceiptV3 (446) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3656,7 +3651,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (448) */
+ /** @name EthereumReceiptEip658ReceiptData (447) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3664,14 +3659,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (449) */
+ /** @name EthereumBlock (448) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (450) */
+ /** @name EthereumHeader (449) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3690,24 +3685,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (451) */
+ /** @name EthereumTypesHashH64 (450) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (456) */
+ /** @name PalletEthereumError (455) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (457) */
+ /** @name PalletEvmCoderSubstrateError (456) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (458) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (457) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3717,7 +3712,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (459) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (458) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3725,7 +3720,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (465) */
+ /** @name PalletEvmContractHelpersError (464) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3733,7 +3728,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (466) */
+ /** @name PalletEvmMigrationError (465) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3741,17 +3736,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (467) */
+ /** @name PalletMaintenanceError (466) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (468) */
+ /** @name PalletTestUtilsError (467) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (470) */
+ /** @name SpRuntimeMultiSignature (469) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3762,40 +3757,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (471) */
+ /** @name SpCoreEd25519Signature (470) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (473) */
+ /** @name SpCoreSr25519Signature (472) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (474) */
+ /** @name SpCoreEcdsaSignature (473) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (477) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (476) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (478) */
+ /** @name FrameSystemExtensionsCheckTxVersion (477) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (479) */
+ /** @name FrameSystemExtensionsCheckGenesis (478) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (482) */
+ /** @name FrameSystemExtensionsCheckNonce (481) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (483) */
+ /** @name FrameSystemExtensionsCheckWeight (482) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (484) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (483) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (485) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (484) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (486) */
+ /** @name OpalRuntimeRuntime (485) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (487) */
+ /** @name PalletEthereumFakeTransactionFinalizer (486) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -17,49 +17,50 @@
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.20.0":
+"@babel/compat-data@^7.20.5":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
-"@babel/core@^7.20.2":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
- integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
+"@babel/core@^7.20.5":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f"
+ integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.5"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-module-transforms" "^7.20.2"
- "@babel/helpers" "^7.20.5"
- "@babel/parser" "^7.20.5"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/generator" "^7.20.7"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-module-transforms" "^7.20.7"
+ "@babel/helpers" "^7.20.7"
+ "@babel/parser" "^7.20.7"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/generator@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"
- integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==
+"@babel/generator@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
+ integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
dependencies:
- "@babel/types" "^7.20.5"
+ "@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/helper-compilation-targets@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
- integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
+"@babel/helper-compilation-targets@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
+ integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
dependencies:
- "@babel/compat-data" "^7.20.0"
+ "@babel/compat-data" "^7.20.5"
"@babel/helper-validator-option" "^7.18.6"
browserslist "^4.21.3"
+ lru-cache "^5.1.1"
semver "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
@@ -89,19 +90,19 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-module-transforms@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
- integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
+"@babel/helper-module-transforms@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43"
+ integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/helper-simple-access@^7.20.2":
version "7.20.2"
@@ -132,14 +133,14 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-"@babel/helpers@^7.20.5":
- version "7.20.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763"
- integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==
+"@babel/helpers@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
+ integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
dependencies:
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/highlight@^7.18.6":
version "7.18.6"
@@ -150,10 +151,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
- integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
+"@babel/parser@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
+ integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
"@babel/register@^7.18.9":
version "7.18.9"
@@ -166,42 +167,42 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":
- version "7.20.6"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
- integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
+"@babel/runtime@^7.20.6":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
+ integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/template@^7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
- integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
+"@babel/template@^7.18.10", "@babel/template@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
+ integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.18.10"
- "@babel/types" "^7.18.10"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
-"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
- integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==
+"@babel/traverse@^7.20.7":
+ version "7.20.8"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08"
+ integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.5"
+ "@babel/generator" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
- integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
+"@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
+ integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
@@ -214,15 +215,15 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
-"@eslint/eslintrc@^1.3.3":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"
- integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
+"@eslint/eslintrc@^1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.0.tgz#8ec64e0df3e7a1971ee1ff5158da87389f167a63"
+ integrity sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
espree "^9.4.0"
- globals "^13.15.0"
+ globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
@@ -430,7 +431,7 @@
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
-"@humanwhocodes/config-array@^0.11.6":
+"@humanwhocodes/config-array@^0.11.8":
version "0.11.8"
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
@@ -528,70 +529,70 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@polkadot/api-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"
- integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==
+"@polkadot/api-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.10.2.tgz#9d1875bffe9d8677a4f03d53ca6df3d0d7e7f53d"
+ integrity sha512-B0xC7yvPAZqPZpKJzrlFSDfHBawCJISwdV4/nBSs1/AaqQIXVu2ZqPUaSdq7eisZL/EZziptK0SpCtDcb6LpAg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/api-base@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"
- integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==
+"@polkadot/api-base@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.10.2.tgz#39248e966b468ecff7c0ed00bb61dfca14ca99d4"
+ integrity sha512-M/Yushqk6eEAfbkF90vy3GCVg+a2uVeSXyTBKbmkjZtcE7x39GiXs7LOJuYkIim51hlwcvVSeInX8HufwnTUMw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/util" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/api-derive@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"
- integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==
+"@polkadot/api-derive@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.10.2.tgz#d6b0eb558ee057416b87a304ca2790b19afa4be6"
+ integrity sha512-Ut1aqbGvqAkxXq7M4HgJ7BVhUyfbQigqt5LISmnjWdGkhroBxtIJ24saOUPYNr0O/c3jocJpoWqGK2CuucL81w==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api" "9.9.4"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api" "9.10.2"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/api@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"
- integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==
+"@polkadot/api@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.10.2.tgz#9a3132f0c8a5de6c2b7d56f9d9e9c9c5ed2bc77e"
+ integrity sha512-5leF7rxwRkkd/g11tGPho/CcbInVX7ZiuyMsLMTwn+2PDX+Ggv/gmxUboa34eyeLp8/AMui5YbqRD4QExLTxqw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/api-derive" "9.9.4"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/types-known" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/api-derive" "9.10.2"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/types-known" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
eventemitter3 "^4.0.7"
- rxjs "^7.5.7"
+ rxjs "^7.6.0"
-"@polkadot/keyring@^10.1.14":
+"@polkadot/keyring@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"
integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==
@@ -600,7 +601,7 @@
"@polkadot/util" "10.2.1"
"@polkadot/util-crypto" "10.2.1"
-"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":
+"@polkadot/networks@10.2.1", "@polkadot/networks@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"
integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==
@@ -609,135 +610,135 @@
"@polkadot/util" "10.2.1"
"@substrate/ss58-registry" "^1.35.0"
-"@polkadot/rpc-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"
- integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==
+"@polkadot/rpc-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.10.2.tgz#5650aa118d39d0c4b17425a9b327354f7bbf99e5"
+ integrity sha512-LrGzpSdkqXltZDwuBeBBMev68eVVN1GpgV4auEAytgDYYcjI9XDaeLZm7vUVx9aBO8OYz9hQZeHrWrab/FaKmg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/rpc-core@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"
- integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==
+"@polkadot/rpc-core@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.10.2.tgz#72362d26012c53397c1079912d5d4aacf910a650"
+ integrity sha512-qr+q2R3YeRBC++bYxK292jb6t9/KXeLoRheW5z7LbYyre3J60vZPN7WxPxbwm+iCGk1VtvH80Dv1OSCoVC+7hA==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/util" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/rpc-provider@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"
- integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==
+"@polkadot/rpc-provider@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.10.2.tgz#83c8e114b3aad75eedaf98a374bc77a2b8cc1dbc"
+ integrity sha512-mm8l1uZ7DOrsMUN+DELS8apyZVVNIy/SrqEBjHZeZ0AA9noAEbH4ubxR375lG/T32+T97mFudv1rxRnEwXqByg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-support" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- "@polkadot/x-fetch" "^10.1.14"
- "@polkadot/x-global" "^10.1.14"
- "@polkadot/x-ws" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-support" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ "@polkadot/x-fetch" "^10.2.1"
+ "@polkadot/x-global" "^10.2.1"
+ "@polkadot/x-ws" "^10.2.1"
"@substrate/connect" "0.7.17"
eventemitter3 "^4.0.7"
mock-socket "^9.1.5"
nock "^13.2.9"
-"@polkadot/typegen@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"
- integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==
+"@polkadot/typegen@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.10.2.tgz#3a206feaa664afe2cdcc42707b4fa8fde49ce0cc"
+ integrity sha512-AyO1f/tx173w6pZrQINPu12sCIH9uvn+yRL2sJuCBS5+aqlnsR1JscBk6HIlR6t6Jctx1QCsHycfvSvin3IVoA==
dependencies:
- "@babel/core" "^7.20.2"
+ "@babel/core" "^7.20.5"
"@babel/register" "^7.18.9"
- "@babel/runtime" "^7.20.1"
- "@polkadot/api" "9.9.4"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/types-support" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- "@polkadot/x-ws" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api" "9.10.2"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/types-support" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ "@polkadot/x-ws" "^10.2.1"
handlebars "^4.7.7"
websocket "^1.0.34"
yargs "^17.6.2"
-"@polkadot/types-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"
- integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==
+"@polkadot/types-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.10.2.tgz#2dce4ea8a2879d248339ad377ff5479fae884cd5"
+ integrity sha512-z0M3bAwGi0pGS3ieXyiJZLzDEc5yBvlqaZvaAbf2r+vto83SylhbjjG1wX8ARI5hqptBUWqS9BssUFH0q6l4sg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-codec@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"
- integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==
+"@polkadot/types-codec@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.10.2.tgz#7f0e33c33292bdfcd959945b2427742b941df712"
+ integrity sha512-zQOPzxq2N6PUP6Gkxc3OVT7Ub8AD3qC0PBeCnc/fhKjgX3CoKQK4TC6tDL8pEaaIVFh4LOHlHvhWJhqaUNe95A==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/util" "^10.1.14"
- "@polkadot/x-bigint" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/x-bigint" "^10.2.1"
-"@polkadot/types-create@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"
- integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==
+"@polkadot/types-create@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.10.2.tgz#eb7dbf5f50eb4d01a965347d324de26a679a25e3"
+ integrity sha512-U6wDaJe8tZmt0WibxWeDFYVKfvOYa2su8xOwg8HTRraijF6k0/OMugb15bpjEkG6RZ1qg1L7oKrKghugVbRDGQ==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-known@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"
- integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==
+"@polkadot/types-known@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.10.2.tgz#d37d984eed6aa17b33603aca9f9d006d6eb468cb"
+ integrity sha512-Kwxoo+xvAAE1w0jZdGqmNoEJHdfJzncO1xrBJ7WjeCuEFoDsWmjP63u/o8VaC1ZNnfrhjRK0vyvquslJ6NQOUA==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/networks" "^10.1.14"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/networks" "^10.2.1"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-support@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"
- integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==
+"@polkadot/types-support@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.10.2.tgz#eff0ef399a3373421a543059f62ca96b85645f0b"
+ integrity sha512-RQSCNNBH8+mzXbErB/LUDU9oMQScv0GZ4UmM2MPDPKBcqXNCdJ4dK+ajNfVbgGTUucYUEebpp2m5Az1usjE4Ew==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"
- integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==
+"@polkadot/types@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.10.2.tgz#1f6647445b055856bdbd949106f698c89a125386"
+ integrity sha512-B5Bg/IaAMJEwdWzGp3pil5WBukr5fm9x9NFIMuoCS9TyIqpm9rSHrz2n/408R3B4rwqqtx8RQAxiIETFI+m6Rw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":
+"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"
integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==
@@ -754,7 +755,7 @@
ed2curve "^0.3.0"
tweetnacl "^1.0.3"
-"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":
+"@polkadot/util@10.2.1", "@polkadot/util@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"
integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==
@@ -818,7 +819,7 @@
dependencies:
"@babel/runtime" "^7.20.6"
-"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":
+"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"
integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==
@@ -826,7 +827,7 @@
"@babel/runtime" "^7.20.6"
"@polkadot/x-global" "10.2.1"
-"@polkadot/x-fetch@^10.1.14":
+"@polkadot/x-fetch@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"
integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==
@@ -836,7 +837,7 @@
"@types/node-fetch" "^2.6.2"
node-fetch "^3.3.0"
-"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":
+"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"
integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==
@@ -867,7 +868,7 @@
"@babel/runtime" "^7.20.6"
"@polkadot/x-global" "10.2.1"
-"@polkadot/x-ws@^10.1.14":
+"@polkadot/x-ws@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"
integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==
@@ -1022,9 +1023,9 @@
form-data "^3.0.0"
"@types/node@*", "@types/node@^18.11.2":
- version "18.11.15"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.15.tgz#de0e1fbd2b22b962d45971431e2ae696643d3f5d"
- integrity sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==
+ version "18.11.17"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.17.tgz#5c009e1d9c38f4a2a9d45c0b0c493fe6cdb4bcb5"
+ integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==
"@types/node@^12.12.6":
version "12.20.55"
@@ -1555,9 +1556,9 @@
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001400:
- version "1.0.30001439"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
- integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
+ version "1.0.30001441"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
+ integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
caseless@~0.12.0:
version "0.12.0"
@@ -1917,7 +1918,7 @@
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
-decode-uri-component@^0.2.0:
+decode-uri-component@^0.2.0, decode-uri-component@^0.2.1:
version "0.2.2"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
@@ -2162,12 +2163,12 @@
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint@^8.25.0:
- version "8.29.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz#d74a88a20fb44d59c51851625bc4ee8d0ec43f87"
- integrity sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==
+ version "8.30.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.30.0.tgz#83a506125d089eef7c5b5910eeea824273a33f50"
+ integrity sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==
dependencies:
- "@eslint/eslintrc" "^1.3.3"
- "@humanwhocodes/config-array" "^0.11.6"
+ "@eslint/eslintrc" "^1.4.0"
+ "@humanwhocodes/config-array" "^0.11.8"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
@@ -2186,7 +2187,7 @@
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
- globals "^13.15.0"
+ globals "^13.19.0"
grapheme-splitter "^1.0.4"
ignore "^5.2.0"
import-fresh "^3.0.0"
@@ -2703,7 +2704,7 @@
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globals@^13.15.0:
+globals@^13.19.0:
version "13.19.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
@@ -2926,9 +2927,9 @@
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore@^5.2.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c"
- integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
import-fresh@^3.0.0, import-fresh@^3.2.1:
version "3.3.0"
@@ -3136,9 +3137,9 @@
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
json5@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
- integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab"
+ integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==
jsonfile@^4.0.0:
version "4.0.0"
@@ -3236,6 +3237,13 @@
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2"
integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ dependencies:
+ yallist "^3.0.2"
+
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -3572,9 +3580,9 @@
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
node-releases@^2.0.6:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
- integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
+ integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -4033,10 +4041,10 @@
dependencies:
queue-microtask "^1.2.2"
-rxjs@^7.5.7:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.6.0.tgz#361da5362b6ddaa691a2de0b4f2d32028f1eb5a2"
- integrity sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==
+rxjs@^7.6.0:
+ version "7.8.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
+ integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
dependencies:
tslib "^2.1.0"
@@ -4956,7 +4964,7 @@
resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577"
integrity sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==
-yallist@^3.0.0, yallist@^3.1.1:
+yallist@^3.0.0, yallist@^3.0.2, yallist@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==