difftreelog
Fix after rebase
in: master
15 files changed
Cargo.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 = [
pallets/evm-collection/src/stubs/Collection.rawdiffbeforeafterbothbinary blob — no preview
pallets/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;
}
pallets/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
primitives/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>;
runtime/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},
runtime/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},
tests/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;
tests/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": [],
tests/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
tests/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: {
/**
tests/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;
tests/src/interfaces/lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup2: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>9 **/10 PolkadotPrimitivesV2PersistedValidationData: {11 parentHead: 'Bytes',12 relayParentNumber: 'u32',13 relayParentStorageRoot: 'H256',14 maxPovSize: 'u32'15 },16 /**17 * Lookup9: polkadot_primitives::v2::UpgradeRestriction18 **/19 PolkadotPrimitivesV2UpgradeRestriction: {20 _enum: ['Present']21 },22 /**23 * Lookup10: sp_trie::storage_proof::StorageProof24 **/25 SpTrieStorageProof: {26 trieNodes: 'BTreeSet<Bytes>'27 },28 /**29 * Lookup11: BTreeSet<T>30 **/31 BTreeSet: 'Vec<Bytes>',32 /**33 * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot34 **/35 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {36 dmqMqcHead: 'H256',37 relayDispatchQueueSize: '(u32,u32)',38 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',39 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'40 },41 /**42 * Lookup18: polkadot_primitives::v2::AbridgedHrmpChannel43 **/44 PolkadotPrimitivesV2AbridgedHrmpChannel: {45 maxCapacity: 'u32',46 maxTotalSize: 'u32',47 maxMessageSize: 'u32',48 msgCount: 'u32',49 totalSize: 'u32',50 mqcHead: 'Option<H256>'51 },52 /**53 * Lookup20: polkadot_primitives::v2::AbridgedHostConfiguration54 **/55 PolkadotPrimitivesV2AbridgedHostConfiguration: {56 maxCodeSize: 'u32',57 maxHeadDataSize: 'u32',58 maxUpwardQueueCount: 'u32',59 maxUpwardQueueSize: 'u32',60 maxUpwardMessageSize: 'u32',61 maxUpwardMessageNumPerCandidate: 'u32',62 hrmpMaxMessageNumPerCandidate: 'u32',63 validationUpgradeCooldown: 'u32',64 validationUpgradeDelay: 'u32'65 },66 /**67 * Lookup26: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>68 **/69 PolkadotCorePrimitivesOutboundHrmpMessage: {70 recipient: 'u32',71 data: 'Bytes'72 },73 /**74 * Lookup28: cumulus_pallet_parachain_system::pallet::Call<T>75 **/76 CumulusPalletParachainSystemCall: {77 _enum: {78 set_validation_data: {79 data: 'CumulusPrimitivesParachainInherentParachainInherentData',80 },81 sudo_send_upward_message: {82 message: 'Bytes',83 },84 authorize_upgrade: {85 codeHash: 'H256',86 },87 enact_authorized_upgrade: {88 code: 'Bytes'89 }90 }91 },92 /**93 * Lookup29: cumulus_primitives_parachain_inherent::ParachainInherentData94 **/95 CumulusPrimitivesParachainInherentParachainInherentData: {96 validationData: 'PolkadotPrimitivesV2PersistedValidationData',97 relayChainState: 'SpTrieStorageProof',98 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',99 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'100 },101 /**102 * Lookup31: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>103 **/104 PolkadotCorePrimitivesInboundDownwardMessage: {105 sentAt: 'u32',106 msg: 'Bytes'107 },108 /**109 * Lookup34: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>110 **/111 PolkadotCorePrimitivesInboundHrmpMessage: {112 sentAt: 'u32',113 data: 'Bytes'114 },115 /**116 * Lookup37: cumulus_pallet_parachain_system::pallet::Event<T>117 **/118 CumulusPalletParachainSystemEvent: {119 _enum: {120 ValidationFunctionStored: 'Null',121 ValidationFunctionApplied: 'u32',122 ValidationFunctionDiscarded: 'Null',123 UpgradeAuthorized: 'H256',124 DownwardMessagesReceived: 'u32',125 DownwardMessagesProcessed: '(u64,H256)'126 }127 },128 /**129 * Lookup38: cumulus_pallet_parachain_system::pallet::Error<T>130 **/131 CumulusPalletParachainSystemError: {132 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']133 },134 /**135 * Lookup41: pallet_balances::AccountData<Balance>136 **/137 PalletBalancesAccountData: {138 free: 'u128',139 reserved: 'u128',140 miscFrozen: 'u128',141 feeFrozen: 'u128'142 },143 /**144 * Lookup43: pallet_balances::BalanceLock<Balance>145 **/146 PalletBalancesBalanceLock: {147 id: '[u8;8]',148 amount: 'u128',149 reasons: 'PalletBalancesReasons'150 },151 /**152 * Lookup45: pallet_balances::Reasons153 **/154 PalletBalancesReasons: {155 _enum: ['Fee', 'Misc', 'All']156 },157 /**158 * Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>159 **/160 PalletBalancesReserveData: {161 id: '[u8;8]',162 amount: 'u128'163 },164 /**165 * Lookup50: pallet_balances::Releases166 **/167 PalletBalancesReleases: {168 _enum: ['V1_0_0', 'V2_0_0']169 },170 /**171 * Lookup51: pallet_balances::pallet::Call<T, I>172 **/173 PalletBalancesCall: {174 _enum: {175 transfer: {176 dest: 'MultiAddress',177 value: 'Compact<u128>',178 },179 set_balance: {180 who: 'MultiAddress',181 newFree: 'Compact<u128>',182 newReserved: 'Compact<u128>',183 },184 force_transfer: {185 source: 'MultiAddress',186 dest: 'MultiAddress',187 value: 'Compact<u128>',188 },189 transfer_keep_alive: {190 dest: 'MultiAddress',191 value: 'Compact<u128>',192 },193 transfer_all: {194 dest: 'MultiAddress',195 keepAlive: 'bool',196 },197 force_unreserve: {198 who: 'MultiAddress',199 amount: 'u128'200 }201 }202 },203 /**204 * Lookup57: pallet_balances::pallet::Event<T, I>205 **/206 PalletBalancesEvent: {207 _enum: {208 Endowed: {209 account: 'AccountId32',210 freeBalance: 'u128',211 },212 DustLost: {213 account: 'AccountId32',214 amount: 'u128',215 },216 Transfer: {217 from: 'AccountId32',218 to: 'AccountId32',219 amount: 'u128',220 },221 BalanceSet: {222 who: 'AccountId32',223 free: 'u128',224 reserved: 'u128',225 },226 Reserved: {227 who: 'AccountId32',228 amount: 'u128',229 },230 Unreserved: {231 who: 'AccountId32',232 amount: 'u128',233 },234 ReserveRepatriated: {235 from: 'AccountId32',236 to: 'AccountId32',237 amount: 'u128',238 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',239 },240 Deposit: {241 who: 'AccountId32',242 amount: 'u128',243 },244 Withdraw: {245 who: 'AccountId32',246 amount: 'u128',247 },248 Slashed: {249 who: 'AccountId32',250 amount: 'u128'251 }252 }253 },254 /**255 * Lookup58: frame_support::traits::tokens::misc::BalanceStatus256 **/257 FrameSupportTokensMiscBalanceStatus: {258 _enum: ['Free', 'Reserved']259 },260 /**261 * Lookup59: pallet_balances::pallet::Error<T, I>262 **/263 PalletBalancesError: {264 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']265 },266 /**267 * Lookup62: pallet_timestamp::pallet::Call<T>268 **/269 PalletTimestampCall: {270 _enum: {271 set: {272 now: 'Compact<u64>'273 }274 }275 },276 /**277 * Lookup65: pallet_transaction_payment::Releases278 **/279 PalletTransactionPaymentReleases: {280 _enum: ['V1Ancient', 'V2']281 },282 /**283 * Lookup67: frame_support::weights::WeightToFeeCoefficient<Balance>284 **/285 FrameSupportWeightsWeightToFeeCoefficient: {286 coeffInteger: 'u128',287 coeffFrac: 'Perbill',288 negative: 'bool',289 degree: 'u8'290 },291 /**292 * Lookup69: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>293 **/294 PalletTreasuryProposal: {295 proposer: 'AccountId32',296 value: 'u128',297 beneficiary: 'AccountId32',298 bond: 'u128'299 },300 /**301 * Lookup72: pallet_treasury::pallet::Call<T, I>302 **/303 PalletTreasuryCall: {304 _enum: {305 propose_spend: {306 value: 'Compact<u128>',307 beneficiary: 'MultiAddress',308 },309 reject_proposal: {310 proposalId: 'Compact<u32>',311 },312 approve_proposal: {313 proposalId: 'Compact<u32>'314 }315 }316 },317 /**318 * Lookup74: pallet_treasury::pallet::Event<T, I>319 **/320 PalletTreasuryEvent: {321 _enum: {322 Proposed: {323 proposalIndex: 'u32',324 },325 Spending: {326 budgetRemaining: 'u128',327 },328 Awarded: {329 proposalIndex: 'u32',330 award: 'u128',331 account: 'AccountId32',332 },333 Rejected: {334 proposalIndex: 'u32',335 slashed: 'u128',336 },337 Burnt: {338 burntFunds: 'u128',339 },340 Rollover: {341 rolloverBalance: 'u128',342 },343 Deposit: {344 value: 'u128'345 }346 }347 },348 /**349 * Lookup77: frame_support::PalletId350 **/351 FrameSupportPalletId: '[u8;8]',352 /**353 * Lookup78: pallet_treasury::pallet::Error<T, I>354 **/355 PalletTreasuryError: {356 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']357 },358 /**359 * Lookup79: pallet_sudo::pallet::Call<T>360 **/361 PalletSudoCall: {362 _enum: {363 sudo: {364 call: 'Call',365 },366 sudo_unchecked_weight: {367 call: 'Call',368 weight: 'u64',369 },370 set_key: {371 _alias: {372 new_: 'new',373 },374 new_: 'MultiAddress',375 },376 sudo_as: {377 who: 'MultiAddress',378 call: 'Call'379 }380 }381 },382 /**383 * Lookup81: frame_system::pallet::Call<T>384 **/385 FrameSystemCall: {386 _enum: {387 fill_block: {388 ratio: 'Perbill',389 },390 remark: {391 remark: 'Bytes',392 },393 set_heap_pages: {394 pages: 'u64',395 },396 set_code: {397 code: 'Bytes',398 },399 set_code_without_checks: {400 code: 'Bytes',401 },402 set_storage: {403 items: 'Vec<(Bytes,Bytes)>',404 },405 kill_storage: {406 _alias: {407 keys_: 'keys',408 },409 keys_: 'Vec<Bytes>',410 },411 kill_prefix: {412 prefix: 'Bytes',413 subkeys: 'u32',414 },415 remark_with_event: {416 remark: 'Bytes'417 }418 }419 },420 /**421 * Lookup84: orml_vesting::module::Call<T>422 **/423 OrmlVestingModuleCall: {424 _enum: {425 claim: 'Null',426 vested_transfer: {427 dest: 'MultiAddress',428 schedule: 'OrmlVestingVestingSchedule',429 },430 update_vesting_schedules: {431 who: 'MultiAddress',432 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',433 },434 claim_for: {435 dest: 'MultiAddress'436 }437 }438 },439 /**440 * Lookup85: orml_vesting::VestingSchedule<BlockNumber, Balance>441 **/442 OrmlVestingVestingSchedule: {443 start: 'u32',444 period: 'u32',445 periodCount: 'u32',446 perPeriod: 'Compact<u128>'447 },448 /**449 * Lookup87: cumulus_pallet_xcmp_queue::pallet::Call<T>450 **/451 CumulusPalletXcmpQueueCall: {452 _enum: {453 service_overweight: {454 index: 'u64',455 weightLimit: 'u64',456 },457 suspend_xcm_execution: 'Null',458 resume_xcm_execution: 'Null',459 update_suspend_threshold: {460 _alias: {461 new_: 'new',462 },463 new_: 'u32',464 },465 update_drop_threshold: {466 _alias: {467 new_: 'new',468 },469 new_: 'u32',470 },471 update_resume_threshold: {472 _alias: {473 new_: 'new',474 },475 new_: 'u32',476 },477 update_threshold_weight: {478 _alias: {479 new_: 'new',480 },481 new_: 'u64',482 },483 update_weight_restrict_decay: {484 _alias: {485 new_: 'new',486 },487 new_: 'u64',488 },489 update_xcmp_max_individual_weight: {490 _alias: {491 new_: 'new',492 },493 new_: 'u64'494 }495 }496 },497 /**498 * Lookup88: pallet_xcm::pallet::Call<T>499 **/500 PalletXcmCall: {501 _enum: {502 send: {503 dest: 'XcmVersionedMultiLocation',504 message: 'XcmVersionedXcm',505 },506 teleport_assets: {507 dest: 'XcmVersionedMultiLocation',508 beneficiary: 'XcmVersionedMultiLocation',509 assets: 'XcmVersionedMultiAssets',510 feeAssetItem: 'u32',511 },512 reserve_transfer_assets: {513 dest: 'XcmVersionedMultiLocation',514 beneficiary: 'XcmVersionedMultiLocation',515 assets: 'XcmVersionedMultiAssets',516 feeAssetItem: 'u32',517 },518 execute: {519 message: 'XcmVersionedXcm',520 maxWeight: 'u64',521 },522 force_xcm_version: {523 location: 'XcmV1MultiLocation',524 xcmVersion: 'u32',525 },526 force_default_xcm_version: {527 maybeXcmVersion: 'Option<u32>',528 },529 force_subscribe_version_notify: {530 location: 'XcmVersionedMultiLocation',531 },532 force_unsubscribe_version_notify: {533 location: 'XcmVersionedMultiLocation',534 },535 limited_reserve_transfer_assets: {536 dest: 'XcmVersionedMultiLocation',537 beneficiary: 'XcmVersionedMultiLocation',538 assets: 'XcmVersionedMultiAssets',539 feeAssetItem: 'u32',540 weightLimit: 'XcmV2WeightLimit',541 },542 limited_teleport_assets: {543 dest: 'XcmVersionedMultiLocation',544 beneficiary: 'XcmVersionedMultiLocation',545 assets: 'XcmVersionedMultiAssets',546 feeAssetItem: 'u32',547 weightLimit: 'XcmV2WeightLimit'548 }549 }550 },551 /**552 * Lookup89: xcm::VersionedMultiLocation553 **/554 XcmVersionedMultiLocation: {555 _enum: {556 V0: 'XcmV0MultiLocation',557 V1: 'XcmV1MultiLocation'558 }559 },560 /**561 * Lookup90: xcm::v0::multi_location::MultiLocation562 **/563 XcmV0MultiLocation: {564 _enum: {565 Null: 'Null',566 X1: 'XcmV0Junction',567 X2: '(XcmV0Junction,XcmV0Junction)',568 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',569 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',570 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',571 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',572 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',573 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'574 }575 },576 /**577 * Lookup91: xcm::v0::junction::Junction578 **/579 XcmV0Junction: {580 _enum: {581 Parent: 'Null',582 Parachain: 'Compact<u32>',583 AccountId32: {584 network: 'XcmV0JunctionNetworkId',585 id: '[u8;32]',586 },587 AccountIndex64: {588 network: 'XcmV0JunctionNetworkId',589 index: 'Compact<u64>',590 },591 AccountKey20: {592 network: 'XcmV0JunctionNetworkId',593 key: '[u8;20]',594 },595 PalletInstance: 'u8',596 GeneralIndex: 'Compact<u128>',597 GeneralKey: 'Bytes',598 OnlyChild: 'Null',599 Plurality: {600 id: 'XcmV0JunctionBodyId',601 part: 'XcmV0JunctionBodyPart'602 }603 }604 },605 /**606 * Lookup92: xcm::v0::junction::NetworkId607 **/608 XcmV0JunctionNetworkId: {609 _enum: {610 Any: 'Null',611 Named: 'Bytes',612 Polkadot: 'Null',613 Kusama: 'Null'614 }615 },616 /**617 * Lookup93: xcm::v0::junction::BodyId618 **/619 XcmV0JunctionBodyId: {620 _enum: {621 Unit: 'Null',622 Named: 'Bytes',623 Index: 'Compact<u32>',624 Executive: 'Null',625 Technical: 'Null',626 Legislative: 'Null',627 Judicial: 'Null'628 }629 },630 /**631 * Lookup94: xcm::v0::junction::BodyPart632 **/633 XcmV0JunctionBodyPart: {634 _enum: {635 Voice: 'Null',636 Members: {637 count: 'Compact<u32>',638 },639 Fraction: {640 nom: 'Compact<u32>',641 denom: 'Compact<u32>',642 },643 AtLeastProportion: {644 nom: 'Compact<u32>',645 denom: 'Compact<u32>',646 },647 MoreThanProportion: {648 nom: 'Compact<u32>',649 denom: 'Compact<u32>'650 }651 }652 },653 /**654 * Lookup95: xcm::v1::multilocation::MultiLocation655 **/656 XcmV1MultiLocation: {657 parents: 'u8',658 interior: 'XcmV1MultilocationJunctions'659 },660 /**661 * Lookup96: xcm::v1::multilocation::Junctions662 **/663 XcmV1MultilocationJunctions: {664 _enum: {665 Here: 'Null',666 X1: 'XcmV1Junction',667 X2: '(XcmV1Junction,XcmV1Junction)',668 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',669 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',670 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',671 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',672 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',673 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'674 }675 },676 /**677 * Lookup97: xcm::v1::junction::Junction678 **/679 XcmV1Junction: {680 _enum: {681 Parachain: 'Compact<u32>',682 AccountId32: {683 network: 'XcmV0JunctionNetworkId',684 id: '[u8;32]',685 },686 AccountIndex64: {687 network: 'XcmV0JunctionNetworkId',688 index: 'Compact<u64>',689 },690 AccountKey20: {691 network: 'XcmV0JunctionNetworkId',692 key: '[u8;20]',693 },694 PalletInstance: 'u8',695 GeneralIndex: 'Compact<u128>',696 GeneralKey: 'Bytes',697 OnlyChild: 'Null',698 Plurality: {699 id: 'XcmV0JunctionBodyId',700 part: 'XcmV0JunctionBodyPart'701 }702 }703 },704 /**705 * Lookup98: xcm::VersionedXcm<Call>706 **/707 XcmVersionedXcm: {708 _enum: {709 V0: 'XcmV0Xcm',710 V1: 'XcmV1Xcm',711 V2: 'XcmV2Xcm'712 }713 },714 /**715 * Lookup99: xcm::v0::Xcm<Call>716 **/717 XcmV0Xcm: {718 _enum: {719 WithdrawAsset: {720 assets: 'Vec<XcmV0MultiAsset>',721 effects: 'Vec<XcmV0Order>',722 },723 ReserveAssetDeposit: {724 assets: 'Vec<XcmV0MultiAsset>',725 effects: 'Vec<XcmV0Order>',726 },727 TeleportAsset: {728 assets: 'Vec<XcmV0MultiAsset>',729 effects: 'Vec<XcmV0Order>',730 },731 QueryResponse: {732 queryId: 'Compact<u64>',733 response: 'XcmV0Response',734 },735 TransferAsset: {736 assets: 'Vec<XcmV0MultiAsset>',737 dest: 'XcmV0MultiLocation',738 },739 TransferReserveAsset: {740 assets: 'Vec<XcmV0MultiAsset>',741 dest: 'XcmV0MultiLocation',742 effects: 'Vec<XcmV0Order>',743 },744 Transact: {745 originType: 'XcmV0OriginKind',746 requireWeightAtMost: 'u64',747 call: 'XcmDoubleEncoded',748 },749 HrmpNewChannelOpenRequest: {750 sender: 'Compact<u32>',751 maxMessageSize: 'Compact<u32>',752 maxCapacity: 'Compact<u32>',753 },754 HrmpChannelAccepted: {755 recipient: 'Compact<u32>',756 },757 HrmpChannelClosing: {758 initiator: 'Compact<u32>',759 sender: 'Compact<u32>',760 recipient: 'Compact<u32>',761 },762 RelayedFrom: {763 who: 'XcmV0MultiLocation',764 message: 'XcmV0Xcm'765 }766 }767 },768 /**769 * Lookup101: xcm::v0::multi_asset::MultiAsset770 **/771 XcmV0MultiAsset: {772 _enum: {773 None: 'Null',774 All: 'Null',775 AllFungible: 'Null',776 AllNonFungible: 'Null',777 AllAbstractFungible: {778 id: 'Bytes',779 },780 AllAbstractNonFungible: {781 class: 'Bytes',782 },783 AllConcreteFungible: {784 id: 'XcmV0MultiLocation',785 },786 AllConcreteNonFungible: {787 class: 'XcmV0MultiLocation',788 },789 AbstractFungible: {790 id: 'Bytes',791 amount: 'Compact<u128>',792 },793 AbstractNonFungible: {794 class: 'Bytes',795 instance: 'XcmV1MultiassetAssetInstance',796 },797 ConcreteFungible: {798 id: 'XcmV0MultiLocation',799 amount: 'Compact<u128>',800 },801 ConcreteNonFungible: {802 class: 'XcmV0MultiLocation',803 instance: 'XcmV1MultiassetAssetInstance'804 }805 }806 },807 /**808 * Lookup102: xcm::v1::multiasset::AssetInstance809 **/810 XcmV1MultiassetAssetInstance: {811 _enum: {812 Undefined: 'Null',813 Index: 'Compact<u128>',814 Array4: '[u8;4]',815 Array8: '[u8;8]',816 Array16: '[u8;16]',817 Array32: '[u8;32]',818 Blob: 'Bytes'819 }820 },821 /**822 * Lookup106: xcm::v0::order::Order<Call>823 **/824 XcmV0Order: {825 _enum: {826 Null: 'Null',827 DepositAsset: {828 assets: 'Vec<XcmV0MultiAsset>',829 dest: 'XcmV0MultiLocation',830 },831 DepositReserveAsset: {832 assets: 'Vec<XcmV0MultiAsset>',833 dest: 'XcmV0MultiLocation',834 effects: 'Vec<XcmV0Order>',835 },836 ExchangeAsset: {837 give: 'Vec<XcmV0MultiAsset>',838 receive: 'Vec<XcmV0MultiAsset>',839 },840 InitiateReserveWithdraw: {841 assets: 'Vec<XcmV0MultiAsset>',842 reserve: 'XcmV0MultiLocation',843 effects: 'Vec<XcmV0Order>',844 },845 InitiateTeleport: {846 assets: 'Vec<XcmV0MultiAsset>',847 dest: 'XcmV0MultiLocation',848 effects: 'Vec<XcmV0Order>',849 },850 QueryHolding: {851 queryId: 'Compact<u64>',852 dest: 'XcmV0MultiLocation',853 assets: 'Vec<XcmV0MultiAsset>',854 },855 BuyExecution: {856 fees: 'XcmV0MultiAsset',857 weight: 'u64',858 debt: 'u64',859 haltOnError: 'bool',860 xcm: 'Vec<XcmV0Xcm>'861 }862 }863 },864 /**865 * Lookup108: xcm::v0::Response866 **/867 XcmV0Response: {868 _enum: {869 Assets: 'Vec<XcmV0MultiAsset>'870 }871 },872 /**873 * Lookup109: xcm::v0::OriginKind874 **/875 XcmV0OriginKind: {876 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']877 },878 /**879 * Lookup110: xcm::double_encoded::DoubleEncoded<T>880 **/881 XcmDoubleEncoded: {882 encoded: 'Bytes'883 },884 /**885 * Lookup111: xcm::v1::Xcm<Call>886 **/887 XcmV1Xcm: {888 _enum: {889 WithdrawAsset: {890 assets: 'XcmV1MultiassetMultiAssets',891 effects: 'Vec<XcmV1Order>',892 },893 ReserveAssetDeposited: {894 assets: 'XcmV1MultiassetMultiAssets',895 effects: 'Vec<XcmV1Order>',896 },897 ReceiveTeleportedAsset: {898 assets: 'XcmV1MultiassetMultiAssets',899 effects: 'Vec<XcmV1Order>',900 },901 QueryResponse: {902 queryId: 'Compact<u64>',903 response: 'XcmV1Response',904 },905 TransferAsset: {906 assets: 'XcmV1MultiassetMultiAssets',907 beneficiary: 'XcmV1MultiLocation',908 },909 TransferReserveAsset: {910 assets: 'XcmV1MultiassetMultiAssets',911 dest: 'XcmV1MultiLocation',912 effects: 'Vec<XcmV1Order>',913 },914 Transact: {915 originType: 'XcmV0OriginKind',916 requireWeightAtMost: 'u64',917 call: 'XcmDoubleEncoded',918 },919 HrmpNewChannelOpenRequest: {920 sender: 'Compact<u32>',921 maxMessageSize: 'Compact<u32>',922 maxCapacity: 'Compact<u32>',923 },924 HrmpChannelAccepted: {925 recipient: 'Compact<u32>',926 },927 HrmpChannelClosing: {928 initiator: 'Compact<u32>',929 sender: 'Compact<u32>',930 recipient: 'Compact<u32>',931 },932 RelayedFrom: {933 who: 'XcmV1MultilocationJunctions',934 message: 'XcmV1Xcm',935 },936 SubscribeVersion: {937 queryId: 'Compact<u64>',938 maxResponseWeight: 'Compact<u64>',939 },940 UnsubscribeVersion: 'Null'941 }942 },943 /**944 * Lookup112: xcm::v1::multiasset::MultiAssets945 **/946 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',947 /**948 * Lookup114: xcm::v1::multiasset::MultiAsset949 **/950 XcmV1MultiAsset: {951 id: 'XcmV1MultiassetAssetId',952 fun: 'XcmV1MultiassetFungibility'953 },954 /**955 * Lookup115: xcm::v1::multiasset::AssetId956 **/957 XcmV1MultiassetAssetId: {958 _enum: {959 Concrete: 'XcmV1MultiLocation',960 Abstract: 'Bytes'961 }962 },963 /**964 * Lookup116: xcm::v1::multiasset::Fungibility965 **/966 XcmV1MultiassetFungibility: {967 _enum: {968 Fungible: 'Compact<u128>',969 NonFungible: 'XcmV1MultiassetAssetInstance'970 }971 },972 /**973 * Lookup118: xcm::v1::order::Order<Call>974 **/975 XcmV1Order: {976 _enum: {977 Noop: 'Null',978 DepositAsset: {979 assets: 'XcmV1MultiassetMultiAssetFilter',980 maxAssets: 'u32',981 beneficiary: 'XcmV1MultiLocation',982 },983 DepositReserveAsset: {984 assets: 'XcmV1MultiassetMultiAssetFilter',985 maxAssets: 'u32',986 dest: 'XcmV1MultiLocation',987 effects: 'Vec<XcmV1Order>',988 },989 ExchangeAsset: {990 give: 'XcmV1MultiassetMultiAssetFilter',991 receive: 'XcmV1MultiassetMultiAssets',992 },993 InitiateReserveWithdraw: {994 assets: 'XcmV1MultiassetMultiAssetFilter',995 reserve: 'XcmV1MultiLocation',996 effects: 'Vec<XcmV1Order>',997 },998 InitiateTeleport: {999 assets: 'XcmV1MultiassetMultiAssetFilter',1000 dest: 'XcmV1MultiLocation',1001 effects: 'Vec<XcmV1Order>',1002 },1003 QueryHolding: {1004 queryId: 'Compact<u64>',1005 dest: 'XcmV1MultiLocation',1006 assets: 'XcmV1MultiassetMultiAssetFilter',1007 },1008 BuyExecution: {1009 fees: 'XcmV1MultiAsset',1010 weight: 'u64',1011 debt: 'u64',1012 haltOnError: 'bool',1013 instructions: 'Vec<XcmV1Xcm>'1014 }1015 }1016 },1017 /**1018 * Lookup119: xcm::v1::multiasset::MultiAssetFilter1019 **/1020 XcmV1MultiassetMultiAssetFilter: {1021 _enum: {1022 Definite: 'XcmV1MultiassetMultiAssets',1023 Wild: 'XcmV1MultiassetWildMultiAsset'1024 }1025 },1026 /**1027 * Lookup120: xcm::v1::multiasset::WildMultiAsset1028 **/1029 XcmV1MultiassetWildMultiAsset: {1030 _enum: {1031 All: 'Null',1032 AllOf: {1033 id: 'XcmV1MultiassetAssetId',1034 fun: 'XcmV1MultiassetWildFungibility'1035 }1036 }1037 },1038 /**1039 * Lookup121: xcm::v1::multiasset::WildFungibility1040 **/1041 XcmV1MultiassetWildFungibility: {1042 _enum: ['Fungible', 'NonFungible']1043 },1044 /**1045 * Lookup123: xcm::v1::Response1046 **/1047 XcmV1Response: {1048 _enum: {1049 Assets: 'XcmV1MultiassetMultiAssets',1050 Version: 'u32'1051 }1052 },1053 /**1054 * Lookup124: xcm::v2::Xcm<Call>1055 **/1056 XcmV2Xcm: 'Vec<XcmV2Instruction>',1057 /**1058 * Lookup126: xcm::v2::Instruction<Call>1059 **/1060 XcmV2Instruction: {1061 _enum: {1062 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1063 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',1064 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',1065 QueryResponse: {1066 queryId: 'Compact<u64>',1067 response: 'XcmV2Response',1068 maxWeight: 'Compact<u64>',1069 },1070 TransferAsset: {1071 assets: 'XcmV1MultiassetMultiAssets',1072 beneficiary: 'XcmV1MultiLocation',1073 },1074 TransferReserveAsset: {1075 assets: 'XcmV1MultiassetMultiAssets',1076 dest: 'XcmV1MultiLocation',1077 xcm: 'XcmV2Xcm',1078 },1079 Transact: {1080 originType: 'XcmV0OriginKind',1081 requireWeightAtMost: 'Compact<u64>',1082 call: 'XcmDoubleEncoded',1083 },1084 HrmpNewChannelOpenRequest: {1085 sender: 'Compact<u32>',1086 maxMessageSize: 'Compact<u32>',1087 maxCapacity: 'Compact<u32>',1088 },1089 HrmpChannelAccepted: {1090 recipient: 'Compact<u32>',1091 },1092 HrmpChannelClosing: {1093 initiator: 'Compact<u32>',1094 sender: 'Compact<u32>',1095 recipient: 'Compact<u32>',1096 },1097 ClearOrigin: 'Null',1098 DescendOrigin: 'XcmV1MultilocationJunctions',1099 ReportError: {1100 queryId: 'Compact<u64>',1101 dest: 'XcmV1MultiLocation',1102 maxResponseWeight: 'Compact<u64>',1103 },1104 DepositAsset: {1105 assets: 'XcmV1MultiassetMultiAssetFilter',1106 maxAssets: 'Compact<u32>',1107 beneficiary: 'XcmV1MultiLocation',1108 },1109 DepositReserveAsset: {1110 assets: 'XcmV1MultiassetMultiAssetFilter',1111 maxAssets: 'Compact<u32>',1112 dest: 'XcmV1MultiLocation',1113 xcm: 'XcmV2Xcm',1114 },1115 ExchangeAsset: {1116 give: 'XcmV1MultiassetMultiAssetFilter',1117 receive: 'XcmV1MultiassetMultiAssets',1118 },1119 InitiateReserveWithdraw: {1120 assets: 'XcmV1MultiassetMultiAssetFilter',1121 reserve: 'XcmV1MultiLocation',1122 xcm: 'XcmV2Xcm',1123 },1124 InitiateTeleport: {1125 assets: 'XcmV1MultiassetMultiAssetFilter',1126 dest: 'XcmV1MultiLocation',1127 xcm: 'XcmV2Xcm',1128 },1129 QueryHolding: {1130 queryId: 'Compact<u64>',1131 dest: 'XcmV1MultiLocation',1132 assets: 'XcmV1MultiassetMultiAssetFilter',1133 maxResponseWeight: 'Compact<u64>',1134 },1135 BuyExecution: {1136 fees: 'XcmV1MultiAsset',1137 weightLimit: 'XcmV2WeightLimit',1138 },1139 RefundSurplus: 'Null',1140 SetErrorHandler: 'XcmV2Xcm',1141 SetAppendix: 'XcmV2Xcm',1142 ClearError: 'Null',1143 ClaimAsset: {1144 assets: 'XcmV1MultiassetMultiAssets',1145 ticket: 'XcmV1MultiLocation',1146 },1147 Trap: 'Compact<u64>',1148 SubscribeVersion: {1149 queryId: 'Compact<u64>',1150 maxResponseWeight: 'Compact<u64>',1151 },1152 UnsubscribeVersion: 'Null'1153 }1154 },1155 /**1156 * Lookup127: xcm::v2::Response1157 **/1158 XcmV2Response: {1159 _enum: {1160 Null: 'Null',1161 Assets: 'XcmV1MultiassetMultiAssets',1162 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',1163 Version: 'u32'1164 }1165 },1166 /**1167 * Lookup130: xcm::v2::traits::Error1168 **/1169 XcmV2TraitsError: {1170 _enum: {1171 Overflow: 'Null',1172 Unimplemented: 'Null',1173 UntrustedReserveLocation: 'Null',1174 UntrustedTeleportLocation: 'Null',1175 MultiLocationFull: 'Null',1176 MultiLocationNotInvertible: 'Null',1177 BadOrigin: 'Null',1178 InvalidLocation: 'Null',1179 AssetNotFound: 'Null',1180 FailedToTransactAsset: 'Null',1181 NotWithdrawable: 'Null',1182 LocationCannotHold: 'Null',1183 ExceedsMaxMessageSize: 'Null',1184 DestinationUnsupported: 'Null',1185 Transport: 'Null',1186 Unroutable: 'Null',1187 UnknownClaim: 'Null',1188 FailedToDecode: 'Null',1189 MaxWeightInvalid: 'Null',1190 NotHoldingFees: 'Null',1191 TooExpensive: 'Null',1192 Trap: 'u64',1193 UnhandledXcmVersion: 'Null',1194 WeightLimitReached: 'u64',1195 Barrier: 'Null',1196 WeightNotComputable: 'Null'1197 }1198 },1199 /**1200 * Lookup131: xcm::v2::WeightLimit1201 **/1202 XcmV2WeightLimit: {1203 _enum: {1204 Unlimited: 'Null',1205 Limited: 'Compact<u64>'1206 }1207 },1208 /**1209 * Lookup132: xcm::VersionedMultiAssets1210 **/1211 XcmVersionedMultiAssets: {1212 _enum: {1213 V0: 'Vec<XcmV0MultiAsset>',1214 V1: 'XcmV1MultiassetMultiAssets'1215 }1216 },1217 /**1218 * Lookup147: cumulus_pallet_xcm::pallet::Call<T>1219 **/1220 CumulusPalletXcmCall: 'Null',1221 /**1222 * Lookup148: cumulus_pallet_dmp_queue::pallet::Call<T>1223 **/1224 CumulusPalletDmpQueueCall: {1225 _enum: {1226 service_overweight: {1227 index: 'u64',1228 weightLimit: 'u64'1229 }1230 }1231 },1232 /**1233 * Lookup149: pallet_inflation::pallet::Call<T>1234 **/1235 PalletInflationCall: {1236 _enum: {1237 start_inflation: {1238 inflationStartRelayBlock: 'u32'1239 }1240 }1241 },1242 /**1243 * Lookup150: pallet_unique::Call<T>1244 **/1245 PalletUniqueCall: {1246 _enum: {1247 create_collection: {1248 collectionName: 'Vec<u16>',1249 collectionDescription: 'Vec<u16>',1250 tokenPrefix: 'Bytes',1251 mode: 'UpDataStructsCollectionMode',1252 },1253 create_collection_ex: {1254 data: 'UpDataStructsCreateCollectionData',1255 },1256 destroy_collection: {1257 collectionId: 'u32',1258 },1259 add_to_allow_list: {1260 collectionId: 'u32',1261 address: 'PalletEvmAccountBasicCrossAccountIdRepr',1262 },1263 remove_from_allow_list: {1264 collectionId: 'u32',1265 address: 'PalletEvmAccountBasicCrossAccountIdRepr',1266 },1267 set_public_access_mode: {1268 collectionId: 'u32',1269 mode: 'UpDataStructsAccessMode',1270 },1271 set_mint_permission: {1272 collectionId: 'u32',1273 mintPermission: 'bool',1274 },1275 change_collection_owner: {1276 collectionId: 'u32',1277 newOwner: 'AccountId32',1278 },1279 add_collection_admin: {1280 collectionId: 'u32',1281 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',1282 },1283 remove_collection_admin: {1284 collectionId: 'u32',1285 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',1286 },1287 set_collection_sponsor: {1288 collectionId: 'u32',1289 newSponsor: 'AccountId32',1290 },1291 confirm_sponsorship: {1292 collectionId: 'u32',1293 },1294 remove_collection_sponsor: {1295 collectionId: 'u32',1296 },1297 create_item: {1298 collectionId: 'u32',1299 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',1300 data: 'UpDataStructsCreateItemData',1301 },1302 create_multiple_items: {1303 collectionId: 'u32',1304 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',1305 itemsData: 'Vec<UpDataStructsCreateItemData>',1306 },1307 set_collection_properties: {1308 collectionId: 'u32',1309 properties: 'Vec<UpDataStructsProperty>',1310 },1311 delete_collection_properties: {1312 collectionId: 'u32',1313 propertyKeys: 'Vec<Bytes>',1314 },1315 set_token_properties: {1316 collectionId: 'u32',1317 tokenId: 'u32',1318 properties: 'Vec<UpDataStructsProperty>',1319 },1320 delete_token_properties: {1321 collectionId: 'u32',1322 tokenId: 'u32',1323 propertyKeys: 'Vec<Bytes>',1324 },1325 set_property_permissions: {1326 collectionId: 'u32',1327 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',1328 },1329 create_multiple_items_ex: {1330 collectionId: 'u32',1331 data: 'UpDataStructsCreateItemExData',1332 },1333 set_transfers_enabled_flag: {1334 collectionId: 'u32',1335 value: 'bool',1336 },1337 burn_item: {1338 collectionId: 'u32',1339 itemId: 'u32',1340 value: 'u128',1341 },1342 burn_from: {1343 collectionId: 'u32',1344 from: 'PalletEvmAccountBasicCrossAccountIdRepr',1345 itemId: 'u32',1346 value: 'u128',1347 },1348 transfer: {1349 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',1350 collectionId: 'u32',1351 itemId: 'u32',1352 value: 'u128',1353 },1354 approve: {1355 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',1356 collectionId: 'u32',1357 itemId: 'u32',1358 amount: 'u128',1359 },1360 transfer_from: {1361 from: 'PalletEvmAccountBasicCrossAccountIdRepr',1362 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',1363 collectionId: 'u32',1364 itemId: 'u32',1365 value: 'u128',1366 },1367 set_schema_version: {1368 collectionId: 'u32',1369 version: 'UpDataStructsSchemaVersion',1370 },1371 set_offchain_schema: {1372 collectionId: 'u32',1373 schema: 'Bytes',1374 },1375 set_const_on_chain_schema: {1376 collectionId: 'u32',1377 schema: 'Bytes',1378 },1379 set_collection_limits: {1380 collectionId: 'u32',1381 newLimit: 'UpDataStructsCollectionLimits'1382 }1383 }1384 },1385 /**1386 * Lookup156: up_data_structs::CollectionMode1387 **/1388 UpDataStructsCollectionMode: {1389 _enum: {1390 NFT: 'Null',1391 Fungible: 'u8',1392 ReFungible: 'Null'1393 }1394 },1395 /**1396 * Lookup157: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1397 **/1398 UpDataStructsCreateCollectionData: {1399 mode: 'UpDataStructsCollectionMode',1400 access: 'Option<UpDataStructsAccessMode>',1401 name: 'Vec<u16>',1402 description: 'Vec<u16>',1403 tokenPrefix: 'Bytes',1404 offchainSchema: 'Bytes',1405 schemaVersion: 'Option<UpDataStructsSchemaVersion>',1406 pendingSponsor: 'Option<AccountId32>',1407 limits: 'Option<UpDataStructsCollectionLimits>',1408 constOnChainSchema: 'Bytes',1409 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',1410 properties: 'Vec<UpDataStructsProperty>'1411 },1412 /**1413 * Lookup159: up_data_structs::AccessMode1414 **/1415 UpDataStructsAccessMode: {1416 _enum: ['Normal', 'AllowList']1417 },1418 /**1419 * Lookup162: up_data_structs::SchemaVersion1420 **/1421 UpDataStructsSchemaVersion: {1422 _enum: ['ImageURL', 'Unique']1423 },1424 /**1425 * Lookup165: up_data_structs::CollectionLimits1426 **/1427 UpDataStructsCollectionLimits: {1428 accountTokenOwnershipLimit: 'Option<u32>',1429 sponsoredDataSize: 'Option<u32>',1430 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1431 tokenLimit: 'Option<u32>',1432 sponsorTransferTimeout: 'Option<u32>',1433 sponsorApproveTimeout: 'Option<u32>',1434 ownerCanTransfer: 'Option<bool>',1435 ownerCanDestroy: 'Option<bool>',1436 transfersEnabled: 'Option<bool>',1437 nestingRule: 'Option<UpDataStructsNestingRule>'1438 },1439 /**1440 * Lookup167: up_data_structs::SponsoringRateLimit1441 **/1442 UpDataStructsSponsoringRateLimit: {1443 _enum: {1444 SponsoringDisabled: 'Null',1445 Blocks: 'u32'1446 }1447 },1448 /**1449 * Lookup170: up_data_structs::NestingRule1450 **/1451 UpDataStructsNestingRule: {1452 _enum: {1453 Disabled: 'Null',1454 Owner: 'Null',1455 OwnerRestricted: 'BTreeSet<u32>'1456 }1457 },1458 /**1459 * Lookup177: up_data_structs::PropertyKeyPermission1460 **/1461 UpDataStructsPropertyKeyPermission: {1462 key: 'Bytes',1463 permission: 'UpDataStructsPropertyPermission'1464 },1465 /**1466 * Lookup179: up_data_structs::PropertyPermission1467 **/1468 UpDataStructsPropertyPermission: {1469 mutable: 'bool',1470 collectionAdmin: 'bool',1471 tokenOwner: 'bool'1472 },1473 /**1474 * Lookup182: up_data_structs::Property1475 **/1476 UpDataStructsProperty: {1477 key: 'Bytes',1478 value: 'Bytes'1479 },1480 /**1481 * Lookup184: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1482 **/1483 PalletEvmAccountBasicCrossAccountIdRepr: {1484 _enum: {1485 Substrate: 'AccountId32',1486 Ethereum: 'H160'1487 }1488 },1489 /**1490 * Lookup186: up_data_structs::CreateItemData1491 **/1492 UpDataStructsCreateItemData: {1493 _enum: {1494 NFT: 'UpDataStructsCreateNftData',1495 Fungible: 'UpDataStructsCreateFungibleData',1496 ReFungible: 'UpDataStructsCreateReFungibleData'1497 }1498 },1499 /**1500 * Lookup187: up_data_structs::CreateNftData1501 **/1502 UpDataStructsCreateNftData: {1503 constData: 'Bytes',1504 properties: 'Vec<UpDataStructsProperty>'1505 },1506 /**1507 * Lookup189: up_data_structs::CreateFungibleData1508 **/1509 UpDataStructsCreateFungibleData: {1510 value: 'u128'1511 },1512 /**1513 * Lookup190: up_data_structs::CreateReFungibleData1514 **/1515 UpDataStructsCreateReFungibleData: {1516 constData: 'Bytes',1517 pieces: 'u128'1518 },1519 /**1520 * Lookup194: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1521 **/1522 UpDataStructsCreateItemExData: {1523 _enum: {1524 NFT: 'Vec<UpDataStructsCreateNftExData>',1525 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',1526 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExData>',1527 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExData'1528 }1529 },1530 /**1531 * Lookup196: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1532 **/1533 UpDataStructsCreateNftExData: {1534 constData: 'Bytes',1535 properties: 'Vec<UpDataStructsProperty>',1536 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'1537 },1538 /**1539 * Lookup203: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1540 **/1541 UpDataStructsCreateRefungibleExData: {1542 constData: 'Bytes',1543 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'1544 },1545 /**1546 * Lookup205: pallet_template_transaction_payment::Call<T>1547 **/1548 PalletTemplateTransactionPaymentCall: 'Null',1549 /**1550 * Lookup206: pallet_structure::pallet::Call<T>1551 **/1552 PalletStructureCall: 'Null',1553 /**1554 * Lookup207: pallet_rmrk_core::pallet::Call<T>1555 **/1556 PalletRmrkCoreCall: {1557 _enum: {1558 create_collection: {1559 metadata: 'Bytes',1560 max: 'Option<u32>',1561 symbol: 'Bytes',1562 },1563 destroy_collection: {1564 collectionId: 'u32',1565 },1566 change_collection_issuer: {1567 collectionId: 'u32',1568 newIssuer: 'MultiAddress',1569 },1570 lock_collection: {1571 collectionId: 'u32',1572 },1573 mint_nft: {1574 owner: 'AccountId32',1575 collectionId: 'u32',1576 recipient: 'Option<AccountId32>',1577 royaltyAmount: 'Option<Permill>',1578 metadata: 'Bytes',1579 },1580 burn_nft: {1581 collectionId: 'u32',1582 nftId: 'u32',1583 },1584 set_property: {1585 rmrkCollectionId: 'Compact<u32>',1586 maybeNftId: 'Option<u32>',1587 key: 'Bytes',1588 value: 'Bytes'1589 }1590 }1591 },1592 /**1593 * Lookup213: pallet_rmrk_equip::pallet::Call<T>1594 **/1595 PalletRmrkEquipCall: {1596 _enum: {1597 create_base: {1598 baseType: 'Bytes',1599 symbol: 'Bytes',1600 parts: 'Vec<UpDataStructsRmrkPartType>',1601 },1602 theme_add: {1603 baseId: 'u32',1604 theme: 'UpDataStructsRmrkTheme'1605 }1606 }1607 },1608 /**1609 * Lookup215: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1610 **/1611 UpDataStructsRmrkPartType: {1612 _enum: {1613 FixedPart: 'UpDataStructsRmrkFixedPart',1614 SlotPart: 'UpDataStructsRmrkSlotPart'1615 }1616 },1617 /**1618 * Lookup217: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>1619 **/1620 UpDataStructsRmrkFixedPart: {1621 id: 'u32',1622 z: 'u32',1623 src: 'Bytes'1624 },1625 /**1626 * Lookup218: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1627 **/1628 UpDataStructsRmrkSlotPart: {1629 id: 'u32',1630 equippable: 'UpDataStructsRmrkEquippableList',1631 src: 'Bytes',1632 z: 'u32'1633 },1634 /**1635 * Lookup219: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>1636 **/1637 UpDataStructsRmrkEquippableList: {1638 _enum: {1639 All: 'Null',1640 Empty: 'Null',1641 Custom: 'Vec<u32>'1642 }1643 },1644 /**1645 * Lookup221: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>1646 **/1647 UpDataStructsRmrkTheme: {1648 name: 'Bytes',1649 properties: 'Vec<UpDataStructsRmrkThemeProperty>',1650 inherit: 'bool'1651 },1652 /**1653 * Lookup223: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>1654 **/1655 UpDataStructsRmrkThemeProperty: {1656 key: 'Bytes',1657 value: 'Bytes'1658 },1659 /**1660 * Lookup224: pallet_evm::pallet::Call<T>1661 **/1662 PalletEvmCall: {1663 _enum: {1664 withdraw: {1665 address: 'H160',1666 value: 'u128',1667 },1668 call: {1669 source: 'H160',1670 target: 'H160',1671 input: 'Bytes',1672 value: 'U256',1673 gasLimit: 'u64',1674 maxFeePerGas: 'U256',1675 maxPriorityFeePerGas: 'Option<U256>',1676 nonce: 'Option<U256>',1677 accessList: 'Vec<(H160,Vec<H256>)>',1678 },1679 create: {1680 source: 'H160',1681 init: 'Bytes',1682 value: 'U256',1683 gasLimit: 'u64',1684 maxFeePerGas: 'U256',1685 maxPriorityFeePerGas: 'Option<U256>',1686 nonce: 'Option<U256>',1687 accessList: 'Vec<(H160,Vec<H256>)>',1688 },1689 create2: {1690 source: 'H160',1691 init: 'Bytes',1692 salt: 'H256',1693 value: 'U256',1694 gasLimit: 'u64',1695 maxFeePerGas: 'U256',1696 maxPriorityFeePerGas: 'Option<U256>',1697 nonce: 'Option<U256>',1698 accessList: 'Vec<(H160,Vec<H256>)>'1699 }1700 }1701 },1702 /**1703 * Lookup230: pallet_ethereum::pallet::Call<T>1704 **/1705 PalletEthereumCall: {1706 _enum: {1707 transact: {1708 transaction: 'EthereumTransactionTransactionV2'1709 }1710 }1711 },1712 /**1713 * Lookup231: ethereum::transaction::TransactionV21714 **/1715 EthereumTransactionTransactionV2: {1716 _enum: {1717 Legacy: 'EthereumTransactionLegacyTransaction',1718 EIP2930: 'EthereumTransactionEip2930Transaction',1719 EIP1559: 'EthereumTransactionEip1559Transaction'1720 }1721 },1722 /**1723 * Lookup232: ethereum::transaction::LegacyTransaction1724 **/1725 EthereumTransactionLegacyTransaction: {1726 nonce: 'U256',1727 gasPrice: 'U256',1728 gasLimit: 'U256',1729 action: 'EthereumTransactionTransactionAction',1730 value: 'U256',1731 input: 'Bytes',1732 signature: 'EthereumTransactionTransactionSignature'1733 },1734 /**1735 * Lookup233: ethereum::transaction::TransactionAction1736 **/1737 EthereumTransactionTransactionAction: {1738 _enum: {1739 Call: 'H160',1740 Create: 'Null'1741 }1742 },1743 /**1744 * Lookup234: ethereum::transaction::TransactionSignature1745 **/1746 EthereumTransactionTransactionSignature: {1747 v: 'u64',1748 r: 'H256',1749 s: 'H256'1750 },1751 /**1752 * Lookup236: ethereum::transaction::EIP2930Transaction1753 **/1754 EthereumTransactionEip2930Transaction: {1755 chainId: 'u64',1756 nonce: 'U256',1757 gasPrice: 'U256',1758 gasLimit: 'U256',1759 action: 'EthereumTransactionTransactionAction',1760 value: 'U256',1761 input: 'Bytes',1762 accessList: 'Vec<EthereumTransactionAccessListItem>',1763 oddYParity: 'bool',1764 r: 'H256',1765 s: 'H256'1766 },1767 /**1768 * Lookup238: ethereum::transaction::AccessListItem1769 **/1770 EthereumTransactionAccessListItem: {1771 address: 'H160',1772 storageKeys: 'Vec<H256>'1773 },1774 /**1775 * Lookup239: ethereum::transaction::EIP1559Transaction1776 **/1777 EthereumTransactionEip1559Transaction: {1778 chainId: 'u64',1779 nonce: 'U256',1780 maxPriorityFeePerGas: 'U256',1781 maxFeePerGas: 'U256',1782 gasLimit: 'U256',1783 action: 'EthereumTransactionTransactionAction',1784 value: 'U256',1785 input: 'Bytes',1786 accessList: 'Vec<EthereumTransactionAccessListItem>',1787 oddYParity: 'bool',1788 r: 'H256',1789 s: 'H256'1790 },1791 /**1792 * Lookup240: pallet_evm_migration::pallet::Call<T>1793 **/1794 PalletEvmMigrationCall: {1795 _enum: {1796 begin: {1797 address: 'H160',1798 },1799 set_data: {1800 address: 'H160',1801 data: 'Vec<(H256,H256)>',1802 },1803 finish: {1804 address: 'H160',1805 code: 'Bytes'1806 }1807 }1808 },1809 /**1810 * Lookup243: pallet_sudo::pallet::Event<T>1811 **/1812 PalletSudoEvent: {1813 _enum: {1814 Sudid: {1815 sudoResult: 'Result<Null, SpRuntimeDispatchError>',1816 },1817 KeyChanged: {1818 oldSudoer: 'Option<AccountId32>',1819 },1820 SudoAsDone: {1821 sudoResult: 'Result<Null, SpRuntimeDispatchError>'1822 }1823 }1824 },1825 /**1826 * Lookup245: sp_runtime::DispatchError1827 **/1828 SpRuntimeDispatchError: {1829 _enum: {1830 Other: 'Null',1831 CannotLookup: 'Null',1832 BadOrigin: 'Null',1833 Module: 'SpRuntimeModuleError',1834 ConsumerRemaining: 'Null',1835 NoProviders: 'Null',1836 TooManyConsumers: 'Null',1837 Token: 'SpRuntimeTokenError',1838 Arithmetic: 'SpRuntimeArithmeticError',1839 Transactional: 'SpRuntimeTransactionalError'1840 }1841 },1842 /**1843 * Lookup246: sp_runtime::ModuleError1844 **/1845 SpRuntimeModuleError: {1846 index: 'u8',1847 error: '[u8;4]'1848 },1849 /**1850 * Lookup247: sp_runtime::TokenError1851 **/1852 SpRuntimeTokenError: {1853 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1854 },1855 /**1856 * Lookup248: sp_runtime::ArithmeticError1857 **/1858 SpRuntimeArithmeticError: {1859 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1860 },1861 /**1862 * Lookup249: sp_runtime::TransactionalError1863 **/1864 SpRuntimeTransactionalError: {1865 _enum: ['LimitReached', 'NoLayer']1866 },1867 /**1868 * Lookup250: pallet_sudo::pallet::Error<T>1869 **/1870 PalletSudoError: {1871 _enum: ['RequireSudo']1872 },1873 /**1874 * Lookup251: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1875 **/1876 FrameSystemAccountInfo: {1877 nonce: 'u32',1878 consumers: 'u32',1879 providers: 'u32',1880 sufficients: 'u32',1881 data: 'PalletBalancesAccountData'1882 },1883 /**1884 * Lookup252: frame_support::weights::PerDispatchClass<T>1885 **/1886 FrameSupportWeightsPerDispatchClassU64: {1887 normal: 'u64',1888 operational: 'u64',1889 mandatory: 'u64'1890 },1891 /**1892 * Lookup253: sp_runtime::generic::digest::Digest1893 **/1894 SpRuntimeDigest: {1895 logs: 'Vec<SpRuntimeDigestDigestItem>'1896 },1897 /**1898 * Lookup255: sp_runtime::generic::digest::DigestItem1899 **/1900 SpRuntimeDigestDigestItem: {1901 _enum: {1902 Other: 'Bytes',1903 __Unused1: 'Null',1904 __Unused2: 'Null',1905 __Unused3: 'Null',1906 Consensus: '([u8;4],Bytes)',1907 Seal: '([u8;4],Bytes)',1908 PreRuntime: '([u8;4],Bytes)',1909 __Unused7: 'Null',1910 RuntimeEnvironmentUpdated: 'Null'1911 }1912 },1913 /**1914 * Lookup257: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>1915 **/1916 FrameSystemEventRecord: {1917 phase: 'FrameSystemPhase',1918 event: 'Event',1919 topics: 'Vec<H256>'1920 },1921 /**1922 * Lookup259: frame_system::pallet::Event<T>1923 **/1924 FrameSystemEvent: {1925 _enum: {1926 ExtrinsicSuccess: {1927 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1928 },1929 ExtrinsicFailed: {1930 dispatchError: 'SpRuntimeDispatchError',1931 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1932 },1933 CodeUpdated: 'Null',1934 NewAccount: {1935 account: 'AccountId32',1936 },1937 KilledAccount: {1938 account: 'AccountId32',1939 },1940 Remarked: {1941 _alias: {1942 hash_: 'hash',1943 },1944 sender: 'AccountId32',1945 hash_: 'H256'1946 }1947 }1948 },1949 /**1950 * Lookup260: frame_support::weights::DispatchInfo1951 **/1952 FrameSupportWeightsDispatchInfo: {1953 weight: 'u64',1954 class: 'FrameSupportWeightsDispatchClass',1955 paysFee: 'FrameSupportWeightsPays'1956 },1957 /**1958 * Lookup261: frame_support::weights::DispatchClass1959 **/1960 FrameSupportWeightsDispatchClass: {1961 _enum: ['Normal', 'Operational', 'Mandatory']1962 },1963 /**1964 * Lookup262: frame_support::weights::Pays1965 **/1966 FrameSupportWeightsPays: {1967 _enum: ['Yes', 'No']1968 },1969 /**1970 * Lookup263: orml_vesting::module::Event<T>1971 **/1972 OrmlVestingModuleEvent: {1973 _enum: {1974 VestingScheduleAdded: {1975 from: 'AccountId32',1976 to: 'AccountId32',1977 vestingSchedule: 'OrmlVestingVestingSchedule',1978 },1979 Claimed: {1980 who: 'AccountId32',1981 amount: 'u128',1982 },1983 VestingSchedulesUpdated: {1984 who: 'AccountId32'1985 }1986 }1987 },1988 /**1989 * Lookup264: cumulus_pallet_xcmp_queue::pallet::Event<T>1990 **/1991 CumulusPalletXcmpQueueEvent: {1992 _enum: {1993 Success: 'Option<H256>',1994 Fail: '(Option<H256>,XcmV2TraitsError)',1995 BadVersion: 'Option<H256>',1996 BadFormat: 'Option<H256>',1997 UpwardMessageSent: 'Option<H256>',1998 XcmpMessageSent: 'Option<H256>',1999 OverweightEnqueued: '(u32,u32,u64,u64)',2000 OverweightServiced: '(u64,u64)'2001 }2002 },2003 /**2004 * Lookup265: pallet_xcm::pallet::Event<T>2005 **/2006 PalletXcmEvent: {2007 _enum: {2008 Attempted: 'XcmV2TraitsOutcome',2009 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',2010 UnexpectedResponse: '(XcmV1MultiLocation,u64)',2011 ResponseReady: '(u64,XcmV2Response)',2012 Notified: '(u64,u8,u8)',2013 NotifyOverweight: '(u64,u8,u8,u64,u64)',2014 NotifyDispatchError: '(u64,u8,u8)',2015 NotifyDecodeFailed: '(u64,u8,u8)',2016 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',2017 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',2018 ResponseTaken: 'u64',2019 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',2020 VersionChangeNotified: '(XcmV1MultiLocation,u32)',2021 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',2022 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',2023 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'2024 }2025 },2026 /**2027 * Lookup266: xcm::v2::traits::Outcome2028 **/2029 XcmV2TraitsOutcome: {2030 _enum: {2031 Complete: 'u64',2032 Incomplete: '(u64,XcmV2TraitsError)',2033 Error: 'XcmV2TraitsError'2034 }2035 },2036 /**2037 * Lookup268: cumulus_pallet_xcm::pallet::Event<T>2038 **/2039 CumulusPalletXcmEvent: {2040 _enum: {2041 InvalidFormat: '[u8;8]',2042 UnsupportedVersion: '[u8;8]',2043 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'2044 }2045 },2046 /**2047 * Lookup269: cumulus_pallet_dmp_queue::pallet::Event<T>2048 **/2049 CumulusPalletDmpQueueEvent: {2050 _enum: {2051 InvalidFormat: '[u8;32]',2052 UnsupportedVersion: '[u8;32]',2053 ExecutedDownward: '([u8;32],XcmV2TraitsOutcome)',2054 WeightExhausted: '([u8;32],u64,u64)',2055 OverweightEnqueued: '([u8;32],u64,u64)',2056 OverweightServiced: '(u64,u64)'2057 }2058 },2059 /**2060 * Lookup270: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2061 **/2062 PalletUniqueRawEvent: {2063 _enum: {2064 CollectionSponsorRemoved: 'u32',2065 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',2066 CollectionOwnedChanged: '(u32,AccountId32)',2067 CollectionSponsorSet: '(u32,AccountId32)',2068 ConstOnChainSchemaSet: 'u32',2069 SponsorshipConfirmed: '(u32,AccountId32)',2070 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',2071 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',2072 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',2073 CollectionLimitSet: 'u32',2074 MintPermissionSet: 'u32',2075 OffchainSchemaSet: 'u32',2076 PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',2077 SchemaVersionSet: 'u32'2078 }2079 },2080 /**2081 * Lookup271: pallet_common::pallet::Event<T>2082 **/2083 PalletCommonEvent: {2084 _enum: {2085 CollectionCreated: '(u32,u8,AccountId32)',2086 CollectionDestroyed: 'u32',2087 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2088 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2089 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2090 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2091 CollectionPropertySet: '(u32,Bytes)',2092 CollectionPropertyDeleted: '(u32,Bytes)',2093 TokenPropertySet: '(u32,u32,Bytes)',2094 TokenPropertyDeleted: '(u32,u32,Bytes)',2095 PropertyPermissionSet: '(u32,Bytes)'2096 }2097 },2098 /**2099 * Lookup272: pallet_structure::pallet::Event<T>2100 **/2101 PalletStructureEvent: {2102 _enum: {2103 Executed: 'Result<Null, SpRuntimeDispatchError>'2104 }2105 },2106 /**2107 * Lookup273: pallet_rmrk_core::pallet::Event<T>2108 **/2109 PalletRmrkCoreEvent: {2110 _enum: {2111 CollectionCreated: {2112 issuer: 'AccountId32',2113 collectionId: 'u32',2114 },2115 CollectionDestroyed: {2116 issuer: 'AccountId32',2117 collectionId: 'u32',2118 },2119 IssuerChanged: {2120 oldIssuer: 'AccountId32',2121 newIssuer: 'AccountId32',2122 collectionId: 'u32',2123 },2124 CollectionLocked: {2125 issuer: 'AccountId32',2126 collectionId: 'u32',2127 },2128 NftMinted: {2129 owner: 'AccountId32',2130 collectionId: 'u32',2131 nftId: 'u32',2132 },2133 NFTBurned: {2134 owner: 'AccountId32',2135 nftId: 'u32',2136 },2137 PropertySet: {2138 collectionId: 'u32',2139 maybeNftId: 'Option<u32>',2140 key: 'Bytes',2141 value: 'Bytes'2142 }2143 }2144 },2145 /**2146 * Lookup274: pallet_rmrk_equip::pallet::Event<T>2147 **/2148 PalletRmrkEquipEvent: {2149 _enum: {2150 BaseCreated: {2151 issuer: 'AccountId32',2152 baseId: 'u32'2153 }2154 }2155 },2156 /**2157 * Lookup275: pallet_evm::pallet::Event<T>2158 **/2159 PalletEvmEvent: {2160 _enum: {2161 Log: 'EthereumLog',2162 Created: 'H160',2163 CreatedFailed: 'H160',2164 Executed: 'H160',2165 ExecutedFailed: 'H160',2166 BalanceDeposit: '(AccountId32,H160,U256)',2167 BalanceWithdraw: '(AccountId32,H160,U256)'2168 }2169 },2170 /**2171 * Lookup276: ethereum::log::Log2172 **/2173 EthereumLog: {2174 address: 'H160',2175 topics: 'Vec<H256>',2176 data: 'Bytes'2177 },2178 /**2179 * Lookup277: pallet_ethereum::pallet::Event2180 **/2181 PalletEthereumEvent: {2182 _enum: {2183 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2184 }2185 },2186 /**2187 * Lookup278: evm_core::error::ExitReason2188 **/2189 EvmCoreErrorExitReason: {2190 _enum: {2191 Succeed: 'EvmCoreErrorExitSucceed',2192 Error: 'EvmCoreErrorExitError',2193 Revert: 'EvmCoreErrorExitRevert',2194 Fatal: 'EvmCoreErrorExitFatal'2195 }2196 },2197 /**2198 * Lookup279: evm_core::error::ExitSucceed2199 **/2200 EvmCoreErrorExitSucceed: {2201 _enum: ['Stopped', 'Returned', 'Suicided']2202 },2203 /**2204 * Lookup280: evm_core::error::ExitError2205 **/2206 EvmCoreErrorExitError: {2207 _enum: {2208 StackUnderflow: 'Null',2209 StackOverflow: 'Null',2210 InvalidJump: 'Null',2211 InvalidRange: 'Null',2212 DesignatedInvalid: 'Null',2213 CallTooDeep: 'Null',2214 CreateCollision: 'Null',2215 CreateContractLimit: 'Null',2216 OutOfOffset: 'Null',2217 OutOfGas: 'Null',2218 OutOfFund: 'Null',2219 PCUnderflow: 'Null',2220 CreateEmpty: 'Null',2221 Other: 'Text',2222 InvalidCode: 'Null'2223 }2224 },2225 /**2226 * Lookup283: evm_core::error::ExitRevert2227 **/2228 EvmCoreErrorExitRevert: {2229 _enum: ['Reverted']2230 },2231 /**2232 * Lookup284: evm_core::error::ExitFatal2233 **/2234 EvmCoreErrorExitFatal: {2235 _enum: {2236 NotSupported: 'Null',2237 UnhandledInterrupt: 'Null',2238 CallErrorAsFatal: 'EvmCoreErrorExitError',2239 Other: 'Text'2240 }2241 },2242 /**2243 * Lookup285: frame_system::Phase2244 **/2245 FrameSystemPhase: {2246 _enum: {2247 ApplyExtrinsic: 'u32',2248 Finalization: 'Null',2249 Initialization: 'Null'2250 }2251 },2252 /**2253 * Lookup287: frame_system::LastRuntimeUpgradeInfo2254 **/2255 FrameSystemLastRuntimeUpgradeInfo: {2256 specVersion: 'Compact<u32>',2257 specName: 'Text'2258 },2259 /**2260 * Lookup288: frame_system::limits::BlockWeights2261 **/2262 FrameSystemLimitsBlockWeights: {2263 baseBlock: 'u64',2264 maxBlock: 'u64',2265 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2266 },2267 /**2268 * Lookup289: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2269 **/2270 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2271 normal: 'FrameSystemLimitsWeightsPerClass',2272 operational: 'FrameSystemLimitsWeightsPerClass',2273 mandatory: 'FrameSystemLimitsWeightsPerClass'2274 },2275 /**2276 * Lookup290: frame_system::limits::WeightsPerClass2277 **/2278 FrameSystemLimitsWeightsPerClass: {2279 baseExtrinsic: 'u64',2280 maxExtrinsic: 'Option<u64>',2281 maxTotal: 'Option<u64>',2282 reserved: 'Option<u64>'2283 },2284 /**2285 * Lookup292: frame_system::limits::BlockLength2286 **/2287 FrameSystemLimitsBlockLength: {2288 max: 'FrameSupportWeightsPerDispatchClassU32'2289 },2290 /**2291 * Lookup293: frame_support::weights::PerDispatchClass<T>2292 **/2293 FrameSupportWeightsPerDispatchClassU32: {2294 normal: 'u32',2295 operational: 'u32',2296 mandatory: 'u32'2297 },2298 /**2299 * Lookup294: frame_support::weights::RuntimeDbWeight2300 **/2301 FrameSupportWeightsRuntimeDbWeight: {2302 read: 'u64',2303 write: 'u64'2304 },2305 /**2306 * Lookup295: sp_version::RuntimeVersion2307 **/2308 SpVersionRuntimeVersion: {2309 specName: 'Text',2310 implName: 'Text',2311 authoringVersion: 'u32',2312 specVersion: 'u32',2313 implVersion: 'u32',2314 apis: 'Vec<([u8;8],u32)>',2315 transactionVersion: 'u32',2316 stateVersion: 'u8'2317 },2318 /**2319 * Lookup299: frame_system::pallet::Error<T>2320 **/2321 FrameSystemError: {2322 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2323 },2324 /**2325 * Lookup301: orml_vesting::module::Error<T>2326 **/2327 OrmlVestingModuleError: {2328 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2329 },2330 /**2331 * Lookup303: cumulus_pallet_xcmp_queue::InboundChannelDetails2332 **/2333 CumulusPalletXcmpQueueInboundChannelDetails: {2334 sender: 'u32',2335 state: 'CumulusPalletXcmpQueueInboundState',2336 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2337 },2338 /**2339 * Lookup304: cumulus_pallet_xcmp_queue::InboundState2340 **/2341 CumulusPalletXcmpQueueInboundState: {2342 _enum: ['Ok', 'Suspended']2343 },2344 /**2345 * Lookup307: polkadot_parachain::primitives::XcmpMessageFormat2346 **/2347 PolkadotParachainPrimitivesXcmpMessageFormat: {2348 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2349 },2350 /**2351 * Lookup310: cumulus_pallet_xcmp_queue::OutboundChannelDetails2352 **/2353 CumulusPalletXcmpQueueOutboundChannelDetails: {2354 recipient: 'u32',2355 state: 'CumulusPalletXcmpQueueOutboundState',2356 signalsExist: 'bool',2357 firstIndex: 'u16',2358 lastIndex: 'u16'2359 },2360 /**2361 * Lookup311: cumulus_pallet_xcmp_queue::OutboundState2362 **/2363 CumulusPalletXcmpQueueOutboundState: {2364 _enum: ['Ok', 'Suspended']2365 },2366 /**2367 * Lookup313: cumulus_pallet_xcmp_queue::QueueConfigData2368 **/2369 CumulusPalletXcmpQueueQueueConfigData: {2370 suspendThreshold: 'u32',2371 dropThreshold: 'u32',2372 resumeThreshold: 'u32',2373 thresholdWeight: 'u64',2374 weightRestrictDecay: 'u64',2375 xcmpMaxIndividualWeight: 'u64'2376 },2377 /**2378 * Lookup315: cumulus_pallet_xcmp_queue::pallet::Error<T>2379 **/2380 CumulusPalletXcmpQueueError: {2381 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2382 },2383 /**2384 * Lookup316: pallet_xcm::pallet::Error<T>2385 **/2386 PalletXcmError: {2387 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2388 },2389 /**2390 * Lookup317: cumulus_pallet_xcm::pallet::Error<T>2391 **/2392 CumulusPalletXcmError: 'Null',2393 /**2394 * Lookup318: cumulus_pallet_dmp_queue::ConfigData2395 **/2396 CumulusPalletDmpQueueConfigData: {2397 maxIndividual: 'u64'2398 },2399 /**2400 * Lookup319: cumulus_pallet_dmp_queue::PageIndexData2401 **/2402 CumulusPalletDmpQueuePageIndexData: {2403 beginUsed: 'u32',2404 endUsed: 'u32',2405 overweightCount: 'u64'2406 },2407 /**2408 * Lookup322: cumulus_pallet_dmp_queue::pallet::Error<T>2409 **/2410 CumulusPalletDmpQueueError: {2411 _enum: ['Unknown', 'OverLimit']2412 },2413 /**2414 * Lookup326: pallet_unique::Error<T>2415 **/2416 PalletUniqueError: {2417 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2418 },2419 /**2420 * Lookup327: up_data_structs::Collection<sp_core::crypto::AccountId32>2421 **/2422 UpDataStructsCollection: {2423 owner: 'AccountId32',2424 mode: 'UpDataStructsCollectionMode',2425 access: 'UpDataStructsAccessMode',2426 name: 'Vec<u16>',2427 description: 'Vec<u16>',2428 tokenPrefix: 'Bytes',2429 mintMode: 'bool',2430 schemaVersion: 'UpDataStructsSchemaVersion',2431 sponsorship: 'UpDataStructsSponsorshipState',2432 limits: 'UpDataStructsCollectionLimits'2433 },2434 /**2435 * Lookup328: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2436 **/2437 UpDataStructsSponsorshipState: {2438 _enum: {2439 Disabled: 'Null',2440 Unconfirmed: 'AccountId32',2441 Confirmed: 'AccountId32'2442 }2443 },2444 /**2445 * Lookup329: up_data_structs::Properties2446 **/2447 UpDataStructsProperties: {2448 map: 'UpDataStructsPropertiesMapBoundedVec',2449 consumedSpace: 'u32',2450 spaceLimit: 'u32'2451 },2452 /**2453 * Lookup330: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>2454 **/2455 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',2456 /**2457 * Lookup335: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>2458 **/2459 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',2460 /**2461 * Lookup341: up_data_structs::CollectionField2462 **/2463 UpDataStructsCollectionField: {2464 _enum: ['ConstOnChainSchema', 'OffchainSchema']2465 },2466 /**2467 * Lookup344: up_data_structs::CollectionStats2468 **/2469 UpDataStructsCollectionStats: {2470 created: 'u32',2471 destroyed: 'u32',2472 alive: 'u32'2473 },2474 /**2475 * Lookup345: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>2476 **/2477 PhantomTypeUpDataStructsTokenData: '[Lookup346;0]',2478 /**2479 * Lookup346: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2480 **/2481 UpDataStructsTokenData: {2482 constData: 'Bytes',2483 properties: 'Vec<UpDataStructsProperty>',2484 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'2485 },2486 /**2487 * Lookup349: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>2488 **/2489 PhantomTypeUpDataStructsRpcCollection: '[Lookup350;0]',2490 /**2491 * Lookup350: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2492 **/2493 UpDataStructsRpcCollection: {2494 owner: 'AccountId32',2495 mode: 'UpDataStructsCollectionMode',2496 access: 'UpDataStructsAccessMode',2497 name: 'Vec<u16>',2498 description: 'Vec<u16>',2499 tokenPrefix: 'Bytes',2500 mintMode: 'bool',2501 offchainSchema: 'Bytes',2502 schemaVersion: 'UpDataStructsSchemaVersion',2503 sponsorship: 'UpDataStructsSponsorshipState',2504 limits: 'UpDataStructsCollectionLimits',2505 constOnChainSchema: 'Bytes',2506 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2507 properties: 'Vec<UpDataStructsProperty>'2508 },2509 /**2510 * Lookup352: PhantomType::up_data_structs<up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>>2511 **/2512 PhantomTypeUpDataStructsCollectionInfo: '[Lookup353;0]',2513 /**2514 * Lookup353: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>2515 **/2516 UpDataStructsRmrkCollectionInfo: {2517 issuer: 'AccountId32',2518 metadata: 'Bytes',2519 max: 'Option<u32>',2520 symbol: 'Bytes',2521 nftsCount: 'u32'2522 },2523 /**2524 * Lookup355: PhantomType::up_data_structs<up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>>2525 **/2526 PhantomTypeUpDataStructsNftInfo: '[Lookup356;0]',2527 /**2528 * Lookup356: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>2529 **/2530 UpDataStructsRmrkNftInfo: {2531 owner: 'UpDataStructsRmrkAccountIdOrCollectionNftTuple',2532 royalty: 'Option<UpDataStructsRmrkRoyaltyInfo>',2533 metadata: 'Bytes',2534 equipped: 'bool',2535 pending: 'bool'2536 },2537 /**2538 * Lookup357: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>2539 **/2540 UpDataStructsRmrkAccountIdOrCollectionNftTuple: {2541 _enum: {2542 AccountId: 'AccountId32',2543 CollectionAndNftTuple: '(u32,u32)'2544 }2545 },2546 /**2547 * Lookup359: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>2548 **/2549 UpDataStructsRmrkRoyaltyInfo: {2550 recipient: 'AccountId32',2551 amount: 'Permill'2552 },2553 /**2554 * Lookup361: PhantomType::up_data_structs<up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>2555 **/2556 PhantomTypeUpDataStructsResourceInfo: '[Lookup362;0]',2557 /**2558 * Lookup362: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2559 **/2560 UpDataStructsRmrkResourceInfo: {2561 id: 'Bytes',2562 resource: 'UpDataStructsRmrkResourceTypes',2563 pending: 'bool',2564 pendingRemoval: 'bool'2565 },2566 /**2567 * Lookup365: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2568 **/2569 UpDataStructsRmrkResourceTypes: {2570 _enum: {2571 Basic: 'UpDataStructsRmrkBasicResource',2572 Composable: 'UpDataStructsRmrkComposableResource',2573 Slot: 'UpDataStructsRmrkSlotResource'2574 }2575 },2576 /**2577 * Lookup366: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>2578 **/2579 UpDataStructsRmrkBasicResource: {2580 src: 'Option<Bytes>',2581 metadata: 'Option<Bytes>',2582 license: 'Option<Bytes>',2583 thumb: 'Option<Bytes>'2584 },2585 /**2586 * Lookup368: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2587 **/2588 UpDataStructsRmrkComposableResource: {2589 parts: 'Vec<u32>',2590 base: 'u32',2591 src: 'Option<Bytes>',2592 metadata: 'Option<Bytes>',2593 license: 'Option<Bytes>',2594 thumb: 'Option<Bytes>'2595 },2596 /**2597 * Lookup369: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>2598 **/2599 UpDataStructsRmrkSlotResource: {2600 base: 'u32',2601 src: 'Option<Bytes>',2602 metadata: 'Option<Bytes>',2603 slot: 'u32',2604 license: 'Option<Bytes>',2605 thumb: 'Option<Bytes>'2606 },2607 /**2608 * Lookup371: PhantomType::up_data_structs<up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>2609 **/2610 PhantomTypeUpDataStructsPropertyInfo: '[Lookup372;0]',2611 /**2612 * Lookup372: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2613 **/2614 UpDataStructsRmrkPropertyInfo: {2615 key: 'Bytes',2616 value: 'Bytes'2617 },2618 /**2619 * Lookup374: PhantomType::up_data_structs<up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>>2620 **/2621 PhantomTypeUpDataStructsBaseInfo: '[Lookup375;0]',2622 /**2623 * Lookup375: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>2624 **/2625 UpDataStructsRmrkBaseInfo: {2626 issuer: 'AccountId32',2627 baseType: 'Bytes',2628 symbol: 'Bytes'2629 },2630 /**2631 * Lookup377: PhantomType::up_data_structs<up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>2632 **/2633 PhantomTypeUpDataStructsPartType: '[Lookup215;0]',2634 /**2635 * Lookup379: PhantomType::up_data_structs<up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>>2636 **/2637 PhantomTypeUpDataStructsTheme: '[Lookup221;0]',2638 /**2639 * Lookup381: PhantomType::up_data_structs<up_data_structs::rmrk::NftChild>2640 **/2641 PhantomTypeUpDataStructsNftChild: '[Lookup382;0]',2642 /**2643 * Lookup382: up_data_structs::rmrk::NftChild2644 **/2645 UpDataStructsRmrkNftChild: {2646 collectionId: 'u32',2647 nftId: 'u32'2648 },2649 /**2650 * Lookup384: pallet_common::pallet::Error<T>2651 **/2652 PalletCommonError: {2653 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']2654 },2655 /**2656 * Lookup386: pallet_fungible::pallet::Error<T>2657 **/2658 PalletFungibleError: {2659 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2660 },2661 /**2662 * Lookup387: pallet_refungible::ItemData2663 **/2664 PalletRefungibleItemData: {2665 constData: 'Bytes'2666 },2667 /**2668 * Lookup391: pallet_refungible::pallet::Error<T>2669 **/2670 PalletRefungibleError: {2671 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2672 },2673 /**2674 * Lookup392: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2675 **/2676 PalletNonfungibleItemData: {2677 constData: 'Bytes',2678 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2679 },2680 /**2681 * Lookup393: pallet_nonfungible::pallet::Error<T>2682 **/2683 PalletNonfungibleError: {2684 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2685 },2686 /**2687 * Lookup394: pallet_structure::pallet::Error<T>2688 **/2689 PalletStructureError: {2690 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']2691 },2692 /**2693 * Lookup395: pallet_rmrk_core::pallet::Error<T>2694 **/2695 PalletRmrkCoreError: {2696 _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'CollectionFullOrLocked']2697 },2698 /**2699 * Lookup397: pallet_rmrk_equip::pallet::Error<T>2700 **/2701 PalletRmrkEquipError: {2702 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']2703 },2704 /**2705 * Lookup400: pallet_evm::pallet::Error<T>2706 **/2707 PalletEvmError: {2708 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2709 },2710 /**2711 * Lookup403: fp_rpc::TransactionStatus2712 **/2713 FpRpcTransactionStatus: {2714 transactionHash: 'H256',2715 transactionIndex: 'u32',2716 from: 'H160',2717 to: 'Option<H160>',2718 contractAddress: 'Option<H160>',2719 logs: 'Vec<EthereumLog>',2720 logsBloom: 'EthbloomBloom'2721 },2722 /**2723 * Lookup405: ethbloom::Bloom2724 **/2725 EthbloomBloom: '[u8;256]',2726 /**2727 * Lookup407: ethereum::receipt::ReceiptV32728 **/2729 EthereumReceiptReceiptV3: {2730 _enum: {2731 Legacy: 'EthereumReceiptEip658ReceiptData',2732 EIP2930: 'EthereumReceiptEip658ReceiptData',2733 EIP1559: 'EthereumReceiptEip658ReceiptData'2734 }2735 },2736 /**2737 * Lookup408: ethereum::receipt::EIP658ReceiptData2738 **/2739 EthereumReceiptEip658ReceiptData: {2740 statusCode: 'u8',2741 usedGas: 'U256',2742 logsBloom: 'EthbloomBloom',2743 logs: 'Vec<EthereumLog>'2744 },2745 /**2746 * Lookup409: ethereum::block::Block<ethereum::transaction::TransactionV2>2747 **/2748 EthereumBlock: {2749 header: 'EthereumHeader',2750 transactions: 'Vec<EthereumTransactionTransactionV2>',2751 ommers: 'Vec<EthereumHeader>'2752 },2753 /**2754 * Lookup410: ethereum::header::Header2755 **/2756 EthereumHeader: {2757 parentHash: 'H256',2758 ommersHash: 'H256',2759 beneficiary: 'H160',2760 stateRoot: 'H256',2761 transactionsRoot: 'H256',2762 receiptsRoot: 'H256',2763 logsBloom: 'EthbloomBloom',2764 difficulty: 'U256',2765 number: 'U256',2766 gasLimit: 'U256',2767 gasUsed: 'U256',2768 timestamp: 'u64',2769 extraData: 'Bytes',2770 mixHash: 'H256',2771 nonce: 'EthereumTypesHashH64'2772 },2773 /**2774 * Lookup411: ethereum_types::hash::H642775 **/2776 EthereumTypesHashH64: '[u8;8]',2777 /**2778 * Lookup416: pallet_ethereum::pallet::Error<T>2779 **/2780 PalletEthereumError: {2781 _enum: ['InvalidSignature', 'PreLogExists']2782 },2783 /**2784 * Lookup417: pallet_evm_coder_substrate::pallet::Error<T>2785 **/2786 PalletEvmCoderSubstrateError: {2787 _enum: ['OutOfGas', 'OutOfFund']2788 },2789 /**2790 * Lookup418: pallet_evm_contract_helpers::SponsoringModeT2791 **/2792 PalletEvmContractHelpersSponsoringModeT: {2793 _enum: ['Disabled', 'Allowlisted', 'Generous']2794 },2795 /**2796 * Lookup420: pallet_evm_contract_helpers::pallet::Error<T>2797 **/2798 PalletEvmContractHelpersError: {2799 _enum: ['NoPermission']2800 },2801 /**2802 * Lookup421: pallet_evm_migration::pallet::Error<T>2803 **/2804 PalletEvmMigrationError: {2805 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2806 },2807 /**2808 * Lookup423: sp_runtime::MultiSignature2809 **/2810 SpRuntimeMultiSignature: {2811 _enum: {2812 Ed25519: 'SpCoreEd25519Signature',2813 Sr25519: 'SpCoreSr25519Signature',2814 Ecdsa: 'SpCoreEcdsaSignature'2815 }2816 },2817 /**2818 * Lookup424: sp_core::ed25519::Signature2819 **/2820 SpCoreEd25519Signature: '[u8;64]',2821 /**2822 * Lookup426: sp_core::sr25519::Signature2823 **/2824 SpCoreSr25519Signature: '[u8;64]',2825 /**2826 * Lookup427: sp_core::ecdsa::Signature2827 **/2828 SpCoreEcdsaSignature: '[u8;65]',2829 /**2830 * Lookup430: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2831 **/2832 FrameSystemExtensionsCheckSpecVersion: 'Null',2833 /**2834 * Lookup431: frame_system::extensions::check_genesis::CheckGenesis<T>2835 **/2836 FrameSystemExtensionsCheckGenesis: 'Null',2837 /**2838 * Lookup434: frame_system::extensions::check_nonce::CheckNonce<T>2839 **/2840 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2841 /**2842 * Lookup435: frame_system::extensions::check_weight::CheckWeight<T>2843 **/2844 FrameSystemExtensionsCheckWeight: 'Null',2845 /**2846 * Lookup436: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>2847 **/2848 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2849 /**2850 * Lookup437: opal_runtime::Runtime2851 **/2852 OpalRuntimeRuntime: 'Null',2853 /**2854 * Lookup438: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>2855 **/2856 PalletEthereumFakeTransactionFinalizer: 'Null'2857};tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -26,6 +26,9 @@
readonly trieNodes: BTreeSet<Bytes>;
}
+ /** @name BTreeSet (11) */
+ export interface BTreeSet extends Vec<Bytes> {}
+
/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */
export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
tests/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;