git.delta.rocks / unique-network / refs/commits / 554134b0f679

difftreelog

Fix after rebase

Trubnikov Sergey2022-05-12parent: #fe6b71b.patch.diff
in: master

15 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -989,9 +989,9 @@
 
 [[package]]
 name = "camino"
-version = "1.0.9"
+version = "1.0.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "869119e97797867fd90f5e22af7d0bd274bd4635ebb9eb68c04f3f513ae6c412"
+checksum = "07fd178c5af4d59e83498ef15cf3f154e1a6f9d091270cb86283c65ef44e9ef0"
 dependencies = [
  "serde",
 ]
@@ -6099,6 +6099,29 @@
 ]
 
 [[package]]
+name = "pallet-evm-collection"
+version = "0.1.0"
+dependencies = [
+ "ethereum",
+ "evm-coder",
+ "fp-evm-mapping",
+ "frame-support",
+ "frame-system",
+ "log",
+ "pallet-common",
+ "pallet-evm",
+ "pallet-evm-coder-substrate",
+ "pallet-nonfungible",
+ "parity-scale-codec",
+ "scale-info",
+ "serde_json",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
+ "up-data-structs",
+]
+
+[[package]]
 name = "pallet-evm-contract-helpers"
 version = "0.1.0"
 dependencies = [
modifiedpallets/evm-collection/src/stubs/Collection.rawdiffbeforeafterboth

binary blob — no preview

modifiedpallets/evm-collection/src/stubs/Collection.soldiffbeforeafterboth
--- a/pallets/evm-collection/src/stubs/Collection.sol
+++ b/pallets/evm-collection/src/stubs/Collection.sol
@@ -56,13 +56,13 @@
 	}
 
 	// Selector: setOffchainSchema(address,string) 2c9d9d70
-	function setOffchainSchema(address collectionAddress, string memory shema)
+	function setOffchainSchema(address collectionAddress, string memory schema)
 		public
 		view
 	{
 		require(false, stub_error);
 		collectionAddress;
-		shema;
+		schema;
 		dummy;
 	}
 
modifiedpallets/evm-contract-helpers/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-contract-helpers/Cargo.toml
+++ b/pallets/evm-contract-helpers/Cargo.toml
@@ -28,7 +28,7 @@
 pallet-common = { default-features = false, path = '../../pallets/common' }
 pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }
 pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }
-up-data-structs = { default-features = false, path = '../../primitives/data-structs' }
+up-data-structs = { default-features = false, path = '../../primitives/data-structs', features = ['serde1'] }
 
 [dependencies.codec]
 default-features = false
modifiedprimitives/rpc/src/lib.rsdiffbeforeafterboth
--- a/primitives/rpc/src/lib.rs
+++ b/primitives/rpc/src/lib.rs
@@ -23,6 +23,7 @@
 use sp_std::vec::Vec;
 use codec::Decode;
 use sp_runtime::DispatchError;
+use sp_core::H160;
 
 type Result<T> = core::result::Result<T, DispatchError>;
 
@@ -71,6 +72,7 @@
 			token: TokenId,
 		) -> Result<u128>;
 
+		fn eth_contract_code(account: H160) -> Option<Vec<u8>>;
 		fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>>;
 		fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>>;
 		fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool>;
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -79,7 +79,7 @@
 };
 use smallvec::smallvec;
 use codec::{Encode, Decode};
-use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping};
+use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};
 use fp_rpc::TransactionStatus;
 use sp_runtime::{
 	traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf, Saturating},
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -84,7 +84,7 @@
 };
 use smallvec::smallvec;
 use codec::{Encode, Decode};
-use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping};
+use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};
 use fp_rpc::TransactionStatus;
 use sp_runtime::{
 	traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf, Saturating},
modifiedtests/src/eth/api/Collection.soldiffbeforeafterboth
--- a/tests/src/eth/api/Collection.sol
+++ b/tests/src/eth/api/Collection.sol
@@ -30,7 +30,7 @@
 	function confirmSponsorship(address collectionAddress) external view;
 
 	// Selector: setOffchainSchema(address,string) 2c9d9d70
-	function setOffchainSchema(address collectionAddress, string memory shema)
+	function setOffchainSchema(address collectionAddress, string memory schema)
 		external
 		view;
 
modifiedtests/src/eth/collectionAbi.jsondiffbeforeafterboth
--- a/tests/src/eth/collectionAbi.json
+++ b/tests/src/eth/collectionAbi.json
@@ -58,7 +58,7 @@
         "name": "collectionAddress",
         "type": "address"
       },
-      { "internalType": "string", "name": "shema", "type": "string" }
+      { "internalType": "string", "name": "schema", "type": "string" }
     ],
     "name": "setOffchainSchema",
     "outputs": [],
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -249,6 +249,16 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    evmCollection: {
+      /**
+       * This method is only executable by owner
+       **/
+      NoPermission: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     evmContractHelpers: {
       /**
        * This method is only executable by owner
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -13,7 +13,6 @@
 import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
 import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
 import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
-import type { BlockStats } from '@polkadot/types/interfaces/dev';
 import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
 import type { EthAccount, EthCallRequest, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
 import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
@@ -22,8 +21,8 @@
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
-import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
-import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
+import type { AccountId, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
+import type { ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
 import type { ApplyExtrinsicResult, ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo, SyncState } from '@polkadot/types/interfaces/system';
 import type { IExtrinsic, Observable } from '@polkadot/types/types';
 
@@ -156,12 +155,6 @@
        * Upload new code without instantiating a contract from it
        **/
       uploadCode: AugmentedRpc<(uploadRequest: CodeUploadRequest | { origin?: any; code?: any; storageDepositLimit?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<CodeUploadResult>>;
-    };
-    dev: {
-      /**
-       * Reexecute the specified `block_hash` and gather statistics while doing so
-       **/
-      getBlockStats: AugmentedRpc<(at: Hash | string | Uint8Array) => Observable<Option<BlockStats>>>;
     };
     engine: {
       /**
@@ -338,20 +331,6 @@
        * Uninstalls filter.
        **/
       uninstallFilter: AugmentedRpc<(index: U256 | AnyNumber | Uint8Array) => Observable<bool>>;
-    };
-    grandpa: {
-      /**
-       * Prove finality for the given block number, returning the Justification for the last block in the set.
-       **/
-      proveFinality: AugmentedRpc<(blockNumber: BlockNumber | AnyNumber | Uint8Array) => Observable<Option<EncodedFinalityProofs>>>;
-      /**
-       * Returns the state of the current best round state as well as the ongoing background rounds
-       **/
-      roundState: AugmentedRpc<() => Observable<ReportedRoundStates>>;
-      /**
-       * Subscribes to grandpa justifications
-       **/
-      subscribeJustifications: AugmentedRpc<() => Observable<JustificationNotification>>;
     };
     mmr: {
       /**
@@ -452,92 +431,6 @@
        * Retrieves the list of RPC methods that are exposed by the node
        **/
       methods: AugmentedRpc<() => Observable<RpcMethods>>;
-    };
-    state: {
-      /**
-       * Perform a call to a builtin on the chain
-       **/
-      call: AugmentedRpc<(method: Text | string, data: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Bytes>>;
-      /**
-       * Retrieves the keys with prefix of a specific child storage
-       **/
-      getChildKeys: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;
-      /**
-       * Returns proof of storage for child key entries at a specific block state.
-       **/
-      getChildReadProof: AugmentedRpc<(childStorageKey: PrefixedStorageKey | string | Uint8Array, keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: BlockHash | string | Uint8Array) => Observable<ReadProof>>;
-      /**
-       * Retrieves the child storage for a key
-       **/
-      getChildStorage: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<StorageData>>;
-      /**
-       * Retrieves the child storage hash
-       **/
-      getChildStorageHash: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Hash>>;
-      /**
-       * Retrieves the child storage size
-       **/
-      getChildStorageSize: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<u64>>;
-      /**
-       * Retrieves the keys with a certain prefix
-       **/
-      getKeys: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;
-      /**
-       * Returns the keys with prefix with pagination support.
-       **/
-      getKeysPaged: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, count: u32 | AnyNumber | Uint8Array, startKey?: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;
-      /**
-       * Returns the runtime metadata
-       **/
-      getMetadata: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<Metadata>>;
-      /**
-       * Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)
-       **/
-      getPairs: AugmentedRpc<(prefix: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<KeyValue>>>;
-      /**
-       * Returns proof of storage entries at a specific block state
-       **/
-      getReadProof: AugmentedRpc<(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: BlockHash | string | Uint8Array) => Observable<ReadProof>>;
-      /**
-       * Get the runtime version
-       **/
-      getRuntimeVersion: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<RuntimeVersion>>;
-      /**
-       * Retrieves the storage for a key
-       **/
-      getStorage: AugmentedRpc<<T = Codec>(key: StorageKey | string | Uint8Array | any, block?: Hash | Uint8Array | string) => Observable<T>>;
-      /**
-       * Retrieves the storage hash
-       **/
-      getStorageHash: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Hash>>;
-      /**
-       * Retrieves the storage size
-       **/
-      getStorageSize: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<u64>>;
-      /**
-       * Query historical storage entries (by key) starting from a start block
-       **/
-      queryStorage: AugmentedRpc<<T = Codec[]>(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], fromBlock?: Hash | Uint8Array | string, toBlock?: Hash | Uint8Array | string) => Observable<[Hash, T][]>>;
-      /**
-       * Query storage entries (by key) starting at block hash given as the second parameter
-       **/
-      queryStorageAt: AugmentedRpc<<T = Codec[]>(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: Hash | Uint8Array | string) => Observable<T>>;
-      /**
-       * Retrieves the runtime version via subscription
-       **/
-      subscribeRuntimeVersion: AugmentedRpc<() => Observable<RuntimeVersion>>;
-      /**
-       * Subscribes to storage changes for the provided keys
-       **/
-      subscribeStorage: AugmentedRpc<<T = Codec[]>(keys?: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[]) => Observable<T>>;
-      /**
-       * Provides a way to trace the re-execution of a single block
-       **/
-      traceBlock: AugmentedRpc<(block: Hash | string | Uint8Array, targets: Option<Text> | null | object | string | Uint8Array, storageKeys: Option<Text> | null | object | string | Uint8Array, methods: Option<Text> | null | object | string | Uint8Array) => Observable<TraceBlockResponse>>;
-      /**
-       * Check current migration state
-       **/
-      trieMigrationStatus: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MigrationStatusResult>>;
     };
     syncstate: {
       /**
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -23,7 +23,6 @@
 import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
 import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
 import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';
-import type { BlockStats } from '@polkadot/types/interfaces/dev';
 import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';
 import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';
 import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';
@@ -52,9 +51,9 @@
 import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
 import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';
 import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
-import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
+import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
 import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
-import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
+import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
 import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
 import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
 import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
@@ -154,7 +153,6 @@
     BlockNumber: BlockNumber;
     BlockNumberFor: BlockNumberFor;
     BlockNumberOf: BlockNumberOf;
-    BlockStats: BlockStats;
     BlockTrace: BlockTrace;
     BlockTraceEvent: BlockTraceEvent;
     BlockTraceEventData: BlockTraceEventData;
@@ -329,7 +327,6 @@
     DispatchClass: DispatchClass;
     DispatchError: DispatchError;
     DispatchErrorModule: DispatchErrorModule;
-    DispatchErrorModuleU8a: DispatchErrorModuleU8a;
     DispatchErrorTo198: DispatchErrorTo198;
     DispatchFeePayment: DispatchFeePayment;
     DispatchInfo: DispatchInfo;
@@ -660,7 +657,6 @@
     MetadataV13: MetadataV13;
     MetadataV14: MetadataV14;
     MetadataV9: MetadataV9;
-    MigrationStatusResult: MigrationStatusResult;
     MmrLeafProof: MmrLeafProof;
     MmrRootHash: MmrRootHash;
     ModuleConstantMetadataV10: ModuleConstantMetadataV10;
@@ -771,6 +767,7 @@
     PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
     PalletEvmCall: PalletEvmCall;
     PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
+    PalletEvmCollectionError: PalletEvmCollectionError;
     PalletEvmContractHelpersError: PalletEvmContractHelpersError;
     PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
     PalletEvmError: PalletEvmError;
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -26,6 +26,10 @@
     trieNodes: 'BTreeSet<Bytes>'
   },
   /**
+   * Lookup11: BTreeSet<T>
+   **/
+  BTreeSet: 'Vec<Bytes>',
+  /**
    * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
    **/
   CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
after · tests/src/interfaces/types-lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5  import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6  import type { ITuple } from '@polkadot/types-codec/types';7  import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';8  import type { Event } from '@polkadot/types/interfaces/system';910  /** @name PolkadotPrimitivesV2PersistedValidationData (2) */11  export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {12    readonly parentHead: Bytes;13    readonly relayParentNumber: u32;14    readonly relayParentStorageRoot: H256;15    readonly maxPovSize: u32;16  }1718  /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */19  export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {20    readonly isPresent: boolean;21    readonly type: 'Present';22  }2324  /** @name SpTrieStorageProof (10) */25  export interface SpTrieStorageProof extends Struct {26    readonly trieNodes: BTreeSet<Bytes>;27  }2829  /** @name BTreeSet (11) */30  export interface BTreeSet extends Vec<Bytes> {}3132  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */33  export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {34    readonly dmqMqcHead: H256;35    readonly relayDispatchQueueSize: ITuple<[u32, u32]>;36    readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;37    readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;38  }3940  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */41  export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {42    readonly maxCapacity: u32;43    readonly maxTotalSize: u32;44    readonly maxMessageSize: u32;45    readonly msgCount: u32;46    readonly totalSize: u32;47    readonly mqcHead: Option<H256>;48  }4950  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */51  export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {52    readonly maxCodeSize: u32;53    readonly maxHeadDataSize: u32;54    readonly maxUpwardQueueCount: u32;55    readonly maxUpwardQueueSize: u32;56    readonly maxUpwardMessageSize: u32;57    readonly maxUpwardMessageNumPerCandidate: u32;58    readonly hrmpMaxMessageNumPerCandidate: u32;59    readonly validationUpgradeCooldown: u32;60    readonly validationUpgradeDelay: u32;61  }6263  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (26) */64  export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {65    readonly recipient: u32;66    readonly data: Bytes;67  }6869  /** @name CumulusPalletParachainSystemCall (28) */70  export interface CumulusPalletParachainSystemCall extends Enum {71    readonly isSetValidationData: boolean;72    readonly asSetValidationData: {73      readonly data: CumulusPrimitivesParachainInherentParachainInherentData;74    } & Struct;75    readonly isSudoSendUpwardMessage: boolean;76    readonly asSudoSendUpwardMessage: {77      readonly message: Bytes;78    } & Struct;79    readonly isAuthorizeUpgrade: boolean;80    readonly asAuthorizeUpgrade: {81      readonly codeHash: H256;82    } & Struct;83    readonly isEnactAuthorizedUpgrade: boolean;84    readonly asEnactAuthorizedUpgrade: {85      readonly code: Bytes;86    } & Struct;87    readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';88  }8990  /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */91  export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {92    readonly validationData: PolkadotPrimitivesV2PersistedValidationData;93    readonly relayChainState: SpTrieStorageProof;94    readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;95    readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;96  }9798  /** @name PolkadotCorePrimitivesInboundDownwardMessage (31) */99  export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {100    readonly sentAt: u32;101    readonly msg: Bytes;102  }103104  /** @name PolkadotCorePrimitivesInboundHrmpMessage (34) */105  export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {106    readonly sentAt: u32;107    readonly data: Bytes;108  }109110  /** @name CumulusPalletParachainSystemEvent (37) */111  export interface CumulusPalletParachainSystemEvent extends Enum {112    readonly isValidationFunctionStored: boolean;113    readonly isValidationFunctionApplied: boolean;114    readonly asValidationFunctionApplied: u32;115    readonly isValidationFunctionDiscarded: boolean;116    readonly isUpgradeAuthorized: boolean;117    readonly asUpgradeAuthorized: H256;118    readonly isDownwardMessagesReceived: boolean;119    readonly asDownwardMessagesReceived: u32;120    readonly isDownwardMessagesProcessed: boolean;121    readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;122    readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';123  }124125  /** @name CumulusPalletParachainSystemError (38) */126  export interface CumulusPalletParachainSystemError extends Enum {127    readonly isOverlappingUpgrades: boolean;128    readonly isProhibitedByPolkadot: boolean;129    readonly isTooBig: boolean;130    readonly isValidationDataNotAvailable: boolean;131    readonly isHostConfigurationNotAvailable: boolean;132    readonly isNotScheduled: boolean;133    readonly isNothingAuthorized: boolean;134    readonly isUnauthorized: boolean;135    readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';136  }137138  /** @name PalletBalancesAccountData (41) */139  export interface PalletBalancesAccountData extends Struct {140    readonly free: u128;141    readonly reserved: u128;142    readonly miscFrozen: u128;143    readonly feeFrozen: u128;144  }145146  /** @name PalletBalancesBalanceLock (43) */147  export interface PalletBalancesBalanceLock extends Struct {148    readonly id: U8aFixed;149    readonly amount: u128;150    readonly reasons: PalletBalancesReasons;151  }152153  /** @name PalletBalancesReasons (45) */154  export interface PalletBalancesReasons extends Enum {155    readonly isFee: boolean;156    readonly isMisc: boolean;157    readonly isAll: boolean;158    readonly type: 'Fee' | 'Misc' | 'All';159  }160161  /** @name PalletBalancesReserveData (48) */162  export interface PalletBalancesReserveData extends Struct {163    readonly id: U8aFixed;164    readonly amount: u128;165  }166167  /** @name PalletBalancesReleases (50) */168  export interface PalletBalancesReleases extends Enum {169    readonly isV100: boolean;170    readonly isV200: boolean;171    readonly type: 'V100' | 'V200';172  }173174  /** @name PalletBalancesCall (51) */175  export interface PalletBalancesCall extends Enum {176    readonly isTransfer: boolean;177    readonly asTransfer: {178      readonly dest: MultiAddress;179      readonly value: Compact<u128>;180    } & Struct;181    readonly isSetBalance: boolean;182    readonly asSetBalance: {183      readonly who: MultiAddress;184      readonly newFree: Compact<u128>;185      readonly newReserved: Compact<u128>;186    } & Struct;187    readonly isForceTransfer: boolean;188    readonly asForceTransfer: {189      readonly source: MultiAddress;190      readonly dest: MultiAddress;191      readonly value: Compact<u128>;192    } & Struct;193    readonly isTransferKeepAlive: boolean;194    readonly asTransferKeepAlive: {195      readonly dest: MultiAddress;196      readonly value: Compact<u128>;197    } & Struct;198    readonly isTransferAll: boolean;199    readonly asTransferAll: {200      readonly dest: MultiAddress;201      readonly keepAlive: bool;202    } & Struct;203    readonly isForceUnreserve: boolean;204    readonly asForceUnreserve: {205      readonly who: MultiAddress;206      readonly amount: u128;207    } & Struct;208    readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';209  }210211  /** @name PalletBalancesEvent (57) */212  export interface PalletBalancesEvent extends Enum {213    readonly isEndowed: boolean;214    readonly asEndowed: {215      readonly account: AccountId32;216      readonly freeBalance: u128;217    } & Struct;218    readonly isDustLost: boolean;219    readonly asDustLost: {220      readonly account: AccountId32;221      readonly amount: u128;222    } & Struct;223    readonly isTransfer: boolean;224    readonly asTransfer: {225      readonly from: AccountId32;226      readonly to: AccountId32;227      readonly amount: u128;228    } & Struct;229    readonly isBalanceSet: boolean;230    readonly asBalanceSet: {231      readonly who: AccountId32;232      readonly free: u128;233      readonly reserved: u128;234    } & Struct;235    readonly isReserved: boolean;236    readonly asReserved: {237      readonly who: AccountId32;238      readonly amount: u128;239    } & Struct;240    readonly isUnreserved: boolean;241    readonly asUnreserved: {242      readonly who: AccountId32;243      readonly amount: u128;244    } & Struct;245    readonly isReserveRepatriated: boolean;246    readonly asReserveRepatriated: {247      readonly from: AccountId32;248      readonly to: AccountId32;249      readonly amount: u128;250      readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;251    } & Struct;252    readonly isDeposit: boolean;253    readonly asDeposit: {254      readonly who: AccountId32;255      readonly amount: u128;256    } & Struct;257    readonly isWithdraw: boolean;258    readonly asWithdraw: {259      readonly who: AccountId32;260      readonly amount: u128;261    } & Struct;262    readonly isSlashed: boolean;263    readonly asSlashed: {264      readonly who: AccountId32;265      readonly amount: u128;266    } & Struct;267    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';268  }269270  /** @name FrameSupportTokensMiscBalanceStatus (58) */271  export interface FrameSupportTokensMiscBalanceStatus extends Enum {272    readonly isFree: boolean;273    readonly isReserved: boolean;274    readonly type: 'Free' | 'Reserved';275  }276277  /** @name PalletBalancesError (59) */278  export interface PalletBalancesError extends Enum {279    readonly isVestingBalance: boolean;280    readonly isLiquidityRestrictions: boolean;281    readonly isInsufficientBalance: boolean;282    readonly isExistentialDeposit: boolean;283    readonly isKeepAlive: boolean;284    readonly isExistingVestingSchedule: boolean;285    readonly isDeadAccount: boolean;286    readonly isTooManyReserves: boolean;287    readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';288  }289290  /** @name PalletTimestampCall (62) */291  export interface PalletTimestampCall extends Enum {292    readonly isSet: boolean;293    readonly asSet: {294      readonly now: Compact<u64>;295    } & Struct;296    readonly type: 'Set';297  }298299  /** @name PalletTransactionPaymentReleases (65) */300  export interface PalletTransactionPaymentReleases extends Enum {301    readonly isV1Ancient: boolean;302    readonly isV2: boolean;303    readonly type: 'V1Ancient' | 'V2';304  }305306  /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */307  export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {308    readonly coeffInteger: u128;309    readonly coeffFrac: Perbill;310    readonly negative: bool;311    readonly degree: u8;312  }313314  /** @name PalletTreasuryProposal (69) */315  export interface PalletTreasuryProposal extends Struct {316    readonly proposer: AccountId32;317    readonly value: u128;318    readonly beneficiary: AccountId32;319    readonly bond: u128;320  }321322  /** @name PalletTreasuryCall (72) */323  export interface PalletTreasuryCall extends Enum {324    readonly isProposeSpend: boolean;325    readonly asProposeSpend: {326      readonly value: Compact<u128>;327      readonly beneficiary: MultiAddress;328    } & Struct;329    readonly isRejectProposal: boolean;330    readonly asRejectProposal: {331      readonly proposalId: Compact<u32>;332    } & Struct;333    readonly isApproveProposal: boolean;334    readonly asApproveProposal: {335      readonly proposalId: Compact<u32>;336    } & Struct;337    readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';338  }339340  /** @name PalletTreasuryEvent (74) */341  export interface PalletTreasuryEvent extends Enum {342    readonly isProposed: boolean;343    readonly asProposed: {344      readonly proposalIndex: u32;345    } & Struct;346    readonly isSpending: boolean;347    readonly asSpending: {348      readonly budgetRemaining: u128;349    } & Struct;350    readonly isAwarded: boolean;351    readonly asAwarded: {352      readonly proposalIndex: u32;353      readonly award: u128;354      readonly account: AccountId32;355    } & Struct;356    readonly isRejected: boolean;357    readonly asRejected: {358      readonly proposalIndex: u32;359      readonly slashed: u128;360    } & Struct;361    readonly isBurnt: boolean;362    readonly asBurnt: {363      readonly burntFunds: u128;364    } & Struct;365    readonly isRollover: boolean;366    readonly asRollover: {367      readonly rolloverBalance: u128;368    } & Struct;369    readonly isDeposit: boolean;370    readonly asDeposit: {371      readonly value: u128;372    } & Struct;373    readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';374  }375376  /** @name FrameSupportPalletId (77) */377  export interface FrameSupportPalletId extends U8aFixed {}378379  /** @name PalletTreasuryError (78) */380  export interface PalletTreasuryError extends Enum {381    readonly isInsufficientProposersBalance: boolean;382    readonly isInvalidIndex: boolean;383    readonly isTooManyApprovals: boolean;384    readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';385  }386387  /** @name PalletSudoCall (79) */388  export interface PalletSudoCall extends Enum {389    readonly isSudo: boolean;390    readonly asSudo: {391      readonly call: Call;392    } & Struct;393    readonly isSudoUncheckedWeight: boolean;394    readonly asSudoUncheckedWeight: {395      readonly call: Call;396      readonly weight: u64;397    } & Struct;398    readonly isSetKey: boolean;399    readonly asSetKey: {400      readonly new_: MultiAddress;401    } & Struct;402    readonly isSudoAs: boolean;403    readonly asSudoAs: {404      readonly who: MultiAddress;405      readonly call: Call;406    } & Struct;407    readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';408  }409410  /** @name FrameSystemCall (81) */411  export interface FrameSystemCall extends Enum {412    readonly isFillBlock: boolean;413    readonly asFillBlock: {414      readonly ratio: Perbill;415    } & Struct;416    readonly isRemark: boolean;417    readonly asRemark: {418      readonly remark: Bytes;419    } & Struct;420    readonly isSetHeapPages: boolean;421    readonly asSetHeapPages: {422      readonly pages: u64;423    } & Struct;424    readonly isSetCode: boolean;425    readonly asSetCode: {426      readonly code: Bytes;427    } & Struct;428    readonly isSetCodeWithoutChecks: boolean;429    readonly asSetCodeWithoutChecks: {430      readonly code: Bytes;431    } & Struct;432    readonly isSetStorage: boolean;433    readonly asSetStorage: {434      readonly items: Vec<ITuple<[Bytes, Bytes]>>;435    } & Struct;436    readonly isKillStorage: boolean;437    readonly asKillStorage: {438      readonly keys_: Vec<Bytes>;439    } & Struct;440    readonly isKillPrefix: boolean;441    readonly asKillPrefix: {442      readonly prefix: Bytes;443      readonly subkeys: u32;444    } & Struct;445    readonly isRemarkWithEvent: boolean;446    readonly asRemarkWithEvent: {447      readonly remark: Bytes;448    } & Struct;449    readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';450  }451452  /** @name OrmlVestingModuleCall (84) */453  export interface OrmlVestingModuleCall extends Enum {454    readonly isClaim: boolean;455    readonly isVestedTransfer: boolean;456    readonly asVestedTransfer: {457      readonly dest: MultiAddress;458      readonly schedule: OrmlVestingVestingSchedule;459    } & Struct;460    readonly isUpdateVestingSchedules: boolean;461    readonly asUpdateVestingSchedules: {462      readonly who: MultiAddress;463      readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;464    } & Struct;465    readonly isClaimFor: boolean;466    readonly asClaimFor: {467      readonly dest: MultiAddress;468    } & Struct;469    readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';470  }471472  /** @name OrmlVestingVestingSchedule (85) */473  export interface OrmlVestingVestingSchedule extends Struct {474    readonly start: u32;475    readonly period: u32;476    readonly periodCount: u32;477    readonly perPeriod: Compact<u128>;478  }479480  /** @name CumulusPalletXcmpQueueCall (87) */481  export interface CumulusPalletXcmpQueueCall extends Enum {482    readonly isServiceOverweight: boolean;483    readonly asServiceOverweight: {484      readonly index: u64;485      readonly weightLimit: u64;486    } & Struct;487    readonly isSuspendXcmExecution: boolean;488    readonly isResumeXcmExecution: boolean;489    readonly isUpdateSuspendThreshold: boolean;490    readonly asUpdateSuspendThreshold: {491      readonly new_: u32;492    } & Struct;493    readonly isUpdateDropThreshold: boolean;494    readonly asUpdateDropThreshold: {495      readonly new_: u32;496    } & Struct;497    readonly isUpdateResumeThreshold: boolean;498    readonly asUpdateResumeThreshold: {499      readonly new_: u32;500    } & Struct;501    readonly isUpdateThresholdWeight: boolean;502    readonly asUpdateThresholdWeight: {503      readonly new_: u64;504    } & Struct;505    readonly isUpdateWeightRestrictDecay: boolean;506    readonly asUpdateWeightRestrictDecay: {507      readonly new_: u64;508    } & Struct;509    readonly isUpdateXcmpMaxIndividualWeight: boolean;510    readonly asUpdateXcmpMaxIndividualWeight: {511      readonly new_: u64;512    } & Struct;513    readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';514  }515516  /** @name PalletXcmCall (88) */517  export interface PalletXcmCall extends Enum {518    readonly isSend: boolean;519    readonly asSend: {520      readonly dest: XcmVersionedMultiLocation;521      readonly message: XcmVersionedXcm;522    } & Struct;523    readonly isTeleportAssets: boolean;524    readonly asTeleportAssets: {525      readonly dest: XcmVersionedMultiLocation;526      readonly beneficiary: XcmVersionedMultiLocation;527      readonly assets: XcmVersionedMultiAssets;528      readonly feeAssetItem: u32;529    } & Struct;530    readonly isReserveTransferAssets: boolean;531    readonly asReserveTransferAssets: {532      readonly dest: XcmVersionedMultiLocation;533      readonly beneficiary: XcmVersionedMultiLocation;534      readonly assets: XcmVersionedMultiAssets;535      readonly feeAssetItem: u32;536    } & Struct;537    readonly isExecute: boolean;538    readonly asExecute: {539      readonly message: XcmVersionedXcm;540      readonly maxWeight: u64;541    } & Struct;542    readonly isForceXcmVersion: boolean;543    readonly asForceXcmVersion: {544      readonly location: XcmV1MultiLocation;545      readonly xcmVersion: u32;546    } & Struct;547    readonly isForceDefaultXcmVersion: boolean;548    readonly asForceDefaultXcmVersion: {549      readonly maybeXcmVersion: Option<u32>;550    } & Struct;551    readonly isForceSubscribeVersionNotify: boolean;552    readonly asForceSubscribeVersionNotify: {553      readonly location: XcmVersionedMultiLocation;554    } & Struct;555    readonly isForceUnsubscribeVersionNotify: boolean;556    readonly asForceUnsubscribeVersionNotify: {557      readonly location: XcmVersionedMultiLocation;558    } & Struct;559    readonly isLimitedReserveTransferAssets: boolean;560    readonly asLimitedReserveTransferAssets: {561      readonly dest: XcmVersionedMultiLocation;562      readonly beneficiary: XcmVersionedMultiLocation;563      readonly assets: XcmVersionedMultiAssets;564      readonly feeAssetItem: u32;565      readonly weightLimit: XcmV2WeightLimit;566    } & Struct;567    readonly isLimitedTeleportAssets: boolean;568    readonly asLimitedTeleportAssets: {569      readonly dest: XcmVersionedMultiLocation;570      readonly beneficiary: XcmVersionedMultiLocation;571      readonly assets: XcmVersionedMultiAssets;572      readonly feeAssetItem: u32;573      readonly weightLimit: XcmV2WeightLimit;574    } & Struct;575    readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';576  }577578  /** @name XcmVersionedMultiLocation (89) */579  export interface XcmVersionedMultiLocation extends Enum {580    readonly isV0: boolean;581    readonly asV0: XcmV0MultiLocation;582    readonly isV1: boolean;583    readonly asV1: XcmV1MultiLocation;584    readonly type: 'V0' | 'V1';585  }586587  /** @name XcmV0MultiLocation (90) */588  export interface XcmV0MultiLocation extends Enum {589    readonly isNull: boolean;590    readonly isX1: boolean;591    readonly asX1: XcmV0Junction;592    readonly isX2: boolean;593    readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;594    readonly isX3: boolean;595    readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;596    readonly isX4: boolean;597    readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;598    readonly isX5: boolean;599    readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;600    readonly isX6: boolean;601    readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;602    readonly isX7: boolean;603    readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;604    readonly isX8: boolean;605    readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;606    readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';607  }608609  /** @name XcmV0Junction (91) */610  export interface XcmV0Junction extends Enum {611    readonly isParent: boolean;612    readonly isParachain: boolean;613    readonly asParachain: Compact<u32>;614    readonly isAccountId32: boolean;615    readonly asAccountId32: {616      readonly network: XcmV0JunctionNetworkId;617      readonly id: U8aFixed;618    } & Struct;619    readonly isAccountIndex64: boolean;620    readonly asAccountIndex64: {621      readonly network: XcmV0JunctionNetworkId;622      readonly index: Compact<u64>;623    } & Struct;624    readonly isAccountKey20: boolean;625    readonly asAccountKey20: {626      readonly network: XcmV0JunctionNetworkId;627      readonly key: U8aFixed;628    } & Struct;629    readonly isPalletInstance: boolean;630    readonly asPalletInstance: u8;631    readonly isGeneralIndex: boolean;632    readonly asGeneralIndex: Compact<u128>;633    readonly isGeneralKey: boolean;634    readonly asGeneralKey: Bytes;635    readonly isOnlyChild: boolean;636    readonly isPlurality: boolean;637    readonly asPlurality: {638      readonly id: XcmV0JunctionBodyId;639      readonly part: XcmV0JunctionBodyPart;640    } & Struct;641    readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';642  }643644  /** @name XcmV0JunctionNetworkId (92) */645  export interface XcmV0JunctionNetworkId extends Enum {646    readonly isAny: boolean;647    readonly isNamed: boolean;648    readonly asNamed: Bytes;649    readonly isPolkadot: boolean;650    readonly isKusama: boolean;651    readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';652  }653654  /** @name XcmV0JunctionBodyId (93) */655  export interface XcmV0JunctionBodyId extends Enum {656    readonly isUnit: boolean;657    readonly isNamed: boolean;658    readonly asNamed: Bytes;659    readonly isIndex: boolean;660    readonly asIndex: Compact<u32>;661    readonly isExecutive: boolean;662    readonly isTechnical: boolean;663    readonly isLegislative: boolean;664    readonly isJudicial: boolean;665    readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';666  }667668  /** @name XcmV0JunctionBodyPart (94) */669  export interface XcmV0JunctionBodyPart extends Enum {670    readonly isVoice: boolean;671    readonly isMembers: boolean;672    readonly asMembers: {673      readonly count: Compact<u32>;674    } & Struct;675    readonly isFraction: boolean;676    readonly asFraction: {677      readonly nom: Compact<u32>;678      readonly denom: Compact<u32>;679    } & Struct;680    readonly isAtLeastProportion: boolean;681    readonly asAtLeastProportion: {682      readonly nom: Compact<u32>;683      readonly denom: Compact<u32>;684    } & Struct;685    readonly isMoreThanProportion: boolean;686    readonly asMoreThanProportion: {687      readonly nom: Compact<u32>;688      readonly denom: Compact<u32>;689    } & Struct;690    readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';691  }692693  /** @name XcmV1MultiLocation (95) */694  export interface XcmV1MultiLocation extends Struct {695    readonly parents: u8;696    readonly interior: XcmV1MultilocationJunctions;697  }698699  /** @name XcmV1MultilocationJunctions (96) */700  export interface XcmV1MultilocationJunctions extends Enum {701    readonly isHere: boolean;702    readonly isX1: boolean;703    readonly asX1: XcmV1Junction;704    readonly isX2: boolean;705    readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;706    readonly isX3: boolean;707    readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;708    readonly isX4: boolean;709    readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;710    readonly isX5: boolean;711    readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;712    readonly isX6: boolean;713    readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;714    readonly isX7: boolean;715    readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;716    readonly isX8: boolean;717    readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;718    readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';719  }720721  /** @name XcmV1Junction (97) */722  export interface XcmV1Junction extends Enum {723    readonly isParachain: boolean;724    readonly asParachain: Compact<u32>;725    readonly isAccountId32: boolean;726    readonly asAccountId32: {727      readonly network: XcmV0JunctionNetworkId;728      readonly id: U8aFixed;729    } & Struct;730    readonly isAccountIndex64: boolean;731    readonly asAccountIndex64: {732      readonly network: XcmV0JunctionNetworkId;733      readonly index: Compact<u64>;734    } & Struct;735    readonly isAccountKey20: boolean;736    readonly asAccountKey20: {737      readonly network: XcmV0JunctionNetworkId;738      readonly key: U8aFixed;739    } & Struct;740    readonly isPalletInstance: boolean;741    readonly asPalletInstance: u8;742    readonly isGeneralIndex: boolean;743    readonly asGeneralIndex: Compact<u128>;744    readonly isGeneralKey: boolean;745    readonly asGeneralKey: Bytes;746    readonly isOnlyChild: boolean;747    readonly isPlurality: boolean;748    readonly asPlurality: {749      readonly id: XcmV0JunctionBodyId;750      readonly part: XcmV0JunctionBodyPart;751    } & Struct;752    readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';753  }754755  /** @name XcmVersionedXcm (98) */756  export interface XcmVersionedXcm extends Enum {757    readonly isV0: boolean;758    readonly asV0: XcmV0Xcm;759    readonly isV1: boolean;760    readonly asV1: XcmV1Xcm;761    readonly isV2: boolean;762    readonly asV2: XcmV2Xcm;763    readonly type: 'V0' | 'V1' | 'V2';764  }765766  /** @name XcmV0Xcm (99) */767  export interface XcmV0Xcm extends Enum {768    readonly isWithdrawAsset: boolean;769    readonly asWithdrawAsset: {770      readonly assets: Vec<XcmV0MultiAsset>;771      readonly effects: Vec<XcmV0Order>;772    } & Struct;773    readonly isReserveAssetDeposit: boolean;774    readonly asReserveAssetDeposit: {775      readonly assets: Vec<XcmV0MultiAsset>;776      readonly effects: Vec<XcmV0Order>;777    } & Struct;778    readonly isTeleportAsset: boolean;779    readonly asTeleportAsset: {780      readonly assets: Vec<XcmV0MultiAsset>;781      readonly effects: Vec<XcmV0Order>;782    } & Struct;783    readonly isQueryResponse: boolean;784    readonly asQueryResponse: {785      readonly queryId: Compact<u64>;786      readonly response: XcmV0Response;787    } & Struct;788    readonly isTransferAsset: boolean;789    readonly asTransferAsset: {790      readonly assets: Vec<XcmV0MultiAsset>;791      readonly dest: XcmV0MultiLocation;792    } & Struct;793    readonly isTransferReserveAsset: boolean;794    readonly asTransferReserveAsset: {795      readonly assets: Vec<XcmV0MultiAsset>;796      readonly dest: XcmV0MultiLocation;797      readonly effects: Vec<XcmV0Order>;798    } & Struct;799    readonly isTransact: boolean;800    readonly asTransact: {801      readonly originType: XcmV0OriginKind;802      readonly requireWeightAtMost: u64;803      readonly call: XcmDoubleEncoded;804    } & Struct;805    readonly isHrmpNewChannelOpenRequest: boolean;806    readonly asHrmpNewChannelOpenRequest: {807      readonly sender: Compact<u32>;808      readonly maxMessageSize: Compact<u32>;809      readonly maxCapacity: Compact<u32>;810    } & Struct;811    readonly isHrmpChannelAccepted: boolean;812    readonly asHrmpChannelAccepted: {813      readonly recipient: Compact<u32>;814    } & Struct;815    readonly isHrmpChannelClosing: boolean;816    readonly asHrmpChannelClosing: {817      readonly initiator: Compact<u32>;818      readonly sender: Compact<u32>;819      readonly recipient: Compact<u32>;820    } & Struct;821    readonly isRelayedFrom: boolean;822    readonly asRelayedFrom: {823      readonly who: XcmV0MultiLocation;824      readonly message: XcmV0Xcm;825    } & Struct;826    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';827  }828829  /** @name XcmV0MultiAsset (101) */830  export interface XcmV0MultiAsset extends Enum {831    readonly isNone: boolean;832    readonly isAll: boolean;833    readonly isAllFungible: boolean;834    readonly isAllNonFungible: boolean;835    readonly isAllAbstractFungible: boolean;836    readonly asAllAbstractFungible: {837      readonly id: Bytes;838    } & Struct;839    readonly isAllAbstractNonFungible: boolean;840    readonly asAllAbstractNonFungible: {841      readonly class: Bytes;842    } & Struct;843    readonly isAllConcreteFungible: boolean;844    readonly asAllConcreteFungible: {845      readonly id: XcmV0MultiLocation;846    } & Struct;847    readonly isAllConcreteNonFungible: boolean;848    readonly asAllConcreteNonFungible: {849      readonly class: XcmV0MultiLocation;850    } & Struct;851    readonly isAbstractFungible: boolean;852    readonly asAbstractFungible: {853      readonly id: Bytes;854      readonly amount: Compact<u128>;855    } & Struct;856    readonly isAbstractNonFungible: boolean;857    readonly asAbstractNonFungible: {858      readonly class: Bytes;859      readonly instance: XcmV1MultiassetAssetInstance;860    } & Struct;861    readonly isConcreteFungible: boolean;862    readonly asConcreteFungible: {863      readonly id: XcmV0MultiLocation;864      readonly amount: Compact<u128>;865    } & Struct;866    readonly isConcreteNonFungible: boolean;867    readonly asConcreteNonFungible: {868      readonly class: XcmV0MultiLocation;869      readonly instance: XcmV1MultiassetAssetInstance;870    } & Struct;871    readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';872  }873874  /** @name XcmV1MultiassetAssetInstance (102) */875  export interface XcmV1MultiassetAssetInstance extends Enum {876    readonly isUndefined: boolean;877    readonly isIndex: boolean;878    readonly asIndex: Compact<u128>;879    readonly isArray4: boolean;880    readonly asArray4: U8aFixed;881    readonly isArray8: boolean;882    readonly asArray8: U8aFixed;883    readonly isArray16: boolean;884    readonly asArray16: U8aFixed;885    readonly isArray32: boolean;886    readonly asArray32: U8aFixed;887    readonly isBlob: boolean;888    readonly asBlob: Bytes;889    readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';890  }891892  /** @name XcmV0Order (106) */893  export interface XcmV0Order extends Enum {894    readonly isNull: boolean;895    readonly isDepositAsset: boolean;896    readonly asDepositAsset: {897      readonly assets: Vec<XcmV0MultiAsset>;898      readonly dest: XcmV0MultiLocation;899    } & Struct;900    readonly isDepositReserveAsset: boolean;901    readonly asDepositReserveAsset: {902      readonly assets: Vec<XcmV0MultiAsset>;903      readonly dest: XcmV0MultiLocation;904      readonly effects: Vec<XcmV0Order>;905    } & Struct;906    readonly isExchangeAsset: boolean;907    readonly asExchangeAsset: {908      readonly give: Vec<XcmV0MultiAsset>;909      readonly receive: Vec<XcmV0MultiAsset>;910    } & Struct;911    readonly isInitiateReserveWithdraw: boolean;912    readonly asInitiateReserveWithdraw: {913      readonly assets: Vec<XcmV0MultiAsset>;914      readonly reserve: XcmV0MultiLocation;915      readonly effects: Vec<XcmV0Order>;916    } & Struct;917    readonly isInitiateTeleport: boolean;918    readonly asInitiateTeleport: {919      readonly assets: Vec<XcmV0MultiAsset>;920      readonly dest: XcmV0MultiLocation;921      readonly effects: Vec<XcmV0Order>;922    } & Struct;923    readonly isQueryHolding: boolean;924    readonly asQueryHolding: {925      readonly queryId: Compact<u64>;926      readonly dest: XcmV0MultiLocation;927      readonly assets: Vec<XcmV0MultiAsset>;928    } & Struct;929    readonly isBuyExecution: boolean;930    readonly asBuyExecution: {931      readonly fees: XcmV0MultiAsset;932      readonly weight: u64;933      readonly debt: u64;934      readonly haltOnError: bool;935      readonly xcm: Vec<XcmV0Xcm>;936    } & Struct;937    readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';938  }939940  /** @name XcmV0Response (108) */941  export interface XcmV0Response extends Enum {942    readonly isAssets: boolean;943    readonly asAssets: Vec<XcmV0MultiAsset>;944    readonly type: 'Assets';945  }946947  /** @name XcmV0OriginKind (109) */948  export interface XcmV0OriginKind extends Enum {949    readonly isNative: boolean;950    readonly isSovereignAccount: boolean;951    readonly isSuperuser: boolean;952    readonly isXcm: boolean;953    readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';954  }955956  /** @name XcmDoubleEncoded (110) */957  export interface XcmDoubleEncoded extends Struct {958    readonly encoded: Bytes;959  }960961  /** @name XcmV1Xcm (111) */962  export interface XcmV1Xcm extends Enum {963    readonly isWithdrawAsset: boolean;964    readonly asWithdrawAsset: {965      readonly assets: XcmV1MultiassetMultiAssets;966      readonly effects: Vec<XcmV1Order>;967    } & Struct;968    readonly isReserveAssetDeposited: boolean;969    readonly asReserveAssetDeposited: {970      readonly assets: XcmV1MultiassetMultiAssets;971      readonly effects: Vec<XcmV1Order>;972    } & Struct;973    readonly isReceiveTeleportedAsset: boolean;974    readonly asReceiveTeleportedAsset: {975      readonly assets: XcmV1MultiassetMultiAssets;976      readonly effects: Vec<XcmV1Order>;977    } & Struct;978    readonly isQueryResponse: boolean;979    readonly asQueryResponse: {980      readonly queryId: Compact<u64>;981      readonly response: XcmV1Response;982    } & Struct;983    readonly isTransferAsset: boolean;984    readonly asTransferAsset: {985      readonly assets: XcmV1MultiassetMultiAssets;986      readonly beneficiary: XcmV1MultiLocation;987    } & Struct;988    readonly isTransferReserveAsset: boolean;989    readonly asTransferReserveAsset: {990      readonly assets: XcmV1MultiassetMultiAssets;991      readonly dest: XcmV1MultiLocation;992      readonly effects: Vec<XcmV1Order>;993    } & Struct;994    readonly isTransact: boolean;995    readonly asTransact: {996      readonly originType: XcmV0OriginKind;997      readonly requireWeightAtMost: u64;998      readonly call: XcmDoubleEncoded;999    } & Struct;1000    readonly isHrmpNewChannelOpenRequest: boolean;1001    readonly asHrmpNewChannelOpenRequest: {1002      readonly sender: Compact<u32>;1003      readonly maxMessageSize: Compact<u32>;1004      readonly maxCapacity: Compact<u32>;1005    } & Struct;1006    readonly isHrmpChannelAccepted: boolean;1007    readonly asHrmpChannelAccepted: {1008      readonly recipient: Compact<u32>;1009    } & Struct;1010    readonly isHrmpChannelClosing: boolean;1011    readonly asHrmpChannelClosing: {1012      readonly initiator: Compact<u32>;1013      readonly sender: Compact<u32>;1014      readonly recipient: Compact<u32>;1015    } & Struct;1016    readonly isRelayedFrom: boolean;1017    readonly asRelayedFrom: {1018      readonly who: XcmV1MultilocationJunctions;1019      readonly message: XcmV1Xcm;1020    } & Struct;1021    readonly isSubscribeVersion: boolean;1022    readonly asSubscribeVersion: {1023      readonly queryId: Compact<u64>;1024      readonly maxResponseWeight: Compact<u64>;1025    } & Struct;1026    readonly isUnsubscribeVersion: boolean;1027    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1028  }10291030  /** @name XcmV1MultiassetMultiAssets (112) */1031  export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10321033  /** @name XcmV1MultiAsset (114) */1034  export interface XcmV1MultiAsset extends Struct {1035    readonly id: XcmV1MultiassetAssetId;1036    readonly fun: XcmV1MultiassetFungibility;1037  }10381039  /** @name XcmV1MultiassetAssetId (115) */1040  export interface XcmV1MultiassetAssetId extends Enum {1041    readonly isConcrete: boolean;1042    readonly asConcrete: XcmV1MultiLocation;1043    readonly isAbstract: boolean;1044    readonly asAbstract: Bytes;1045    readonly type: 'Concrete' | 'Abstract';1046  }10471048  /** @name XcmV1MultiassetFungibility (116) */1049  export interface XcmV1MultiassetFungibility extends Enum {1050    readonly isFungible: boolean;1051    readonly asFungible: Compact<u128>;1052    readonly isNonFungible: boolean;1053    readonly asNonFungible: XcmV1MultiassetAssetInstance;1054    readonly type: 'Fungible' | 'NonFungible';1055  }10561057  /** @name XcmV1Order (118) */1058  export interface XcmV1Order extends Enum {1059    readonly isNoop: boolean;1060    readonly isDepositAsset: boolean;1061    readonly asDepositAsset: {1062      readonly assets: XcmV1MultiassetMultiAssetFilter;1063      readonly maxAssets: u32;1064      readonly beneficiary: XcmV1MultiLocation;1065    } & Struct;1066    readonly isDepositReserveAsset: boolean;1067    readonly asDepositReserveAsset: {1068      readonly assets: XcmV1MultiassetMultiAssetFilter;1069      readonly maxAssets: u32;1070      readonly dest: XcmV1MultiLocation;1071      readonly effects: Vec<XcmV1Order>;1072    } & Struct;1073    readonly isExchangeAsset: boolean;1074    readonly asExchangeAsset: {1075      readonly give: XcmV1MultiassetMultiAssetFilter;1076      readonly receive: XcmV1MultiassetMultiAssets;1077    } & Struct;1078    readonly isInitiateReserveWithdraw: boolean;1079    readonly asInitiateReserveWithdraw: {1080      readonly assets: XcmV1MultiassetMultiAssetFilter;1081      readonly reserve: XcmV1MultiLocation;1082      readonly effects: Vec<XcmV1Order>;1083    } & Struct;1084    readonly isInitiateTeleport: boolean;1085    readonly asInitiateTeleport: {1086      readonly assets: XcmV1MultiassetMultiAssetFilter;1087      readonly dest: XcmV1MultiLocation;1088      readonly effects: Vec<XcmV1Order>;1089    } & Struct;1090    readonly isQueryHolding: boolean;1091    readonly asQueryHolding: {1092      readonly queryId: Compact<u64>;1093      readonly dest: XcmV1MultiLocation;1094      readonly assets: XcmV1MultiassetMultiAssetFilter;1095    } & Struct;1096    readonly isBuyExecution: boolean;1097    readonly asBuyExecution: {1098      readonly fees: XcmV1MultiAsset;1099      readonly weight: u64;1100      readonly debt: u64;1101      readonly haltOnError: bool;1102      readonly instructions: Vec<XcmV1Xcm>;1103    } & Struct;1104    readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1105  }11061107  /** @name XcmV1MultiassetMultiAssetFilter (119) */1108  export interface XcmV1MultiassetMultiAssetFilter extends Enum {1109    readonly isDefinite: boolean;1110    readonly asDefinite: XcmV1MultiassetMultiAssets;1111    readonly isWild: boolean;1112    readonly asWild: XcmV1MultiassetWildMultiAsset;1113    readonly type: 'Definite' | 'Wild';1114  }11151116  /** @name XcmV1MultiassetWildMultiAsset (120) */1117  export interface XcmV1MultiassetWildMultiAsset extends Enum {1118    readonly isAll: boolean;1119    readonly isAllOf: boolean;1120    readonly asAllOf: {1121      readonly id: XcmV1MultiassetAssetId;1122      readonly fun: XcmV1MultiassetWildFungibility;1123    } & Struct;1124    readonly type: 'All' | 'AllOf';1125  }11261127  /** @name XcmV1MultiassetWildFungibility (121) */1128  export interface XcmV1MultiassetWildFungibility extends Enum {1129    readonly isFungible: boolean;1130    readonly isNonFungible: boolean;1131    readonly type: 'Fungible' | 'NonFungible';1132  }11331134  /** @name XcmV1Response (123) */1135  export interface XcmV1Response extends Enum {1136    readonly isAssets: boolean;1137    readonly asAssets: XcmV1MultiassetMultiAssets;1138    readonly isVersion: boolean;1139    readonly asVersion: u32;1140    readonly type: 'Assets' | 'Version';1141  }11421143  /** @name XcmV2Xcm (124) */1144  export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11451146  /** @name XcmV2Instruction (126) */1147  export interface XcmV2Instruction extends Enum {1148    readonly isWithdrawAsset: boolean;1149    readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1150    readonly isReserveAssetDeposited: boolean;1151    readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1152    readonly isReceiveTeleportedAsset: boolean;1153    readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1154    readonly isQueryResponse: boolean;1155    readonly asQueryResponse: {1156      readonly queryId: Compact<u64>;1157      readonly response: XcmV2Response;1158      readonly maxWeight: Compact<u64>;1159    } & Struct;1160    readonly isTransferAsset: boolean;1161    readonly asTransferAsset: {1162      readonly assets: XcmV1MultiassetMultiAssets;1163      readonly beneficiary: XcmV1MultiLocation;1164    } & Struct;1165    readonly isTransferReserveAsset: boolean;1166    readonly asTransferReserveAsset: {1167      readonly assets: XcmV1MultiassetMultiAssets;1168      readonly dest: XcmV1MultiLocation;1169      readonly xcm: XcmV2Xcm;1170    } & Struct;1171    readonly isTransact: boolean;1172    readonly asTransact: {1173      readonly originType: XcmV0OriginKind;1174      readonly requireWeightAtMost: Compact<u64>;1175      readonly call: XcmDoubleEncoded;1176    } & Struct;1177    readonly isHrmpNewChannelOpenRequest: boolean;1178    readonly asHrmpNewChannelOpenRequest: {1179      readonly sender: Compact<u32>;1180      readonly maxMessageSize: Compact<u32>;1181      readonly maxCapacity: Compact<u32>;1182    } & Struct;1183    readonly isHrmpChannelAccepted: boolean;1184    readonly asHrmpChannelAccepted: {1185      readonly recipient: Compact<u32>;1186    } & Struct;1187    readonly isHrmpChannelClosing: boolean;1188    readonly asHrmpChannelClosing: {1189      readonly initiator: Compact<u32>;1190      readonly sender: Compact<u32>;1191      readonly recipient: Compact<u32>;1192    } & Struct;1193    readonly isClearOrigin: boolean;1194    readonly isDescendOrigin: boolean;1195    readonly asDescendOrigin: XcmV1MultilocationJunctions;1196    readonly isReportError: boolean;1197    readonly asReportError: {1198      readonly queryId: Compact<u64>;1199      readonly dest: XcmV1MultiLocation;1200      readonly maxResponseWeight: Compact<u64>;1201    } & Struct;1202    readonly isDepositAsset: boolean;1203    readonly asDepositAsset: {1204      readonly assets: XcmV1MultiassetMultiAssetFilter;1205      readonly maxAssets: Compact<u32>;1206      readonly beneficiary: XcmV1MultiLocation;1207    } & Struct;1208    readonly isDepositReserveAsset: boolean;1209    readonly asDepositReserveAsset: {1210      readonly assets: XcmV1MultiassetMultiAssetFilter;1211      readonly maxAssets: Compact<u32>;1212      readonly dest: XcmV1MultiLocation;1213      readonly xcm: XcmV2Xcm;1214    } & Struct;1215    readonly isExchangeAsset: boolean;1216    readonly asExchangeAsset: {1217      readonly give: XcmV1MultiassetMultiAssetFilter;1218      readonly receive: XcmV1MultiassetMultiAssets;1219    } & Struct;1220    readonly isInitiateReserveWithdraw: boolean;1221    readonly asInitiateReserveWithdraw: {1222      readonly assets: XcmV1MultiassetMultiAssetFilter;1223      readonly reserve: XcmV1MultiLocation;1224      readonly xcm: XcmV2Xcm;1225    } & Struct;1226    readonly isInitiateTeleport: boolean;1227    readonly asInitiateTeleport: {1228      readonly assets: XcmV1MultiassetMultiAssetFilter;1229      readonly dest: XcmV1MultiLocation;1230      readonly xcm: XcmV2Xcm;1231    } & Struct;1232    readonly isQueryHolding: boolean;1233    readonly asQueryHolding: {1234      readonly queryId: Compact<u64>;1235      readonly dest: XcmV1MultiLocation;1236      readonly assets: XcmV1MultiassetMultiAssetFilter;1237      readonly maxResponseWeight: Compact<u64>;1238    } & Struct;1239    readonly isBuyExecution: boolean;1240    readonly asBuyExecution: {1241      readonly fees: XcmV1MultiAsset;1242      readonly weightLimit: XcmV2WeightLimit;1243    } & Struct;1244    readonly isRefundSurplus: boolean;1245    readonly isSetErrorHandler: boolean;1246    readonly asSetErrorHandler: XcmV2Xcm;1247    readonly isSetAppendix: boolean;1248    readonly asSetAppendix: XcmV2Xcm;1249    readonly isClearError: boolean;1250    readonly isClaimAsset: boolean;1251    readonly asClaimAsset: {1252      readonly assets: XcmV1MultiassetMultiAssets;1253      readonly ticket: XcmV1MultiLocation;1254    } & Struct;1255    readonly isTrap: boolean;1256    readonly asTrap: Compact<u64>;1257    readonly isSubscribeVersion: boolean;1258    readonly asSubscribeVersion: {1259      readonly queryId: Compact<u64>;1260      readonly maxResponseWeight: Compact<u64>;1261    } & Struct;1262    readonly isUnsubscribeVersion: boolean;1263    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';1264  }12651266  /** @name XcmV2Response (127) */1267  export interface XcmV2Response extends Enum {1268    readonly isNull: boolean;1269    readonly isAssets: boolean;1270    readonly asAssets: XcmV1MultiassetMultiAssets;1271    readonly isExecutionResult: boolean;1272    readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1273    readonly isVersion: boolean;1274    readonly asVersion: u32;1275    readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1276  }12771278  /** @name XcmV2TraitsError (130) */1279  export interface XcmV2TraitsError extends Enum {1280    readonly isOverflow: boolean;1281    readonly isUnimplemented: boolean;1282    readonly isUntrustedReserveLocation: boolean;1283    readonly isUntrustedTeleportLocation: boolean;1284    readonly isMultiLocationFull: boolean;1285    readonly isMultiLocationNotInvertible: boolean;1286    readonly isBadOrigin: boolean;1287    readonly isInvalidLocation: boolean;1288    readonly isAssetNotFound: boolean;1289    readonly isFailedToTransactAsset: boolean;1290    readonly isNotWithdrawable: boolean;1291    readonly isLocationCannotHold: boolean;1292    readonly isExceedsMaxMessageSize: boolean;1293    readonly isDestinationUnsupported: boolean;1294    readonly isTransport: boolean;1295    readonly isUnroutable: boolean;1296    readonly isUnknownClaim: boolean;1297    readonly isFailedToDecode: boolean;1298    readonly isMaxWeightInvalid: boolean;1299    readonly isNotHoldingFees: boolean;1300    readonly isTooExpensive: boolean;1301    readonly isTrap: boolean;1302    readonly asTrap: u64;1303    readonly isUnhandledXcmVersion: boolean;1304    readonly isWeightLimitReached: boolean;1305    readonly asWeightLimitReached: u64;1306    readonly isBarrier: boolean;1307    readonly isWeightNotComputable: boolean;1308    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';1309  }13101311  /** @name XcmV2WeightLimit (131) */1312  export interface XcmV2WeightLimit extends Enum {1313    readonly isUnlimited: boolean;1314    readonly isLimited: boolean;1315    readonly asLimited: Compact<u64>;1316    readonly type: 'Unlimited' | 'Limited';1317  }13181319  /** @name XcmVersionedMultiAssets (132) */1320  export interface XcmVersionedMultiAssets extends Enum {1321    readonly isV0: boolean;1322    readonly asV0: Vec<XcmV0MultiAsset>;1323    readonly isV1: boolean;1324    readonly asV1: XcmV1MultiassetMultiAssets;1325    readonly type: 'V0' | 'V1';1326  }13271328  /** @name CumulusPalletXcmCall (147) */1329  export type CumulusPalletXcmCall = Null;13301331  /** @name CumulusPalletDmpQueueCall (148) */1332  export interface CumulusPalletDmpQueueCall extends Enum {1333    readonly isServiceOverweight: boolean;1334    readonly asServiceOverweight: {1335      readonly index: u64;1336      readonly weightLimit: u64;1337    } & Struct;1338    readonly type: 'ServiceOverweight';1339  }13401341  /** @name PalletInflationCall (149) */1342  export interface PalletInflationCall extends Enum {1343    readonly isStartInflation: boolean;1344    readonly asStartInflation: {1345      readonly inflationStartRelayBlock: u32;1346    } & Struct;1347    readonly type: 'StartInflation';1348  }13491350  /** @name PalletUniqueCall (150) */1351  export interface PalletUniqueCall extends Enum {1352    readonly isCreateCollection: boolean;1353    readonly asCreateCollection: {1354      readonly collectionName: Vec<u16>;1355      readonly collectionDescription: Vec<u16>;1356      readonly tokenPrefix: Bytes;1357      readonly mode: UpDataStructsCollectionMode;1358    } & Struct;1359    readonly isCreateCollectionEx: boolean;1360    readonly asCreateCollectionEx: {1361      readonly data: UpDataStructsCreateCollectionData;1362    } & Struct;1363    readonly isDestroyCollection: boolean;1364    readonly asDestroyCollection: {1365      readonly collectionId: u32;1366    } & Struct;1367    readonly isAddToAllowList: boolean;1368    readonly asAddToAllowList: {1369      readonly collectionId: u32;1370      readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1371    } & Struct;1372    readonly isRemoveFromAllowList: boolean;1373    readonly asRemoveFromAllowList: {1374      readonly collectionId: u32;1375      readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1376    } & Struct;1377    readonly isSetPublicAccessMode: boolean;1378    readonly asSetPublicAccessMode: {1379      readonly collectionId: u32;1380      readonly mode: UpDataStructsAccessMode;1381    } & Struct;1382    readonly isSetMintPermission: boolean;1383    readonly asSetMintPermission: {1384      readonly collectionId: u32;1385      readonly mintPermission: bool;1386    } & Struct;1387    readonly isChangeCollectionOwner: boolean;1388    readonly asChangeCollectionOwner: {1389      readonly collectionId: u32;1390      readonly newOwner: AccountId32;1391    } & Struct;1392    readonly isAddCollectionAdmin: boolean;1393    readonly asAddCollectionAdmin: {1394      readonly collectionId: u32;1395      readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1396    } & Struct;1397    readonly isRemoveCollectionAdmin: boolean;1398    readonly asRemoveCollectionAdmin: {1399      readonly collectionId: u32;1400      readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1401    } & Struct;1402    readonly isSetCollectionSponsor: boolean;1403    readonly asSetCollectionSponsor: {1404      readonly collectionId: u32;1405      readonly newSponsor: AccountId32;1406    } & Struct;1407    readonly isConfirmSponsorship: boolean;1408    readonly asConfirmSponsorship: {1409      readonly collectionId: u32;1410    } & Struct;1411    readonly isRemoveCollectionSponsor: boolean;1412    readonly asRemoveCollectionSponsor: {1413      readonly collectionId: u32;1414    } & Struct;1415    readonly isCreateItem: boolean;1416    readonly asCreateItem: {1417      readonly collectionId: u32;1418      readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1419      readonly data: UpDataStructsCreateItemData;1420    } & Struct;1421    readonly isCreateMultipleItems: boolean;1422    readonly asCreateMultipleItems: {1423      readonly collectionId: u32;1424      readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1425      readonly itemsData: Vec<UpDataStructsCreateItemData>;1426    } & Struct;1427    readonly isSetCollectionProperties: boolean;1428    readonly asSetCollectionProperties: {1429      readonly collectionId: u32;1430      readonly properties: Vec<UpDataStructsProperty>;1431    } & Struct;1432    readonly isDeleteCollectionProperties: boolean;1433    readonly asDeleteCollectionProperties: {1434      readonly collectionId: u32;1435      readonly propertyKeys: Vec<Bytes>;1436    } & Struct;1437    readonly isSetTokenProperties: boolean;1438    readonly asSetTokenProperties: {1439      readonly collectionId: u32;1440      readonly tokenId: u32;1441      readonly properties: Vec<UpDataStructsProperty>;1442    } & Struct;1443    readonly isDeleteTokenProperties: boolean;1444    readonly asDeleteTokenProperties: {1445      readonly collectionId: u32;1446      readonly tokenId: u32;1447      readonly propertyKeys: Vec<Bytes>;1448    } & Struct;1449    readonly isSetPropertyPermissions: boolean;1450    readonly asSetPropertyPermissions: {1451      readonly collectionId: u32;1452      readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1453    } & Struct;1454    readonly isCreateMultipleItemsEx: boolean;1455    readonly asCreateMultipleItemsEx: {1456      readonly collectionId: u32;1457      readonly data: UpDataStructsCreateItemExData;1458    } & Struct;1459    readonly isSetTransfersEnabledFlag: boolean;1460    readonly asSetTransfersEnabledFlag: {1461      readonly collectionId: u32;1462      readonly value: bool;1463    } & Struct;1464    readonly isBurnItem: boolean;1465    readonly asBurnItem: {1466      readonly collectionId: u32;1467      readonly itemId: u32;1468      readonly value: u128;1469    } & Struct;1470    readonly isBurnFrom: boolean;1471    readonly asBurnFrom: {1472      readonly collectionId: u32;1473      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1474      readonly itemId: u32;1475      readonly value: u128;1476    } & Struct;1477    readonly isTransfer: boolean;1478    readonly asTransfer: {1479      readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1480      readonly collectionId: u32;1481      readonly itemId: u32;1482      readonly value: u128;1483    } & Struct;1484    readonly isApprove: boolean;1485    readonly asApprove: {1486      readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1487      readonly collectionId: u32;1488      readonly itemId: u32;1489      readonly amount: u128;1490    } & Struct;1491    readonly isTransferFrom: boolean;1492    readonly asTransferFrom: {1493      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1494      readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1495      readonly collectionId: u32;1496      readonly itemId: u32;1497      readonly value: u128;1498    } & Struct;1499    readonly isSetSchemaVersion: boolean;1500    readonly asSetSchemaVersion: {1501      readonly collectionId: u32;1502      readonly version: UpDataStructsSchemaVersion;1503    } & Struct;1504    readonly isSetOffchainSchema: boolean;1505    readonly asSetOffchainSchema: {1506      readonly collectionId: u32;1507      readonly schema: Bytes;1508    } & Struct;1509    readonly isSetConstOnChainSchema: boolean;1510    readonly asSetConstOnChainSchema: {1511      readonly collectionId: u32;1512      readonly schema: Bytes;1513    } & Struct;1514    readonly isSetCollectionLimits: boolean;1515    readonly asSetCollectionLimits: {1516      readonly collectionId: u32;1517      readonly newLimit: UpDataStructsCollectionLimits;1518    } & Struct;1519    readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';1520  }15211522  /** @name UpDataStructsCollectionMode (156) */1523  export interface UpDataStructsCollectionMode extends Enum {1524    readonly isNft: boolean;1525    readonly isFungible: boolean;1526    readonly asFungible: u8;1527    readonly isReFungible: boolean;1528    readonly type: 'Nft' | 'Fungible' | 'ReFungible';1529  }15301531  /** @name UpDataStructsCreateCollectionData (157) */1532  export interface UpDataStructsCreateCollectionData extends Struct {1533    readonly mode: UpDataStructsCollectionMode;1534    readonly access: Option<UpDataStructsAccessMode>;1535    readonly name: Vec<u16>;1536    readonly description: Vec<u16>;1537    readonly tokenPrefix: Bytes;1538    readonly offchainSchema: Bytes;1539    readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1540    readonly pendingSponsor: Option<AccountId32>;1541    readonly limits: Option<UpDataStructsCollectionLimits>;1542    readonly constOnChainSchema: Bytes;1543    readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1544    readonly properties: Vec<UpDataStructsProperty>;1545  }15461547  /** @name UpDataStructsAccessMode (159) */1548  export interface UpDataStructsAccessMode extends Enum {1549    readonly isNormal: boolean;1550    readonly isAllowList: boolean;1551    readonly type: 'Normal' | 'AllowList';1552  }15531554  /** @name UpDataStructsSchemaVersion (162) */1555  export interface UpDataStructsSchemaVersion extends Enum {1556    readonly isImageURL: boolean;1557    readonly isUnique: boolean;1558    readonly type: 'ImageURL' | 'Unique';1559  }15601561  /** @name UpDataStructsCollectionLimits (165) */1562  export interface UpDataStructsCollectionLimits extends Struct {1563    readonly accountTokenOwnershipLimit: Option<u32>;1564    readonly sponsoredDataSize: Option<u32>;1565    readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1566    readonly tokenLimit: Option<u32>;1567    readonly sponsorTransferTimeout: Option<u32>;1568    readonly sponsorApproveTimeout: Option<u32>;1569    readonly ownerCanTransfer: Option<bool>;1570    readonly ownerCanDestroy: Option<bool>;1571    readonly transfersEnabled: Option<bool>;1572    readonly nestingRule: Option<UpDataStructsNestingRule>;1573  }15741575  /** @name UpDataStructsSponsoringRateLimit (167) */1576  export interface UpDataStructsSponsoringRateLimit extends Enum {1577    readonly isSponsoringDisabled: boolean;1578    readonly isBlocks: boolean;1579    readonly asBlocks: u32;1580    readonly type: 'SponsoringDisabled' | 'Blocks';1581  }15821583  /** @name UpDataStructsNestingRule (170) */1584  export interface UpDataStructsNestingRule extends Enum {1585    readonly isDisabled: boolean;1586    readonly isOwner: boolean;1587    readonly isOwnerRestricted: boolean;1588    readonly asOwnerRestricted: BTreeSet<u32>;1589    readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1590  }15911592  /** @name UpDataStructsPropertyKeyPermission (177) */1593  export interface UpDataStructsPropertyKeyPermission extends Struct {1594    readonly key: Bytes;1595    readonly permission: UpDataStructsPropertyPermission;1596  }15971598  /** @name UpDataStructsPropertyPermission (179) */1599  export interface UpDataStructsPropertyPermission extends Struct {1600    readonly mutable: bool;1601    readonly collectionAdmin: bool;1602    readonly tokenOwner: bool;1603  }16041605  /** @name UpDataStructsProperty (182) */1606  export interface UpDataStructsProperty extends Struct {1607    readonly key: Bytes;1608    readonly value: Bytes;1609  }16101611  /** @name PalletEvmAccountBasicCrossAccountIdRepr (184) */1612  export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1613    readonly isSubstrate: boolean;1614    readonly asSubstrate: AccountId32;1615    readonly isEthereum: boolean;1616    readonly asEthereum: H160;1617    readonly type: 'Substrate' | 'Ethereum';1618  }16191620  /** @name UpDataStructsCreateItemData (186) */1621  export interface UpDataStructsCreateItemData extends Enum {1622    readonly isNft: boolean;1623    readonly asNft: UpDataStructsCreateNftData;1624    readonly isFungible: boolean;1625    readonly asFungible: UpDataStructsCreateFungibleData;1626    readonly isReFungible: boolean;1627    readonly asReFungible: UpDataStructsCreateReFungibleData;1628    readonly type: 'Nft' | 'Fungible' | 'ReFungible';1629  }16301631  /** @name UpDataStructsCreateNftData (187) */1632  export interface UpDataStructsCreateNftData extends Struct {1633    readonly constData: Bytes;1634    readonly properties: Vec<UpDataStructsProperty>;1635  }16361637  /** @name UpDataStructsCreateFungibleData (189) */1638  export interface UpDataStructsCreateFungibleData extends Struct {1639    readonly value: u128;1640  }16411642  /** @name UpDataStructsCreateReFungibleData (190) */1643  export interface UpDataStructsCreateReFungibleData extends Struct {1644    readonly constData: Bytes;1645    readonly pieces: u128;1646  }16471648  /** @name UpDataStructsCreateItemExData (194) */1649  export interface UpDataStructsCreateItemExData extends Enum {1650    readonly isNft: boolean;1651    readonly asNft: Vec<UpDataStructsCreateNftExData>;1652    readonly isFungible: boolean;1653    readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1654    readonly isRefungibleMultipleItems: boolean;1655    readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1656    readonly isRefungibleMultipleOwners: boolean;1657    readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1658    readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1659  }16601661  /** @name UpDataStructsCreateNftExData (196) */1662  export interface UpDataStructsCreateNftExData extends Struct {1663    readonly constData: Bytes;1664    readonly properties: Vec<UpDataStructsProperty>;1665    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1666  }16671668  /** @name UpDataStructsCreateRefungibleExData (203) */1669  export interface UpDataStructsCreateRefungibleExData extends Struct {1670    readonly constData: Bytes;1671    readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1672  }16731674  /** @name PalletTemplateTransactionPaymentCall (205) */1675  export type PalletTemplateTransactionPaymentCall = Null;16761677  /** @name PalletStructureCall (206) */1678  export type PalletStructureCall = Null;16791680  /** @name PalletRmrkCoreCall (207) */1681  export interface PalletRmrkCoreCall extends Enum {1682    readonly isCreateCollection: boolean;1683    readonly asCreateCollection: {1684      readonly metadata: Bytes;1685      readonly max: Option<u32>;1686      readonly symbol: Bytes;1687    } & Struct;1688    readonly isDestroyCollection: boolean;1689    readonly asDestroyCollection: {1690      readonly collectionId: u32;1691    } & Struct;1692    readonly isChangeCollectionIssuer: boolean;1693    readonly asChangeCollectionIssuer: {1694      readonly collectionId: u32;1695      readonly newIssuer: MultiAddress;1696    } & Struct;1697    readonly isLockCollection: boolean;1698    readonly asLockCollection: {1699      readonly collectionId: u32;1700    } & Struct;1701    readonly isMintNft: boolean;1702    readonly asMintNft: {1703      readonly owner: AccountId32;1704      readonly collectionId: u32;1705      readonly recipient: Option<AccountId32>;1706      readonly royaltyAmount: Option<Permill>;1707      readonly metadata: Bytes;1708    } & Struct;1709    readonly isBurnNft: boolean;1710    readonly asBurnNft: {1711      readonly collectionId: u32;1712      readonly nftId: u32;1713    } & Struct;1714    readonly isSetProperty: boolean;1715    readonly asSetProperty: {1716      readonly rmrkCollectionId: Compact<u32>;1717      readonly maybeNftId: Option<u32>;1718      readonly key: Bytes;1719      readonly value: Bytes;1720    } & Struct;1721    readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';1722  }17231724  /** @name PalletRmrkEquipCall (213) */1725  export interface PalletRmrkEquipCall extends Enum {1726    readonly isCreateBase: boolean;1727    readonly asCreateBase: {1728      readonly baseType: Bytes;1729      readonly symbol: Bytes;1730      readonly parts: Vec<UpDataStructsRmrkPartType>;1731    } & Struct;1732    readonly isThemeAdd: boolean;1733    readonly asThemeAdd: {1734      readonly baseId: u32;1735      readonly theme: UpDataStructsRmrkTheme;1736    } & Struct;1737    readonly type: 'CreateBase' | 'ThemeAdd';1738  }17391740  /** @name UpDataStructsRmrkPartType (215) */1741  export interface UpDataStructsRmrkPartType extends Enum {1742    readonly isFixedPart: boolean;1743    readonly asFixedPart: UpDataStructsRmrkFixedPart;1744    readonly isSlotPart: boolean;1745    readonly asSlotPart: UpDataStructsRmrkSlotPart;1746    readonly type: 'FixedPart' | 'SlotPart';1747  }17481749  /** @name UpDataStructsRmrkFixedPart (217) */1750  export interface UpDataStructsRmrkFixedPart extends Struct {1751    readonly id: u32;1752    readonly z: u32;1753    readonly src: Bytes;1754  }17551756  /** @name UpDataStructsRmrkSlotPart (218) */1757  export interface UpDataStructsRmrkSlotPart extends Struct {1758    readonly id: u32;1759    readonly equippable: UpDataStructsRmrkEquippableList;1760    readonly src: Bytes;1761    readonly z: u32;1762  }17631764  /** @name UpDataStructsRmrkEquippableList (219) */1765  export interface UpDataStructsRmrkEquippableList extends Enum {1766    readonly isAll: boolean;1767    readonly isEmpty: boolean;1768    readonly isCustom: boolean;1769    readonly asCustom: Vec<u32>;1770    readonly type: 'All' | 'Empty' | 'Custom';1771  }17721773  /** @name UpDataStructsRmrkTheme (221) */1774  export interface UpDataStructsRmrkTheme extends Struct {1775    readonly name: Bytes;1776    readonly properties: Vec<UpDataStructsRmrkThemeProperty>;1777    readonly inherit: bool;1778  }17791780  /** @name UpDataStructsRmrkThemeProperty (223) */1781  export interface UpDataStructsRmrkThemeProperty extends Struct {1782    readonly key: Bytes;1783    readonly value: Bytes;1784  }17851786  /** @name PalletEvmCall (224) */1787  export interface PalletEvmCall extends Enum {1788    readonly isWithdraw: boolean;1789    readonly asWithdraw: {1790      readonly address: H160;1791      readonly value: u128;1792    } & Struct;1793    readonly isCall: boolean;1794    readonly asCall: {1795      readonly source: H160;1796      readonly target: H160;1797      readonly input: Bytes;1798      readonly value: U256;1799      readonly gasLimit: u64;1800      readonly maxFeePerGas: U256;1801      readonly maxPriorityFeePerGas: Option<U256>;1802      readonly nonce: Option<U256>;1803      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1804    } & Struct;1805    readonly isCreate: boolean;1806    readonly asCreate: {1807      readonly source: H160;1808      readonly init: Bytes;1809      readonly value: U256;1810      readonly gasLimit: u64;1811      readonly maxFeePerGas: U256;1812      readonly maxPriorityFeePerGas: Option<U256>;1813      readonly nonce: Option<U256>;1814      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1815    } & Struct;1816    readonly isCreate2: boolean;1817    readonly asCreate2: {1818      readonly source: H160;1819      readonly init: Bytes;1820      readonly salt: H256;1821      readonly value: U256;1822      readonly gasLimit: u64;1823      readonly maxFeePerGas: U256;1824      readonly maxPriorityFeePerGas: Option<U256>;1825      readonly nonce: Option<U256>;1826      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1827    } & Struct;1828    readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1829  }18301831  /** @name PalletEthereumCall (230) */1832  export interface PalletEthereumCall extends Enum {1833    readonly isTransact: boolean;1834    readonly asTransact: {1835      readonly transaction: EthereumTransactionTransactionV2;1836    } & Struct;1837    readonly type: 'Transact';1838  }18391840  /** @name EthereumTransactionTransactionV2 (231) */1841  export interface EthereumTransactionTransactionV2 extends Enum {1842    readonly isLegacy: boolean;1843    readonly asLegacy: EthereumTransactionLegacyTransaction;1844    readonly isEip2930: boolean;1845    readonly asEip2930: EthereumTransactionEip2930Transaction;1846    readonly isEip1559: boolean;1847    readonly asEip1559: EthereumTransactionEip1559Transaction;1848    readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1849  }18501851  /** @name EthereumTransactionLegacyTransaction (232) */1852  export interface EthereumTransactionLegacyTransaction extends Struct {1853    readonly nonce: U256;1854    readonly gasPrice: U256;1855    readonly gasLimit: U256;1856    readonly action: EthereumTransactionTransactionAction;1857    readonly value: U256;1858    readonly input: Bytes;1859    readonly signature: EthereumTransactionTransactionSignature;1860  }18611862  /** @name EthereumTransactionTransactionAction (233) */1863  export interface EthereumTransactionTransactionAction extends Enum {1864    readonly isCall: boolean;1865    readonly asCall: H160;1866    readonly isCreate: boolean;1867    readonly type: 'Call' | 'Create';1868  }18691870  /** @name EthereumTransactionTransactionSignature (234) */1871  export interface EthereumTransactionTransactionSignature extends Struct {1872    readonly v: u64;1873    readonly r: H256;1874    readonly s: H256;1875  }18761877  /** @name EthereumTransactionEip2930Transaction (236) */1878  export interface EthereumTransactionEip2930Transaction extends Struct {1879    readonly chainId: u64;1880    readonly nonce: U256;1881    readonly gasPrice: U256;1882    readonly gasLimit: U256;1883    readonly action: EthereumTransactionTransactionAction;1884    readonly value: U256;1885    readonly input: Bytes;1886    readonly accessList: Vec<EthereumTransactionAccessListItem>;1887    readonly oddYParity: bool;1888    readonly r: H256;1889    readonly s: H256;1890  }18911892  /** @name EthereumTransactionAccessListItem (238) */1893  export interface EthereumTransactionAccessListItem extends Struct {1894    readonly address: H160;1895    readonly storageKeys: Vec<H256>;1896  }18971898  /** @name EthereumTransactionEip1559Transaction (239) */1899  export interface EthereumTransactionEip1559Transaction extends Struct {1900    readonly chainId: u64;1901    readonly nonce: U256;1902    readonly maxPriorityFeePerGas: U256;1903    readonly maxFeePerGas: U256;1904    readonly gasLimit: U256;1905    readonly action: EthereumTransactionTransactionAction;1906    readonly value: U256;1907    readonly input: Bytes;1908    readonly accessList: Vec<EthereumTransactionAccessListItem>;1909    readonly oddYParity: bool;1910    readonly r: H256;1911    readonly s: H256;1912  }19131914  /** @name PalletEvmMigrationCall (240) */1915  export interface PalletEvmMigrationCall extends Enum {1916    readonly isBegin: boolean;1917    readonly asBegin: {1918      readonly address: H160;1919    } & Struct;1920    readonly isSetData: boolean;1921    readonly asSetData: {1922      readonly address: H160;1923      readonly data: Vec<ITuple<[H256, H256]>>;1924    } & Struct;1925    readonly isFinish: boolean;1926    readonly asFinish: {1927      readonly address: H160;1928      readonly code: Bytes;1929    } & Struct;1930    readonly type: 'Begin' | 'SetData' | 'Finish';1931  }19321933  /** @name PalletSudoEvent (243) */1934  export interface PalletSudoEvent extends Enum {1935    readonly isSudid: boolean;1936    readonly asSudid: {1937      readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1938    } & Struct;1939    readonly isKeyChanged: boolean;1940    readonly asKeyChanged: {1941      readonly oldSudoer: Option<AccountId32>;1942    } & Struct;1943    readonly isSudoAsDone: boolean;1944    readonly asSudoAsDone: {1945      readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1946    } & Struct;1947    readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1948  }19491950  /** @name SpRuntimeDispatchError (245) */1951  export interface SpRuntimeDispatchError extends Enum {1952    readonly isOther: boolean;1953    readonly isCannotLookup: boolean;1954    readonly isBadOrigin: boolean;1955    readonly isModule: boolean;1956    readonly asModule: SpRuntimeModuleError;1957    readonly isConsumerRemaining: boolean;1958    readonly isNoProviders: boolean;1959    readonly isTooManyConsumers: boolean;1960    readonly isToken: boolean;1961    readonly asToken: SpRuntimeTokenError;1962    readonly isArithmetic: boolean;1963    readonly asArithmetic: SpRuntimeArithmeticError;1964    readonly isTransactional: boolean;1965    readonly asTransactional: SpRuntimeTransactionalError;1966    readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1967  }19681969  /** @name SpRuntimeModuleError (246) */1970  export interface SpRuntimeModuleError extends Struct {1971    readonly index: u8;1972    readonly error: U8aFixed;1973  }19741975  /** @name SpRuntimeTokenError (247) */1976  export interface SpRuntimeTokenError extends Enum {1977    readonly isNoFunds: boolean;1978    readonly isWouldDie: boolean;1979    readonly isBelowMinimum: boolean;1980    readonly isCannotCreate: boolean;1981    readonly isUnknownAsset: boolean;1982    readonly isFrozen: boolean;1983    readonly isUnsupported: boolean;1984    readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1985  }19861987  /** @name SpRuntimeArithmeticError (248) */1988  export interface SpRuntimeArithmeticError extends Enum {1989    readonly isUnderflow: boolean;1990    readonly isOverflow: boolean;1991    readonly isDivisionByZero: boolean;1992    readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1993  }19941995  /** @name SpRuntimeTransactionalError (249) */1996  export interface SpRuntimeTransactionalError extends Enum {1997    readonly isLimitReached: boolean;1998    readonly isNoLayer: boolean;1999    readonly type: 'LimitReached' | 'NoLayer';2000  }20012002  /** @name PalletSudoError (250) */2003  export interface PalletSudoError extends Enum {2004    readonly isRequireSudo: boolean;2005    readonly type: 'RequireSudo';2006  }20072008  /** @name FrameSystemAccountInfo (251) */2009  export interface FrameSystemAccountInfo extends Struct {2010    readonly nonce: u32;2011    readonly consumers: u32;2012    readonly providers: u32;2013    readonly sufficients: u32;2014    readonly data: PalletBalancesAccountData;2015  }20162017  /** @name FrameSupportWeightsPerDispatchClassU64 (252) */2018  export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2019    readonly normal: u64;2020    readonly operational: u64;2021    readonly mandatory: u64;2022  }20232024  /** @name SpRuntimeDigest (253) */2025  export interface SpRuntimeDigest extends Struct {2026    readonly logs: Vec<SpRuntimeDigestDigestItem>;2027  }20282029  /** @name SpRuntimeDigestDigestItem (255) */2030  export interface SpRuntimeDigestDigestItem extends Enum {2031    readonly isOther: boolean;2032    readonly asOther: Bytes;2033    readonly isConsensus: boolean;2034    readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2035    readonly isSeal: boolean;2036    readonly asSeal: ITuple<[U8aFixed, Bytes]>;2037    readonly isPreRuntime: boolean;2038    readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2039    readonly isRuntimeEnvironmentUpdated: boolean;2040    readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2041  }20422043  /** @name FrameSystemEventRecord (257) */2044  export interface FrameSystemEventRecord extends Struct {2045    readonly phase: FrameSystemPhase;2046    readonly event: Event;2047    readonly topics: Vec<H256>;2048  }20492050  /** @name FrameSystemEvent (259) */2051  export interface FrameSystemEvent extends Enum {2052    readonly isExtrinsicSuccess: boolean;2053    readonly asExtrinsicSuccess: {2054      readonly dispatchInfo: FrameSupportWeightsDispatchInfo;2055    } & Struct;2056    readonly isExtrinsicFailed: boolean;2057    readonly asExtrinsicFailed: {2058      readonly dispatchError: SpRuntimeDispatchError;2059      readonly dispatchInfo: FrameSupportWeightsDispatchInfo;2060    } & Struct;2061    readonly isCodeUpdated: boolean;2062    readonly isNewAccount: boolean;2063    readonly asNewAccount: {2064      readonly account: AccountId32;2065    } & Struct;2066    readonly isKilledAccount: boolean;2067    readonly asKilledAccount: {2068      readonly account: AccountId32;2069    } & Struct;2070    readonly isRemarked: boolean;2071    readonly asRemarked: {2072      readonly sender: AccountId32;2073      readonly hash_: H256;2074    } & Struct;2075    readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2076  }20772078  /** @name FrameSupportWeightsDispatchInfo (260) */2079  export interface FrameSupportWeightsDispatchInfo extends Struct {2080    readonly weight: u64;2081    readonly class: FrameSupportWeightsDispatchClass;2082    readonly paysFee: FrameSupportWeightsPays;2083  }20842085  /** @name FrameSupportWeightsDispatchClass (261) */2086  export interface FrameSupportWeightsDispatchClass extends Enum {2087    readonly isNormal: boolean;2088    readonly isOperational: boolean;2089    readonly isMandatory: boolean;2090    readonly type: 'Normal' | 'Operational' | 'Mandatory';2091  }20922093  /** @name FrameSupportWeightsPays (262) */2094  export interface FrameSupportWeightsPays extends Enum {2095    readonly isYes: boolean;2096    readonly isNo: boolean;2097    readonly type: 'Yes' | 'No';2098  }20992100  /** @name OrmlVestingModuleEvent (263) */2101  export interface OrmlVestingModuleEvent extends Enum {2102    readonly isVestingScheduleAdded: boolean;2103    readonly asVestingScheduleAdded: {2104      readonly from: AccountId32;2105      readonly to: AccountId32;2106      readonly vestingSchedule: OrmlVestingVestingSchedule;2107    } & Struct;2108    readonly isClaimed: boolean;2109    readonly asClaimed: {2110      readonly who: AccountId32;2111      readonly amount: u128;2112    } & Struct;2113    readonly isVestingSchedulesUpdated: boolean;2114    readonly asVestingSchedulesUpdated: {2115      readonly who: AccountId32;2116    } & Struct;2117    readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2118  }21192120  /** @name CumulusPalletXcmpQueueEvent (264) */2121  export interface CumulusPalletXcmpQueueEvent extends Enum {2122    readonly isSuccess: boolean;2123    readonly asSuccess: Option<H256>;2124    readonly isFail: boolean;2125    readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;2126    readonly isBadVersion: boolean;2127    readonly asBadVersion: Option<H256>;2128    readonly isBadFormat: boolean;2129    readonly asBadFormat: Option<H256>;2130    readonly isUpwardMessageSent: boolean;2131    readonly asUpwardMessageSent: Option<H256>;2132    readonly isXcmpMessageSent: boolean;2133    readonly asXcmpMessageSent: Option<H256>;2134    readonly isOverweightEnqueued: boolean;2135    readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;2136    readonly isOverweightServiced: boolean;2137    readonly asOverweightServiced: ITuple<[u64, u64]>;2138    readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2139  }21402141  /** @name PalletXcmEvent (265) */2142  export interface PalletXcmEvent extends Enum {2143    readonly isAttempted: boolean;2144    readonly asAttempted: XcmV2TraitsOutcome;2145    readonly isSent: boolean;2146    readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2147    readonly isUnexpectedResponse: boolean;2148    readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2149    readonly isResponseReady: boolean;2150    readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2151    readonly isNotified: boolean;2152    readonly asNotified: ITuple<[u64, u8, u8]>;2153    readonly isNotifyOverweight: boolean;2154    readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2155    readonly isNotifyDispatchError: boolean;2156    readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2157    readonly isNotifyDecodeFailed: boolean;2158    readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2159    readonly isInvalidResponder: boolean;2160    readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2161    readonly isInvalidResponderVersion: boolean;2162    readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2163    readonly isResponseTaken: boolean;2164    readonly asResponseTaken: u64;2165    readonly isAssetsTrapped: boolean;2166    readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2167    readonly isVersionChangeNotified: boolean;2168    readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2169    readonly isSupportedVersionChanged: boolean;2170    readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2171    readonly isNotifyTargetSendFail: boolean;2172    readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2173    readonly isNotifyTargetMigrationFail: boolean;2174    readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2175    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2176  }21772178  /** @name XcmV2TraitsOutcome (266) */2179  export interface XcmV2TraitsOutcome extends Enum {2180    readonly isComplete: boolean;2181    readonly asComplete: u64;2182    readonly isIncomplete: boolean;2183    readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2184    readonly isError: boolean;2185    readonly asError: XcmV2TraitsError;2186    readonly type: 'Complete' | 'Incomplete' | 'Error';2187  }21882189  /** @name CumulusPalletXcmEvent (268) */2190  export interface CumulusPalletXcmEvent extends Enum {2191    readonly isInvalidFormat: boolean;2192    readonly asInvalidFormat: U8aFixed;2193    readonly isUnsupportedVersion: boolean;2194    readonly asUnsupportedVersion: U8aFixed;2195    readonly isExecutedDownward: boolean;2196    readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2197    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2198  }21992200  /** @name CumulusPalletDmpQueueEvent (269) */2201  export interface CumulusPalletDmpQueueEvent extends Enum {2202    readonly isInvalidFormat: boolean;2203    readonly asInvalidFormat: U8aFixed;2204    readonly isUnsupportedVersion: boolean;2205    readonly asUnsupportedVersion: U8aFixed;2206    readonly isExecutedDownward: boolean;2207    readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2208    readonly isWeightExhausted: boolean;2209    readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;2210    readonly isOverweightEnqueued: boolean;2211    readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2212    readonly isOverweightServiced: boolean;2213    readonly asOverweightServiced: ITuple<[u64, u64]>;2214    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2215  }22162217  /** @name PalletUniqueRawEvent (270) */2218  export interface PalletUniqueRawEvent extends Enum {2219    readonly isCollectionSponsorRemoved: boolean;2220    readonly asCollectionSponsorRemoved: u32;2221    readonly isCollectionAdminAdded: boolean;2222    readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2223    readonly isCollectionOwnedChanged: boolean;2224    readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2225    readonly isCollectionSponsorSet: boolean;2226    readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2227    readonly isConstOnChainSchemaSet: boolean;2228    readonly asConstOnChainSchemaSet: u32;2229    readonly isSponsorshipConfirmed: boolean;2230    readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2231    readonly isCollectionAdminRemoved: boolean;2232    readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2233    readonly isAllowListAddressRemoved: boolean;2234    readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2235    readonly isAllowListAddressAdded: boolean;2236    readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2237    readonly isCollectionLimitSet: boolean;2238    readonly asCollectionLimitSet: u32;2239    readonly isMintPermissionSet: boolean;2240    readonly asMintPermissionSet: u32;2241    readonly isOffchainSchemaSet: boolean;2242    readonly asOffchainSchemaSet: u32;2243    readonly isPublicAccessModeSet: boolean;2244    readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2245    readonly isSchemaVersionSet: boolean;2246    readonly asSchemaVersionSet: u32;2247    readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';2248  }22492250  /** @name PalletCommonEvent (271) */2251  export interface PalletCommonEvent extends Enum {2252    readonly isCollectionCreated: boolean;2253    readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2254    readonly isCollectionDestroyed: boolean;2255    readonly asCollectionDestroyed: u32;2256    readonly isItemCreated: boolean;2257    readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2258    readonly isItemDestroyed: boolean;2259    readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2260    readonly isTransfer: boolean;2261    readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2262    readonly isApproved: boolean;2263    readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2264    readonly isCollectionPropertySet: boolean;2265    readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;2266    readonly isCollectionPropertyDeleted: boolean;2267    readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;2268    readonly isTokenPropertySet: boolean;2269    readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;2270    readonly isTokenPropertyDeleted: boolean;2271    readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;2272    readonly isPropertyPermissionSet: boolean;2273    readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;2274    readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2275  }22762277  /** @name PalletStructureEvent (272) */2278  export interface PalletStructureEvent extends Enum {2279    readonly isExecuted: boolean;2280    readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2281    readonly type: 'Executed';2282  }22832284  /** @name PalletRmrkCoreEvent (273) */2285  export interface PalletRmrkCoreEvent extends Enum {2286    readonly isCollectionCreated: boolean;2287    readonly asCollectionCreated: {2288      readonly issuer: AccountId32;2289      readonly collectionId: u32;2290    } & Struct;2291    readonly isCollectionDestroyed: boolean;2292    readonly asCollectionDestroyed: {2293      readonly issuer: AccountId32;2294      readonly collectionId: u32;2295    } & Struct;2296    readonly isIssuerChanged: boolean;2297    readonly asIssuerChanged: {2298      readonly oldIssuer: AccountId32;2299      readonly newIssuer: AccountId32;2300      readonly collectionId: u32;2301    } & Struct;2302    readonly isCollectionLocked: boolean;2303    readonly asCollectionLocked: {2304      readonly issuer: AccountId32;2305      readonly collectionId: u32;2306    } & Struct;2307    readonly isNftMinted: boolean;2308    readonly asNftMinted: {2309      readonly owner: AccountId32;2310      readonly collectionId: u32;2311      readonly nftId: u32;2312    } & Struct;2313    readonly isNftBurned: boolean;2314    readonly asNftBurned: {2315      readonly owner: AccountId32;2316      readonly nftId: u32;2317    } & Struct;2318    readonly isPropertySet: boolean;2319    readonly asPropertySet: {2320      readonly collectionId: u32;2321      readonly maybeNftId: Option<u32>;2322      readonly key: Bytes;2323      readonly value: Bytes;2324    } & Struct;2325    readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';2326  }23272328  /** @name PalletRmrkEquipEvent (274) */2329  export interface PalletRmrkEquipEvent extends Enum {2330    readonly isBaseCreated: boolean;2331    readonly asBaseCreated: {2332      readonly issuer: AccountId32;2333      readonly baseId: u32;2334    } & Struct;2335    readonly type: 'BaseCreated';2336  }23372338  /** @name PalletEvmEvent (275) */2339  export interface PalletEvmEvent extends Enum {2340    readonly isLog: boolean;2341    readonly asLog: EthereumLog;2342    readonly isCreated: boolean;2343    readonly asCreated: H160;2344    readonly isCreatedFailed: boolean;2345    readonly asCreatedFailed: H160;2346    readonly isExecuted: boolean;2347    readonly asExecuted: H160;2348    readonly isExecutedFailed: boolean;2349    readonly asExecutedFailed: H160;2350    readonly isBalanceDeposit: boolean;2351    readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2352    readonly isBalanceWithdraw: boolean;2353    readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2354    readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2355  }23562357  /** @name EthereumLog (276) */2358  export interface EthereumLog extends Struct {2359    readonly address: H160;2360    readonly topics: Vec<H256>;2361    readonly data: Bytes;2362  }23632364  /** @name PalletEthereumEvent (277) */2365  export interface PalletEthereumEvent extends Enum {2366    readonly isExecuted: boolean;2367    readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2368    readonly type: 'Executed';2369  }23702371  /** @name EvmCoreErrorExitReason (278) */2372  export interface EvmCoreErrorExitReason extends Enum {2373    readonly isSucceed: boolean;2374    readonly asSucceed: EvmCoreErrorExitSucceed;2375    readonly isError: boolean;2376    readonly asError: EvmCoreErrorExitError;2377    readonly isRevert: boolean;2378    readonly asRevert: EvmCoreErrorExitRevert;2379    readonly isFatal: boolean;2380    readonly asFatal: EvmCoreErrorExitFatal;2381    readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2382  }23832384  /** @name EvmCoreErrorExitSucceed (279) */2385  export interface EvmCoreErrorExitSucceed extends Enum {2386    readonly isStopped: boolean;2387    readonly isReturned: boolean;2388    readonly isSuicided: boolean;2389    readonly type: 'Stopped' | 'Returned' | 'Suicided';2390  }23912392  /** @name EvmCoreErrorExitError (280) */2393  export interface EvmCoreErrorExitError extends Enum {2394    readonly isStackUnderflow: boolean;2395    readonly isStackOverflow: boolean;2396    readonly isInvalidJump: boolean;2397    readonly isInvalidRange: boolean;2398    readonly isDesignatedInvalid: boolean;2399    readonly isCallTooDeep: boolean;2400    readonly isCreateCollision: boolean;2401    readonly isCreateContractLimit: boolean;2402    readonly isOutOfOffset: boolean;2403    readonly isOutOfGas: boolean;2404    readonly isOutOfFund: boolean;2405    readonly isPcUnderflow: boolean;2406    readonly isCreateEmpty: boolean;2407    readonly isOther: boolean;2408    readonly asOther: Text;2409    readonly isInvalidCode: boolean;2410    readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2411  }24122413  /** @name EvmCoreErrorExitRevert (283) */2414  export interface EvmCoreErrorExitRevert extends Enum {2415    readonly isReverted: boolean;2416    readonly type: 'Reverted';2417  }24182419  /** @name EvmCoreErrorExitFatal (284) */2420  export interface EvmCoreErrorExitFatal extends Enum {2421    readonly isNotSupported: boolean;2422    readonly isUnhandledInterrupt: boolean;2423    readonly isCallErrorAsFatal: boolean;2424    readonly asCallErrorAsFatal: EvmCoreErrorExitError;2425    readonly isOther: boolean;2426    readonly asOther: Text;2427    readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2428  }24292430  /** @name FrameSystemPhase (285) */2431  export interface FrameSystemPhase extends Enum {2432    readonly isApplyExtrinsic: boolean;2433    readonly asApplyExtrinsic: u32;2434    readonly isFinalization: boolean;2435    readonly isInitialization: boolean;2436    readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2437  }24382439  /** @name FrameSystemLastRuntimeUpgradeInfo (287) */2440  export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2441    readonly specVersion: Compact<u32>;2442    readonly specName: Text;2443  }24442445  /** @name FrameSystemLimitsBlockWeights (288) */2446  export interface FrameSystemLimitsBlockWeights extends Struct {2447    readonly baseBlock: u64;2448    readonly maxBlock: u64;2449    readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2450  }24512452  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (289) */2453  export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2454    readonly normal: FrameSystemLimitsWeightsPerClass;2455    readonly operational: FrameSystemLimitsWeightsPerClass;2456    readonly mandatory: FrameSystemLimitsWeightsPerClass;2457  }24582459  /** @name FrameSystemLimitsWeightsPerClass (290) */2460  export interface FrameSystemLimitsWeightsPerClass extends Struct {2461    readonly baseExtrinsic: u64;2462    readonly maxExtrinsic: Option<u64>;2463    readonly maxTotal: Option<u64>;2464    readonly reserved: Option<u64>;2465  }24662467  /** @name FrameSystemLimitsBlockLength (292) */2468  export interface FrameSystemLimitsBlockLength extends Struct {2469    readonly max: FrameSupportWeightsPerDispatchClassU32;2470  }24712472  /** @name FrameSupportWeightsPerDispatchClassU32 (293) */2473  export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2474    readonly normal: u32;2475    readonly operational: u32;2476    readonly mandatory: u32;2477  }24782479  /** @name FrameSupportWeightsRuntimeDbWeight (294) */2480  export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2481    readonly read: u64;2482    readonly write: u64;2483  }24842485  /** @name SpVersionRuntimeVersion (295) */2486  export interface SpVersionRuntimeVersion extends Struct {2487    readonly specName: Text;2488    readonly implName: Text;2489    readonly authoringVersion: u32;2490    readonly specVersion: u32;2491    readonly implVersion: u32;2492    readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2493    readonly transactionVersion: u32;2494    readonly stateVersion: u8;2495  }24962497  /** @name FrameSystemError (299) */2498  export interface FrameSystemError extends Enum {2499    readonly isInvalidSpecName: boolean;2500    readonly isSpecVersionNeedsToIncrease: boolean;2501    readonly isFailedToExtractRuntimeVersion: boolean;2502    readonly isNonDefaultComposite: boolean;2503    readonly isNonZeroRefCount: boolean;2504    readonly isCallFiltered: boolean;2505    readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2506  }25072508  /** @name OrmlVestingModuleError (301) */2509  export interface OrmlVestingModuleError extends Enum {2510    readonly isZeroVestingPeriod: boolean;2511    readonly isZeroVestingPeriodCount: boolean;2512    readonly isInsufficientBalanceToLock: boolean;2513    readonly isTooManyVestingSchedules: boolean;2514    readonly isAmountLow: boolean;2515    readonly isMaxVestingSchedulesExceeded: boolean;2516    readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2517  }25182519  /** @name CumulusPalletXcmpQueueInboundChannelDetails (303) */2520  export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2521    readonly sender: u32;2522    readonly state: CumulusPalletXcmpQueueInboundState;2523    readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2524  }25252526  /** @name CumulusPalletXcmpQueueInboundState (304) */2527  export interface CumulusPalletXcmpQueueInboundState extends Enum {2528    readonly isOk: boolean;2529    readonly isSuspended: boolean;2530    readonly type: 'Ok' | 'Suspended';2531  }25322533  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (307) */2534  export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2535    readonly isConcatenatedVersionedXcm: boolean;2536    readonly isConcatenatedEncodedBlob: boolean;2537    readonly isSignals: boolean;2538    readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2539  }25402541  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (310) */2542  export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2543    readonly recipient: u32;2544    readonly state: CumulusPalletXcmpQueueOutboundState;2545    readonly signalsExist: bool;2546    readonly firstIndex: u16;2547    readonly lastIndex: u16;2548  }25492550  /** @name CumulusPalletXcmpQueueOutboundState (311) */2551  export interface CumulusPalletXcmpQueueOutboundState extends Enum {2552    readonly isOk: boolean;2553    readonly isSuspended: boolean;2554    readonly type: 'Ok' | 'Suspended';2555  }25562557  /** @name CumulusPalletXcmpQueueQueueConfigData (313) */2558  export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2559    readonly suspendThreshold: u32;2560    readonly dropThreshold: u32;2561    readonly resumeThreshold: u32;2562    readonly thresholdWeight: u64;2563    readonly weightRestrictDecay: u64;2564    readonly xcmpMaxIndividualWeight: u64;2565  }25662567  /** @name CumulusPalletXcmpQueueError (315) */2568  export interface CumulusPalletXcmpQueueError extends Enum {2569    readonly isFailedToSend: boolean;2570    readonly isBadXcmOrigin: boolean;2571    readonly isBadXcm: boolean;2572    readonly isBadOverweightIndex: boolean;2573    readonly isWeightOverLimit: boolean;2574    readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2575  }25762577  /** @name PalletXcmError (316) */2578  export interface PalletXcmError extends Enum {2579    readonly isUnreachable: boolean;2580    readonly isSendFailure: boolean;2581    readonly isFiltered: boolean;2582    readonly isUnweighableMessage: boolean;2583    readonly isDestinationNotInvertible: boolean;2584    readonly isEmpty: boolean;2585    readonly isCannotReanchor: boolean;2586    readonly isTooManyAssets: boolean;2587    readonly isInvalidOrigin: boolean;2588    readonly isBadVersion: boolean;2589    readonly isBadLocation: boolean;2590    readonly isNoSubscription: boolean;2591    readonly isAlreadySubscribed: boolean;2592    readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2593  }25942595  /** @name CumulusPalletXcmError (317) */2596  export type CumulusPalletXcmError = Null;25972598  /** @name CumulusPalletDmpQueueConfigData (318) */2599  export interface CumulusPalletDmpQueueConfigData extends Struct {2600    readonly maxIndividual: u64;2601  }26022603  /** @name CumulusPalletDmpQueuePageIndexData (319) */2604  export interface CumulusPalletDmpQueuePageIndexData extends Struct {2605    readonly beginUsed: u32;2606    readonly endUsed: u32;2607    readonly overweightCount: u64;2608  }26092610  /** @name CumulusPalletDmpQueueError (322) */2611  export interface CumulusPalletDmpQueueError extends Enum {2612    readonly isUnknown: boolean;2613    readonly isOverLimit: boolean;2614    readonly type: 'Unknown' | 'OverLimit';2615  }26162617  /** @name PalletUniqueError (326) */2618  export interface PalletUniqueError extends Enum {2619    readonly isCollectionDecimalPointLimitExceeded: boolean;2620    readonly isConfirmUnsetSponsorFail: boolean;2621    readonly isEmptyArgument: boolean;2622    readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2623  }26242625  /** @name UpDataStructsCollection (327) */2626  export interface UpDataStructsCollection extends Struct {2627    readonly owner: AccountId32;2628    readonly mode: UpDataStructsCollectionMode;2629    readonly access: UpDataStructsAccessMode;2630    readonly name: Vec<u16>;2631    readonly description: Vec<u16>;2632    readonly tokenPrefix: Bytes;2633    readonly mintMode: bool;2634    readonly schemaVersion: UpDataStructsSchemaVersion;2635    readonly sponsorship: UpDataStructsSponsorshipState;2636    readonly limits: UpDataStructsCollectionLimits;2637  }26382639  /** @name UpDataStructsSponsorshipState (328) */2640  export interface UpDataStructsSponsorshipState extends Enum {2641    readonly isDisabled: boolean;2642    readonly isUnconfirmed: boolean;2643    readonly asUnconfirmed: AccountId32;2644    readonly isConfirmed: boolean;2645    readonly asConfirmed: AccountId32;2646    readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2647  }26482649  /** @name UpDataStructsProperties (329) */2650  export interface UpDataStructsProperties extends Struct {2651    readonly map: UpDataStructsPropertiesMapBoundedVec;2652    readonly consumedSpace: u32;2653    readonly spaceLimit: u32;2654  }26552656  /** @name UpDataStructsPropertiesMapBoundedVec (330) */2657  export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}26582659  /** @name UpDataStructsPropertiesMapPropertyPermission (335) */2660  export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}26612662  /** @name UpDataStructsCollectionField (341) */2663  export interface UpDataStructsCollectionField extends Enum {2664    readonly isConstOnChainSchema: boolean;2665    readonly isOffchainSchema: boolean;2666    readonly type: 'ConstOnChainSchema' | 'OffchainSchema';2667  }26682669  /** @name UpDataStructsCollectionStats (344) */2670  export interface UpDataStructsCollectionStats extends Struct {2671    readonly created: u32;2672    readonly destroyed: u32;2673    readonly alive: u32;2674  }26752676  /** @name PhantomTypeUpDataStructsTokenData (345) */2677  export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}26782679  /** @name UpDataStructsTokenData (346) */2680  export interface UpDataStructsTokenData extends Struct {2681    readonly constData: Bytes;2682    readonly properties: Vec<UpDataStructsProperty>;2683    readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2684  }26852686  /** @name PhantomTypeUpDataStructsRpcCollection (349) */2687  export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}26882689  /** @name UpDataStructsRpcCollection (350) */2690  export interface UpDataStructsRpcCollection extends Struct {2691    readonly owner: AccountId32;2692    readonly mode: UpDataStructsCollectionMode;2693    readonly access: UpDataStructsAccessMode;2694    readonly name: Vec<u16>;2695    readonly description: Vec<u16>;2696    readonly tokenPrefix: Bytes;2697    readonly mintMode: bool;2698    readonly offchainSchema: Bytes;2699    readonly schemaVersion: UpDataStructsSchemaVersion;2700    readonly sponsorship: UpDataStructsSponsorshipState;2701    readonly limits: UpDataStructsCollectionLimits;2702    readonly constOnChainSchema: Bytes;2703    readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2704    readonly properties: Vec<UpDataStructsProperty>;2705  }27062707  /** @name PhantomTypeUpDataStructsCollectionInfo (352) */2708  export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<UpDataStructsRmrkCollectionInfo> {}27092710  /** @name UpDataStructsRmrkCollectionInfo (353) */2711  export interface UpDataStructsRmrkCollectionInfo extends Struct {2712    readonly issuer: AccountId32;2713    readonly metadata: Bytes;2714    readonly max: Option<u32>;2715    readonly symbol: Bytes;2716    readonly nftsCount: u32;2717  }27182719  /** @name PhantomTypeUpDataStructsNftInfo (355) */2720  export interface PhantomTypeUpDataStructsNftInfo extends Vec<UpDataStructsRmrkNftInfo> {}27212722  /** @name UpDataStructsRmrkNftInfo (356) */2723  export interface UpDataStructsRmrkNftInfo extends Struct {2724    readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;2725    readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;2726    readonly metadata: Bytes;2727    readonly equipped: bool;2728    readonly pending: bool;2729  }27302731  /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (357) */2732  export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {2733    readonly isAccountId: boolean;2734    readonly asAccountId: AccountId32;2735    readonly isCollectionAndNftTuple: boolean;2736    readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2737    readonly type: 'AccountId' | 'CollectionAndNftTuple';2738  }27392740  /** @name UpDataStructsRmrkRoyaltyInfo (359) */2741  export interface UpDataStructsRmrkRoyaltyInfo extends Struct {2742    readonly recipient: AccountId32;2743    readonly amount: Permill;2744  }27452746  /** @name PhantomTypeUpDataStructsResourceInfo (361) */2747  export interface PhantomTypeUpDataStructsResourceInfo extends Vec<UpDataStructsRmrkResourceInfo> {}27482749  /** @name UpDataStructsRmrkResourceInfo (362) */2750  export interface UpDataStructsRmrkResourceInfo extends Struct {2751    readonly id: Bytes;2752    readonly resource: UpDataStructsRmrkResourceTypes;2753    readonly pending: bool;2754    readonly pendingRemoval: bool;2755  }27562757  /** @name UpDataStructsRmrkResourceTypes (365) */2758  export interface UpDataStructsRmrkResourceTypes extends Enum {2759    readonly isBasic: boolean;2760    readonly asBasic: UpDataStructsRmrkBasicResource;2761    readonly isComposable: boolean;2762    readonly asComposable: UpDataStructsRmrkComposableResource;2763    readonly isSlot: boolean;2764    readonly asSlot: UpDataStructsRmrkSlotResource;2765    readonly type: 'Basic' | 'Composable' | 'Slot';2766  }27672768  /** @name UpDataStructsRmrkBasicResource (366) */2769  export interface UpDataStructsRmrkBasicResource extends Struct {2770    readonly src: Option<Bytes>;2771    readonly metadata: Option<Bytes>;2772    readonly license: Option<Bytes>;2773    readonly thumb: Option<Bytes>;2774  }27752776  /** @name UpDataStructsRmrkComposableResource (368) */2777  export interface UpDataStructsRmrkComposableResource extends Struct {2778    readonly parts: Vec<u32>;2779    readonly base: u32;2780    readonly src: Option<Bytes>;2781    readonly metadata: Option<Bytes>;2782    readonly license: Option<Bytes>;2783    readonly thumb: Option<Bytes>;2784  }27852786  /** @name UpDataStructsRmrkSlotResource (369) */2787  export interface UpDataStructsRmrkSlotResource extends Struct {2788    readonly base: u32;2789    readonly src: Option<Bytes>;2790    readonly metadata: Option<Bytes>;2791    readonly slot: u32;2792    readonly license: Option<Bytes>;2793    readonly thumb: Option<Bytes>;2794  }27952796  /** @name PhantomTypeUpDataStructsPropertyInfo (371) */2797  export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<UpDataStructsRmrkPropertyInfo> {}27982799  /** @name UpDataStructsRmrkPropertyInfo (372) */2800  export interface UpDataStructsRmrkPropertyInfo extends Struct {2801    readonly key: Bytes;2802    readonly value: Bytes;2803  }28042805  /** @name PhantomTypeUpDataStructsBaseInfo (374) */2806  export interface PhantomTypeUpDataStructsBaseInfo extends Vec<UpDataStructsRmrkBaseInfo> {}28072808  /** @name UpDataStructsRmrkBaseInfo (375) */2809  export interface UpDataStructsRmrkBaseInfo extends Struct {2810    readonly issuer: AccountId32;2811    readonly baseType: Bytes;2812    readonly symbol: Bytes;2813  }28142815  /** @name PhantomTypeUpDataStructsPartType (377) */2816  export interface PhantomTypeUpDataStructsPartType extends Vec<UpDataStructsRmrkPartType> {}28172818  /** @name PhantomTypeUpDataStructsTheme (379) */2819  export interface PhantomTypeUpDataStructsTheme extends Vec<UpDataStructsRmrkTheme> {}28202821  /** @name PhantomTypeUpDataStructsNftChild (381) */2822  export interface PhantomTypeUpDataStructsNftChild extends Vec<UpDataStructsRmrkNftChild> {}28232824  /** @name UpDataStructsRmrkNftChild (382) */2825  export interface UpDataStructsRmrkNftChild extends Struct {2826    readonly collectionId: u32;2827    readonly nftId: u32;2828  }28292830  /** @name PalletCommonError (384) */2831  export interface PalletCommonError extends Enum {2832    readonly isCollectionNotFound: boolean;2833    readonly isMustBeTokenOwner: boolean;2834    readonly isNoPermission: boolean;2835    readonly isPublicMintingNotAllowed: boolean;2836    readonly isAddressNotInAllowlist: boolean;2837    readonly isCollectionNameLimitExceeded: boolean;2838    readonly isCollectionDescriptionLimitExceeded: boolean;2839    readonly isCollectionTokenPrefixLimitExceeded: boolean;2840    readonly isTotalCollectionsLimitExceeded: boolean;2841    readonly isCollectionAdminCountExceeded: boolean;2842    readonly isCollectionLimitBoundsExceeded: boolean;2843    readonly isOwnerPermissionsCantBeReverted: boolean;2844    readonly isTransferNotAllowed: boolean;2845    readonly isAccountTokenLimitExceeded: boolean;2846    readonly isCollectionTokenLimitExceeded: boolean;2847    readonly isMetadataFlagFrozen: boolean;2848    readonly isTokenNotFound: boolean;2849    readonly isTokenValueTooLow: boolean;2850    readonly isApprovedValueTooLow: boolean;2851    readonly isCantApproveMoreThanOwned: boolean;2852    readonly isAddressIsZero: boolean;2853    readonly isUnsupportedOperation: boolean;2854    readonly isNotSufficientFounds: boolean;2855    readonly isNestingIsDisabled: boolean;2856    readonly isOnlyOwnerAllowedToNest: boolean;2857    readonly isSourceCollectionIsNotAllowedToNest: boolean;2858    readonly isCollectionFieldSizeExceeded: boolean;2859    readonly isNoSpaceForProperty: boolean;2860    readonly isPropertyLimitReached: boolean;2861    readonly isPropertyKeyIsTooLong: boolean;2862    readonly isInvalidCharacterInPropertyKey: boolean;2863    readonly isEmptyPropertyKey: boolean;2864    readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';2865  }28662867  /** @name PalletFungibleError (386) */2868  export interface PalletFungibleError extends Enum {2869    readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2870    readonly isFungibleItemsHaveNoId: boolean;2871    readonly isFungibleItemsDontHaveData: boolean;2872    readonly isFungibleDisallowsNesting: boolean;2873    readonly isSettingPropertiesNotAllowed: boolean;2874    readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2875  }28762877  /** @name PalletRefungibleItemData (387) */2878  export interface PalletRefungibleItemData extends Struct {2879    readonly constData: Bytes;2880  }28812882  /** @name PalletRefungibleError (391) */2883  export interface PalletRefungibleError extends Enum {2884    readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2885    readonly isWrongRefungiblePieces: boolean;2886    readonly isRefungibleDisallowsNesting: boolean;2887    readonly isSettingPropertiesNotAllowed: boolean;2888    readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2889  }28902891  /** @name PalletNonfungibleItemData (392) */2892  export interface PalletNonfungibleItemData extends Struct {2893    readonly constData: Bytes;2894    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2895  }28962897  /** @name PalletNonfungibleError (393) */2898  export interface PalletNonfungibleError extends Enum {2899    readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2900    readonly isNonfungibleItemsHaveNoAmount: boolean;2901    readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2902  }29032904  /** @name PalletStructureError (394) */2905  export interface PalletStructureError extends Enum {2906    readonly isOuroborosDetected: boolean;2907    readonly isDepthLimit: boolean;2908    readonly isTokenNotFound: boolean;2909    readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2910  }29112912  /** @name PalletRmrkCoreError (395) */2913  export interface PalletRmrkCoreError extends Enum {2914    readonly isCorruptedCollectionType: boolean;2915    readonly isNftTypeEncodeError: boolean;2916    readonly isRmrkPropertyKeyIsTooLong: boolean;2917    readonly isRmrkPropertyValueIsTooLong: boolean;2918    readonly isCollectionNotEmpty: boolean;2919    readonly isNoAvailableCollectionId: boolean;2920    readonly isNoAvailableNftId: boolean;2921    readonly isCollectionUnknown: boolean;2922    readonly isNoPermission: boolean;2923    readonly isCollectionFullOrLocked: boolean;2924    readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';2925  }29262927  /** @name PalletRmrkEquipError (397) */2928  export interface PalletRmrkEquipError extends Enum {2929    readonly isPermissionError: boolean;2930    readonly isNoAvailableBaseId: boolean;2931    readonly isNoAvailablePartId: boolean;2932    readonly isBaseDoesntExist: boolean;2933    readonly isNeedsDefaultThemeFirst: boolean;2934    readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';2935  }29362937  /** @name PalletEvmError (400) */2938  export interface PalletEvmError extends Enum {2939    readonly isBalanceLow: boolean;2940    readonly isFeeOverflow: boolean;2941    readonly isPaymentOverflow: boolean;2942    readonly isWithdrawFailed: boolean;2943    readonly isGasPriceTooLow: boolean;2944    readonly isInvalidNonce: boolean;2945    readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2946  }29472948  /** @name FpRpcTransactionStatus (403) */2949  export interface FpRpcTransactionStatus extends Struct {2950    readonly transactionHash: H256;2951    readonly transactionIndex: u32;2952    readonly from: H160;2953    readonly to: Option<H160>;2954    readonly contractAddress: Option<H160>;2955    readonly logs: Vec<EthereumLog>;2956    readonly logsBloom: EthbloomBloom;2957  }29582959  /** @name EthbloomBloom (405) */2960  export interface EthbloomBloom extends U8aFixed {}29612962  /** @name EthereumReceiptReceiptV3 (407) */2963  export interface EthereumReceiptReceiptV3 extends Enum {2964    readonly isLegacy: boolean;2965    readonly asLegacy: EthereumReceiptEip658ReceiptData;2966    readonly isEip2930: boolean;2967    readonly asEip2930: EthereumReceiptEip658ReceiptData;2968    readonly isEip1559: boolean;2969    readonly asEip1559: EthereumReceiptEip658ReceiptData;2970    readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2971  }29722973  /** @name EthereumReceiptEip658ReceiptData (408) */2974  export interface EthereumReceiptEip658ReceiptData extends Struct {2975    readonly statusCode: u8;2976    readonly usedGas: U256;2977    readonly logsBloom: EthbloomBloom;2978    readonly logs: Vec<EthereumLog>;2979  }29802981  /** @name EthereumBlock (409) */2982  export interface EthereumBlock extends Struct {2983    readonly header: EthereumHeader;2984    readonly transactions: Vec<EthereumTransactionTransactionV2>;2985    readonly ommers: Vec<EthereumHeader>;2986  }29872988  /** @name EthereumHeader (410) */2989  export interface EthereumHeader extends Struct {2990    readonly parentHash: H256;2991    readonly ommersHash: H256;2992    readonly beneficiary: H160;2993    readonly stateRoot: H256;2994    readonly transactionsRoot: H256;2995    readonly receiptsRoot: H256;2996    readonly logsBloom: EthbloomBloom;2997    readonly difficulty: U256;2998    readonly number: U256;2999    readonly gasLimit: U256;3000    readonly gasUsed: U256;3001    readonly timestamp: u64;3002    readonly extraData: Bytes;3003    readonly mixHash: H256;3004    readonly nonce: EthereumTypesHashH64;3005  }30063007  /** @name EthereumTypesHashH64 (411) */3008  export interface EthereumTypesHashH64 extends U8aFixed {}30093010  /** @name PalletEthereumError (416) */3011  export interface PalletEthereumError extends Enum {3012    readonly isInvalidSignature: boolean;3013    readonly isPreLogExists: boolean;3014    readonly type: 'InvalidSignature' | 'PreLogExists';3015  }30163017  /** @name PalletEvmCoderSubstrateError (417) */3018  export interface PalletEvmCoderSubstrateError extends Enum {3019    readonly isOutOfGas: boolean;3020    readonly isOutOfFund: boolean;3021    readonly type: 'OutOfGas' | 'OutOfFund';3022  }30233024  /** @name PalletEvmContractHelpersSponsoringModeT (418) */3025  export interface PalletEvmContractHelpersSponsoringModeT extends Enum {3026    readonly isDisabled: boolean;3027    readonly isAllowlisted: boolean;3028    readonly isGenerous: boolean;3029    readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3030  }30313032  /** @name PalletEvmContractHelpersError (420) */3033  export interface PalletEvmContractHelpersError extends Enum {3034    readonly isNoPermission: boolean;3035    readonly type: 'NoPermission';3036  }30373038  /** @name PalletEvmMigrationError (421) */3039  export interface PalletEvmMigrationError extends Enum {3040    readonly isAccountNotEmpty: boolean;3041    readonly isAccountIsNotMigrating: boolean;3042    readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3043  }30443045  /** @name SpRuntimeMultiSignature (423) */3046  export interface SpRuntimeMultiSignature extends Enum {3047    readonly isEd25519: boolean;3048    readonly asEd25519: SpCoreEd25519Signature;3049    readonly isSr25519: boolean;3050    readonly asSr25519: SpCoreSr25519Signature;3051    readonly isEcdsa: boolean;3052    readonly asEcdsa: SpCoreEcdsaSignature;3053    readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3054  }30553056  /** @name SpCoreEd25519Signature (424) */3057  export interface SpCoreEd25519Signature extends U8aFixed {}30583059  /** @name SpCoreSr25519Signature (426) */3060  export interface SpCoreSr25519Signature extends U8aFixed {}30613062  /** @name SpCoreEcdsaSignature (427) */3063  export interface SpCoreEcdsaSignature extends U8aFixed {}30643065  /** @name FrameSystemExtensionsCheckSpecVersion (430) */3066  export type FrameSystemExtensionsCheckSpecVersion = Null;30673068  /** @name FrameSystemExtensionsCheckGenesis (431) */3069  export type FrameSystemExtensionsCheckGenesis = Null;30703071  /** @name FrameSystemExtensionsCheckNonce (434) */3072  export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}30733074  /** @name FrameSystemExtensionsCheckWeight (435) */3075  export type FrameSystemExtensionsCheckWeight = Null;30763077  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (436) */3078  export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}30793080  /** @name OpalRuntimeRuntime (437) */3081  export type OpalRuntimeRuntime = Null;30823083  /** @name PalletEthereumFakeTransactionFinalizer (438) */3084  export type PalletEthereumFakeTransactionFinalizer = Null;30853086} // declare module
modifiedtests/src/interfaces/unique/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -6,6 +6,9 @@
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
 
+/** @name BTreeSet */
+export interface BTreeSet extends Vec<Bytes> {}
+
 /** @name CumulusPalletDmpQueueCall */
 export interface CumulusPalletDmpQueueCall extends Enum {
   readonly isServiceOverweight: boolean;
@@ -1012,6 +1015,12 @@
   readonly type: 'OutOfGas' | 'OutOfFund';
 }
 
+/** @name PalletEvmCollectionError */
+export interface PalletEvmCollectionError extends Enum {
+  readonly isNoPermission: boolean;
+  readonly type: 'NoPermission';
+}
+
 /** @name PalletEvmContractHelpersError */
 export interface PalletEvmContractHelpersError extends Enum {
   readonly isNoPermission: boolean;