difftreelog
refactor(data-management) revert naming back to evm-migration
in: master
37 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5313,11 +5313,11 @@
"pallet-collator-selection",
"pallet-common",
"pallet-configuration",
- "pallet-data-management",
"pallet-ethereum",
"pallet-evm",
"pallet-evm-coder-substrate",
"pallet-evm-contract-helpers",
+ "pallet-evm-migration",
"pallet-evm-precompile-simple",
"pallet-evm-transaction-payment",
"pallet-foreign-assets",
@@ -5562,9 +5562,9 @@
"pallet-balances",
"pallet-common",
"pallet-configuration",
- "pallet-data-management",
"pallet-evm",
"pallet-evm-contract-helpers",
+ "pallet-evm-migration",
"pallet-randomness-collective-flip",
"pallet-timestamp",
"pallet-unique",
@@ -5870,25 +5870,6 @@
"parity-scale-codec 3.2.1",
"scale-info",
"serde",
- "sp-io",
- "sp-runtime",
- "sp-std",
-]
-
-[[package]]
-name = "pallet-data-management"
-version = "0.1.1"
-dependencies = [
- "ethereum 0.14.0",
- "fp-evm",
- "frame-benchmarking",
- "frame-support",
- "frame-system",
- "pallet-evm",
- "pallet-identity 4.0.0-dev",
- "parity-scale-codec 3.2.1",
- "scale-info",
- "sp-core",
"sp-io",
"sp-runtime",
"sp-std",
@@ -6064,6 +6045,25 @@
]
[[package]]
+name = "pallet-evm-migration"
+version = "0.1.1"
+dependencies = [
+ "ethereum 0.14.0",
+ "fp-evm",
+ "frame-benchmarking",
+ "frame-support",
+ "frame-system",
+ "pallet-evm",
+ "pallet-identity 4.0.0-dev",
+ "parity-scale-codec 3.2.1",
+ "scale-info",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+]
+
+[[package]]
name = "pallet-evm-precompile-simple"
version = "2.0.0-dev"
source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#cf1894629c7df1c4dafe58aa773627a3d940da14"
@@ -8921,11 +8921,11 @@
"pallet-collator-selection",
"pallet-common",
"pallet-configuration",
- "pallet-data-management",
"pallet-ethereum",
"pallet-evm",
"pallet-evm-coder-substrate",
"pallet-evm-contract-helpers",
+ "pallet-evm-migration",
"pallet-evm-precompile-simple",
"pallet-evm-transaction-payment",
"pallet-foreign-assets",
@@ -13153,11 +13153,11 @@
"pallet-collator-selection",
"pallet-common",
"pallet-configuration",
- "pallet-data-management",
"pallet-ethereum",
"pallet-evm",
"pallet-evm-coder-substrate",
"pallet-evm-contract-helpers",
+ "pallet-evm-migration",
"pallet-evm-precompile-simple",
"pallet-evm-transaction-payment",
"pallet-foreign-assets",
Makefilediffbeforeafterboth--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
@echo "regenerate_solidity - generate stubs/interfaces for contracts defined in native (via evm-coder)"
@echo "evm_stubs - recompile contract stubs and ABI"
@echo "bench - run frame-benchmarking"
- @echo " bench-data-management"
+ @echo " bench-evm-migration"
@echo " bench-unique"
FUNGIBLE_EVM_STUBS=./pallets/fungible/src/stubs
@@ -85,9 +85,9 @@
--template .maintain/frame-weight-template.hbs --steps=50 --repeat=80 --heap-pages=4096 \
--output=./pallets/$(if $(PALLET_DIR),$(PALLET_DIR),$(PALLET))/src/weights.rs
-.PHONY: bench-data-management
-bench-data-management:
- make _bench PALLET=data-management
+.PHONY: bench-evm-migration
+bench-evm-migration:
+ make _bench PALLET=evm-migration
.PHONY: bench-common
bench-common:
@@ -143,4 +143,4 @@
.PHONY: bench
# Disabled: bench-scheduler, bench-rmrk-core, bench-rmrk-equip
-bench: bench-data-management bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-foreign-assets
+bench: bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-foreign-assets
pallets/app-promotion/Cargo.tomldiffbeforeafterboth--- a/pallets/app-promotion/Cargo.toml
+++ b/pallets/app-promotion/Cargo.toml
@@ -71,7 +71,7 @@
pallet-configuration = { default-features = false, path = "../configuration" }
pallet-unique = { default-features = false, path = "../unique" }
pallet-evm-contract-helpers = { default-features = false, path = "../evm-contract-helpers" }
-pallet-data-management = { default-features = false, path = "../data-management" }
+pallet-evm-migration = { default-features = false, path = "../evm-migration" }
# [dev-dependencies]
pallets/app-promotion/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/benchmarking.rs
+++ b/pallets/app-promotion/src/benchmarking.rs
@@ -25,13 +25,13 @@
use frame_support::traits::OnInitialize;
use frame_system::RawOrigin;
use pallet_unique::benchmarking::create_nft_collection;
-use pallet_data_management::Pallet as DataManagementPallet;
+use pallet_evm_migration::Pallet as EvmMigrationPallet;
const SEED: u32 = 0;
fn set_admin<T>() -> Result<T::AccountId, sp_runtime::DispatchError>
where
- T: Config + pallet_unique::Config + pallet_data_management::Config,
+ T: Config + pallet_unique::Config + pallet_evm_migration::Config,
T::BlockNumber: From<u32> + Into<u32>,
<<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>,
{
@@ -52,7 +52,7 @@
benchmarks! {
where_clause{
- where T: Config + pallet_unique::Config + pallet_data_management::Config ,
+ where T: Config + pallet_unique::Config + pallet_evm_migration::Config ,
T::BlockNumber: From<u32> + Into<u32>,
<<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>
}
@@ -156,8 +156,8 @@
let _ = <T as Config>::Currency::make_free_balance_be(&pallet_admin, Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
let address = H160::from_low_u64_be(SEED as u64);
let data: Vec<u8> = (0..20 as u8).collect();
- <DataManagementPallet<T>>::begin(RawOrigin::Root.into(), address)?;
- <DataManagementPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
+ <EvmMigrationPallet<T>>::begin(RawOrigin::Root.into(), address)?;
+ <EvmMigrationPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
} : _(RawOrigin::Signed(pallet_admin.clone()), address)
stop_sponsoring_contract {
@@ -167,8 +167,8 @@
let _ = <T as Config>::Currency::make_free_balance_be(&pallet_admin, Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
let address = H160::from_low_u64_be(SEED as u64);
let data: Vec<u8> = (0..20 as u8).collect();
- <DataManagementPallet<T>>::begin(RawOrigin::Root.into(), address)?;
- <DataManagementPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
+ <EvmMigrationPallet<T>>::begin(RawOrigin::Root.into(), address)?;
+ <EvmMigrationPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
PromototionPallet::<T>::sponsor_contract(RawOrigin::Signed(pallet_admin.clone()).into(), address)?;
} : _(RawOrigin::Signed(pallet_admin.clone()), address)
}
pallets/data-management/CHANGELOG.mddiffbeforeafterboth--- a/pallets/data-management/CHANGELOG.md
+++ /dev/null
@@ -1,17 +0,0 @@
-<!-- bureaucrate goes here -->
-## [v0.1.1] 2022-08-16
-
-### Other changes
-
-- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
-
-- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
-
-- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
-
-Every extrinsic now runs in transaction implicitly, and
-`#[transactional]` on pallet dispatchable is now meaningless
-
-Upstream-Change: https://github.com/paritytech/substrate/issues/10806
-
-- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/data-management/Cargo.tomldiffbeforeafterboth--- a/pallets/data-management/Cargo.toml
+++ /dev/null
@@ -1,43 +0,0 @@
-[package]
-name = "pallet-data-management"
-version = "0.1.1"
-license = "GPLv3"
-edition = "2021"
-
-[dependencies]
-scale-info = { version = "2.0.1", default-features = false, features = [
- "derive",
-] }
-ethereum = { version = "0.14.0", default-features = false }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-identity = { default-features = false, path = "../identity" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-
-[dependencies.codec]
-default-features = false
-features = ['derive']
-package = 'parity-scale-codec'
-version = '3.1.2'
-
-[features]
-default = ["std", "runtime-benchmarks"]
-std = [
- "frame-support/std",
- "frame-system/std",
- "frame-benchmarking/std",
- "sp-runtime/std",
- "sp-std/std",
- "sp-io/std",
- "sp-core/std",
- "pallet-evm/std",
- "fp-evm/std",
-]
-runtime-benchmarks = ["frame-benchmarking"]
-try-runtime = ["frame-support/try-runtime"]
pallets/data-management/README.mddiffbeforeafterboth--- a/pallets/data-management/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# EVM contract migration pallet
-
-This pallet is only callable by root, it has functionality to migrate contract
-from other ethereum chain to pallet-evm
-
-Contract data includes contract code, and contract storage,
-where contract storage is a mapping from evm word to evm word (evm word = 32 byte)
-
-To import contract data into pallet-evm admin should call this pallet multiple times:
-1. Start migration via `begin`
-2. Insert all contract data using single or
- multiple (If data can't be fit into single extrinsic) calls
- to `set_data`
-3. Finish migration using `finish`, providing contract code
-
-During migration no one can insert code at address of this contract,
-as [`pallet::OnMethodCall`] prevents this, and no one can call this contract,
-as code is only supplied at final stage of contract deployment
\ No newline at end of file
pallets/data-management/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/data-management/src/benchmarking.rs
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
-// This file is part of Unique Network.
-
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// Unique Network is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
-
-#![allow(missing_docs)]
-
-use super::{Call, Config, Pallet};
-use frame_benchmarking::benchmarks;
-use frame_system::RawOrigin;
-use sp_core::{H160, H256};
-use sp_std::{vec::Vec, vec};
-
-benchmarks! {
- where_clause { where <T as Config>::RuntimeEvent: codec::Encode }
-
- begin {
- }: _(RawOrigin::Root, H160::default())
-
- set_data {
- let b in 0..80;
- let address = H160::from_low_u64_be(b as u64);
- let mut data = Vec::new();
- for i in 0..b {
- data.push((
- H256::from_low_u64_be(i as u64),
- H256::from_low_u64_be(i as u64),
- ));
- }
- <Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
- }: _(RawOrigin::Root, address, data)
-
- finish {
- let b in 0..80;
- let address = H160::from_low_u64_be(b as u64);
- let data: Vec<u8> = (0..b as u8).collect();
- <Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
- }: _(RawOrigin::Root, address, data)
-
- insert_eth_logs {
- let b in 0..200;
- let logs = (0..b).map(|_| ethereum::Log {
- address: H160([b as u8; 20]),
- data: vec![b as u8; 128],
- topics: vec![H256([b as u8; 32]); 6],
- }).collect::<Vec<_>>();
- }: _(RawOrigin::Root, logs)
-
- insert_events {
- let b in 0..200;
- use codec::Encode;
- let logs = (0..b).map(|_| <T as Config>::RuntimeEvent::from(crate::Event::<T>::TestEvent).encode()).collect::<Vec<_>>();
- }: _(RawOrigin::Root, logs)
-}
pallets/data-management/src/lib.rsdiffbeforeafterboth--- a/pallets/data-management/src/lib.rs
+++ /dev/null
@@ -1,173 +0,0 @@
-// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
-// This file is part of Unique Network.
-
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// Unique Network is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
-
-#![doc = include_str!("../README.md")]
-#![cfg_attr(not(feature = "std"), no_std)]
-#![deny(missing_docs)]
-
-pub use pallet::*;
-#[cfg(feature = "runtime-benchmarks")]
-pub mod benchmarking;
-pub mod weights;
-
-#[frame_support::pallet]
-pub mod pallet {
- use frame_support::{
- pallet_prelude::{*, DispatchResult},
- traits::IsType,
- };
- use frame_system::pallet_prelude::{*, OriginFor};
- use sp_core::{H160, H256};
- use sp_std::vec::Vec;
- use super::weights::WeightInfo;
- use pallet_evm::{PrecompileHandle, Pallet as PalletEvm};
-
- #[pallet::config]
- pub trait Config: frame_system::Config + pallet_evm::Config {
- /// Weights
- type WeightInfo: WeightInfo;
- /// The overarching event type.
- type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
- }
-
- type SelfWeightOf<T> = <T as Config>::WeightInfo;
-
- #[pallet::pallet]
- #[pallet::generate_store(pub(super) trait Store)]
- pub struct Pallet<T>(_);
-
- #[pallet::event]
- pub enum Event<T: Config> {
- /// This event is used in benchmarking and can be used for tests
- TestEvent,
- }
-
- #[pallet::error]
- pub enum Error<T> {
- /// Can only migrate to empty address.
- AccountNotEmpty,
- /// Migration of this account is not yet started, or already finished.
- AccountIsNotMigrating,
- /// Failed to decode event bytes
- BadEvent,
- }
-
- #[pallet::storage]
- pub(super) type MigrationPending<T: Config> =
- StorageMap<Hasher = Twox64Concat, Key = H160, Value = bool, QueryKind = ValueQuery>;
-
- #[pallet::call]
- impl<T: Config> Pallet<T> {
- /// Start contract migration, inserts contract stub at target address,
- /// and marks account as pending, allowing to insert storage
- #[pallet::call_index(0)]
- #[pallet::weight(<SelfWeightOf<T>>::begin())]
- pub fn begin(origin: OriginFor<T>, address: H160) -> DispatchResult {
- ensure_root(origin)?;
- ensure!(
- <PalletEvm<T>>::is_account_empty(&address) && !<MigrationPending<T>>::get(&address),
- <Error<T>>::AccountNotEmpty,
- );
-
- <MigrationPending<T>>::insert(address, true);
- Ok(())
- }
-
- /// Insert items into contract storage, this method can be called
- /// multiple times
- #[pallet::call_index(1)]
- #[pallet::weight(<SelfWeightOf<T>>::set_data(data.len() as u32))]
- pub fn set_data(
- origin: OriginFor<T>,
- address: H160,
- data: Vec<(H256, H256)>,
- ) -> DispatchResult {
- ensure_root(origin)?;
- ensure!(
- <MigrationPending<T>>::get(&address),
- <Error<T>>::AccountIsNotMigrating,
- );
-
- for (k, v) in data {
- <pallet_evm::AccountStorages<T>>::insert(&address, k, v);
- }
- Ok(())
- }
-
- /// Finish contract migration, allows it to be called.
- /// It is not possible to alter contract storage via [`Self::set_data`]
- /// after this call.
- #[pallet::call_index(2)]
- #[pallet::weight(<SelfWeightOf<T>>::finish(code.len() as u32))]
- pub fn finish(origin: OriginFor<T>, address: H160, code: Vec<u8>) -> DispatchResult {
- ensure_root(origin)?;
- ensure!(
- <MigrationPending<T>>::get(&address),
- <Error<T>>::AccountIsNotMigrating,
- );
-
- <pallet_evm::AccountCodes<T>>::insert(&address, code);
- <MigrationPending<T>>::remove(address);
- Ok(())
- }
-
- /// Create ethereum events attached to the fake transaction
- #[pallet::call_index(3)]
- #[pallet::weight(<SelfWeightOf<T>>::insert_eth_logs(logs.len() as u32))]
- pub fn insert_eth_logs(origin: OriginFor<T>, logs: Vec<ethereum::Log>) -> DispatchResult {
- ensure_root(origin)?;
- for log in logs {
- <pallet_evm::Pallet<T>>::deposit_log(log);
- }
- // Transactions is created by FakeTransactionFinalizer
- Ok(())
- }
-
- /// Create substrate events
- #[pallet::call_index(4)]
- #[pallet::weight(<SelfWeightOf<T>>::insert_events(events.len() as u32))]
- pub fn insert_events(origin: OriginFor<T>, events: Vec<Vec<u8>>) -> DispatchResult {
- ensure_root(origin)?;
- for event in events {
- <frame_system::Pallet<T>>::deposit_event(
- <T as frame_system::Config>::RuntimeEvent::decode(&mut event.as_slice())
- .map_err(|_| <Error<T>>::BadEvent)?,
- );
- }
- Ok(())
- }
- }
-
- /// Implements [`pallet_evm::OnMethodCall`], which reserves accounts with pending migration
- pub struct OnMethodCall<T>(PhantomData<T>);
- impl<T: Config> pallet_evm::OnMethodCall<T> for OnMethodCall<T> {
- fn is_reserved(contract: &H160) -> bool {
- <MigrationPending<T>>::get(&contract)
- }
-
- fn is_used(_contract: &H160) -> bool {
- false
- }
-
- fn call(_handle: &mut impl PrecompileHandle) -> Option<pallet_evm::PrecompileResult> {
- None
- }
-
- fn get_code(_contract: &H160) -> Option<Vec<u8>> {
- None
- }
- }
-}
pallets/data-management/src/weights.rsdiffbeforeafterboth--- a/pallets/data-management/src/weights.rs
+++ /dev/null
@@ -1,123 +0,0 @@
-// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs
-
-//! Autogenerated weights for pallet_data_management
-//!
-//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-12-26, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
-
-// Executed Command:
-// target/release/unique-collator
-// benchmark
-// pallet
-// --pallet
-// pallet-data-management
-// --wasm-execution
-// compiled
-// --extrinsic
-// *
-// --template
-// .maintain/frame-weight-template.hbs
-// --steps=50
-// --repeat=80
-// --heap-pages=4096
-// --output=./pallets/data-management/src/weights.rs
-
-#![cfg_attr(rustfmt, rustfmt_skip)]
-#![allow(unused_parens)]
-#![allow(unused_imports)]
-#![allow(missing_docs)]
-#![allow(clippy::unnecessary_cast)]
-
-use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
-use sp_std::marker::PhantomData;
-
-/// Weight functions needed for pallet_data_management.
-pub trait WeightInfo {
- fn begin() -> Weight;
- fn set_data(b: u32, ) -> Weight;
- fn finish(b: u32, ) -> Weight;
- fn insert_eth_logs(b: u32, ) -> Weight;
- fn insert_events(b: u32, ) -> Weight;
-}
-
-/// Weights for pallet_data_management using the Substrate node and recommended hardware.
-pub struct SubstrateWeight<T>(PhantomData<T>);
-impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
- // Storage: DataManagement MigrationPending (r:1 w:1)
- // Storage: System Account (r:1 w:0)
- // Storage: EVM AccountCodes (r:1 w:0)
- fn begin() -> Weight {
- Weight::from_ref_time(15_073_000 as u64)
- .saturating_add(T::DbWeight::get().reads(3 as u64))
- .saturating_add(T::DbWeight::get().writes(1 as u64))
- }
- // Storage: DataManagement MigrationPending (r:1 w:0)
- // Storage: EVM AccountStorages (r:0 w:1)
- fn set_data(b: u32, ) -> Weight {
- Weight::from_ref_time(7_943_438 as u64)
- // Standard Error: 1_792
- .saturating_add(Weight::from_ref_time(960_230 as u64).saturating_mul(b as u64))
- .saturating_add(T::DbWeight::get().reads(1 as u64))
- .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
- }
- // Storage: DataManagement MigrationPending (r:1 w:1)
- // Storage: EVM AccountCodes (r:0 w:1)
- fn finish(b: u32, ) -> Weight {
- Weight::from_ref_time(9_316_585 as u64)
- // Standard Error: 595
- .saturating_add(Weight::from_ref_time(2_082 as u64).saturating_mul(b as u64))
- .saturating_add(T::DbWeight::get().reads(1 as u64))
- .saturating_add(T::DbWeight::get().writes(2 as u64))
- }
- fn insert_eth_logs(b: u32, ) -> Weight {
- Weight::from_ref_time(6_570_767 as u64)
- // Standard Error: 2_292
- .saturating_add(Weight::from_ref_time(722_345 as u64).saturating_mul(b as u64))
- }
- fn insert_events(b: u32, ) -> Weight {
- Weight::from_ref_time(10_936_376 as u64)
- // Standard Error: 1_227
- .saturating_add(Weight::from_ref_time(1_311_481 as u64).saturating_mul(b as u64))
- }
-}
-
-// For backwards compatibility and tests
-impl WeightInfo for () {
- // Storage: DataManagement MigrationPending (r:1 w:1)
- // Storage: System Account (r:1 w:0)
- // Storage: EVM AccountCodes (r:1 w:0)
- fn begin() -> Weight {
- Weight::from_ref_time(15_073_000 as u64)
- .saturating_add(RocksDbWeight::get().reads(3 as u64))
- .saturating_add(RocksDbWeight::get().writes(1 as u64))
- }
- // Storage: DataManagement MigrationPending (r:1 w:0)
- // Storage: EVM AccountStorages (r:0 w:1)
- fn set_data(b: u32, ) -> Weight {
- Weight::from_ref_time(7_943_438 as u64)
- // Standard Error: 1_792
- .saturating_add(Weight::from_ref_time(960_230 as u64).saturating_mul(b as u64))
- .saturating_add(RocksDbWeight::get().reads(1 as u64))
- .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
- }
- // Storage: DataManagement MigrationPending (r:1 w:1)
- // Storage: EVM AccountCodes (r:0 w:1)
- fn finish(b: u32, ) -> Weight {
- Weight::from_ref_time(9_316_585 as u64)
- // Standard Error: 595
- .saturating_add(Weight::from_ref_time(2_082 as u64).saturating_mul(b as u64))
- .saturating_add(RocksDbWeight::get().reads(1 as u64))
- .saturating_add(RocksDbWeight::get().writes(2 as u64))
- }
- fn insert_eth_logs(b: u32, ) -> Weight {
- Weight::from_ref_time(6_570_767 as u64)
- // Standard Error: 2_292
- .saturating_add(Weight::from_ref_time(722_345 as u64).saturating_mul(b as u64))
- }
- fn insert_events(b: u32, ) -> Weight {
- Weight::from_ref_time(10_936_376 as u64)
- // Standard Error: 1_227
- .saturating_add(Weight::from_ref_time(1_311_481 as u64).saturating_mul(b as u64))
- }
-}
pallets/evm-contract-helpers/src/eth.rsdiffbeforeafterboth--- a/pallets/evm-contract-helpers/src/eth.rs
+++ b/pallets/evm-contract-helpers/src/eth.rs
@@ -91,7 +91,7 @@
{
/// Get user, which deployed specified contract
/// @dev May return zero address in case if contract is deployed
- /// using uniquenetwork data-management pallet, or using other terms not
+ /// using uniquenetwork evm-migration pallet, or using other terms not
/// intended by pallet-evm
/// @dev Returns zero address if contract does not exists
/// @param contractAddress Contract to get owner of
pallets/evm-contract-helpers/src/stubs/ContractHelpers.soldiffbeforeafterboth--- a/pallets/evm-contract-helpers/src/stubs/ContractHelpers.sol
+++ b/pallets/evm-contract-helpers/src/stubs/ContractHelpers.sol
@@ -29,7 +29,7 @@
contract ContractHelpers is Dummy, ERC165, ContractHelpersEvents {
/// Get user, which deployed specified contract
/// @dev May return zero address in case if contract is deployed
- /// using uniquenetwork data-management pallet, or using other terms not
+ /// using uniquenetwork evm-migration pallet, or using other terms not
/// intended by pallet-evm
/// @dev Returns zero address if contract does not exists
/// @param contractAddress Contract to get owner of
pallets/evm-migration/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/CHANGELOG.md
@@ -0,0 +1,17 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
+
+Every extrinsic now runs in transaction implicitly, and
+`#[transactional]` on pallet dispatchable is now meaningless
+
+Upstream-Change: https://github.com/paritytech/substrate/issues/10806
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/evm-migration/Cargo.tomldiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/Cargo.toml
@@ -0,0 +1,43 @@
+[package]
+name = "pallet-evm-migration"
+version = "0.1.1"
+license = "GPLv3"
+edition = "2021"
+
+[dependencies]
+scale-info = { version = "2.0.1", default-features = false, features = [
+ "derive",
+] }
+ethereum = { version = "0.14.0", default-features = false }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-identity = { default-features = false, path = "../identity" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+
+[dependencies.codec]
+default-features = false
+features = ['derive']
+package = 'parity-scale-codec'
+version = '3.1.2'
+
+[features]
+default = ["std", "runtime-benchmarks"]
+std = [
+ "frame-support/std",
+ "frame-system/std",
+ "frame-benchmarking/std",
+ "sp-runtime/std",
+ "sp-std/std",
+ "sp-io/std",
+ "sp-core/std",
+ "pallet-evm/std",
+ "fp-evm/std",
+]
+runtime-benchmarks = ["frame-benchmarking"]
+try-runtime = ["frame-support/try-runtime"]
pallets/evm-migration/README.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/README.md
@@ -0,0 +1,18 @@
+# EVM contract migration pallet
+
+This pallet is only callable by root, it has functionality to migrate contract
+from other ethereum chain to pallet-evm
+
+Contract data includes contract code, and contract storage,
+where contract storage is a mapping from evm word to evm word (evm word = 32 byte)
+
+To import contract data into pallet-evm admin should call this pallet multiple times:
+1. Start migration via `begin`
+2. Insert all contract data using single or
+ multiple (If data can't be fit into single extrinsic) calls
+ to `set_data`
+3. Finish migration using `finish`, providing contract code
+
+During migration no one can insert code at address of this contract,
+as [`pallet::OnMethodCall`] prevents this, and no one can call this contract,
+as code is only supplied at final stage of contract deployment
\ No newline at end of file
pallets/evm-migration/src/benchmarking.rsdiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/src/benchmarking.rs
@@ -0,0 +1,65 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+
+// Unique Network is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+#![allow(missing_docs)]
+
+use super::{Call, Config, Pallet};
+use frame_benchmarking::benchmarks;
+use frame_system::RawOrigin;
+use sp_core::{H160, H256};
+use sp_std::{vec::Vec, vec};
+
+benchmarks! {
+ where_clause { where <T as Config>::RuntimeEvent: codec::Encode }
+
+ begin {
+ }: _(RawOrigin::Root, H160::default())
+
+ set_data {
+ let b in 0..80;
+ let address = H160::from_low_u64_be(b as u64);
+ let mut data = Vec::new();
+ for i in 0..b {
+ data.push((
+ H256::from_low_u64_be(i as u64),
+ H256::from_low_u64_be(i as u64),
+ ));
+ }
+ <Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
+ }: _(RawOrigin::Root, address, data)
+
+ finish {
+ let b in 0..80;
+ let address = H160::from_low_u64_be(b as u64);
+ let data: Vec<u8> = (0..b as u8).collect();
+ <Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
+ }: _(RawOrigin::Root, address, data)
+
+ insert_eth_logs {
+ let b in 0..200;
+ let logs = (0..b).map(|_| ethereum::Log {
+ address: H160([b as u8; 20]),
+ data: vec![b as u8; 128],
+ topics: vec![H256([b as u8; 32]); 6],
+ }).collect::<Vec<_>>();
+ }: _(RawOrigin::Root, logs)
+
+ insert_events {
+ let b in 0..200;
+ use codec::Encode;
+ let logs = (0..b).map(|_| <T as Config>::RuntimeEvent::from(crate::Event::<T>::TestEvent).encode()).collect::<Vec<_>>();
+ }: _(RawOrigin::Root, logs)
+}
pallets/evm-migration/src/lib.rsdiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/src/lib.rs
@@ -0,0 +1,173 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+
+// Unique Network is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+#![doc = include_str!("../README.md")]
+#![cfg_attr(not(feature = "std"), no_std)]
+#![deny(missing_docs)]
+
+pub use pallet::*;
+#[cfg(feature = "runtime-benchmarks")]
+pub mod benchmarking;
+pub mod weights;
+
+#[frame_support::pallet]
+pub mod pallet {
+ use frame_support::{
+ pallet_prelude::{*, DispatchResult},
+ traits::IsType,
+ };
+ use frame_system::pallet_prelude::{*, OriginFor};
+ use sp_core::{H160, H256};
+ use sp_std::vec::Vec;
+ use super::weights::WeightInfo;
+ use pallet_evm::{PrecompileHandle, Pallet as PalletEvm};
+
+ #[pallet::config]
+ pub trait Config: frame_system::Config + pallet_evm::Config {
+ /// Weights
+ type WeightInfo: WeightInfo;
+ /// The overarching event type.
+ type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
+ }
+
+ type SelfWeightOf<T> = <T as Config>::WeightInfo;
+
+ #[pallet::pallet]
+ #[pallet::generate_store(pub(super) trait Store)]
+ pub struct Pallet<T>(_);
+
+ #[pallet::event]
+ pub enum Event<T: Config> {
+ /// This event is used in benchmarking and can be used for tests
+ TestEvent,
+ }
+
+ #[pallet::error]
+ pub enum Error<T> {
+ /// Can only migrate to empty address.
+ AccountNotEmpty,
+ /// Migration of this account is not yet started, or already finished.
+ AccountIsNotMigrating,
+ /// Failed to decode event bytes
+ BadEvent,
+ }
+
+ #[pallet::storage]
+ pub(super) type MigrationPending<T: Config> =
+ StorageMap<Hasher = Twox64Concat, Key = H160, Value = bool, QueryKind = ValueQuery>;
+
+ #[pallet::call]
+ impl<T: Config> Pallet<T> {
+ /// Start contract migration, inserts contract stub at target address,
+ /// and marks account as pending, allowing to insert storage
+ #[pallet::call_index(0)]
+ #[pallet::weight(<SelfWeightOf<T>>::begin())]
+ pub fn begin(origin: OriginFor<T>, address: H160) -> DispatchResult {
+ ensure_root(origin)?;
+ ensure!(
+ <PalletEvm<T>>::is_account_empty(&address) && !<MigrationPending<T>>::get(&address),
+ <Error<T>>::AccountNotEmpty,
+ );
+
+ <MigrationPending<T>>::insert(address, true);
+ Ok(())
+ }
+
+ /// Insert items into contract storage, this method can be called
+ /// multiple times
+ #[pallet::call_index(1)]
+ #[pallet::weight(<SelfWeightOf<T>>::set_data(data.len() as u32))]
+ pub fn set_data(
+ origin: OriginFor<T>,
+ address: H160,
+ data: Vec<(H256, H256)>,
+ ) -> DispatchResult {
+ ensure_root(origin)?;
+ ensure!(
+ <MigrationPending<T>>::get(&address),
+ <Error<T>>::AccountIsNotMigrating,
+ );
+
+ for (k, v) in data {
+ <pallet_evm::AccountStorages<T>>::insert(&address, k, v);
+ }
+ Ok(())
+ }
+
+ /// Finish contract migration, allows it to be called.
+ /// It is not possible to alter contract storage via [`Self::set_data`]
+ /// after this call.
+ #[pallet::call_index(2)]
+ #[pallet::weight(<SelfWeightOf<T>>::finish(code.len() as u32))]
+ pub fn finish(origin: OriginFor<T>, address: H160, code: Vec<u8>) -> DispatchResult {
+ ensure_root(origin)?;
+ ensure!(
+ <MigrationPending<T>>::get(&address),
+ <Error<T>>::AccountIsNotMigrating,
+ );
+
+ <pallet_evm::AccountCodes<T>>::insert(&address, code);
+ <MigrationPending<T>>::remove(address);
+ Ok(())
+ }
+
+ /// Create ethereum events attached to the fake transaction
+ #[pallet::call_index(3)]
+ #[pallet::weight(<SelfWeightOf<T>>::insert_eth_logs(logs.len() as u32))]
+ pub fn insert_eth_logs(origin: OriginFor<T>, logs: Vec<ethereum::Log>) -> DispatchResult {
+ ensure_root(origin)?;
+ for log in logs {
+ <pallet_evm::Pallet<T>>::deposit_log(log);
+ }
+ // Transactions is created by FakeTransactionFinalizer
+ Ok(())
+ }
+
+ /// Create substrate events
+ #[pallet::call_index(4)]
+ #[pallet::weight(<SelfWeightOf<T>>::insert_events(events.len() as u32))]
+ pub fn insert_events(origin: OriginFor<T>, events: Vec<Vec<u8>>) -> DispatchResult {
+ ensure_root(origin)?;
+ for event in events {
+ <frame_system::Pallet<T>>::deposit_event(
+ <T as frame_system::Config>::RuntimeEvent::decode(&mut event.as_slice())
+ .map_err(|_| <Error<T>>::BadEvent)?,
+ );
+ }
+ Ok(())
+ }
+ }
+
+ /// Implements [`pallet_evm::OnMethodCall`], which reserves accounts with pending migration
+ pub struct OnMethodCall<T>(PhantomData<T>);
+ impl<T: Config> pallet_evm::OnMethodCall<T> for OnMethodCall<T> {
+ fn is_reserved(contract: &H160) -> bool {
+ <MigrationPending<T>>::get(&contract)
+ }
+
+ fn is_used(_contract: &H160) -> bool {
+ false
+ }
+
+ fn call(_handle: &mut impl PrecompileHandle) -> Option<pallet_evm::PrecompileResult> {
+ None
+ }
+
+ fn get_code(_contract: &H160) -> Option<Vec<u8>> {
+ None
+ }
+ }
+}
pallets/evm-migration/src/weights.rsdiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/src/weights.rs
@@ -0,0 +1,123 @@
+// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs
+
+//! Autogenerated weights for pallet_evm_migration
+//!
+//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
+//! DATE: 2022-12-26, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
+
+// Executed Command:
+// target/release/unique-collator
+// benchmark
+// pallet
+// --pallet
+// pallet-evm-migration
+// --wasm-execution
+// compiled
+// --extrinsic
+// *
+// --template
+// .maintain/frame-weight-template.hbs
+// --steps=50
+// --repeat=80
+// --heap-pages=4096
+// --output=./pallets/evm-migration/src/weights.rs
+
+#![cfg_attr(rustfmt, rustfmt_skip)]
+#![allow(unused_parens)]
+#![allow(unused_imports)]
+#![allow(missing_docs)]
+#![allow(clippy::unnecessary_cast)]
+
+use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
+use sp_std::marker::PhantomData;
+
+/// Weight functions needed for pallet_evm_migration.
+pub trait WeightInfo {
+ fn begin() -> Weight;
+ fn set_data(b: u32, ) -> Weight;
+ fn finish(b: u32, ) -> Weight;
+ fn insert_eth_logs(b: u32, ) -> Weight;
+ fn insert_events(b: u32, ) -> Weight;
+}
+
+/// Weights for pallet_evm_migration using the Substrate node and recommended hardware.
+pub struct SubstrateWeight<T>(PhantomData<T>);
+impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
+ // Storage: EvmMigration MigrationPending (r:1 w:1)
+ // Storage: System Account (r:1 w:0)
+ // Storage: EVM AccountCodes (r:1 w:0)
+ fn begin() -> Weight {
+ Weight::from_ref_time(15_073_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(3 as u64))
+ .saturating_add(T::DbWeight::get().writes(1 as u64))
+ }
+ // Storage: EvmMigration MigrationPending (r:1 w:0)
+ // Storage: EVM AccountStorages (r:0 w:1)
+ fn set_data(b: u32, ) -> Weight {
+ Weight::from_ref_time(7_943_438 as u64)
+ // Standard Error: 1_792
+ .saturating_add(Weight::from_ref_time(960_230 as u64).saturating_mul(b as u64))
+ .saturating_add(T::DbWeight::get().reads(1 as u64))
+ .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
+ }
+ // Storage: EvmMigration MigrationPending (r:1 w:1)
+ // Storage: EVM AccountCodes (r:0 w:1)
+ fn finish(b: u32, ) -> Weight {
+ Weight::from_ref_time(9_316_585 as u64)
+ // Standard Error: 595
+ .saturating_add(Weight::from_ref_time(2_082 as u64).saturating_mul(b as u64))
+ .saturating_add(T::DbWeight::get().reads(1 as u64))
+ .saturating_add(T::DbWeight::get().writes(2 as u64))
+ }
+ fn insert_eth_logs(b: u32, ) -> Weight {
+ Weight::from_ref_time(6_570_767 as u64)
+ // Standard Error: 2_292
+ .saturating_add(Weight::from_ref_time(722_345 as u64).saturating_mul(b as u64))
+ }
+ fn insert_events(b: u32, ) -> Weight {
+ Weight::from_ref_time(10_936_376 as u64)
+ // Standard Error: 1_227
+ .saturating_add(Weight::from_ref_time(1_311_481 as u64).saturating_mul(b as u64))
+ }
+}
+
+// For backwards compatibility and tests
+impl WeightInfo for () {
+ // Storage: EvmMigration MigrationPending (r:1 w:1)
+ // Storage: System Account (r:1 w:0)
+ // Storage: EVM AccountCodes (r:1 w:0)
+ fn begin() -> Weight {
+ Weight::from_ref_time(15_073_000 as u64)
+ .saturating_add(RocksDbWeight::get().reads(3 as u64))
+ .saturating_add(RocksDbWeight::get().writes(1 as u64))
+ }
+ // Storage: EvmMigration MigrationPending (r:1 w:0)
+ // Storage: EVM AccountStorages (r:0 w:1)
+ fn set_data(b: u32, ) -> Weight {
+ Weight::from_ref_time(7_943_438 as u64)
+ // Standard Error: 1_792
+ .saturating_add(Weight::from_ref_time(960_230 as u64).saturating_mul(b as u64))
+ .saturating_add(RocksDbWeight::get().reads(1 as u64))
+ .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
+ }
+ // Storage: EvmMigration MigrationPending (r:1 w:1)
+ // Storage: EVM AccountCodes (r:0 w:1)
+ fn finish(b: u32, ) -> Weight {
+ Weight::from_ref_time(9_316_585 as u64)
+ // Standard Error: 595
+ .saturating_add(Weight::from_ref_time(2_082 as u64).saturating_mul(b as u64))
+ .saturating_add(RocksDbWeight::get().reads(1 as u64))
+ .saturating_add(RocksDbWeight::get().writes(2 as u64))
+ }
+ fn insert_eth_logs(b: u32, ) -> Weight {
+ Weight::from_ref_time(6_570_767 as u64)
+ // Standard Error: 2_292
+ .saturating_add(Weight::from_ref_time(722_345 as u64).saturating_mul(b as u64))
+ }
+ fn insert_events(b: u32, ) -> Weight {
+ Weight::from_ref_time(10_936_376 as u64)
+ // Standard Error: 1_227
+ .saturating_add(Weight::from_ref_time(1_311_481 as u64).saturating_mul(b as u64))
+ }
+}
runtime/common/config/ethereum.rsdiffbeforeafterboth--- a/runtime/common/config/ethereum.rs
+++ b/runtime/common/config/ethereum.rs
@@ -70,7 +70,7 @@
type Currency = Balances;
type RuntimeEvent = RuntimeEvent;
type OnMethodCall = (
- pallet_data_management::OnMethodCall<Self>,
+ pallet_evm_migration::OnMethodCall<Self>,
pallet_evm_contract_helpers::HelpersOnMethodCall<Self>,
CollectionDispatchT<Self>,
pallet_unique::eth::CollectionHelpersOnMethodCall<Self>,
@@ -83,9 +83,9 @@
type FindAuthor = EthereumFindAuthor<Aura>;
}
-impl pallet_data_management::Config for Runtime {
+impl pallet_evm_migration::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
- type WeightInfo = pallet_data_management::weights::SubstrateWeight<Self>;
+ type WeightInfo = pallet_evm_migration::weights::SubstrateWeight<Self>;
}
impl pallet_ethereum::Config for Runtime {
runtime/common/construct_runtime/mod.rsdiffbeforeafterboth--- a/runtime/common/construct_runtime/mod.rs
+++ b/runtime/common/construct_runtime/mod.rs
@@ -104,7 +104,7 @@
EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,
EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage, Event<T>} = 151,
EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,
- DataManagement: pallet_data_management::{Pallet, Call, Storage, Event<T>} = 153,
+ EvmMigration: pallet_evm_migration::{Pallet, Call, Storage, Event<T>} = 153,
Maintenance: pallet_maintenance::{Pallet, Call, Storage, Event<T>} = 154,
runtime/common/maintenance.rsdiffbeforeafterboth--- a/runtime/common/maintenance.rs
+++ b/runtime/common/maintenance.rs
@@ -60,7 +60,7 @@
) -> TransactionValidity {
if Maintenance::is_enabled() {
match call {
- RuntimeCall::DataManagement(_)
+ RuntimeCall::EvmMigration(_)
| RuntimeCall::EVM(_)
| RuntimeCall::Ethereum(_)
| RuntimeCall::Inflation(_)
@@ -116,7 +116,7 @@
) -> TransactionValidity {
if Maintenance::is_enabled() {
match call {
- RuntimeCall::EVM(_) | RuntimeCall::Ethereum(_) | RuntimeCall::DataManagement(_) => {
+ RuntimeCall::EVM(_) | RuntimeCall::Ethereum(_) | RuntimeCall::EvmMigration(_) => {
Err(TransactionValidityError::Invalid(InvalidTransaction::Call))
}
_ => Ok(ValidTransaction::default()),
runtime/common/runtime_apis.rsdiffbeforeafterboth--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -681,7 +681,7 @@
let mut list = Vec::<BenchmarkList>::new();
- list_benchmark!(list, extra, pallet_data_management, DataManagement);
+ list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);
list_benchmark!(list, extra, pallet_common, Common);
list_benchmark!(list, extra, pallet_unique, Unique);
list_benchmark!(list, extra, pallet_structure, Structure);
@@ -750,7 +750,7 @@
let mut batches = Vec::<BenchmarkBatch>::new();
let params = (&config, &allowlist);
- add_benchmark!(params, batches, pallet_data_management, DataManagement);
+ add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);
add_benchmark!(params, batches, pallet_common, Common);
add_benchmark!(params, batches, pallet_unique, Unique);
add_benchmark!(params, batches, pallet_structure, Structure);
runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -24,7 +24,7 @@
'frame-system-benchmarking',
'frame-system/runtime-benchmarks',
'pallet-ethereum/runtime-benchmarks',
- 'pallet-data-management/runtime-benchmarks',
+ 'pallet-evm-migration/runtime-benchmarks',
'pallet-evm-coder-substrate/runtime-benchmarks',
'pallet-balances/runtime-benchmarks',
'pallet-timestamp/runtime-benchmarks',
@@ -93,7 +93,7 @@
'pallet-evm-coder-substrate/try-runtime',
'pallet-evm-contract-helpers/try-runtime',
'pallet-evm-transaction-payment/try-runtime',
- 'pallet-data-management/try-runtime',
+ 'pallet-evm-migration/try-runtime',
'pallet-base-fee/try-runtime',
'pallet-unique-scheduler-v2/try-runtime',
'pallet-maintenance/try-runtime',
@@ -130,7 +130,7 @@
'pallet-transaction-payment-rpc-runtime-api/std',
'pallet-treasury/std',
'pallet-evm/std',
- 'pallet-data-management/std',
+ 'pallet-evm-migration/std',
'pallet-evm-contract-helpers/std',
'pallet-evm-transaction-payment/std',
'pallet-evm-coder-substrate/std',
@@ -513,7 +513,7 @@
pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }
pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
pallet-unique-scheduler-v2 = { path = '../../pallets/scheduler-v2', default-features = false }
-pallet-data-management = { path = '../../pallets/data-management', default-features = false }
+pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }
pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }
pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }
pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
runtime/quartz/Cargo.tomldiffbeforeafterboth--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -24,7 +24,7 @@
'frame-system-benchmarking',
'frame-system/runtime-benchmarks',
'pallet-ethereum/runtime-benchmarks',
- 'pallet-data-management/runtime-benchmarks',
+ 'pallet-evm-migration/runtime-benchmarks',
'pallet-evm-coder-substrate/runtime-benchmarks',
'pallet-balances/runtime-benchmarks',
'pallet-timestamp/runtime-benchmarks',
@@ -91,7 +91,7 @@
'pallet-evm-coder-substrate/try-runtime',
'pallet-evm-contract-helpers/try-runtime',
'pallet-evm-transaction-payment/try-runtime',
- 'pallet-data-management/try-runtime',
+ 'pallet-evm-migration/try-runtime',
'pallet-maintenance/try-runtime',
'fp-self-contained/try-runtime',
]
@@ -125,7 +125,7 @@
'pallet-transaction-payment-rpc-runtime-api/std',
'pallet-treasury/std',
'pallet-evm/std',
- 'pallet-data-management/std',
+ 'pallet-evm-migration/std',
'pallet-evm-contract-helpers/std',
'pallet-evm-transaction-payment/std',
'pallet-evm-coder-substrate/std',
@@ -504,7 +504,7 @@
pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }
# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
-pallet-data-management = { path = '../../pallets/data-management', default-features = false }
+pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }
pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }
pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }
pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
runtime/unique/Cargo.tomldiffbeforeafterboth--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -24,7 +24,7 @@
'frame-system-benchmarking',
'frame-system/runtime-benchmarks',
'pallet-ethereum/runtime-benchmarks',
- 'pallet-data-management/runtime-benchmarks',
+ 'pallet-evm-migration/runtime-benchmarks',
'pallet-evm-coder-substrate/runtime-benchmarks',
'pallet-balances/runtime-benchmarks',
'pallet-timestamp/runtime-benchmarks',
@@ -91,7 +91,7 @@
'pallet-evm-coder-substrate/try-runtime',
'pallet-evm-contract-helpers/try-runtime',
'pallet-evm-transaction-payment/try-runtime',
- 'pallet-data-management/try-runtime',
+ 'pallet-evm-migration/try-runtime',
'pallet-maintenance/try-runtime',
'fp-self-contained/try-runtime',
]
@@ -125,7 +125,7 @@
'pallet-transaction-payment-rpc-runtime-api/std',
'pallet-treasury/std',
'pallet-evm/std',
- 'pallet-data-management/std',
+ 'pallet-evm-migration/std',
'pallet-evm-contract-helpers/std',
'pallet-evm-transaction-payment/std',
'pallet-evm-coder-substrate/std',
@@ -495,7 +495,7 @@
pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }
# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
-pallet-data-management = { path = '../../pallets/data-management', default-features = false }
+pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }
pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }
pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }
pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
tests/src/eth/api/ContractHelpers.soldiffbeforeafterboth--- a/tests/src/eth/api/ContractHelpers.sol
+++ b/tests/src/eth/api/ContractHelpers.sol
@@ -24,7 +24,7 @@
interface ContractHelpers is Dummy, ERC165, ContractHelpersEvents {
/// Get user, which deployed specified contract
/// @dev May return zero address in case if contract is deployed
- /// using uniquenetwork data-management pallet, or using other terms not
+ /// using uniquenetwork evm-migration pallet, or using other terms not
/// intended by pallet-evm
/// @dev Returns zero address if contract does not exists
/// @param contractAddress Contract to get owner of
tests/src/eth/migration.seqtest.tsdiffbeforeafterboth--- a/tests/src/eth/migration.seqtest.ts
+++ b/tests/src/eth/migration.seqtest.ts
@@ -83,9 +83,9 @@
const caller = await helper.eth.createAccountWithBalance(superuser);
- const txBegin = helper.constructApiCall('api.tx.dataManagement.begin', [ADDRESS]);
- const txSetData = helper.constructApiCall('api.tx.dataManagement.setData', [ADDRESS, DATA]);
- const txFinish = helper.constructApiCall('api.tx.dataManagement.finish', [ADDRESS, CODE]);
+ const txBegin = helper.constructApiCall('api.tx.evmMigration.begin', [ADDRESS]);
+ const txSetData = helper.constructApiCall('api.tx.evmMigration.setData', [ADDRESS, DATA]);
+ const txFinish = helper.constructApiCall('api.tx.evmMigration.finish', [ADDRESS, CODE]);
await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txBegin])).to.be.fulfilled;
await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txSetData])).to.be.fulfilled;
await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txFinish])).to.be.fulfilled;
@@ -126,7 +126,7 @@
}
});
itEth('Fake collection creation on substrate side', async ({helper}) => {
- const txInsertEvents = helper.constructApiCall('api.tx.dataManagement.insertEvents', [[
+ const txInsertEvents = helper.constructApiCall('api.tx.evmMigration.insertEvents', [[
encodeEvent(helper.getApi(), 'Common', 'common', 'CollectionCreated', [
// Collection Id
9999,
@@ -143,7 +143,7 @@
expect(eventStrings).to.contain('common.CollectionCreated');
});
itEth('Fake token creation on substrate side', async ({helper}) => {
- const txInsertEvents = helper.constructApiCall('api.tx.dataManagement.insertEvents', [[
+ const txInsertEvents = helper.constructApiCall('api.tx.evmMigration.insertEvents', [[
encodeEvent(helper.getApi(), 'Common', 'common', 'ItemCreated', [
// Collection Id
9999,
@@ -173,7 +173,7 @@
});
{
- const txInsertEthLogs = helper.constructApiCall('api.tx.dataManagement.insertEthLogs', [[
+ const txInsertEthLogs = helper.constructApiCall('api.tx.evmMigration.insertEthLogs', [[
{
// Contract, which has emitted this log
address: collectionAddress,
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -334,7 +334,7 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- dataManagement: {
+ evmMigration: {
/**
* Migration of this account is not yet started, or already finished.
**/
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -236,7 +236,7 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
- dataManagement: {
+ evmMigration: {
/**
* This event is used in benchmarking and can be used for tests
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -211,7 +211,7 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
- dataManagement: {
+ evmMigration: {
migrationPending: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
/**
* Generic query
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -292,7 +292,7 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
- dataManagement: {
+ evmMigration: {
/**
* Start contract migration, inserts contract stub at target address,
* and marks account as pending, allowing to insert storage
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDataManagementCall, PalletDataManagementError, PalletDataManagementEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -772,7 +772,7 @@
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
OpalRuntimeRuntime: OpalRuntimeRuntime;
- OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
+ OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity: OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OpaqueCall: OpaqueCall;
@@ -842,9 +842,9 @@
PalletConfigurationEvent: PalletConfigurationEvent;
PalletConstantMetadataLatest: PalletConstantMetadataLatest;
PalletConstantMetadataV14: PalletConstantMetadataV14;
- PalletDataManagementCall: PalletDataManagementCall;
- PalletDataManagementError: PalletDataManagementError;
- PalletDataManagementEvent: PalletDataManagementEvent;
+ PalletEvmMigrationCall: PalletEvmMigrationCall;
+ PalletEvmMigrationError: PalletEvmMigrationError;
+ PalletEvmMigrationEvent: PalletEvmMigrationEvent;
PalletErrorMetadataLatest: PalletErrorMetadataLatest;
PalletErrorMetadataV14: PalletErrorMetadataV14;
PalletEthereumCall: PalletEthereumCall;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -693,8 +693,8 @@
/** @name OpalRuntimeRuntime */
export interface OpalRuntimeRuntime extends Null {}
-/** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity */
-export interface OpalRuntimeRuntimeCommonDataManagementFilterIdentity extends Null {}
+/** @name OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity */
+export interface OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity extends Null {}
/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
@@ -1453,8 +1453,8 @@
readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
}
-/** @name PalletDataManagementCall */
-export interface PalletDataManagementCall extends Enum {
+/** @name PalletEvmMigrationCall */
+export interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
readonly address: H160;
@@ -1480,16 +1480,16 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
-/** @name PalletDataManagementError */
-export interface PalletDataManagementError extends Enum {
+/** @name PalletEvmMigrationError */
+export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly isBadEvent: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
-/** @name PalletDataManagementEvent */
-export interface PalletDataManagementEvent extends Enum {
+/** @name PalletEvmMigrationEvent */
+export interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
tests/src/interfaces/lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9 **/10 FrameSystemAccountInfo: {11 nonce: 'u32',12 consumers: 'u32',13 providers: 'u32',14 sufficients: 'u32',15 data: 'PalletBalancesAccountData'16 },17 /**18 * Lookup5: pallet_balances::AccountData<Balance>19 **/20 PalletBalancesAccountData: {21 free: 'u128',22 reserved: 'u128',23 miscFrozen: 'u128',24 feeFrozen: 'u128'25 },26 /**27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'SpWeightsWeightV2Weight',31 operational: 'SpWeightsWeightV2Weight',32 mandatory: 'SpWeightsWeightV2Weight'33 },34 /**35 * Lookup8: sp_weights::weight_v2::Weight36 **/37 SpWeightsWeightV2Weight: {38 refTime: 'Compact<u64>',39 proofSize: 'Compact<u64>'40 },41 /**42 * Lookup13: sp_runtime::generic::digest::Digest43 **/44 SpRuntimeDigest: {45 logs: 'Vec<SpRuntimeDigestDigestItem>'46 },47 /**48 * Lookup15: sp_runtime::generic::digest::DigestItem49 **/50 SpRuntimeDigestDigestItem: {51 _enum: {52 Other: 'Bytes',53 __Unused1: 'Null',54 __Unused2: 'Null',55 __Unused3: 'Null',56 Consensus: '([u8;4],Bytes)',57 Seal: '([u8;4],Bytes)',58 PreRuntime: '([u8;4],Bytes)',59 __Unused7: 'Null',60 RuntimeEnvironmentUpdated: 'Null'61 }62 },63 /**64 * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65 **/66 FrameSystemEventRecord: {67 phase: 'FrameSystemPhase',68 event: 'Event',69 topics: 'Vec<H256>'70 },71 /**72 * Lookup20: frame_system::pallet::Event<T>73 **/74 FrameSystemEvent: {75 _enum: {76 ExtrinsicSuccess: {77 dispatchInfo: 'FrameSupportDispatchDispatchInfo',78 },79 ExtrinsicFailed: {80 dispatchError: 'SpRuntimeDispatchError',81 dispatchInfo: 'FrameSupportDispatchDispatchInfo',82 },83 CodeUpdated: 'Null',84 NewAccount: {85 account: 'AccountId32',86 },87 KilledAccount: {88 account: 'AccountId32',89 },90 Remarked: {91 _alias: {92 hash_: 'hash',93 },94 sender: 'AccountId32',95 hash_: 'H256'96 }97 }98 },99 /**100 * Lookup21: frame_support::dispatch::DispatchInfo101 **/102 FrameSupportDispatchDispatchInfo: {103 weight: 'SpWeightsWeightV2Weight',104 class: 'FrameSupportDispatchDispatchClass',105 paysFee: 'FrameSupportDispatchPays'106 },107 /**108 * Lookup22: frame_support::dispatch::DispatchClass109 **/110 FrameSupportDispatchDispatchClass: {111 _enum: ['Normal', 'Operational', 'Mandatory']112 },113 /**114 * Lookup23: frame_support::dispatch::Pays115 **/116 FrameSupportDispatchPays: {117 _enum: ['Yes', 'No']118 },119 /**120 * Lookup24: sp_runtime::DispatchError121 **/122 SpRuntimeDispatchError: {123 _enum: {124 Other: 'Null',125 CannotLookup: 'Null',126 BadOrigin: 'Null',127 Module: 'SpRuntimeModuleError',128 ConsumerRemaining: 'Null',129 NoProviders: 'Null',130 TooManyConsumers: 'Null',131 Token: 'SpRuntimeTokenError',132 Arithmetic: 'SpRuntimeArithmeticError',133 Transactional: 'SpRuntimeTransactionalError',134 Exhausted: 'Null',135 Corruption: 'Null',136 Unavailable: 'Null'137 }138 },139 /**140 * Lookup25: sp_runtime::ModuleError141 **/142 SpRuntimeModuleError: {143 index: 'u8',144 error: '[u8;4]'145 },146 /**147 * Lookup26: sp_runtime::TokenError148 **/149 SpRuntimeTokenError: {150 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151 },152 /**153 * Lookup27: sp_runtime::ArithmeticError154 **/155 SpRuntimeArithmeticError: {156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']157 },158 /**159 * Lookup28: sp_runtime::TransactionalError160 **/161 SpRuntimeTransactionalError: {162 _enum: ['LimitReached', 'NoLayer']163 },164 /**165 * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166 **/167 CumulusPalletParachainSystemEvent: {168 _enum: {169 ValidationFunctionStored: 'Null',170 ValidationFunctionApplied: {171 relayChainBlockNum: 'u32',172 },173 ValidationFunctionDiscarded: 'Null',174 UpgradeAuthorized: {175 codeHash: 'H256',176 },177 DownwardMessagesReceived: {178 count: 'u32',179 },180 DownwardMessagesProcessed: {181 weightUsed: 'SpWeightsWeightV2Weight',182 dmqHead: 'H256'183 }184 }185 },186 /**187 * Lookup30: pallet_collator_selection::pallet::Event<T>188 **/189 PalletCollatorSelectionEvent: {190 _enum: {191 InvulnerableAdded: {192 invulnerable: 'AccountId32',193 },194 InvulnerableRemoved: {195 invulnerable: 'AccountId32',196 },197 LicenseObtained: {198 accountId: 'AccountId32',199 deposit: 'u128',200 },201 LicenseReleased: {202 accountId: 'AccountId32',203 depositReturned: 'u128',204 },205 CandidateAdded: {206 accountId: 'AccountId32',207 },208 CandidateRemoved: {209 accountId: 'AccountId32'210 }211 }212 },213 /**214 * Lookup31: pallet_session::pallet::Event215 **/216 PalletSessionEvent: {217 _enum: {218 NewSession: {219 sessionIndex: 'u32'220 }221 }222 },223 /**224 * Lookup32: pallet_identity::pallet::Event<T>225 **/226 PalletIdentityEvent: {227 _enum: {228 IdentitySet: {229 who: 'AccountId32',230 },231 IdentityCleared: {232 who: 'AccountId32',233 deposit: 'u128',234 },235 IdentityKilled: {236 who: 'AccountId32',237 deposit: 'u128',238 },239 JudgementRequested: {240 who: 'AccountId32',241 registrarIndex: 'u32',242 },243 JudgementUnrequested: {244 who: 'AccountId32',245 registrarIndex: 'u32',246 },247 JudgementGiven: {248 target: 'AccountId32',249 registrarIndex: 'u32',250 },251 RegistrarAdded: {252 registrarIndex: 'u32',253 },254 SubIdentityAdded: {255 sub: 'AccountId32',256 main: 'AccountId32',257 deposit: 'u128',258 },259 SubIdentityRemoved: {260 sub: 'AccountId32',261 main: 'AccountId32',262 deposit: 'u128',263 },264 SubIdentityRevoked: {265 sub: 'AccountId32',266 main: 'AccountId32',267 deposit: 'u128'268 }269 }270 },271 /**272 * Lookup33: pallet_balances::pallet::Event<T, I>273 **/274 PalletBalancesEvent: {275 _enum: {276 Endowed: {277 account: 'AccountId32',278 freeBalance: 'u128',279 },280 DustLost: {281 account: 'AccountId32',282 amount: 'u128',283 },284 Transfer: {285 from: 'AccountId32',286 to: 'AccountId32',287 amount: 'u128',288 },289 BalanceSet: {290 who: 'AccountId32',291 free: 'u128',292 reserved: 'u128',293 },294 Reserved: {295 who: 'AccountId32',296 amount: 'u128',297 },298 Unreserved: {299 who: 'AccountId32',300 amount: 'u128',301 },302 ReserveRepatriated: {303 from: 'AccountId32',304 to: 'AccountId32',305 amount: 'u128',306 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',307 },308 Deposit: {309 who: 'AccountId32',310 amount: 'u128',311 },312 Withdraw: {313 who: 'AccountId32',314 amount: 'u128',315 },316 Slashed: {317 who: 'AccountId32',318 amount: 'u128'319 }320 }321 },322 /**323 * Lookup34: frame_support::traits::tokens::misc::BalanceStatus324 **/325 FrameSupportTokensMiscBalanceStatus: {326 _enum: ['Free', 'Reserved']327 },328 /**329 * Lookup35: pallet_transaction_payment::pallet::Event<T>330 **/331 PalletTransactionPaymentEvent: {332 _enum: {333 TransactionFeePaid: {334 who: 'AccountId32',335 actualFee: 'u128',336 tip: 'u128'337 }338 }339 },340 /**341 * Lookup36: pallet_treasury::pallet::Event<T, I>342 **/343 PalletTreasuryEvent: {344 _enum: {345 Proposed: {346 proposalIndex: 'u32',347 },348 Spending: {349 budgetRemaining: 'u128',350 },351 Awarded: {352 proposalIndex: 'u32',353 award: 'u128',354 account: 'AccountId32',355 },356 Rejected: {357 proposalIndex: 'u32',358 slashed: 'u128',359 },360 Burnt: {361 burntFunds: 'u128',362 },363 Rollover: {364 rolloverBalance: 'u128',365 },366 Deposit: {367 value: 'u128',368 },369 SpendApproved: {370 proposalIndex: 'u32',371 amount: 'u128',372 beneficiary: 'AccountId32'373 }374 }375 },376 /**377 * Lookup37: pallet_sudo::pallet::Event<T>378 **/379 PalletSudoEvent: {380 _enum: {381 Sudid: {382 sudoResult: 'Result<Null, SpRuntimeDispatchError>',383 },384 KeyChanged: {385 oldSudoer: 'Option<AccountId32>',386 },387 SudoAsDone: {388 sudoResult: 'Result<Null, SpRuntimeDispatchError>'389 }390 }391 },392 /**393 * Lookup41: orml_vesting::module::Event<T>394 **/395 OrmlVestingModuleEvent: {396 _enum: {397 VestingScheduleAdded: {398 from: 'AccountId32',399 to: 'AccountId32',400 vestingSchedule: 'OrmlVestingVestingSchedule',401 },402 Claimed: {403 who: 'AccountId32',404 amount: 'u128',405 },406 VestingSchedulesUpdated: {407 who: 'AccountId32'408 }409 }410 },411 /**412 * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>413 **/414 OrmlVestingVestingSchedule: {415 start: 'u32',416 period: 'u32',417 periodCount: 'u32',418 perPeriod: 'Compact<u128>'419 },420 /**421 * Lookup44: orml_xtokens::module::Event<T>422 **/423 OrmlXtokensModuleEvent: {424 _enum: {425 TransferredMultiAssets: {426 sender: 'AccountId32',427 assets: 'XcmV1MultiassetMultiAssets',428 fee: 'XcmV1MultiAsset',429 dest: 'XcmV1MultiLocation'430 }431 }432 },433 /**434 * Lookup45: xcm::v1::multiasset::MultiAssets435 **/436 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',437 /**438 * Lookup47: xcm::v1::multiasset::MultiAsset439 **/440 XcmV1MultiAsset: {441 id: 'XcmV1MultiassetAssetId',442 fun: 'XcmV1MultiassetFungibility'443 },444 /**445 * Lookup48: xcm::v1::multiasset::AssetId446 **/447 XcmV1MultiassetAssetId: {448 _enum: {449 Concrete: 'XcmV1MultiLocation',450 Abstract: 'Bytes'451 }452 },453 /**454 * Lookup49: xcm::v1::multilocation::MultiLocation455 **/456 XcmV1MultiLocation: {457 parents: 'u8',458 interior: 'XcmV1MultilocationJunctions'459 },460 /**461 * Lookup50: xcm::v1::multilocation::Junctions462 **/463 XcmV1MultilocationJunctions: {464 _enum: {465 Here: 'Null',466 X1: 'XcmV1Junction',467 X2: '(XcmV1Junction,XcmV1Junction)',468 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',469 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',470 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',471 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',472 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',473 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'474 }475 },476 /**477 * Lookup51: xcm::v1::junction::Junction478 **/479 XcmV1Junction: {480 _enum: {481 Parachain: 'Compact<u32>',482 AccountId32: {483 network: 'XcmV0JunctionNetworkId',484 id: '[u8;32]',485 },486 AccountIndex64: {487 network: 'XcmV0JunctionNetworkId',488 index: 'Compact<u64>',489 },490 AccountKey20: {491 network: 'XcmV0JunctionNetworkId',492 key: '[u8;20]',493 },494 PalletInstance: 'u8',495 GeneralIndex: 'Compact<u128>',496 GeneralKey: 'Bytes',497 OnlyChild: 'Null',498 Plurality: {499 id: 'XcmV0JunctionBodyId',500 part: 'XcmV0JunctionBodyPart'501 }502 }503 },504 /**505 * Lookup53: xcm::v0::junction::NetworkId506 **/507 XcmV0JunctionNetworkId: {508 _enum: {509 Any: 'Null',510 Named: 'Bytes',511 Polkadot: 'Null',512 Kusama: 'Null'513 }514 },515 /**516 * Lookup56: xcm::v0::junction::BodyId517 **/518 XcmV0JunctionBodyId: {519 _enum: {520 Unit: 'Null',521 Named: 'Bytes',522 Index: 'Compact<u32>',523 Executive: 'Null',524 Technical: 'Null',525 Legislative: 'Null',526 Judicial: 'Null'527 }528 },529 /**530 * Lookup57: xcm::v0::junction::BodyPart531 **/532 XcmV0JunctionBodyPart: {533 _enum: {534 Voice: 'Null',535 Members: {536 count: 'Compact<u32>',537 },538 Fraction: {539 nom: 'Compact<u32>',540 denom: 'Compact<u32>',541 },542 AtLeastProportion: {543 nom: 'Compact<u32>',544 denom: 'Compact<u32>',545 },546 MoreThanProportion: {547 nom: 'Compact<u32>',548 denom: 'Compact<u32>'549 }550 }551 },552 /**553 * Lookup58: xcm::v1::multiasset::Fungibility554 **/555 XcmV1MultiassetFungibility: {556 _enum: {557 Fungible: 'Compact<u128>',558 NonFungible: 'XcmV1MultiassetAssetInstance'559 }560 },561 /**562 * Lookup59: xcm::v1::multiasset::AssetInstance563 **/564 XcmV1MultiassetAssetInstance: {565 _enum: {566 Undefined: 'Null',567 Index: 'Compact<u128>',568 Array4: '[u8;4]',569 Array8: '[u8;8]',570 Array16: '[u8;16]',571 Array32: '[u8;32]',572 Blob: 'Bytes'573 }574 },575 /**576 * Lookup62: orml_tokens::module::Event<T>577 **/578 OrmlTokensModuleEvent: {579 _enum: {580 Endowed: {581 currencyId: 'PalletForeignAssetsAssetIds',582 who: 'AccountId32',583 amount: 'u128',584 },585 DustLost: {586 currencyId: 'PalletForeignAssetsAssetIds',587 who: 'AccountId32',588 amount: 'u128',589 },590 Transfer: {591 currencyId: 'PalletForeignAssetsAssetIds',592 from: 'AccountId32',593 to: 'AccountId32',594 amount: 'u128',595 },596 Reserved: {597 currencyId: 'PalletForeignAssetsAssetIds',598 who: 'AccountId32',599 amount: 'u128',600 },601 Unreserved: {602 currencyId: 'PalletForeignAssetsAssetIds',603 who: 'AccountId32',604 amount: 'u128',605 },606 ReserveRepatriated: {607 currencyId: 'PalletForeignAssetsAssetIds',608 from: 'AccountId32',609 to: 'AccountId32',610 amount: 'u128',611 status: 'FrameSupportTokensMiscBalanceStatus',612 },613 BalanceSet: {614 currencyId: 'PalletForeignAssetsAssetIds',615 who: 'AccountId32',616 free: 'u128',617 reserved: 'u128',618 },619 TotalIssuanceSet: {620 currencyId: 'PalletForeignAssetsAssetIds',621 amount: 'u128',622 },623 Withdrawn: {624 currencyId: 'PalletForeignAssetsAssetIds',625 who: 'AccountId32',626 amount: 'u128',627 },628 Slashed: {629 currencyId: 'PalletForeignAssetsAssetIds',630 who: 'AccountId32',631 freeAmount: 'u128',632 reservedAmount: 'u128',633 },634 Deposited: {635 currencyId: 'PalletForeignAssetsAssetIds',636 who: 'AccountId32',637 amount: 'u128',638 },639 LockSet: {640 lockId: '[u8;8]',641 currencyId: 'PalletForeignAssetsAssetIds',642 who: 'AccountId32',643 amount: 'u128',644 },645 LockRemoved: {646 lockId: '[u8;8]',647 currencyId: 'PalletForeignAssetsAssetIds',648 who: 'AccountId32'649 }650 }651 },652 /**653 * Lookup63: pallet_foreign_assets::AssetIds654 **/655 PalletForeignAssetsAssetIds: {656 _enum: {657 ForeignAssetId: 'u32',658 NativeAssetId: 'PalletForeignAssetsNativeCurrency'659 }660 },661 /**662 * Lookup64: pallet_foreign_assets::NativeCurrency663 **/664 PalletForeignAssetsNativeCurrency: {665 _enum: ['Here', 'Parent']666 },667 /**668 * Lookup65: cumulus_pallet_xcmp_queue::pallet::Event<T>669 **/670 CumulusPalletXcmpQueueEvent: {671 _enum: {672 Success: {673 messageHash: 'Option<H256>',674 weight: 'SpWeightsWeightV2Weight',675 },676 Fail: {677 messageHash: 'Option<H256>',678 error: 'XcmV2TraitsError',679 weight: 'SpWeightsWeightV2Weight',680 },681 BadVersion: {682 messageHash: 'Option<H256>',683 },684 BadFormat: {685 messageHash: 'Option<H256>',686 },687 UpwardMessageSent: {688 messageHash: 'Option<H256>',689 },690 XcmpMessageSent: {691 messageHash: 'Option<H256>',692 },693 OverweightEnqueued: {694 sender: 'u32',695 sentAt: 'u32',696 index: 'u64',697 required: 'SpWeightsWeightV2Weight',698 },699 OverweightServiced: {700 index: 'u64',701 used: 'SpWeightsWeightV2Weight'702 }703 }704 },705 /**706 * Lookup67: xcm::v2::traits::Error707 **/708 XcmV2TraitsError: {709 _enum: {710 Overflow: 'Null',711 Unimplemented: 'Null',712 UntrustedReserveLocation: 'Null',713 UntrustedTeleportLocation: 'Null',714 MultiLocationFull: 'Null',715 MultiLocationNotInvertible: 'Null',716 BadOrigin: 'Null',717 InvalidLocation: 'Null',718 AssetNotFound: 'Null',719 FailedToTransactAsset: 'Null',720 NotWithdrawable: 'Null',721 LocationCannotHold: 'Null',722 ExceedsMaxMessageSize: 'Null',723 DestinationUnsupported: 'Null',724 Transport: 'Null',725 Unroutable: 'Null',726 UnknownClaim: 'Null',727 FailedToDecode: 'Null',728 MaxWeightInvalid: 'Null',729 NotHoldingFees: 'Null',730 TooExpensive: 'Null',731 Trap: 'u64',732 UnhandledXcmVersion: 'Null',733 WeightLimitReached: 'u64',734 Barrier: 'Null',735 WeightNotComputable: 'Null'736 }737 },738 /**739 * Lookup69: pallet_xcm::pallet::Event<T>740 **/741 PalletXcmEvent: {742 _enum: {743 Attempted: 'XcmV2TraitsOutcome',744 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',745 UnexpectedResponse: '(XcmV1MultiLocation,u64)',746 ResponseReady: '(u64,XcmV2Response)',747 Notified: '(u64,u8,u8)',748 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',749 NotifyDispatchError: '(u64,u8,u8)',750 NotifyDecodeFailed: '(u64,u8,u8)',751 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',752 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',753 ResponseTaken: 'u64',754 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',755 VersionChangeNotified: '(XcmV1MultiLocation,u32)',756 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',757 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',758 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',759 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'760 }761 },762 /**763 * Lookup70: xcm::v2::traits::Outcome764 **/765 XcmV2TraitsOutcome: {766 _enum: {767 Complete: 'u64',768 Incomplete: '(u64,XcmV2TraitsError)',769 Error: 'XcmV2TraitsError'770 }771 },772 /**773 * Lookup71: xcm::v2::Xcm<RuntimeCall>774 **/775 XcmV2Xcm: 'Vec<XcmV2Instruction>',776 /**777 * Lookup73: xcm::v2::Instruction<RuntimeCall>778 **/779 XcmV2Instruction: {780 _enum: {781 WithdrawAsset: 'XcmV1MultiassetMultiAssets',782 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',783 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',784 QueryResponse: {785 queryId: 'Compact<u64>',786 response: 'XcmV2Response',787 maxWeight: 'Compact<u64>',788 },789 TransferAsset: {790 assets: 'XcmV1MultiassetMultiAssets',791 beneficiary: 'XcmV1MultiLocation',792 },793 TransferReserveAsset: {794 assets: 'XcmV1MultiassetMultiAssets',795 dest: 'XcmV1MultiLocation',796 xcm: 'XcmV2Xcm',797 },798 Transact: {799 originType: 'XcmV0OriginKind',800 requireWeightAtMost: 'Compact<u64>',801 call: 'XcmDoubleEncoded',802 },803 HrmpNewChannelOpenRequest: {804 sender: 'Compact<u32>',805 maxMessageSize: 'Compact<u32>',806 maxCapacity: 'Compact<u32>',807 },808 HrmpChannelAccepted: {809 recipient: 'Compact<u32>',810 },811 HrmpChannelClosing: {812 initiator: 'Compact<u32>',813 sender: 'Compact<u32>',814 recipient: 'Compact<u32>',815 },816 ClearOrigin: 'Null',817 DescendOrigin: 'XcmV1MultilocationJunctions',818 ReportError: {819 queryId: 'Compact<u64>',820 dest: 'XcmV1MultiLocation',821 maxResponseWeight: 'Compact<u64>',822 },823 DepositAsset: {824 assets: 'XcmV1MultiassetMultiAssetFilter',825 maxAssets: 'Compact<u32>',826 beneficiary: 'XcmV1MultiLocation',827 },828 DepositReserveAsset: {829 assets: 'XcmV1MultiassetMultiAssetFilter',830 maxAssets: 'Compact<u32>',831 dest: 'XcmV1MultiLocation',832 xcm: 'XcmV2Xcm',833 },834 ExchangeAsset: {835 give: 'XcmV1MultiassetMultiAssetFilter',836 receive: 'XcmV1MultiassetMultiAssets',837 },838 InitiateReserveWithdraw: {839 assets: 'XcmV1MultiassetMultiAssetFilter',840 reserve: 'XcmV1MultiLocation',841 xcm: 'XcmV2Xcm',842 },843 InitiateTeleport: {844 assets: 'XcmV1MultiassetMultiAssetFilter',845 dest: 'XcmV1MultiLocation',846 xcm: 'XcmV2Xcm',847 },848 QueryHolding: {849 queryId: 'Compact<u64>',850 dest: 'XcmV1MultiLocation',851 assets: 'XcmV1MultiassetMultiAssetFilter',852 maxResponseWeight: 'Compact<u64>',853 },854 BuyExecution: {855 fees: 'XcmV1MultiAsset',856 weightLimit: 'XcmV2WeightLimit',857 },858 RefundSurplus: 'Null',859 SetErrorHandler: 'XcmV2Xcm',860 SetAppendix: 'XcmV2Xcm',861 ClearError: 'Null',862 ClaimAsset: {863 assets: 'XcmV1MultiassetMultiAssets',864 ticket: 'XcmV1MultiLocation',865 },866 Trap: 'Compact<u64>',867 SubscribeVersion: {868 queryId: 'Compact<u64>',869 maxResponseWeight: 'Compact<u64>',870 },871 UnsubscribeVersion: 'Null'872 }873 },874 /**875 * Lookup74: xcm::v2::Response876 **/877 XcmV2Response: {878 _enum: {879 Null: 'Null',880 Assets: 'XcmV1MultiassetMultiAssets',881 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',882 Version: 'u32'883 }884 },885 /**886 * Lookup77: xcm::v0::OriginKind887 **/888 XcmV0OriginKind: {889 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']890 },891 /**892 * Lookup78: xcm::double_encoded::DoubleEncoded<T>893 **/894 XcmDoubleEncoded: {895 encoded: 'Bytes'896 },897 /**898 * Lookup79: xcm::v1::multiasset::MultiAssetFilter899 **/900 XcmV1MultiassetMultiAssetFilter: {901 _enum: {902 Definite: 'XcmV1MultiassetMultiAssets',903 Wild: 'XcmV1MultiassetWildMultiAsset'904 }905 },906 /**907 * Lookup80: xcm::v1::multiasset::WildMultiAsset908 **/909 XcmV1MultiassetWildMultiAsset: {910 _enum: {911 All: 'Null',912 AllOf: {913 id: 'XcmV1MultiassetAssetId',914 fun: 'XcmV1MultiassetWildFungibility'915 }916 }917 },918 /**919 * Lookup81: xcm::v1::multiasset::WildFungibility920 **/921 XcmV1MultiassetWildFungibility: {922 _enum: ['Fungible', 'NonFungible']923 },924 /**925 * Lookup82: xcm::v2::WeightLimit926 **/927 XcmV2WeightLimit: {928 _enum: {929 Unlimited: 'Null',930 Limited: 'Compact<u64>'931 }932 },933 /**934 * Lookup84: xcm::VersionedMultiAssets935 **/936 XcmVersionedMultiAssets: {937 _enum: {938 V0: 'Vec<XcmV0MultiAsset>',939 V1: 'XcmV1MultiassetMultiAssets'940 }941 },942 /**943 * Lookup86: xcm::v0::multi_asset::MultiAsset944 **/945 XcmV0MultiAsset: {946 _enum: {947 None: 'Null',948 All: 'Null',949 AllFungible: 'Null',950 AllNonFungible: 'Null',951 AllAbstractFungible: {952 id: 'Bytes',953 },954 AllAbstractNonFungible: {955 class: 'Bytes',956 },957 AllConcreteFungible: {958 id: 'XcmV0MultiLocation',959 },960 AllConcreteNonFungible: {961 class: 'XcmV0MultiLocation',962 },963 AbstractFungible: {964 id: 'Bytes',965 amount: 'Compact<u128>',966 },967 AbstractNonFungible: {968 class: 'Bytes',969 instance: 'XcmV1MultiassetAssetInstance',970 },971 ConcreteFungible: {972 id: 'XcmV0MultiLocation',973 amount: 'Compact<u128>',974 },975 ConcreteNonFungible: {976 class: 'XcmV0MultiLocation',977 instance: 'XcmV1MultiassetAssetInstance'978 }979 }980 },981 /**982 * Lookup87: xcm::v0::multi_location::MultiLocation983 **/984 XcmV0MultiLocation: {985 _enum: {986 Null: 'Null',987 X1: 'XcmV0Junction',988 X2: '(XcmV0Junction,XcmV0Junction)',989 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',990 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',991 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',992 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',993 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',994 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'995 }996 },997 /**998 * Lookup88: xcm::v0::junction::Junction999 **/1000 XcmV0Junction: {1001 _enum: {1002 Parent: 'Null',1003 Parachain: 'Compact<u32>',1004 AccountId32: {1005 network: 'XcmV0JunctionNetworkId',1006 id: '[u8;32]',1007 },1008 AccountIndex64: {1009 network: 'XcmV0JunctionNetworkId',1010 index: 'Compact<u64>',1011 },1012 AccountKey20: {1013 network: 'XcmV0JunctionNetworkId',1014 key: '[u8;20]',1015 },1016 PalletInstance: 'u8',1017 GeneralIndex: 'Compact<u128>',1018 GeneralKey: 'Bytes',1019 OnlyChild: 'Null',1020 Plurality: {1021 id: 'XcmV0JunctionBodyId',1022 part: 'XcmV0JunctionBodyPart'1023 }1024 }1025 },1026 /**1027 * Lookup89: xcm::VersionedMultiLocation1028 **/1029 XcmVersionedMultiLocation: {1030 _enum: {1031 V0: 'XcmV0MultiLocation',1032 V1: 'XcmV1MultiLocation'1033 }1034 },1035 /**1036 * Lookup90: cumulus_pallet_xcm::pallet::Event<T>1037 **/1038 CumulusPalletXcmEvent: {1039 _enum: {1040 InvalidFormat: '[u8;8]',1041 UnsupportedVersion: '[u8;8]',1042 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1043 }1044 },1045 /**1046 * Lookup91: cumulus_pallet_dmp_queue::pallet::Event<T>1047 **/1048 CumulusPalletDmpQueueEvent: {1049 _enum: {1050 InvalidFormat: {1051 messageId: '[u8;32]',1052 },1053 UnsupportedVersion: {1054 messageId: '[u8;32]',1055 },1056 ExecutedDownward: {1057 messageId: '[u8;32]',1058 outcome: 'XcmV2TraitsOutcome',1059 },1060 WeightExhausted: {1061 messageId: '[u8;32]',1062 remainingWeight: 'SpWeightsWeightV2Weight',1063 requiredWeight: 'SpWeightsWeightV2Weight',1064 },1065 OverweightEnqueued: {1066 messageId: '[u8;32]',1067 overweightIndex: 'u64',1068 requiredWeight: 'SpWeightsWeightV2Weight',1069 },1070 OverweightServiced: {1071 overweightIndex: 'u64',1072 weightUsed: 'SpWeightsWeightV2Weight'1073 }1074 }1075 },1076 /**1077 * Lookup92: pallet_configuration::pallet::Event<T>1078 **/1079 PalletConfigurationEvent: {1080 _enum: {1081 NewDesiredCollators: {1082 desiredCollators: 'Option<u32>',1083 },1084 NewCollatorLicenseBond: {1085 bondCost: 'Option<u128>',1086 },1087 NewCollatorKickThreshold: {1088 lengthInBlocks: 'Option<u32>'1089 }1090 }1091 },1092 /**1093 * Lookup95: pallet_common::pallet::Event<T>1094 **/1095 PalletCommonEvent: {1096 _enum: {1097 CollectionCreated: '(u32,u8,AccountId32)',1098 CollectionDestroyed: 'u32',1099 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1100 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1101 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1102 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1103 ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1104 CollectionPropertySet: '(u32,Bytes)',1105 CollectionPropertyDeleted: '(u32,Bytes)',1106 TokenPropertySet: '(u32,u32,Bytes)',1107 TokenPropertyDeleted: '(u32,u32,Bytes)',1108 PropertyPermissionSet: '(u32,Bytes)',1109 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1110 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1111 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1112 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1113 CollectionLimitSet: 'u32',1114 CollectionOwnerChanged: '(u32,AccountId32)',1115 CollectionPermissionSet: 'u32',1116 CollectionSponsorSet: '(u32,AccountId32)',1117 SponsorshipConfirmed: '(u32,AccountId32)',1118 CollectionSponsorRemoved: 'u32'1119 }1120 },1121 /**1122 * Lookup98: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1123 **/1124 PalletEvmAccountBasicCrossAccountIdRepr: {1125 _enum: {1126 Substrate: 'AccountId32',1127 Ethereum: 'H160'1128 }1129 },1130 /**1131 * Lookup102: pallet_structure::pallet::Event<T>1132 **/1133 PalletStructureEvent: {1134 _enum: {1135 Executed: 'Result<Null, SpRuntimeDispatchError>'1136 }1137 },1138 /**1139 * Lookup103: pallet_rmrk_core::pallet::Event<T>1140 **/1141 PalletRmrkCoreEvent: {1142 _enum: {1143 CollectionCreated: {1144 issuer: 'AccountId32',1145 collectionId: 'u32',1146 },1147 CollectionDestroyed: {1148 issuer: 'AccountId32',1149 collectionId: 'u32',1150 },1151 IssuerChanged: {1152 oldIssuer: 'AccountId32',1153 newIssuer: 'AccountId32',1154 collectionId: 'u32',1155 },1156 CollectionLocked: {1157 issuer: 'AccountId32',1158 collectionId: 'u32',1159 },1160 NftMinted: {1161 owner: 'AccountId32',1162 collectionId: 'u32',1163 nftId: 'u32',1164 },1165 NFTBurned: {1166 owner: 'AccountId32',1167 nftId: 'u32',1168 },1169 NFTSent: {1170 sender: 'AccountId32',1171 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1172 collectionId: 'u32',1173 nftId: 'u32',1174 approvalRequired: 'bool',1175 },1176 NFTAccepted: {1177 sender: 'AccountId32',1178 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1179 collectionId: 'u32',1180 nftId: 'u32',1181 },1182 NFTRejected: {1183 sender: 'AccountId32',1184 collectionId: 'u32',1185 nftId: 'u32',1186 },1187 PropertySet: {1188 collectionId: 'u32',1189 maybeNftId: 'Option<u32>',1190 key: 'Bytes',1191 value: 'Bytes',1192 },1193 ResourceAdded: {1194 nftId: 'u32',1195 resourceId: 'u32',1196 },1197 ResourceRemoval: {1198 nftId: 'u32',1199 resourceId: 'u32',1200 },1201 ResourceAccepted: {1202 nftId: 'u32',1203 resourceId: 'u32',1204 },1205 ResourceRemovalAccepted: {1206 nftId: 'u32',1207 resourceId: 'u32',1208 },1209 PrioritySet: {1210 collectionId: 'u32',1211 nftId: 'u32'1212 }1213 }1214 },1215 /**1216 * Lookup104: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1217 **/1218 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1219 _enum: {1220 AccountId: 'AccountId32',1221 CollectionAndNftTuple: '(u32,u32)'1222 }1223 },1224 /**1225 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1226 **/1227 PalletRmrkEquipEvent: {1228 _enum: {1229 BaseCreated: {1230 issuer: 'AccountId32',1231 baseId: 'u32',1232 },1233 EquippablesUpdated: {1234 baseId: 'u32',1235 slotId: 'u32'1236 }1237 }1238 },1239 /**1240 * Lookup108: pallet_app_promotion::pallet::Event<T>1241 **/1242 PalletAppPromotionEvent: {1243 _enum: {1244 StakingRecalculation: '(AccountId32,u128,u128)',1245 Stake: '(AccountId32,u128)',1246 Unstake: '(AccountId32,u128)',1247 SetAdmin: 'AccountId32'1248 }1249 },1250 /**1251 * Lookup109: pallet_foreign_assets::module::Event<T>1252 **/1253 PalletForeignAssetsModuleEvent: {1254 _enum: {1255 ForeignAssetRegistered: {1256 assetId: 'u32',1257 assetAddress: 'XcmV1MultiLocation',1258 metadata: 'PalletForeignAssetsModuleAssetMetadata',1259 },1260 ForeignAssetUpdated: {1261 assetId: 'u32',1262 assetAddress: 'XcmV1MultiLocation',1263 metadata: 'PalletForeignAssetsModuleAssetMetadata',1264 },1265 AssetRegistered: {1266 assetId: 'PalletForeignAssetsAssetIds',1267 metadata: 'PalletForeignAssetsModuleAssetMetadata',1268 },1269 AssetUpdated: {1270 assetId: 'PalletForeignAssetsAssetIds',1271 metadata: 'PalletForeignAssetsModuleAssetMetadata'1272 }1273 }1274 },1275 /**1276 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1277 **/1278 PalletForeignAssetsModuleAssetMetadata: {1279 name: 'Bytes',1280 symbol: 'Bytes',1281 decimals: 'u8',1282 minimalBalance: 'u128'1283 },1284 /**1285 * Lookup111: pallet_evm::pallet::Event<T>1286 **/1287 PalletEvmEvent: {1288 _enum: {1289 Log: {1290 log: 'EthereumLog',1291 },1292 Created: {1293 address: 'H160',1294 },1295 CreatedFailed: {1296 address: 'H160',1297 },1298 Executed: {1299 address: 'H160',1300 },1301 ExecutedFailed: {1302 address: 'H160'1303 }1304 }1305 },1306 /**1307 * Lookup112: ethereum::log::Log1308 **/1309 EthereumLog: {1310 address: 'H160',1311 topics: 'Vec<H256>',1312 data: 'Bytes'1313 },1314 /**1315 * Lookup114: pallet_ethereum::pallet::Event1316 **/1317 PalletEthereumEvent: {1318 _enum: {1319 Executed: {1320 from: 'H160',1321 to: 'H160',1322 transactionHash: 'H256',1323 exitReason: 'EvmCoreErrorExitReason'1324 }1325 }1326 },1327 /**1328 * Lookup115: evm_core::error::ExitReason1329 **/1330 EvmCoreErrorExitReason: {1331 _enum: {1332 Succeed: 'EvmCoreErrorExitSucceed',1333 Error: 'EvmCoreErrorExitError',1334 Revert: 'EvmCoreErrorExitRevert',1335 Fatal: 'EvmCoreErrorExitFatal'1336 }1337 },1338 /**1339 * Lookup116: evm_core::error::ExitSucceed1340 **/1341 EvmCoreErrorExitSucceed: {1342 _enum: ['Stopped', 'Returned', 'Suicided']1343 },1344 /**1345 * Lookup117: evm_core::error::ExitError1346 **/1347 EvmCoreErrorExitError: {1348 _enum: {1349 StackUnderflow: 'Null',1350 StackOverflow: 'Null',1351 InvalidJump: 'Null',1352 InvalidRange: 'Null',1353 DesignatedInvalid: 'Null',1354 CallTooDeep: 'Null',1355 CreateCollision: 'Null',1356 CreateContractLimit: 'Null',1357 OutOfOffset: 'Null',1358 OutOfGas: 'Null',1359 OutOfFund: 'Null',1360 PCUnderflow: 'Null',1361 CreateEmpty: 'Null',1362 Other: 'Text',1363 InvalidCode: 'Null'1364 }1365 },1366 /**1367 * Lookup120: evm_core::error::ExitRevert1368 **/1369 EvmCoreErrorExitRevert: {1370 _enum: ['Reverted']1371 },1372 /**1373 * Lookup121: evm_core::error::ExitFatal1374 **/1375 EvmCoreErrorExitFatal: {1376 _enum: {1377 NotSupported: 'Null',1378 UnhandledInterrupt: 'Null',1379 CallErrorAsFatal: 'EvmCoreErrorExitError',1380 Other: 'Text'1381 }1382 },1383 /**1384 * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>1385 **/1386 PalletEvmContractHelpersEvent: {1387 _enum: {1388 ContractSponsorSet: '(H160,AccountId32)',1389 ContractSponsorshipConfirmed: '(H160,AccountId32)',1390 ContractSponsorRemoved: 'H160'1391 }1392 },1393 /**1394 * Lookup123: pallet_data_management::pallet::Event<T>1395 **/1396 PalletDataManagementEvent: {1397 _enum: ['TestEvent']1398 },1399 /**1400 * Lookup124: pallet_maintenance::pallet::Event<T>1401 **/1402 PalletMaintenanceEvent: {1403 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1404 },1405 /**1406 * Lookup125: pallet_test_utils::pallet::Event<T>1407 **/1408 PalletTestUtilsEvent: {1409 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1410 },1411 /**1412 * Lookup126: frame_system::Phase1413 **/1414 FrameSystemPhase: {1415 _enum: {1416 ApplyExtrinsic: 'u32',1417 Finalization: 'Null',1418 Initialization: 'Null'1419 }1420 },1421 /**1422 * Lookup129: frame_system::LastRuntimeUpgradeInfo1423 **/1424 FrameSystemLastRuntimeUpgradeInfo: {1425 specVersion: 'Compact<u32>',1426 specName: 'Text'1427 },1428 /**1429 * Lookup130: frame_system::pallet::Call<T>1430 **/1431 FrameSystemCall: {1432 _enum: {1433 remark: {1434 remark: 'Bytes',1435 },1436 set_heap_pages: {1437 pages: 'u64',1438 },1439 set_code: {1440 code: 'Bytes',1441 },1442 set_code_without_checks: {1443 code: 'Bytes',1444 },1445 set_storage: {1446 items: 'Vec<(Bytes,Bytes)>',1447 },1448 kill_storage: {1449 _alias: {1450 keys_: 'keys',1451 },1452 keys_: 'Vec<Bytes>',1453 },1454 kill_prefix: {1455 prefix: 'Bytes',1456 subkeys: 'u32',1457 },1458 remark_with_event: {1459 remark: 'Bytes'1460 }1461 }1462 },1463 /**1464 * Lookup134: frame_system::limits::BlockWeights1465 **/1466 FrameSystemLimitsBlockWeights: {1467 baseBlock: 'SpWeightsWeightV2Weight',1468 maxBlock: 'SpWeightsWeightV2Weight',1469 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1470 },1471 /**1472 * Lookup135: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1473 **/1474 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1475 normal: 'FrameSystemLimitsWeightsPerClass',1476 operational: 'FrameSystemLimitsWeightsPerClass',1477 mandatory: 'FrameSystemLimitsWeightsPerClass'1478 },1479 /**1480 * Lookup136: frame_system::limits::WeightsPerClass1481 **/1482 FrameSystemLimitsWeightsPerClass: {1483 baseExtrinsic: 'SpWeightsWeightV2Weight',1484 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1485 maxTotal: 'Option<SpWeightsWeightV2Weight>',1486 reserved: 'Option<SpWeightsWeightV2Weight>'1487 },1488 /**1489 * Lookup138: frame_system::limits::BlockLength1490 **/1491 FrameSystemLimitsBlockLength: {1492 max: 'FrameSupportDispatchPerDispatchClassU32'1493 },1494 /**1495 * Lookup139: frame_support::dispatch::PerDispatchClass<T>1496 **/1497 FrameSupportDispatchPerDispatchClassU32: {1498 normal: 'u32',1499 operational: 'u32',1500 mandatory: 'u32'1501 },1502 /**1503 * Lookup140: sp_weights::RuntimeDbWeight1504 **/1505 SpWeightsRuntimeDbWeight: {1506 read: 'u64',1507 write: 'u64'1508 },1509 /**1510 * Lookup141: sp_version::RuntimeVersion1511 **/1512 SpVersionRuntimeVersion: {1513 specName: 'Text',1514 implName: 'Text',1515 authoringVersion: 'u32',1516 specVersion: 'u32',1517 implVersion: 'u32',1518 apis: 'Vec<([u8;8],u32)>',1519 transactionVersion: 'u32',1520 stateVersion: 'u8'1521 },1522 /**1523 * Lookup146: frame_system::pallet::Error<T>1524 **/1525 FrameSystemError: {1526 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1527 },1528 /**1529 * Lookup147: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1530 **/1531 PolkadotPrimitivesV2PersistedValidationData: {1532 parentHead: 'Bytes',1533 relayParentNumber: 'u32',1534 relayParentStorageRoot: 'H256',1535 maxPovSize: 'u32'1536 },1537 /**1538 * Lookup150: polkadot_primitives::v2::UpgradeRestriction1539 **/1540 PolkadotPrimitivesV2UpgradeRestriction: {1541 _enum: ['Present']1542 },1543 /**1544 * Lookup151: sp_trie::storage_proof::StorageProof1545 **/1546 SpTrieStorageProof: {1547 trieNodes: 'BTreeSet<Bytes>'1548 },1549 /**1550 * Lookup153: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1551 **/1552 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1553 dmqMqcHead: 'H256',1554 relayDispatchQueueSize: '(u32,u32)',1555 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1556 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1557 },1558 /**1559 * Lookup156: polkadot_primitives::v2::AbridgedHrmpChannel1560 **/1561 PolkadotPrimitivesV2AbridgedHrmpChannel: {1562 maxCapacity: 'u32',1563 maxTotalSize: 'u32',1564 maxMessageSize: 'u32',1565 msgCount: 'u32',1566 totalSize: 'u32',1567 mqcHead: 'Option<H256>'1568 },1569 /**1570 * Lookup157: polkadot_primitives::v2::AbridgedHostConfiguration1571 **/1572 PolkadotPrimitivesV2AbridgedHostConfiguration: {1573 maxCodeSize: 'u32',1574 maxHeadDataSize: 'u32',1575 maxUpwardQueueCount: 'u32',1576 maxUpwardQueueSize: 'u32',1577 maxUpwardMessageSize: 'u32',1578 maxUpwardMessageNumPerCandidate: 'u32',1579 hrmpMaxMessageNumPerCandidate: 'u32',1580 validationUpgradeCooldown: 'u32',1581 validationUpgradeDelay: 'u32'1582 },1583 /**1584 * Lookup163: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1585 **/1586 PolkadotCorePrimitivesOutboundHrmpMessage: {1587 recipient: 'u32',1588 data: 'Bytes'1589 },1590 /**1591 * Lookup164: cumulus_pallet_parachain_system::pallet::Call<T>1592 **/1593 CumulusPalletParachainSystemCall: {1594 _enum: {1595 set_validation_data: {1596 data: 'CumulusPrimitivesParachainInherentParachainInherentData',1597 },1598 sudo_send_upward_message: {1599 message: 'Bytes',1600 },1601 authorize_upgrade: {1602 codeHash: 'H256',1603 },1604 enact_authorized_upgrade: {1605 code: 'Bytes'1606 }1607 }1608 },1609 /**1610 * Lookup165: cumulus_primitives_parachain_inherent::ParachainInherentData1611 **/1612 CumulusPrimitivesParachainInherentParachainInherentData: {1613 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1614 relayChainState: 'SpTrieStorageProof',1615 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1616 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1617 },1618 /**1619 * Lookup167: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1620 **/1621 PolkadotCorePrimitivesInboundDownwardMessage: {1622 sentAt: 'u32',1623 msg: 'Bytes'1624 },1625 /**1626 * Lookup170: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1627 **/1628 PolkadotCorePrimitivesInboundHrmpMessage: {1629 sentAt: 'u32',1630 data: 'Bytes'1631 },1632 /**1633 * Lookup173: cumulus_pallet_parachain_system::pallet::Error<T>1634 **/1635 CumulusPalletParachainSystemError: {1636 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1637 },1638 /**1639 * Lookup175: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1640 **/1641 PalletAuthorshipUncleEntryItem: {1642 _enum: {1643 InclusionHeight: 'u32',1644 Uncle: '(H256,Option<AccountId32>)'1645 }1646 },1647 /**1648 * Lookup177: pallet_authorship::pallet::Call<T>1649 **/1650 PalletAuthorshipCall: {1651 _enum: {1652 set_uncles: {1653 newUncles: 'Vec<SpRuntimeHeader>'1654 }1655 }1656 },1657 /**1658 * Lookup179: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>1659 **/1660 SpRuntimeHeader: {1661 parentHash: 'H256',1662 number: 'Compact<u32>',1663 stateRoot: 'H256',1664 extrinsicsRoot: 'H256',1665 digest: 'SpRuntimeDigest'1666 },1667 /**1668 * Lookup180: sp_runtime::traits::BlakeTwo2561669 **/1670 SpRuntimeBlakeTwo256: 'Null',1671 /**1672 * Lookup181: pallet_authorship::pallet::Error<T>1673 **/1674 PalletAuthorshipError: {1675 _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']1676 },1677 /**1678 * Lookup184: pallet_collator_selection::pallet::Call<T>1679 **/1680 PalletCollatorSelectionCall: {1681 _enum: {1682 add_invulnerable: {1683 _alias: {1684 new_: 'new',1685 },1686 new_: 'AccountId32',1687 },1688 remove_invulnerable: {1689 who: 'AccountId32',1690 },1691 get_license: 'Null',1692 onboard: 'Null',1693 offboard: 'Null',1694 release_license: 'Null',1695 force_release_license: {1696 who: 'AccountId32'1697 }1698 }1699 },1700 /**1701 * Lookup185: pallet_collator_selection::pallet::Error<T>1702 **/1703 PalletCollatorSelectionError: {1704 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1705 },1706 /**1707 * Lookup188: opal_runtime::runtime_common::SessionKeys1708 **/1709 OpalRuntimeRuntimeCommonSessionKeys: {1710 aura: 'SpConsensusAuraSr25519AppSr25519Public'1711 },1712 /**1713 * Lookup189: sp_consensus_aura::sr25519::app_sr25519::Public1714 **/1715 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1716 /**1717 * Lookup190: sp_core::sr25519::Public1718 **/1719 SpCoreSr25519Public: '[u8;32]',1720 /**1721 * Lookup193: sp_core::crypto::KeyTypeId1722 **/1723 SpCoreCryptoKeyTypeId: '[u8;4]',1724 /**1725 * Lookup194: pallet_session::pallet::Call<T>1726 **/1727 PalletSessionCall: {1728 _enum: {1729 set_keys: {1730 _alias: {1731 keys_: 'keys',1732 },1733 keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1734 proof: 'Bytes',1735 },1736 purge_keys: 'Null'1737 }1738 },1739 /**1740 * Lookup195: pallet_session::pallet::Error<T>1741 **/1742 PalletSessionError: {1743 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1744 },1745 /**1746 * Lookup196: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>1747 **/1748 PalletIdentityRegistration: {1749 judgements: 'Vec<(u32,PalletIdentityJudgement)>',1750 deposit: 'u128',1751 info: 'PalletIdentityIdentityInfo'1752 },1753 /**1754 * Lookup199: pallet_identity::types::Judgement<Balance>1755 **/1756 PalletIdentityJudgement: {1757 _enum: {1758 Unknown: 'Null',1759 FeePaid: 'u128',1760 Reasonable: 'Null',1761 KnownGood: 'Null',1762 OutOfDate: 'Null',1763 LowQuality: 'Null',1764 Erroneous: 'Null'1765 }1766 },1767 /**1768 * Lookup201: pallet_identity::types::IdentityInfo<FieldLimit>1769 **/1770 PalletIdentityIdentityInfo: {1771 additional: 'Vec<(Data,Data)>',1772 display: 'Data',1773 legal: 'Data',1774 web: 'Data',1775 riot: 'Data',1776 email: 'Data',1777 pgpFingerprint: 'Option<[u8;20]>',1778 image: 'Data',1779 twitter: 'Data'1780 },1781 /**1782 * Lookup240: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>1783 **/1784 PalletIdentityRegistrarInfo: {1785 account: 'AccountId32',1786 fee: 'u128',1787 fields: 'PalletIdentityBitFlags'1788 },1789 /**1790 * Lookup241: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>1791 **/1792 PalletIdentityBitFlags: {1793 _bitLength: 64,1794 Display: 1,1795 Legal: 2,1796 Web: 4,1797 Riot: 8,1798 Email: 16,1799 PgpFingerprint: 32,1800 Image: 64,1801 Twitter: 1281802 },1803 /**1804 * Lookup242: pallet_identity::types::IdentityField1805 **/1806 PalletIdentityIdentityField: {1807 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']1808 },1809 /**1810 * Lookup244: pallet_identity::pallet::Call<T>1811 **/1812 PalletIdentityCall: {1813 _enum: {1814 add_registrar: {1815 account: 'MultiAddress',1816 },1817 set_identity: {1818 info: 'PalletIdentityIdentityInfo',1819 },1820 set_subs: {1821 subs: 'Vec<(AccountId32,Data)>',1822 },1823 clear_identity: 'Null',1824 request_judgement: {1825 regIndex: 'Compact<u32>',1826 maxFee: 'Compact<u128>',1827 },1828 cancel_request: {1829 regIndex: 'u32',1830 },1831 set_fee: {1832 index: 'Compact<u32>',1833 fee: 'Compact<u128>',1834 },1835 set_account_id: {1836 _alias: {1837 new_: 'new',1838 },1839 index: 'Compact<u32>',1840 new_: 'MultiAddress',1841 },1842 set_fields: {1843 index: 'Compact<u32>',1844 fields: 'PalletIdentityBitFlags',1845 },1846 provide_judgement: {1847 regIndex: 'Compact<u32>',1848 target: 'MultiAddress',1849 judgement: 'PalletIdentityJudgement',1850 identity: 'H256',1851 },1852 kill_identity: {1853 target: 'MultiAddress',1854 },1855 add_sub: {1856 sub: 'MultiAddress',1857 data: 'Data',1858 },1859 rename_sub: {1860 sub: 'MultiAddress',1861 data: 'Data',1862 },1863 remove_sub: {1864 sub: 'MultiAddress',1865 },1866 quit_sub: 'Null',1867 set_identities: {1868 identities: 'Vec<(AccountId32,Option<PalletIdentityRegistration>)>'1869 }1870 }1871 },1872 /**1873 * Lookup251: pallet_identity::pallet::Error<T>1874 **/1875 PalletIdentityError: {1876 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']1877 },1878 /**1879 * Lookup253: pallet_balances::BalanceLock<Balance>1880 **/1881 PalletBalancesBalanceLock: {1882 id: '[u8;8]',1883 amount: 'u128',1884 reasons: 'PalletBalancesReasons'1885 },1886 /**1887 * Lookup254: pallet_balances::Reasons1888 **/1889 PalletBalancesReasons: {1890 _enum: ['Fee', 'Misc', 'All']1891 },1892 /**1893 * Lookup257: pallet_balances::ReserveData<ReserveIdentifier, Balance>1894 **/1895 PalletBalancesReserveData: {1896 id: '[u8;16]',1897 amount: 'u128'1898 },1899 /**1900 * Lookup259: pallet_balances::pallet::Call<T, I>1901 **/1902 PalletBalancesCall: {1903 _enum: {1904 transfer: {1905 dest: 'MultiAddress',1906 value: 'Compact<u128>',1907 },1908 set_balance: {1909 who: 'MultiAddress',1910 newFree: 'Compact<u128>',1911 newReserved: 'Compact<u128>',1912 },1913 force_transfer: {1914 source: 'MultiAddress',1915 dest: 'MultiAddress',1916 value: 'Compact<u128>',1917 },1918 transfer_keep_alive: {1919 dest: 'MultiAddress',1920 value: 'Compact<u128>',1921 },1922 transfer_all: {1923 dest: 'MultiAddress',1924 keepAlive: 'bool',1925 },1926 force_unreserve: {1927 who: 'MultiAddress',1928 amount: 'u128'1929 }1930 }1931 },1932 /**1933 * Lookup260: pallet_balances::pallet::Error<T, I>1934 **/1935 PalletBalancesError: {1936 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1937 },1938 /**1939 * Lookup262: pallet_timestamp::pallet::Call<T>1940 **/1941 PalletTimestampCall: {1942 _enum: {1943 set: {1944 now: 'Compact<u64>'1945 }1946 }1947 },1948 /**1949 * Lookup264: pallet_transaction_payment::Releases1950 **/1951 PalletTransactionPaymentReleases: {1952 _enum: ['V1Ancient', 'V2']1953 },1954 /**1955 * Lookup265: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1956 **/1957 PalletTreasuryProposal: {1958 proposer: 'AccountId32',1959 value: 'u128',1960 beneficiary: 'AccountId32',1961 bond: 'u128'1962 },1963 /**1964 * Lookup267: pallet_treasury::pallet::Call<T, I>1965 **/1966 PalletTreasuryCall: {1967 _enum: {1968 propose_spend: {1969 value: 'Compact<u128>',1970 beneficiary: 'MultiAddress',1971 },1972 reject_proposal: {1973 proposalId: 'Compact<u32>',1974 },1975 approve_proposal: {1976 proposalId: 'Compact<u32>',1977 },1978 spend: {1979 amount: 'Compact<u128>',1980 beneficiary: 'MultiAddress',1981 },1982 remove_approval: {1983 proposalId: 'Compact<u32>'1984 }1985 }1986 },1987 /**1988 * Lookup269: frame_support::PalletId1989 **/1990 FrameSupportPalletId: '[u8;8]',1991 /**1992 * Lookup270: pallet_treasury::pallet::Error<T, I>1993 **/1994 PalletTreasuryError: {1995 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1996 },1997 /**1998 * Lookup271: pallet_sudo::pallet::Call<T>1999 **/2000 PalletSudoCall: {2001 _enum: {2002 sudo: {2003 call: 'Call',2004 },2005 sudo_unchecked_weight: {2006 call: 'Call',2007 weight: 'SpWeightsWeightV2Weight',2008 },2009 set_key: {2010 _alias: {2011 new_: 'new',2012 },2013 new_: 'MultiAddress',2014 },2015 sudo_as: {2016 who: 'MultiAddress',2017 call: 'Call'2018 }2019 }2020 },2021 /**2022 * Lookup273: orml_vesting::module::Call<T>2023 **/2024 OrmlVestingModuleCall: {2025 _enum: {2026 claim: 'Null',2027 vested_transfer: {2028 dest: 'MultiAddress',2029 schedule: 'OrmlVestingVestingSchedule',2030 },2031 update_vesting_schedules: {2032 who: 'MultiAddress',2033 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',2034 },2035 claim_for: {2036 dest: 'MultiAddress'2037 }2038 }2039 },2040 /**2041 * Lookup275: orml_xtokens::module::Call<T>2042 **/2043 OrmlXtokensModuleCall: {2044 _enum: {2045 transfer: {2046 currencyId: 'PalletForeignAssetsAssetIds',2047 amount: 'u128',2048 dest: 'XcmVersionedMultiLocation',2049 destWeightLimit: 'XcmV2WeightLimit',2050 },2051 transfer_multiasset: {2052 asset: 'XcmVersionedMultiAsset',2053 dest: 'XcmVersionedMultiLocation',2054 destWeightLimit: 'XcmV2WeightLimit',2055 },2056 transfer_with_fee: {2057 currencyId: 'PalletForeignAssetsAssetIds',2058 amount: 'u128',2059 fee: 'u128',2060 dest: 'XcmVersionedMultiLocation',2061 destWeightLimit: 'XcmV2WeightLimit',2062 },2063 transfer_multiasset_with_fee: {2064 asset: 'XcmVersionedMultiAsset',2065 fee: 'XcmVersionedMultiAsset',2066 dest: 'XcmVersionedMultiLocation',2067 destWeightLimit: 'XcmV2WeightLimit',2068 },2069 transfer_multicurrencies: {2070 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',2071 feeItem: 'u32',2072 dest: 'XcmVersionedMultiLocation',2073 destWeightLimit: 'XcmV2WeightLimit',2074 },2075 transfer_multiassets: {2076 assets: 'XcmVersionedMultiAssets',2077 feeItem: 'u32',2078 dest: 'XcmVersionedMultiLocation',2079 destWeightLimit: 'XcmV2WeightLimit'2080 }2081 }2082 },2083 /**2084 * Lookup276: xcm::VersionedMultiAsset2085 **/2086 XcmVersionedMultiAsset: {2087 _enum: {2088 V0: 'XcmV0MultiAsset',2089 V1: 'XcmV1MultiAsset'2090 }2091 },2092 /**2093 * Lookup279: orml_tokens::module::Call<T>2094 **/2095 OrmlTokensModuleCall: {2096 _enum: {2097 transfer: {2098 dest: 'MultiAddress',2099 currencyId: 'PalletForeignAssetsAssetIds',2100 amount: 'Compact<u128>',2101 },2102 transfer_all: {2103 dest: 'MultiAddress',2104 currencyId: 'PalletForeignAssetsAssetIds',2105 keepAlive: 'bool',2106 },2107 transfer_keep_alive: {2108 dest: 'MultiAddress',2109 currencyId: 'PalletForeignAssetsAssetIds',2110 amount: 'Compact<u128>',2111 },2112 force_transfer: {2113 source: 'MultiAddress',2114 dest: 'MultiAddress',2115 currencyId: 'PalletForeignAssetsAssetIds',2116 amount: 'Compact<u128>',2117 },2118 set_balance: {2119 who: 'MultiAddress',2120 currencyId: 'PalletForeignAssetsAssetIds',2121 newFree: 'Compact<u128>',2122 newReserved: 'Compact<u128>'2123 }2124 }2125 },2126 /**2127 * Lookup280: cumulus_pallet_xcmp_queue::pallet::Call<T>2128 **/2129 CumulusPalletXcmpQueueCall: {2130 _enum: {2131 service_overweight: {2132 index: 'u64',2133 weightLimit: 'u64',2134 },2135 suspend_xcm_execution: 'Null',2136 resume_xcm_execution: 'Null',2137 update_suspend_threshold: {2138 _alias: {2139 new_: 'new',2140 },2141 new_: 'u32',2142 },2143 update_drop_threshold: {2144 _alias: {2145 new_: 'new',2146 },2147 new_: 'u32',2148 },2149 update_resume_threshold: {2150 _alias: {2151 new_: 'new',2152 },2153 new_: 'u32',2154 },2155 update_threshold_weight: {2156 _alias: {2157 new_: 'new',2158 },2159 new_: 'u64',2160 },2161 update_weight_restrict_decay: {2162 _alias: {2163 new_: 'new',2164 },2165 new_: 'u64',2166 },2167 update_xcmp_max_individual_weight: {2168 _alias: {2169 new_: 'new',2170 },2171 new_: 'u64'2172 }2173 }2174 },2175 /**2176 * Lookup281: pallet_xcm::pallet::Call<T>2177 **/2178 PalletXcmCall: {2179 _enum: {2180 send: {2181 dest: 'XcmVersionedMultiLocation',2182 message: 'XcmVersionedXcm',2183 },2184 teleport_assets: {2185 dest: 'XcmVersionedMultiLocation',2186 beneficiary: 'XcmVersionedMultiLocation',2187 assets: 'XcmVersionedMultiAssets',2188 feeAssetItem: 'u32',2189 },2190 reserve_transfer_assets: {2191 dest: 'XcmVersionedMultiLocation',2192 beneficiary: 'XcmVersionedMultiLocation',2193 assets: 'XcmVersionedMultiAssets',2194 feeAssetItem: 'u32',2195 },2196 execute: {2197 message: 'XcmVersionedXcm',2198 maxWeight: 'u64',2199 },2200 force_xcm_version: {2201 location: 'XcmV1MultiLocation',2202 xcmVersion: 'u32',2203 },2204 force_default_xcm_version: {2205 maybeXcmVersion: 'Option<u32>',2206 },2207 force_subscribe_version_notify: {2208 location: 'XcmVersionedMultiLocation',2209 },2210 force_unsubscribe_version_notify: {2211 location: 'XcmVersionedMultiLocation',2212 },2213 limited_reserve_transfer_assets: {2214 dest: 'XcmVersionedMultiLocation',2215 beneficiary: 'XcmVersionedMultiLocation',2216 assets: 'XcmVersionedMultiAssets',2217 feeAssetItem: 'u32',2218 weightLimit: 'XcmV2WeightLimit',2219 },2220 limited_teleport_assets: {2221 dest: 'XcmVersionedMultiLocation',2222 beneficiary: 'XcmVersionedMultiLocation',2223 assets: 'XcmVersionedMultiAssets',2224 feeAssetItem: 'u32',2225 weightLimit: 'XcmV2WeightLimit'2226 }2227 }2228 },2229 /**2230 * Lookup282: xcm::VersionedXcm<RuntimeCall>2231 **/2232 XcmVersionedXcm: {2233 _enum: {2234 V0: 'XcmV0Xcm',2235 V1: 'XcmV1Xcm',2236 V2: 'XcmV2Xcm'2237 }2238 },2239 /**2240 * Lookup283: xcm::v0::Xcm<RuntimeCall>2241 **/2242 XcmV0Xcm: {2243 _enum: {2244 WithdrawAsset: {2245 assets: 'Vec<XcmV0MultiAsset>',2246 effects: 'Vec<XcmV0Order>',2247 },2248 ReserveAssetDeposit: {2249 assets: 'Vec<XcmV0MultiAsset>',2250 effects: 'Vec<XcmV0Order>',2251 },2252 TeleportAsset: {2253 assets: 'Vec<XcmV0MultiAsset>',2254 effects: 'Vec<XcmV0Order>',2255 },2256 QueryResponse: {2257 queryId: 'Compact<u64>',2258 response: 'XcmV0Response',2259 },2260 TransferAsset: {2261 assets: 'Vec<XcmV0MultiAsset>',2262 dest: 'XcmV0MultiLocation',2263 },2264 TransferReserveAsset: {2265 assets: 'Vec<XcmV0MultiAsset>',2266 dest: 'XcmV0MultiLocation',2267 effects: 'Vec<XcmV0Order>',2268 },2269 Transact: {2270 originType: 'XcmV0OriginKind',2271 requireWeightAtMost: 'u64',2272 call: 'XcmDoubleEncoded',2273 },2274 HrmpNewChannelOpenRequest: {2275 sender: 'Compact<u32>',2276 maxMessageSize: 'Compact<u32>',2277 maxCapacity: 'Compact<u32>',2278 },2279 HrmpChannelAccepted: {2280 recipient: 'Compact<u32>',2281 },2282 HrmpChannelClosing: {2283 initiator: 'Compact<u32>',2284 sender: 'Compact<u32>',2285 recipient: 'Compact<u32>',2286 },2287 RelayedFrom: {2288 who: 'XcmV0MultiLocation',2289 message: 'XcmV0Xcm'2290 }2291 }2292 },2293 /**2294 * Lookup285: xcm::v0::order::Order<RuntimeCall>2295 **/2296 XcmV0Order: {2297 _enum: {2298 Null: 'Null',2299 DepositAsset: {2300 assets: 'Vec<XcmV0MultiAsset>',2301 dest: 'XcmV0MultiLocation',2302 },2303 DepositReserveAsset: {2304 assets: 'Vec<XcmV0MultiAsset>',2305 dest: 'XcmV0MultiLocation',2306 effects: 'Vec<XcmV0Order>',2307 },2308 ExchangeAsset: {2309 give: 'Vec<XcmV0MultiAsset>',2310 receive: 'Vec<XcmV0MultiAsset>',2311 },2312 InitiateReserveWithdraw: {2313 assets: 'Vec<XcmV0MultiAsset>',2314 reserve: 'XcmV0MultiLocation',2315 effects: 'Vec<XcmV0Order>',2316 },2317 InitiateTeleport: {2318 assets: 'Vec<XcmV0MultiAsset>',2319 dest: 'XcmV0MultiLocation',2320 effects: 'Vec<XcmV0Order>',2321 },2322 QueryHolding: {2323 queryId: 'Compact<u64>',2324 dest: 'XcmV0MultiLocation',2325 assets: 'Vec<XcmV0MultiAsset>',2326 },2327 BuyExecution: {2328 fees: 'XcmV0MultiAsset',2329 weight: 'u64',2330 debt: 'u64',2331 haltOnError: 'bool',2332 xcm: 'Vec<XcmV0Xcm>'2333 }2334 }2335 },2336 /**2337 * Lookup287: xcm::v0::Response2338 **/2339 XcmV0Response: {2340 _enum: {2341 Assets: 'Vec<XcmV0MultiAsset>'2342 }2343 },2344 /**2345 * Lookup288: xcm::v1::Xcm<RuntimeCall>2346 **/2347 XcmV1Xcm: {2348 _enum: {2349 WithdrawAsset: {2350 assets: 'XcmV1MultiassetMultiAssets',2351 effects: 'Vec<XcmV1Order>',2352 },2353 ReserveAssetDeposited: {2354 assets: 'XcmV1MultiassetMultiAssets',2355 effects: 'Vec<XcmV1Order>',2356 },2357 ReceiveTeleportedAsset: {2358 assets: 'XcmV1MultiassetMultiAssets',2359 effects: 'Vec<XcmV1Order>',2360 },2361 QueryResponse: {2362 queryId: 'Compact<u64>',2363 response: 'XcmV1Response',2364 },2365 TransferAsset: {2366 assets: 'XcmV1MultiassetMultiAssets',2367 beneficiary: 'XcmV1MultiLocation',2368 },2369 TransferReserveAsset: {2370 assets: 'XcmV1MultiassetMultiAssets',2371 dest: 'XcmV1MultiLocation',2372 effects: 'Vec<XcmV1Order>',2373 },2374 Transact: {2375 originType: 'XcmV0OriginKind',2376 requireWeightAtMost: 'u64',2377 call: 'XcmDoubleEncoded',2378 },2379 HrmpNewChannelOpenRequest: {2380 sender: 'Compact<u32>',2381 maxMessageSize: 'Compact<u32>',2382 maxCapacity: 'Compact<u32>',2383 },2384 HrmpChannelAccepted: {2385 recipient: 'Compact<u32>',2386 },2387 HrmpChannelClosing: {2388 initiator: 'Compact<u32>',2389 sender: 'Compact<u32>',2390 recipient: 'Compact<u32>',2391 },2392 RelayedFrom: {2393 who: 'XcmV1MultilocationJunctions',2394 message: 'XcmV1Xcm',2395 },2396 SubscribeVersion: {2397 queryId: 'Compact<u64>',2398 maxResponseWeight: 'Compact<u64>',2399 },2400 UnsubscribeVersion: 'Null'2401 }2402 },2403 /**2404 * Lookup290: xcm::v1::order::Order<RuntimeCall>2405 **/2406 XcmV1Order: {2407 _enum: {2408 Noop: 'Null',2409 DepositAsset: {2410 assets: 'XcmV1MultiassetMultiAssetFilter',2411 maxAssets: 'u32',2412 beneficiary: 'XcmV1MultiLocation',2413 },2414 DepositReserveAsset: {2415 assets: 'XcmV1MultiassetMultiAssetFilter',2416 maxAssets: 'u32',2417 dest: 'XcmV1MultiLocation',2418 effects: 'Vec<XcmV1Order>',2419 },2420 ExchangeAsset: {2421 give: 'XcmV1MultiassetMultiAssetFilter',2422 receive: 'XcmV1MultiassetMultiAssets',2423 },2424 InitiateReserveWithdraw: {2425 assets: 'XcmV1MultiassetMultiAssetFilter',2426 reserve: 'XcmV1MultiLocation',2427 effects: 'Vec<XcmV1Order>',2428 },2429 InitiateTeleport: {2430 assets: 'XcmV1MultiassetMultiAssetFilter',2431 dest: 'XcmV1MultiLocation',2432 effects: 'Vec<XcmV1Order>',2433 },2434 QueryHolding: {2435 queryId: 'Compact<u64>',2436 dest: 'XcmV1MultiLocation',2437 assets: 'XcmV1MultiassetMultiAssetFilter',2438 },2439 BuyExecution: {2440 fees: 'XcmV1MultiAsset',2441 weight: 'u64',2442 debt: 'u64',2443 haltOnError: 'bool',2444 instructions: 'Vec<XcmV1Xcm>'2445 }2446 }2447 },2448 /**2449 * Lookup292: xcm::v1::Response2450 **/2451 XcmV1Response: {2452 _enum: {2453 Assets: 'XcmV1MultiassetMultiAssets',2454 Version: 'u32'2455 }2456 },2457 /**2458 * Lookup306: cumulus_pallet_xcm::pallet::Call<T>2459 **/2460 CumulusPalletXcmCall: 'Null',2461 /**2462 * Lookup307: cumulus_pallet_dmp_queue::pallet::Call<T>2463 **/2464 CumulusPalletDmpQueueCall: {2465 _enum: {2466 service_overweight: {2467 index: 'u64',2468 weightLimit: 'u64'2469 }2470 }2471 },2472 /**2473 * Lookup308: pallet_inflation::pallet::Call<T>2474 **/2475 PalletInflationCall: {2476 _enum: {2477 start_inflation: {2478 inflationStartRelayBlock: 'u32'2479 }2480 }2481 },2482 /**2483 * Lookup309: pallet_unique::Call<T>2484 **/2485 PalletUniqueCall: {2486 _enum: {2487 create_collection: {2488 collectionName: 'Vec<u16>',2489 collectionDescription: 'Vec<u16>',2490 tokenPrefix: 'Bytes',2491 mode: 'UpDataStructsCollectionMode',2492 },2493 create_collection_ex: {2494 data: 'UpDataStructsCreateCollectionData',2495 },2496 destroy_collection: {2497 collectionId: 'u32',2498 },2499 add_to_allow_list: {2500 collectionId: 'u32',2501 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2502 },2503 remove_from_allow_list: {2504 collectionId: 'u32',2505 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2506 },2507 change_collection_owner: {2508 collectionId: 'u32',2509 newOwner: 'AccountId32',2510 },2511 add_collection_admin: {2512 collectionId: 'u32',2513 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2514 },2515 remove_collection_admin: {2516 collectionId: 'u32',2517 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2518 },2519 set_collection_sponsor: {2520 collectionId: 'u32',2521 newSponsor: 'AccountId32',2522 },2523 confirm_sponsorship: {2524 collectionId: 'u32',2525 },2526 remove_collection_sponsor: {2527 collectionId: 'u32',2528 },2529 create_item: {2530 collectionId: 'u32',2531 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2532 data: 'UpDataStructsCreateItemData',2533 },2534 create_multiple_items: {2535 collectionId: 'u32',2536 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2537 itemsData: 'Vec<UpDataStructsCreateItemData>',2538 },2539 set_collection_properties: {2540 collectionId: 'u32',2541 properties: 'Vec<UpDataStructsProperty>',2542 },2543 delete_collection_properties: {2544 collectionId: 'u32',2545 propertyKeys: 'Vec<Bytes>',2546 },2547 set_token_properties: {2548 collectionId: 'u32',2549 tokenId: 'u32',2550 properties: 'Vec<UpDataStructsProperty>',2551 },2552 delete_token_properties: {2553 collectionId: 'u32',2554 tokenId: 'u32',2555 propertyKeys: 'Vec<Bytes>',2556 },2557 set_token_property_permissions: {2558 collectionId: 'u32',2559 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2560 },2561 create_multiple_items_ex: {2562 collectionId: 'u32',2563 data: 'UpDataStructsCreateItemExData',2564 },2565 set_transfers_enabled_flag: {2566 collectionId: 'u32',2567 value: 'bool',2568 },2569 burn_item: {2570 collectionId: 'u32',2571 itemId: 'u32',2572 value: 'u128',2573 },2574 burn_from: {2575 collectionId: 'u32',2576 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2577 itemId: 'u32',2578 value: 'u128',2579 },2580 transfer: {2581 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2582 collectionId: 'u32',2583 itemId: 'u32',2584 value: 'u128',2585 },2586 approve: {2587 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2588 collectionId: 'u32',2589 itemId: 'u32',2590 amount: 'u128',2591 },2592 transfer_from: {2593 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2594 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2595 collectionId: 'u32',2596 itemId: 'u32',2597 value: 'u128',2598 },2599 set_collection_limits: {2600 collectionId: 'u32',2601 newLimit: 'UpDataStructsCollectionLimits',2602 },2603 set_collection_permissions: {2604 collectionId: 'u32',2605 newPermission: 'UpDataStructsCollectionPermissions',2606 },2607 repartition: {2608 collectionId: 'u32',2609 tokenId: 'u32',2610 amount: 'u128',2611 },2612 set_allowance_for_all: {2613 collectionId: 'u32',2614 operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2615 approve: 'bool',2616 },2617 force_repair_collection: {2618 collectionId: 'u32',2619 },2620 force_repair_item: {2621 collectionId: 'u32',2622 itemId: 'u32'2623 }2624 }2625 },2626 /**2627 * Lookup314: up_data_structs::CollectionMode2628 **/2629 UpDataStructsCollectionMode: {2630 _enum: {2631 NFT: 'Null',2632 Fungible: 'u8',2633 ReFungible: 'Null'2634 }2635 },2636 /**2637 * Lookup315: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2638 **/2639 UpDataStructsCreateCollectionData: {2640 mode: 'UpDataStructsCollectionMode',2641 access: 'Option<UpDataStructsAccessMode>',2642 name: 'Vec<u16>',2643 description: 'Vec<u16>',2644 tokenPrefix: 'Bytes',2645 pendingSponsor: 'Option<AccountId32>',2646 limits: 'Option<UpDataStructsCollectionLimits>',2647 permissions: 'Option<UpDataStructsCollectionPermissions>',2648 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2649 properties: 'Vec<UpDataStructsProperty>'2650 },2651 /**2652 * Lookup317: up_data_structs::AccessMode2653 **/2654 UpDataStructsAccessMode: {2655 _enum: ['Normal', 'AllowList']2656 },2657 /**2658 * Lookup319: up_data_structs::CollectionLimits2659 **/2660 UpDataStructsCollectionLimits: {2661 accountTokenOwnershipLimit: 'Option<u32>',2662 sponsoredDataSize: 'Option<u32>',2663 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2664 tokenLimit: 'Option<u32>',2665 sponsorTransferTimeout: 'Option<u32>',2666 sponsorApproveTimeout: 'Option<u32>',2667 ownerCanTransfer: 'Option<bool>',2668 ownerCanDestroy: 'Option<bool>',2669 transfersEnabled: 'Option<bool>'2670 },2671 /**2672 * Lookup321: up_data_structs::SponsoringRateLimit2673 **/2674 UpDataStructsSponsoringRateLimit: {2675 _enum: {2676 SponsoringDisabled: 'Null',2677 Blocks: 'u32'2678 }2679 },2680 /**2681 * Lookup324: up_data_structs::CollectionPermissions2682 **/2683 UpDataStructsCollectionPermissions: {2684 access: 'Option<UpDataStructsAccessMode>',2685 mintMode: 'Option<bool>',2686 nesting: 'Option<UpDataStructsNestingPermissions>'2687 },2688 /**2689 * Lookup326: up_data_structs::NestingPermissions2690 **/2691 UpDataStructsNestingPermissions: {2692 tokenOwner: 'bool',2693 collectionAdmin: 'bool',2694 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2695 },2696 /**2697 * Lookup328: up_data_structs::OwnerRestrictedSet2698 **/2699 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2700 /**2701 * Lookup333: up_data_structs::PropertyKeyPermission2702 **/2703 UpDataStructsPropertyKeyPermission: {2704 key: 'Bytes',2705 permission: 'UpDataStructsPropertyPermission'2706 },2707 /**2708 * Lookup334: up_data_structs::PropertyPermission2709 **/2710 UpDataStructsPropertyPermission: {2711 mutable: 'bool',2712 collectionAdmin: 'bool',2713 tokenOwner: 'bool'2714 },2715 /**2716 * Lookup337: up_data_structs::Property2717 **/2718 UpDataStructsProperty: {2719 key: 'Bytes',2720 value: 'Bytes'2721 },2722 /**2723 * Lookup340: up_data_structs::CreateItemData2724 **/2725 UpDataStructsCreateItemData: {2726 _enum: {2727 NFT: 'UpDataStructsCreateNftData',2728 Fungible: 'UpDataStructsCreateFungibleData',2729 ReFungible: 'UpDataStructsCreateReFungibleData'2730 }2731 },2732 /**2733 * Lookup341: up_data_structs::CreateNftData2734 **/2735 UpDataStructsCreateNftData: {2736 properties: 'Vec<UpDataStructsProperty>'2737 },2738 /**2739 * Lookup342: up_data_structs::CreateFungibleData2740 **/2741 UpDataStructsCreateFungibleData: {2742 value: 'u128'2743 },2744 /**2745 * Lookup343: up_data_structs::CreateReFungibleData2746 **/2747 UpDataStructsCreateReFungibleData: {2748 pieces: 'u128',2749 properties: 'Vec<UpDataStructsProperty>'2750 },2751 /**2752 * Lookup346: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2753 **/2754 UpDataStructsCreateItemExData: {2755 _enum: {2756 NFT: 'Vec<UpDataStructsCreateNftExData>',2757 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2758 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2759 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2760 }2761 },2762 /**2763 * Lookup348: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2764 **/2765 UpDataStructsCreateNftExData: {2766 properties: 'Vec<UpDataStructsProperty>',2767 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2768 },2769 /**2770 * Lookup355: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2771 **/2772 UpDataStructsCreateRefungibleExSingleOwner: {2773 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2774 pieces: 'u128',2775 properties: 'Vec<UpDataStructsProperty>'2776 },2777 /**2778 * Lookup357: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2779 **/2780 UpDataStructsCreateRefungibleExMultipleOwners: {2781 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2782 properties: 'Vec<UpDataStructsProperty>'2783 },2784 /**2785 * Lookup358: pallet_configuration::pallet::Call<T>2786 **/2787 PalletConfigurationCall: {2788 _enum: {2789 set_weight_to_fee_coefficient_override: {2790 coeff: 'Option<u64>',2791 },2792 set_min_gas_price_override: {2793 coeff: 'Option<u64>',2794 },2795 set_xcm_allowed_locations: {2796 locations: 'Option<Vec<XcmV1MultiLocation>>',2797 },2798 set_app_promotion_configuration_override: {2799 configuration: 'PalletConfigurationAppPromotionConfiguration',2800 },2801 set_collator_selection_desired_collators: {2802 max: 'Option<u32>',2803 },2804 set_collator_selection_license_bond: {2805 amount: 'Option<u128>',2806 },2807 set_collator_selection_kick_threshold: {2808 threshold: 'Option<u32>'2809 }2810 }2811 },2812 /**2813 * Lookup363: pallet_configuration::AppPromotionConfiguration<BlockNumber>2814 **/2815 PalletConfigurationAppPromotionConfiguration: {2816 recalculationInterval: 'Option<u32>',2817 pendingInterval: 'Option<u32>',2818 intervalIncome: 'Option<Perbill>',2819 maxStakersPerCalculation: 'Option<u8>'2820 },2821 /**2822 * Lookup367: pallet_template_transaction_payment::Call<T>2823 **/2824 PalletTemplateTransactionPaymentCall: 'Null',2825 /**2826 * Lookup368: pallet_structure::pallet::Call<T>2827 **/2828 PalletStructureCall: 'Null',2829 /**2830 * Lookup369: pallet_rmrk_core::pallet::Call<T>2831 **/2832 PalletRmrkCoreCall: {2833 _enum: {2834 create_collection: {2835 metadata: 'Bytes',2836 max: 'Option<u32>',2837 symbol: 'Bytes',2838 },2839 destroy_collection: {2840 collectionId: 'u32',2841 },2842 change_collection_issuer: {2843 collectionId: 'u32',2844 newIssuer: 'MultiAddress',2845 },2846 lock_collection: {2847 collectionId: 'u32',2848 },2849 mint_nft: {2850 owner: 'Option<AccountId32>',2851 collectionId: 'u32',2852 recipient: 'Option<AccountId32>',2853 royaltyAmount: 'Option<Permill>',2854 metadata: 'Bytes',2855 transferable: 'bool',2856 resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2857 },2858 burn_nft: {2859 collectionId: 'u32',2860 nftId: 'u32',2861 maxBurns: 'u32',2862 },2863 send: {2864 rmrkCollectionId: 'u32',2865 rmrkNftId: 'u32',2866 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2867 },2868 accept_nft: {2869 rmrkCollectionId: 'u32',2870 rmrkNftId: 'u32',2871 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2872 },2873 reject_nft: {2874 rmrkCollectionId: 'u32',2875 rmrkNftId: 'u32',2876 },2877 accept_resource: {2878 rmrkCollectionId: 'u32',2879 rmrkNftId: 'u32',2880 resourceId: 'u32',2881 },2882 accept_resource_removal: {2883 rmrkCollectionId: 'u32',2884 rmrkNftId: 'u32',2885 resourceId: 'u32',2886 },2887 set_property: {2888 rmrkCollectionId: 'Compact<u32>',2889 maybeNftId: 'Option<u32>',2890 key: 'Bytes',2891 value: 'Bytes',2892 },2893 set_priority: {2894 rmrkCollectionId: 'u32',2895 rmrkNftId: 'u32',2896 priorities: 'Vec<u32>',2897 },2898 add_basic_resource: {2899 rmrkCollectionId: 'u32',2900 nftId: 'u32',2901 resource: 'RmrkTraitsResourceBasicResource',2902 },2903 add_composable_resource: {2904 rmrkCollectionId: 'u32',2905 nftId: 'u32',2906 resource: 'RmrkTraitsResourceComposableResource',2907 },2908 add_slot_resource: {2909 rmrkCollectionId: 'u32',2910 nftId: 'u32',2911 resource: 'RmrkTraitsResourceSlotResource',2912 },2913 remove_resource: {2914 rmrkCollectionId: 'u32',2915 nftId: 'u32',2916 resourceId: 'u32'2917 }2918 }2919 },2920 /**2921 * Lookup375: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2922 **/2923 RmrkTraitsResourceResourceTypes: {2924 _enum: {2925 Basic: 'RmrkTraitsResourceBasicResource',2926 Composable: 'RmrkTraitsResourceComposableResource',2927 Slot: 'RmrkTraitsResourceSlotResource'2928 }2929 },2930 /**2931 * Lookup377: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2932 **/2933 RmrkTraitsResourceBasicResource: {2934 src: 'Option<Bytes>',2935 metadata: 'Option<Bytes>',2936 license: 'Option<Bytes>',2937 thumb: 'Option<Bytes>'2938 },2939 /**2940 * Lookup379: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2941 **/2942 RmrkTraitsResourceComposableResource: {2943 parts: 'Vec<u32>',2944 base: 'u32',2945 src: 'Option<Bytes>',2946 metadata: 'Option<Bytes>',2947 license: 'Option<Bytes>',2948 thumb: 'Option<Bytes>'2949 },2950 /**2951 * Lookup380: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2952 **/2953 RmrkTraitsResourceSlotResource: {2954 base: 'u32',2955 src: 'Option<Bytes>',2956 metadata: 'Option<Bytes>',2957 slot: 'u32',2958 license: 'Option<Bytes>',2959 thumb: 'Option<Bytes>'2960 },2961 /**2962 * Lookup383: pallet_rmrk_equip::pallet::Call<T>2963 **/2964 PalletRmrkEquipCall: {2965 _enum: {2966 create_base: {2967 baseType: 'Bytes',2968 symbol: 'Bytes',2969 parts: 'Vec<RmrkTraitsPartPartType>',2970 },2971 theme_add: {2972 baseId: 'u32',2973 theme: 'RmrkTraitsTheme',2974 },2975 equippable: {2976 baseId: 'u32',2977 slotId: 'u32',2978 equippables: 'RmrkTraitsPartEquippableList'2979 }2980 }2981 },2982 /**2983 * Lookup386: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2984 **/2985 RmrkTraitsPartPartType: {2986 _enum: {2987 FixedPart: 'RmrkTraitsPartFixedPart',2988 SlotPart: 'RmrkTraitsPartSlotPart'2989 }2990 },2991 /**2992 * Lookup388: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2993 **/2994 RmrkTraitsPartFixedPart: {2995 id: 'u32',2996 z: 'u32',2997 src: 'Bytes'2998 },2999 /**3000 * Lookup389: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3001 **/3002 RmrkTraitsPartSlotPart: {3003 id: 'u32',3004 equippable: 'RmrkTraitsPartEquippableList',3005 src: 'Bytes',3006 z: 'u32'3007 },3008 /**3009 * Lookup390: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3010 **/3011 RmrkTraitsPartEquippableList: {3012 _enum: {3013 All: 'Null',3014 Empty: 'Null',3015 Custom: 'Vec<u32>'3016 }3017 },3018 /**3019 * Lookup392: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>3020 **/3021 RmrkTraitsTheme: {3022 name: 'Bytes',3023 properties: 'Vec<RmrkTraitsThemeThemeProperty>',3024 inherit: 'bool'3025 },3026 /**3027 * Lookup394: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3028 **/3029 RmrkTraitsThemeThemeProperty: {3030 key: 'Bytes',3031 value: 'Bytes'3032 },3033 /**3034 * Lookup396: pallet_app_promotion::pallet::Call<T>3035 **/3036 PalletAppPromotionCall: {3037 _enum: {3038 set_admin_address: {3039 admin: 'PalletEvmAccountBasicCrossAccountIdRepr',3040 },3041 stake: {3042 amount: 'u128',3043 },3044 unstake: 'Null',3045 sponsor_collection: {3046 collectionId: 'u32',3047 },3048 stop_sponsoring_collection: {3049 collectionId: 'u32',3050 },3051 sponsor_contract: {3052 contractId: 'H160',3053 },3054 stop_sponsoring_contract: {3055 contractId: 'H160',3056 },3057 payout_stakers: {3058 stakersNumber: 'Option<u8>'3059 }3060 }3061 },3062 /**3063 * Lookup397: pallet_foreign_assets::module::Call<T>3064 **/3065 PalletForeignAssetsModuleCall: {3066 _enum: {3067 register_foreign_asset: {3068 owner: 'AccountId32',3069 location: 'XcmVersionedMultiLocation',3070 metadata: 'PalletForeignAssetsModuleAssetMetadata',3071 },3072 update_foreign_asset: {3073 foreignAssetId: 'u32',3074 location: 'XcmVersionedMultiLocation',3075 metadata: 'PalletForeignAssetsModuleAssetMetadata'3076 }3077 }3078 },3079 /**3080 * Lookup398: pallet_evm::pallet::Call<T>3081 **/3082 PalletEvmCall: {3083 _enum: {3084 withdraw: {3085 address: 'H160',3086 value: 'u128',3087 },3088 call: {3089 source: 'H160',3090 target: 'H160',3091 input: 'Bytes',3092 value: 'U256',3093 gasLimit: 'u64',3094 maxFeePerGas: 'U256',3095 maxPriorityFeePerGas: 'Option<U256>',3096 nonce: 'Option<U256>',3097 accessList: 'Vec<(H160,Vec<H256>)>',3098 },3099 create: {3100 source: 'H160',3101 init: 'Bytes',3102 value: 'U256',3103 gasLimit: 'u64',3104 maxFeePerGas: 'U256',3105 maxPriorityFeePerGas: 'Option<U256>',3106 nonce: 'Option<U256>',3107 accessList: 'Vec<(H160,Vec<H256>)>',3108 },3109 create2: {3110 source: 'H160',3111 init: 'Bytes',3112 salt: 'H256',3113 value: 'U256',3114 gasLimit: 'u64',3115 maxFeePerGas: 'U256',3116 maxPriorityFeePerGas: 'Option<U256>',3117 nonce: 'Option<U256>',3118 accessList: 'Vec<(H160,Vec<H256>)>'3119 }3120 }3121 },3122 /**3123 * Lookup404: pallet_ethereum::pallet::Call<T>3124 **/3125 PalletEthereumCall: {3126 _enum: {3127 transact: {3128 transaction: 'EthereumTransactionTransactionV2'3129 }3130 }3131 },3132 /**3133 * Lookup405: ethereum::transaction::TransactionV23134 **/3135 EthereumTransactionTransactionV2: {3136 _enum: {3137 Legacy: 'EthereumTransactionLegacyTransaction',3138 EIP2930: 'EthereumTransactionEip2930Transaction',3139 EIP1559: 'EthereumTransactionEip1559Transaction'3140 }3141 },3142 /**3143 * Lookup406: ethereum::transaction::LegacyTransaction3144 **/3145 EthereumTransactionLegacyTransaction: {3146 nonce: 'U256',3147 gasPrice: 'U256',3148 gasLimit: 'U256',3149 action: 'EthereumTransactionTransactionAction',3150 value: 'U256',3151 input: 'Bytes',3152 signature: 'EthereumTransactionTransactionSignature'3153 },3154 /**3155 * Lookup407: ethereum::transaction::TransactionAction3156 **/3157 EthereumTransactionTransactionAction: {3158 _enum: {3159 Call: 'H160',3160 Create: 'Null'3161 }3162 },3163 /**3164 * Lookup408: ethereum::transaction::TransactionSignature3165 **/3166 EthereumTransactionTransactionSignature: {3167 v: 'u64',3168 r: 'H256',3169 s: 'H256'3170 },3171 /**3172 * Lookup410: ethereum::transaction::EIP2930Transaction3173 **/3174 EthereumTransactionEip2930Transaction: {3175 chainId: 'u64',3176 nonce: 'U256',3177 gasPrice: 'U256',3178 gasLimit: 'U256',3179 action: 'EthereumTransactionTransactionAction',3180 value: 'U256',3181 input: 'Bytes',3182 accessList: 'Vec<EthereumTransactionAccessListItem>',3183 oddYParity: 'bool',3184 r: 'H256',3185 s: 'H256'3186 },3187 /**3188 * Lookup412: ethereum::transaction::AccessListItem3189 **/3190 EthereumTransactionAccessListItem: {3191 address: 'H160',3192 storageKeys: 'Vec<H256>'3193 },3194 /**3195 * Lookup413: ethereum::transaction::EIP1559Transaction3196 **/3197 EthereumTransactionEip1559Transaction: {3198 chainId: 'u64',3199 nonce: 'U256',3200 maxPriorityFeePerGas: 'U256',3201 maxFeePerGas: 'U256',3202 gasLimit: 'U256',3203 action: 'EthereumTransactionTransactionAction',3204 value: 'U256',3205 input: 'Bytes',3206 accessList: 'Vec<EthereumTransactionAccessListItem>',3207 oddYParity: 'bool',3208 r: 'H256',3209 s: 'H256'3210 },3211 /**3212 * Lookup414: pallet_data_management::pallet::Call<T>3213 **/3214 PalletDataManagementCall: {3215 _enum: {3216 begin: {3217 address: 'H160',3218 },3219 set_data: {3220 address: 'H160',3221 data: 'Vec<(H256,H256)>',3222 },3223 finish: {3224 address: 'H160',3225 code: 'Bytes',3226 },3227 insert_eth_logs: {3228 logs: 'Vec<EthereumLog>',3229 },3230 insert_events: {3231 events: 'Vec<Bytes>'3232 }3233 }3234 },3235 /**3236 * Lookup418: pallet_maintenance::pallet::Call<T>3237 **/3238 PalletMaintenanceCall: {3239 _enum: ['enable', 'disable']3240 },3241 /**3242 * Lookup419: pallet_test_utils::pallet::Call<T>3243 **/3244 PalletTestUtilsCall: {3245 _enum: {3246 enable: 'Null',3247 set_test_value: {3248 value: 'u32',3249 },3250 set_test_value_and_rollback: {3251 value: 'u32',3252 },3253 inc_test_value: 'Null',3254 just_take_fee: 'Null',3255 batch_all: {3256 calls: 'Vec<Call>'3257 }3258 }3259 },3260 /**3261 * Lookup421: pallet_sudo::pallet::Error<T>3262 **/3263 PalletSudoError: {3264 _enum: ['RequireSudo']3265 },3266 /**3267 * Lookup423: orml_vesting::module::Error<T>3268 **/3269 OrmlVestingModuleError: {3270 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3271 },3272 /**3273 * Lookup424: orml_xtokens::module::Error<T>3274 **/3275 OrmlXtokensModuleError: {3276 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3277 },3278 /**3279 * Lookup427: orml_tokens::BalanceLock<Balance>3280 **/3281 OrmlTokensBalanceLock: {3282 id: '[u8;8]',3283 amount: 'u128'3284 },3285 /**3286 * Lookup429: orml_tokens::AccountData<Balance>3287 **/3288 OrmlTokensAccountData: {3289 free: 'u128',3290 reserved: 'u128',3291 frozen: 'u128'3292 },3293 /**3294 * Lookup431: orml_tokens::ReserveData<ReserveIdentifier, Balance>3295 **/3296 OrmlTokensReserveData: {3297 id: 'Null',3298 amount: 'u128'3299 },3300 /**3301 * Lookup433: orml_tokens::module::Error<T>3302 **/3303 OrmlTokensModuleError: {3304 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3305 },3306 /**3307 * Lookup435: cumulus_pallet_xcmp_queue::InboundChannelDetails3308 **/3309 CumulusPalletXcmpQueueInboundChannelDetails: {3310 sender: 'u32',3311 state: 'CumulusPalletXcmpQueueInboundState',3312 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3313 },3314 /**3315 * Lookup436: cumulus_pallet_xcmp_queue::InboundState3316 **/3317 CumulusPalletXcmpQueueInboundState: {3318 _enum: ['Ok', 'Suspended']3319 },3320 /**3321 * Lookup439: polkadot_parachain::primitives::XcmpMessageFormat3322 **/3323 PolkadotParachainPrimitivesXcmpMessageFormat: {3324 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3325 },3326 /**3327 * Lookup442: cumulus_pallet_xcmp_queue::OutboundChannelDetails3328 **/3329 CumulusPalletXcmpQueueOutboundChannelDetails: {3330 recipient: 'u32',3331 state: 'CumulusPalletXcmpQueueOutboundState',3332 signalsExist: 'bool',3333 firstIndex: 'u16',3334 lastIndex: 'u16'3335 },3336 /**3337 * Lookup443: cumulus_pallet_xcmp_queue::OutboundState3338 **/3339 CumulusPalletXcmpQueueOutboundState: {3340 _enum: ['Ok', 'Suspended']3341 },3342 /**3343 * Lookup445: cumulus_pallet_xcmp_queue::QueueConfigData3344 **/3345 CumulusPalletXcmpQueueQueueConfigData: {3346 suspendThreshold: 'u32',3347 dropThreshold: 'u32',3348 resumeThreshold: 'u32',3349 thresholdWeight: 'SpWeightsWeightV2Weight',3350 weightRestrictDecay: 'SpWeightsWeightV2Weight',3351 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3352 },3353 /**3354 * Lookup447: cumulus_pallet_xcmp_queue::pallet::Error<T>3355 **/3356 CumulusPalletXcmpQueueError: {3357 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3358 },3359 /**3360 * Lookup448: pallet_xcm::pallet::Error<T>3361 **/3362 PalletXcmError: {3363 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3364 },3365 /**3366 * Lookup449: cumulus_pallet_xcm::pallet::Error<T>3367 **/3368 CumulusPalletXcmError: 'Null',3369 /**3370 * Lookup450: cumulus_pallet_dmp_queue::ConfigData3371 **/3372 CumulusPalletDmpQueueConfigData: {3373 maxIndividual: 'SpWeightsWeightV2Weight'3374 },3375 /**3376 * Lookup451: cumulus_pallet_dmp_queue::PageIndexData3377 **/3378 CumulusPalletDmpQueuePageIndexData: {3379 beginUsed: 'u32',3380 endUsed: 'u32',3381 overweightCount: 'u64'3382 },3383 /**3384 * Lookup454: cumulus_pallet_dmp_queue::pallet::Error<T>3385 **/3386 CumulusPalletDmpQueueError: {3387 _enum: ['Unknown', 'OverLimit']3388 },3389 /**3390 * Lookup458: pallet_unique::Error<T>3391 **/3392 PalletUniqueError: {3393 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3394 },3395 /**3396 * Lookup459: pallet_configuration::pallet::Error<T>3397 **/3398 PalletConfigurationError: {3399 _enum: ['InconsistentConfiguration']3400 },3401 /**3402 * Lookup460: up_data_structs::Collection<sp_core::crypto::AccountId32>3403 **/3404 UpDataStructsCollection: {3405 owner: 'AccountId32',3406 mode: 'UpDataStructsCollectionMode',3407 name: 'Vec<u16>',3408 description: 'Vec<u16>',3409 tokenPrefix: 'Bytes',3410 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3411 limits: 'UpDataStructsCollectionLimits',3412 permissions: 'UpDataStructsCollectionPermissions',3413 flags: '[u8;1]'3414 },3415 /**3416 * Lookup461: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3417 **/3418 UpDataStructsSponsorshipStateAccountId32: {3419 _enum: {3420 Disabled: 'Null',3421 Unconfirmed: 'AccountId32',3422 Confirmed: 'AccountId32'3423 }3424 },3425 /**3426 * Lookup462: up_data_structs::Properties3427 **/3428 UpDataStructsProperties: {3429 map: 'UpDataStructsPropertiesMapBoundedVec',3430 consumedSpace: 'u32',3431 spaceLimit: 'u32'3432 },3433 /**3434 * Lookup463: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3435 **/3436 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3437 /**3438 * Lookup468: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3439 **/3440 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3441 /**3442 * Lookup475: up_data_structs::CollectionStats3443 **/3444 UpDataStructsCollectionStats: {3445 created: 'u32',3446 destroyed: 'u32',3447 alive: 'u32'3448 },3449 /**3450 * Lookup476: up_data_structs::TokenChild3451 **/3452 UpDataStructsTokenChild: {3453 token: 'u32',3454 collection: 'u32'3455 },3456 /**3457 * Lookup477: PhantomType::up_data_structs<T>3458 **/3459 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',3460 /**3461 * Lookup479: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3462 **/3463 UpDataStructsTokenData: {3464 properties: 'Vec<UpDataStructsProperty>',3465 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3466 pieces: 'u128'3467 },3468 /**3469 * Lookup481: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3470 **/3471 UpDataStructsRpcCollection: {3472 owner: 'AccountId32',3473 mode: 'UpDataStructsCollectionMode',3474 name: 'Vec<u16>',3475 description: 'Vec<u16>',3476 tokenPrefix: 'Bytes',3477 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3478 limits: 'UpDataStructsCollectionLimits',3479 permissions: 'UpDataStructsCollectionPermissions',3480 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3481 properties: 'Vec<UpDataStructsProperty>',3482 readOnly: 'bool',3483 flags: 'UpDataStructsRpcCollectionFlags'3484 },3485 /**3486 * Lookup482: up_data_structs::RpcCollectionFlags3487 **/3488 UpDataStructsRpcCollectionFlags: {3489 foreign: 'bool',3490 erc721metadata: 'bool'3491 },3492 /**3493 * Lookup483: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3494 **/3495 RmrkTraitsCollectionCollectionInfo: {3496 issuer: 'AccountId32',3497 metadata: 'Bytes',3498 max: 'Option<u32>',3499 symbol: 'Bytes',3500 nftsCount: 'u32'3501 },3502 /**3503 * Lookup484: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3504 **/3505 RmrkTraitsNftNftInfo: {3506 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3507 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3508 metadata: 'Bytes',3509 equipped: 'bool',3510 pending: 'bool'3511 },3512 /**3513 * Lookup486: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3514 **/3515 RmrkTraitsNftRoyaltyInfo: {3516 recipient: 'AccountId32',3517 amount: 'Permill'3518 },3519 /**3520 * Lookup487: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3521 **/3522 RmrkTraitsResourceResourceInfo: {3523 id: 'u32',3524 resource: 'RmrkTraitsResourceResourceTypes',3525 pending: 'bool',3526 pendingRemoval: 'bool'3527 },3528 /**3529 * Lookup488: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3530 **/3531 RmrkTraitsPropertyPropertyInfo: {3532 key: 'Bytes',3533 value: 'Bytes'3534 },3535 /**3536 * Lookup489: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3537 **/3538 RmrkTraitsBaseBaseInfo: {3539 issuer: 'AccountId32',3540 baseType: 'Bytes',3541 symbol: 'Bytes'3542 },3543 /**3544 * Lookup490: rmrk_traits::nft::NftChild3545 **/3546 RmrkTraitsNftNftChild: {3547 collectionId: 'u32',3548 nftId: 'u32'3549 },3550 /**3551 * Lookup491: up_pov_estimate_rpc::PovInfo3552 **/3553 UpPovEstimateRpcPovInfo: {3554 proofSize: 'u64',3555 compactProofSize: 'u64',3556 compressedProofSize: 'u64',3557 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3558 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3559 },3560 /**3561 * Lookup494: sp_runtime::transaction_validity::TransactionValidityError3562 **/3563 SpRuntimeTransactionValidityTransactionValidityError: {3564 _enum: {3565 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3566 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3567 }3568 },3569 /**3570 * Lookup495: sp_runtime::transaction_validity::InvalidTransaction3571 **/3572 SpRuntimeTransactionValidityInvalidTransaction: {3573 _enum: {3574 Call: 'Null',3575 Payment: 'Null',3576 Future: 'Null',3577 Stale: 'Null',3578 BadProof: 'Null',3579 AncientBirthBlock: 'Null',3580 ExhaustsResources: 'Null',3581 Custom: 'u8',3582 BadMandatory: 'Null',3583 MandatoryValidation: 'Null',3584 BadSigner: 'Null'3585 }3586 },3587 /**3588 * Lookup496: sp_runtime::transaction_validity::UnknownTransaction3589 **/3590 SpRuntimeTransactionValidityUnknownTransaction: {3591 _enum: {3592 CannotLookup: 'Null',3593 NoUnsignedValidator: 'Null',3594 Custom: 'u8'3595 }3596 },3597 /**3598 * Lookup498: up_pov_estimate_rpc::TrieKeyValue3599 **/3600 UpPovEstimateRpcTrieKeyValue: {3601 key: 'Bytes',3602 value: 'Bytes'3603 },3604 /**3605 * Lookup500: pallet_common::pallet::Error<T>3606 **/3607 PalletCommonError: {3608 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3609 },3610 /**3611 * Lookup502: pallet_fungible::pallet::Error<T>3612 **/3613 PalletFungibleError: {3614 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3615 },3616 /**3617 * Lookup506: pallet_refungible::pallet::Error<T>3618 **/3619 PalletRefungibleError: {3620 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3621 },3622 /**3623 * Lookup507: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3624 **/3625 PalletNonfungibleItemData: {3626 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3627 },3628 /**3629 * Lookup509: up_data_structs::PropertyScope3630 **/3631 UpDataStructsPropertyScope: {3632 _enum: ['None', 'Rmrk']3633 },3634 /**3635 * Lookup512: pallet_nonfungible::pallet::Error<T>3636 **/3637 PalletNonfungibleError: {3638 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3639 },3640 /**3641 * Lookup513: pallet_structure::pallet::Error<T>3642 **/3643 PalletStructureError: {3644 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3645 },3646 /**3647 * Lookup514: pallet_rmrk_core::pallet::Error<T>3648 **/3649 PalletRmrkCoreError: {3650 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3651 },3652 /**3653 * Lookup516: pallet_rmrk_equip::pallet::Error<T>3654 **/3655 PalletRmrkEquipError: {3656 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3657 },3658 /**3659 * Lookup522: pallet_app_promotion::pallet::Error<T>3660 **/3661 PalletAppPromotionError: {3662 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3663 },3664 /**3665 * Lookup523: pallet_foreign_assets::module::Error<T>3666 **/3667 PalletForeignAssetsModuleError: {3668 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3669 },3670 /**3671 * Lookup525: pallet_evm::pallet::Error<T>3672 **/3673 PalletEvmError: {3674 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3675 },3676 /**3677 * Lookup528: fp_rpc::TransactionStatus3678 **/3679 FpRpcTransactionStatus: {3680 transactionHash: 'H256',3681 transactionIndex: 'u32',3682 from: 'H160',3683 to: 'Option<H160>',3684 contractAddress: 'Option<H160>',3685 logs: 'Vec<EthereumLog>',3686 logsBloom: 'EthbloomBloom'3687 },3688 /**3689 * Lookup530: ethbloom::Bloom3690 **/3691 EthbloomBloom: '[u8;256]',3692 /**3693 * Lookup532: ethereum::receipt::ReceiptV33694 **/3695 EthereumReceiptReceiptV3: {3696 _enum: {3697 Legacy: 'EthereumReceiptEip658ReceiptData',3698 EIP2930: 'EthereumReceiptEip658ReceiptData',3699 EIP1559: 'EthereumReceiptEip658ReceiptData'3700 }3701 },3702 /**3703 * Lookup533: ethereum::receipt::EIP658ReceiptData3704 **/3705 EthereumReceiptEip658ReceiptData: {3706 statusCode: 'u8',3707 usedGas: 'U256',3708 logsBloom: 'EthbloomBloom',3709 logs: 'Vec<EthereumLog>'3710 },3711 /**3712 * Lookup534: ethereum::block::Block<ethereum::transaction::TransactionV2>3713 **/3714 EthereumBlock: {3715 header: 'EthereumHeader',3716 transactions: 'Vec<EthereumTransactionTransactionV2>',3717 ommers: 'Vec<EthereumHeader>'3718 },3719 /**3720 * Lookup535: ethereum::header::Header3721 **/3722 EthereumHeader: {3723 parentHash: 'H256',3724 ommersHash: 'H256',3725 beneficiary: 'H160',3726 stateRoot: 'H256',3727 transactionsRoot: 'H256',3728 receiptsRoot: 'H256',3729 logsBloom: 'EthbloomBloom',3730 difficulty: 'U256',3731 number: 'U256',3732 gasLimit: 'U256',3733 gasUsed: 'U256',3734 timestamp: 'u64',3735 extraData: 'Bytes',3736 mixHash: 'H256',3737 nonce: 'EthereumTypesHashH64'3738 },3739 /**3740 * Lookup536: ethereum_types::hash::H643741 **/3742 EthereumTypesHashH64: '[u8;8]',3743 /**3744 * Lookup541: pallet_ethereum::pallet::Error<T>3745 **/3746 PalletEthereumError: {3747 _enum: ['InvalidSignature', 'PreLogExists']3748 },3749 /**3750 * Lookup542: pallet_evm_coder_substrate::pallet::Error<T>3751 **/3752 PalletEvmCoderSubstrateError: {3753 _enum: ['OutOfGas', 'OutOfFund']3754 },3755 /**3756 * Lookup543: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3757 **/3758 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3759 _enum: {3760 Disabled: 'Null',3761 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3762 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3763 }3764 },3765 /**3766 * Lookup544: pallet_evm_contract_helpers::SponsoringModeT3767 **/3768 PalletEvmContractHelpersSponsoringModeT: {3769 _enum: ['Disabled', 'Allowlisted', 'Generous']3770 },3771 /**3772 * Lookup550: pallet_evm_contract_helpers::pallet::Error<T>3773 **/3774 PalletEvmContractHelpersError: {3775 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3776 },3777 /**3778 * Lookup551: pallet_data_management::pallet::Error<T>3779 **/3780 PalletDataManagementError: {3781 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3782 },3783 /**3784 * Lookup552: pallet_maintenance::pallet::Error<T>3785 **/3786 PalletMaintenanceError: 'Null',3787 /**3788 * Lookup553: pallet_test_utils::pallet::Error<T>3789 **/3790 PalletTestUtilsError: {3791 _enum: ['TestPalletDisabled', 'TriggerRollback']3792 },3793 /**3794 * Lookup555: sp_runtime::MultiSignature3795 **/3796 SpRuntimeMultiSignature: {3797 _enum: {3798 Ed25519: 'SpCoreEd25519Signature',3799 Sr25519: 'SpCoreSr25519Signature',3800 Ecdsa: 'SpCoreEcdsaSignature'3801 }3802 },3803 /**3804 * Lookup556: sp_core::ed25519::Signature3805 **/3806 SpCoreEd25519Signature: '[u8;64]',3807 /**3808 * Lookup558: sp_core::sr25519::Signature3809 **/3810 SpCoreSr25519Signature: '[u8;64]',3811 /**3812 * Lookup559: sp_core::ecdsa::Signature3813 **/3814 SpCoreEcdsaSignature: '[u8;65]',3815 /**3816 * Lookup562: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3817 **/3818 FrameSystemExtensionsCheckSpecVersion: 'Null',3819 /**3820 * Lookup563: frame_system::extensions::check_tx_version::CheckTxVersion<T>3821 **/3822 FrameSystemExtensionsCheckTxVersion: 'Null',3823 /**3824 * Lookup564: frame_system::extensions::check_genesis::CheckGenesis<T>3825 **/3826 FrameSystemExtensionsCheckGenesis: 'Null',3827 /**3828 * Lookup567: frame_system::extensions::check_nonce::CheckNonce<T>3829 **/3830 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3831 /**3832 * Lookup568: frame_system::extensions::check_weight::CheckWeight<T>3833 **/3834 FrameSystemExtensionsCheckWeight: 'Null',3835 /**3836 * Lookup569: opal_runtime::runtime_common::maintenance::CheckMaintenance3837 **/3838 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3839 /**3840 * Lookup570: opal_runtime::runtime_common::data_management::FilterIdentity3841 **/3842 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',3843 /**3844 * Lookup571: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3845 **/3846 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3847 /**3848 * Lookup572: opal_runtime::Runtime3849 **/3850 OpalRuntimeRuntime: 'Null',3851 /**3852 * Lookup573: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3853 **/3854 PalletEthereumFakeTransactionFinalizer: 'Null'3855};1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9 **/10 FrameSystemAccountInfo: {11 nonce: 'u32',12 consumers: 'u32',13 providers: 'u32',14 sufficients: 'u32',15 data: 'PalletBalancesAccountData'16 },17 /**18 * Lookup5: pallet_balances::AccountData<Balance>19 **/20 PalletBalancesAccountData: {21 free: 'u128',22 reserved: 'u128',23 miscFrozen: 'u128',24 feeFrozen: 'u128'25 },26 /**27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'SpWeightsWeightV2Weight',31 operational: 'SpWeightsWeightV2Weight',32 mandatory: 'SpWeightsWeightV2Weight'33 },34 /**35 * Lookup8: sp_weights::weight_v2::Weight36 **/37 SpWeightsWeightV2Weight: {38 refTime: 'Compact<u64>',39 proofSize: 'Compact<u64>'40 },41 /**42 * Lookup13: sp_runtime::generic::digest::Digest43 **/44 SpRuntimeDigest: {45 logs: 'Vec<SpRuntimeDigestDigestItem>'46 },47 /**48 * Lookup15: sp_runtime::generic::digest::DigestItem49 **/50 SpRuntimeDigestDigestItem: {51 _enum: {52 Other: 'Bytes',53 __Unused1: 'Null',54 __Unused2: 'Null',55 __Unused3: 'Null',56 Consensus: '([u8;4],Bytes)',57 Seal: '([u8;4],Bytes)',58 PreRuntime: '([u8;4],Bytes)',59 __Unused7: 'Null',60 RuntimeEnvironmentUpdated: 'Null'61 }62 },63 /**64 * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65 **/66 FrameSystemEventRecord: {67 phase: 'FrameSystemPhase',68 event: 'Event',69 topics: 'Vec<H256>'70 },71 /**72 * Lookup20: frame_system::pallet::Event<T>73 **/74 FrameSystemEvent: {75 _enum: {76 ExtrinsicSuccess: {77 dispatchInfo: 'FrameSupportDispatchDispatchInfo',78 },79 ExtrinsicFailed: {80 dispatchError: 'SpRuntimeDispatchError',81 dispatchInfo: 'FrameSupportDispatchDispatchInfo',82 },83 CodeUpdated: 'Null',84 NewAccount: {85 account: 'AccountId32',86 },87 KilledAccount: {88 account: 'AccountId32',89 },90 Remarked: {91 _alias: {92 hash_: 'hash',93 },94 sender: 'AccountId32',95 hash_: 'H256'96 }97 }98 },99 /**100 * Lookup21: frame_support::dispatch::DispatchInfo101 **/102 FrameSupportDispatchDispatchInfo: {103 weight: 'SpWeightsWeightV2Weight',104 class: 'FrameSupportDispatchDispatchClass',105 paysFee: 'FrameSupportDispatchPays'106 },107 /**108 * Lookup22: frame_support::dispatch::DispatchClass109 **/110 FrameSupportDispatchDispatchClass: {111 _enum: ['Normal', 'Operational', 'Mandatory']112 },113 /**114 * Lookup23: frame_support::dispatch::Pays115 **/116 FrameSupportDispatchPays: {117 _enum: ['Yes', 'No']118 },119 /**120 * Lookup24: sp_runtime::DispatchError121 **/122 SpRuntimeDispatchError: {123 _enum: {124 Other: 'Null',125 CannotLookup: 'Null',126 BadOrigin: 'Null',127 Module: 'SpRuntimeModuleError',128 ConsumerRemaining: 'Null',129 NoProviders: 'Null',130 TooManyConsumers: 'Null',131 Token: 'SpRuntimeTokenError',132 Arithmetic: 'SpRuntimeArithmeticError',133 Transactional: 'SpRuntimeTransactionalError',134 Exhausted: 'Null',135 Corruption: 'Null',136 Unavailable: 'Null'137 }138 },139 /**140 * Lookup25: sp_runtime::ModuleError141 **/142 SpRuntimeModuleError: {143 index: 'u8',144 error: '[u8;4]'145 },146 /**147 * Lookup26: sp_runtime::TokenError148 **/149 SpRuntimeTokenError: {150 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151 },152 /**153 * Lookup27: sp_runtime::ArithmeticError154 **/155 SpRuntimeArithmeticError: {156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']157 },158 /**159 * Lookup28: sp_runtime::TransactionalError160 **/161 SpRuntimeTransactionalError: {162 _enum: ['LimitReached', 'NoLayer']163 },164 /**165 * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166 **/167 CumulusPalletParachainSystemEvent: {168 _enum: {169 ValidationFunctionStored: 'Null',170 ValidationFunctionApplied: {171 relayChainBlockNum: 'u32',172 },173 ValidationFunctionDiscarded: 'Null',174 UpgradeAuthorized: {175 codeHash: 'H256',176 },177 DownwardMessagesReceived: {178 count: 'u32',179 },180 DownwardMessagesProcessed: {181 weightUsed: 'SpWeightsWeightV2Weight',182 dmqHead: 'H256'183 }184 }185 },186 /**187 * Lookup30: pallet_collator_selection::pallet::Event<T>188 **/189 PalletCollatorSelectionEvent: {190 _enum: {191 InvulnerableAdded: {192 invulnerable: 'AccountId32',193 },194 InvulnerableRemoved: {195 invulnerable: 'AccountId32',196 },197 LicenseObtained: {198 accountId: 'AccountId32',199 deposit: 'u128',200 },201 LicenseReleased: {202 accountId: 'AccountId32',203 depositReturned: 'u128',204 },205 CandidateAdded: {206 accountId: 'AccountId32',207 },208 CandidateRemoved: {209 accountId: 'AccountId32'210 }211 }212 },213 /**214 * Lookup31: pallet_session::pallet::Event215 **/216 PalletSessionEvent: {217 _enum: {218 NewSession: {219 sessionIndex: 'u32'220 }221 }222 },223 /**224 * Lookup32: pallet_identity::pallet::Event<T>225 **/226 PalletIdentityEvent: {227 _enum: {228 IdentitySet: {229 who: 'AccountId32',230 },231 IdentityCleared: {232 who: 'AccountId32',233 deposit: 'u128',234 },235 IdentityKilled: {236 who: 'AccountId32',237 deposit: 'u128',238 },239 JudgementRequested: {240 who: 'AccountId32',241 registrarIndex: 'u32',242 },243 JudgementUnrequested: {244 who: 'AccountId32',245 registrarIndex: 'u32',246 },247 JudgementGiven: {248 target: 'AccountId32',249 registrarIndex: 'u32',250 },251 RegistrarAdded: {252 registrarIndex: 'u32',253 },254 SubIdentityAdded: {255 sub: 'AccountId32',256 main: 'AccountId32',257 deposit: 'u128',258 },259 SubIdentityRemoved: {260 sub: 'AccountId32',261 main: 'AccountId32',262 deposit: 'u128',263 },264 SubIdentityRevoked: {265 sub: 'AccountId32',266 main: 'AccountId32',267 deposit: 'u128'268 }269 }270 },271 /**272 * Lookup33: pallet_balances::pallet::Event<T, I>273 **/274 PalletBalancesEvent: {275 _enum: {276 Endowed: {277 account: 'AccountId32',278 freeBalance: 'u128',279 },280 DustLost: {281 account: 'AccountId32',282 amount: 'u128',283 },284 Transfer: {285 from: 'AccountId32',286 to: 'AccountId32',287 amount: 'u128',288 },289 BalanceSet: {290 who: 'AccountId32',291 free: 'u128',292 reserved: 'u128',293 },294 Reserved: {295 who: 'AccountId32',296 amount: 'u128',297 },298 Unreserved: {299 who: 'AccountId32',300 amount: 'u128',301 },302 ReserveRepatriated: {303 from: 'AccountId32',304 to: 'AccountId32',305 amount: 'u128',306 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',307 },308 Deposit: {309 who: 'AccountId32',310 amount: 'u128',311 },312 Withdraw: {313 who: 'AccountId32',314 amount: 'u128',315 },316 Slashed: {317 who: 'AccountId32',318 amount: 'u128'319 }320 }321 },322 /**323 * Lookup34: frame_support::traits::tokens::misc::BalanceStatus324 **/325 FrameSupportTokensMiscBalanceStatus: {326 _enum: ['Free', 'Reserved']327 },328 /**329 * Lookup35: pallet_transaction_payment::pallet::Event<T>330 **/331 PalletTransactionPaymentEvent: {332 _enum: {333 TransactionFeePaid: {334 who: 'AccountId32',335 actualFee: 'u128',336 tip: 'u128'337 }338 }339 },340 /**341 * Lookup36: pallet_treasury::pallet::Event<T, I>342 **/343 PalletTreasuryEvent: {344 _enum: {345 Proposed: {346 proposalIndex: 'u32',347 },348 Spending: {349 budgetRemaining: 'u128',350 },351 Awarded: {352 proposalIndex: 'u32',353 award: 'u128',354 account: 'AccountId32',355 },356 Rejected: {357 proposalIndex: 'u32',358 slashed: 'u128',359 },360 Burnt: {361 burntFunds: 'u128',362 },363 Rollover: {364 rolloverBalance: 'u128',365 },366 Deposit: {367 value: 'u128',368 },369 SpendApproved: {370 proposalIndex: 'u32',371 amount: 'u128',372 beneficiary: 'AccountId32'373 }374 }375 },376 /**377 * Lookup37: pallet_sudo::pallet::Event<T>378 **/379 PalletSudoEvent: {380 _enum: {381 Sudid: {382 sudoResult: 'Result<Null, SpRuntimeDispatchError>',383 },384 KeyChanged: {385 oldSudoer: 'Option<AccountId32>',386 },387 SudoAsDone: {388 sudoResult: 'Result<Null, SpRuntimeDispatchError>'389 }390 }391 },392 /**393 * Lookup41: orml_vesting::module::Event<T>394 **/395 OrmlVestingModuleEvent: {396 _enum: {397 VestingScheduleAdded: {398 from: 'AccountId32',399 to: 'AccountId32',400 vestingSchedule: 'OrmlVestingVestingSchedule',401 },402 Claimed: {403 who: 'AccountId32',404 amount: 'u128',405 },406 VestingSchedulesUpdated: {407 who: 'AccountId32'408 }409 }410 },411 /**412 * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>413 **/414 OrmlVestingVestingSchedule: {415 start: 'u32',416 period: 'u32',417 periodCount: 'u32',418 perPeriod: 'Compact<u128>'419 },420 /**421 * Lookup44: orml_xtokens::module::Event<T>422 **/423 OrmlXtokensModuleEvent: {424 _enum: {425 TransferredMultiAssets: {426 sender: 'AccountId32',427 assets: 'XcmV1MultiassetMultiAssets',428 fee: 'XcmV1MultiAsset',429 dest: 'XcmV1MultiLocation'430 }431 }432 },433 /**434 * Lookup45: xcm::v1::multiasset::MultiAssets435 **/436 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',437 /**438 * Lookup47: xcm::v1::multiasset::MultiAsset439 **/440 XcmV1MultiAsset: {441 id: 'XcmV1MultiassetAssetId',442 fun: 'XcmV1MultiassetFungibility'443 },444 /**445 * Lookup48: xcm::v1::multiasset::AssetId446 **/447 XcmV1MultiassetAssetId: {448 _enum: {449 Concrete: 'XcmV1MultiLocation',450 Abstract: 'Bytes'451 }452 },453 /**454 * Lookup49: xcm::v1::multilocation::MultiLocation455 **/456 XcmV1MultiLocation: {457 parents: 'u8',458 interior: 'XcmV1MultilocationJunctions'459 },460 /**461 * Lookup50: xcm::v1::multilocation::Junctions462 **/463 XcmV1MultilocationJunctions: {464 _enum: {465 Here: 'Null',466 X1: 'XcmV1Junction',467 X2: '(XcmV1Junction,XcmV1Junction)',468 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',469 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',470 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',471 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',472 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',473 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'474 }475 },476 /**477 * Lookup51: xcm::v1::junction::Junction478 **/479 XcmV1Junction: {480 _enum: {481 Parachain: 'Compact<u32>',482 AccountId32: {483 network: 'XcmV0JunctionNetworkId',484 id: '[u8;32]',485 },486 AccountIndex64: {487 network: 'XcmV0JunctionNetworkId',488 index: 'Compact<u64>',489 },490 AccountKey20: {491 network: 'XcmV0JunctionNetworkId',492 key: '[u8;20]',493 },494 PalletInstance: 'u8',495 GeneralIndex: 'Compact<u128>',496 GeneralKey: 'Bytes',497 OnlyChild: 'Null',498 Plurality: {499 id: 'XcmV0JunctionBodyId',500 part: 'XcmV0JunctionBodyPart'501 }502 }503 },504 /**505 * Lookup53: xcm::v0::junction::NetworkId506 **/507 XcmV0JunctionNetworkId: {508 _enum: {509 Any: 'Null',510 Named: 'Bytes',511 Polkadot: 'Null',512 Kusama: 'Null'513 }514 },515 /**516 * Lookup56: xcm::v0::junction::BodyId517 **/518 XcmV0JunctionBodyId: {519 _enum: {520 Unit: 'Null',521 Named: 'Bytes',522 Index: 'Compact<u32>',523 Executive: 'Null',524 Technical: 'Null',525 Legislative: 'Null',526 Judicial: 'Null'527 }528 },529 /**530 * Lookup57: xcm::v0::junction::BodyPart531 **/532 XcmV0JunctionBodyPart: {533 _enum: {534 Voice: 'Null',535 Members: {536 count: 'Compact<u32>',537 },538 Fraction: {539 nom: 'Compact<u32>',540 denom: 'Compact<u32>',541 },542 AtLeastProportion: {543 nom: 'Compact<u32>',544 denom: 'Compact<u32>',545 },546 MoreThanProportion: {547 nom: 'Compact<u32>',548 denom: 'Compact<u32>'549 }550 }551 },552 /**553 * Lookup58: xcm::v1::multiasset::Fungibility554 **/555 XcmV1MultiassetFungibility: {556 _enum: {557 Fungible: 'Compact<u128>',558 NonFungible: 'XcmV1MultiassetAssetInstance'559 }560 },561 /**562 * Lookup59: xcm::v1::multiasset::AssetInstance563 **/564 XcmV1MultiassetAssetInstance: {565 _enum: {566 Undefined: 'Null',567 Index: 'Compact<u128>',568 Array4: '[u8;4]',569 Array8: '[u8;8]',570 Array16: '[u8;16]',571 Array32: '[u8;32]',572 Blob: 'Bytes'573 }574 },575 /**576 * Lookup62: orml_tokens::module::Event<T>577 **/578 OrmlTokensModuleEvent: {579 _enum: {580 Endowed: {581 currencyId: 'PalletForeignAssetsAssetIds',582 who: 'AccountId32',583 amount: 'u128',584 },585 DustLost: {586 currencyId: 'PalletForeignAssetsAssetIds',587 who: 'AccountId32',588 amount: 'u128',589 },590 Transfer: {591 currencyId: 'PalletForeignAssetsAssetIds',592 from: 'AccountId32',593 to: 'AccountId32',594 amount: 'u128',595 },596 Reserved: {597 currencyId: 'PalletForeignAssetsAssetIds',598 who: 'AccountId32',599 amount: 'u128',600 },601 Unreserved: {602 currencyId: 'PalletForeignAssetsAssetIds',603 who: 'AccountId32',604 amount: 'u128',605 },606 ReserveRepatriated: {607 currencyId: 'PalletForeignAssetsAssetIds',608 from: 'AccountId32',609 to: 'AccountId32',610 amount: 'u128',611 status: 'FrameSupportTokensMiscBalanceStatus',612 },613 BalanceSet: {614 currencyId: 'PalletForeignAssetsAssetIds',615 who: 'AccountId32',616 free: 'u128',617 reserved: 'u128',618 },619 TotalIssuanceSet: {620 currencyId: 'PalletForeignAssetsAssetIds',621 amount: 'u128',622 },623 Withdrawn: {624 currencyId: 'PalletForeignAssetsAssetIds',625 who: 'AccountId32',626 amount: 'u128',627 },628 Slashed: {629 currencyId: 'PalletForeignAssetsAssetIds',630 who: 'AccountId32',631 freeAmount: 'u128',632 reservedAmount: 'u128',633 },634 Deposited: {635 currencyId: 'PalletForeignAssetsAssetIds',636 who: 'AccountId32',637 amount: 'u128',638 },639 LockSet: {640 lockId: '[u8;8]',641 currencyId: 'PalletForeignAssetsAssetIds',642 who: 'AccountId32',643 amount: 'u128',644 },645 LockRemoved: {646 lockId: '[u8;8]',647 currencyId: 'PalletForeignAssetsAssetIds',648 who: 'AccountId32'649 }650 }651 },652 /**653 * Lookup63: pallet_foreign_assets::AssetIds654 **/655 PalletForeignAssetsAssetIds: {656 _enum: {657 ForeignAssetId: 'u32',658 NativeAssetId: 'PalletForeignAssetsNativeCurrency'659 }660 },661 /**662 * Lookup64: pallet_foreign_assets::NativeCurrency663 **/664 PalletForeignAssetsNativeCurrency: {665 _enum: ['Here', 'Parent']666 },667 /**668 * Lookup65: cumulus_pallet_xcmp_queue::pallet::Event<T>669 **/670 CumulusPalletXcmpQueueEvent: {671 _enum: {672 Success: {673 messageHash: 'Option<H256>',674 weight: 'SpWeightsWeightV2Weight',675 },676 Fail: {677 messageHash: 'Option<H256>',678 error: 'XcmV2TraitsError',679 weight: 'SpWeightsWeightV2Weight',680 },681 BadVersion: {682 messageHash: 'Option<H256>',683 },684 BadFormat: {685 messageHash: 'Option<H256>',686 },687 UpwardMessageSent: {688 messageHash: 'Option<H256>',689 },690 XcmpMessageSent: {691 messageHash: 'Option<H256>',692 },693 OverweightEnqueued: {694 sender: 'u32',695 sentAt: 'u32',696 index: 'u64',697 required: 'SpWeightsWeightV2Weight',698 },699 OverweightServiced: {700 index: 'u64',701 used: 'SpWeightsWeightV2Weight'702 }703 }704 },705 /**706 * Lookup67: xcm::v2::traits::Error707 **/708 XcmV2TraitsError: {709 _enum: {710 Overflow: 'Null',711 Unimplemented: 'Null',712 UntrustedReserveLocation: 'Null',713 UntrustedTeleportLocation: 'Null',714 MultiLocationFull: 'Null',715 MultiLocationNotInvertible: 'Null',716 BadOrigin: 'Null',717 InvalidLocation: 'Null',718 AssetNotFound: 'Null',719 FailedToTransactAsset: 'Null',720 NotWithdrawable: 'Null',721 LocationCannotHold: 'Null',722 ExceedsMaxMessageSize: 'Null',723 DestinationUnsupported: 'Null',724 Transport: 'Null',725 Unroutable: 'Null',726 UnknownClaim: 'Null',727 FailedToDecode: 'Null',728 MaxWeightInvalid: 'Null',729 NotHoldingFees: 'Null',730 TooExpensive: 'Null',731 Trap: 'u64',732 UnhandledXcmVersion: 'Null',733 WeightLimitReached: 'u64',734 Barrier: 'Null',735 WeightNotComputable: 'Null'736 }737 },738 /**739 * Lookup69: pallet_xcm::pallet::Event<T>740 **/741 PalletXcmEvent: {742 _enum: {743 Attempted: 'XcmV2TraitsOutcome',744 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',745 UnexpectedResponse: '(XcmV1MultiLocation,u64)',746 ResponseReady: '(u64,XcmV2Response)',747 Notified: '(u64,u8,u8)',748 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',749 NotifyDispatchError: '(u64,u8,u8)',750 NotifyDecodeFailed: '(u64,u8,u8)',751 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',752 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',753 ResponseTaken: 'u64',754 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',755 VersionChangeNotified: '(XcmV1MultiLocation,u32)',756 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',757 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',758 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',759 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'760 }761 },762 /**763 * Lookup70: xcm::v2::traits::Outcome764 **/765 XcmV2TraitsOutcome: {766 _enum: {767 Complete: 'u64',768 Incomplete: '(u64,XcmV2TraitsError)',769 Error: 'XcmV2TraitsError'770 }771 },772 /**773 * Lookup71: xcm::v2::Xcm<RuntimeCall>774 **/775 XcmV2Xcm: 'Vec<XcmV2Instruction>',776 /**777 * Lookup73: xcm::v2::Instruction<RuntimeCall>778 **/779 XcmV2Instruction: {780 _enum: {781 WithdrawAsset: 'XcmV1MultiassetMultiAssets',782 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',783 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',784 QueryResponse: {785 queryId: 'Compact<u64>',786 response: 'XcmV2Response',787 maxWeight: 'Compact<u64>',788 },789 TransferAsset: {790 assets: 'XcmV1MultiassetMultiAssets',791 beneficiary: 'XcmV1MultiLocation',792 },793 TransferReserveAsset: {794 assets: 'XcmV1MultiassetMultiAssets',795 dest: 'XcmV1MultiLocation',796 xcm: 'XcmV2Xcm',797 },798 Transact: {799 originType: 'XcmV0OriginKind',800 requireWeightAtMost: 'Compact<u64>',801 call: 'XcmDoubleEncoded',802 },803 HrmpNewChannelOpenRequest: {804 sender: 'Compact<u32>',805 maxMessageSize: 'Compact<u32>',806 maxCapacity: 'Compact<u32>',807 },808 HrmpChannelAccepted: {809 recipient: 'Compact<u32>',810 },811 HrmpChannelClosing: {812 initiator: 'Compact<u32>',813 sender: 'Compact<u32>',814 recipient: 'Compact<u32>',815 },816 ClearOrigin: 'Null',817 DescendOrigin: 'XcmV1MultilocationJunctions',818 ReportError: {819 queryId: 'Compact<u64>',820 dest: 'XcmV1MultiLocation',821 maxResponseWeight: 'Compact<u64>',822 },823 DepositAsset: {824 assets: 'XcmV1MultiassetMultiAssetFilter',825 maxAssets: 'Compact<u32>',826 beneficiary: 'XcmV1MultiLocation',827 },828 DepositReserveAsset: {829 assets: 'XcmV1MultiassetMultiAssetFilter',830 maxAssets: 'Compact<u32>',831 dest: 'XcmV1MultiLocation',832 xcm: 'XcmV2Xcm',833 },834 ExchangeAsset: {835 give: 'XcmV1MultiassetMultiAssetFilter',836 receive: 'XcmV1MultiassetMultiAssets',837 },838 InitiateReserveWithdraw: {839 assets: 'XcmV1MultiassetMultiAssetFilter',840 reserve: 'XcmV1MultiLocation',841 xcm: 'XcmV2Xcm',842 },843 InitiateTeleport: {844 assets: 'XcmV1MultiassetMultiAssetFilter',845 dest: 'XcmV1MultiLocation',846 xcm: 'XcmV2Xcm',847 },848 QueryHolding: {849 queryId: 'Compact<u64>',850 dest: 'XcmV1MultiLocation',851 assets: 'XcmV1MultiassetMultiAssetFilter',852 maxResponseWeight: 'Compact<u64>',853 },854 BuyExecution: {855 fees: 'XcmV1MultiAsset',856 weightLimit: 'XcmV2WeightLimit',857 },858 RefundSurplus: 'Null',859 SetErrorHandler: 'XcmV2Xcm',860 SetAppendix: 'XcmV2Xcm',861 ClearError: 'Null',862 ClaimAsset: {863 assets: 'XcmV1MultiassetMultiAssets',864 ticket: 'XcmV1MultiLocation',865 },866 Trap: 'Compact<u64>',867 SubscribeVersion: {868 queryId: 'Compact<u64>',869 maxResponseWeight: 'Compact<u64>',870 },871 UnsubscribeVersion: 'Null'872 }873 },874 /**875 * Lookup74: xcm::v2::Response876 **/877 XcmV2Response: {878 _enum: {879 Null: 'Null',880 Assets: 'XcmV1MultiassetMultiAssets',881 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',882 Version: 'u32'883 }884 },885 /**886 * Lookup77: xcm::v0::OriginKind887 **/888 XcmV0OriginKind: {889 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']890 },891 /**892 * Lookup78: xcm::double_encoded::DoubleEncoded<T>893 **/894 XcmDoubleEncoded: {895 encoded: 'Bytes'896 },897 /**898 * Lookup79: xcm::v1::multiasset::MultiAssetFilter899 **/900 XcmV1MultiassetMultiAssetFilter: {901 _enum: {902 Definite: 'XcmV1MultiassetMultiAssets',903 Wild: 'XcmV1MultiassetWildMultiAsset'904 }905 },906 /**907 * Lookup80: xcm::v1::multiasset::WildMultiAsset908 **/909 XcmV1MultiassetWildMultiAsset: {910 _enum: {911 All: 'Null',912 AllOf: {913 id: 'XcmV1MultiassetAssetId',914 fun: 'XcmV1MultiassetWildFungibility'915 }916 }917 },918 /**919 * Lookup81: xcm::v1::multiasset::WildFungibility920 **/921 XcmV1MultiassetWildFungibility: {922 _enum: ['Fungible', 'NonFungible']923 },924 /**925 * Lookup82: xcm::v2::WeightLimit926 **/927 XcmV2WeightLimit: {928 _enum: {929 Unlimited: 'Null',930 Limited: 'Compact<u64>'931 }932 },933 /**934 * Lookup84: xcm::VersionedMultiAssets935 **/936 XcmVersionedMultiAssets: {937 _enum: {938 V0: 'Vec<XcmV0MultiAsset>',939 V1: 'XcmV1MultiassetMultiAssets'940 }941 },942 /**943 * Lookup86: xcm::v0::multi_asset::MultiAsset944 **/945 XcmV0MultiAsset: {946 _enum: {947 None: 'Null',948 All: 'Null',949 AllFungible: 'Null',950 AllNonFungible: 'Null',951 AllAbstractFungible: {952 id: 'Bytes',953 },954 AllAbstractNonFungible: {955 class: 'Bytes',956 },957 AllConcreteFungible: {958 id: 'XcmV0MultiLocation',959 },960 AllConcreteNonFungible: {961 class: 'XcmV0MultiLocation',962 },963 AbstractFungible: {964 id: 'Bytes',965 amount: 'Compact<u128>',966 },967 AbstractNonFungible: {968 class: 'Bytes',969 instance: 'XcmV1MultiassetAssetInstance',970 },971 ConcreteFungible: {972 id: 'XcmV0MultiLocation',973 amount: 'Compact<u128>',974 },975 ConcreteNonFungible: {976 class: 'XcmV0MultiLocation',977 instance: 'XcmV1MultiassetAssetInstance'978 }979 }980 },981 /**982 * Lookup87: xcm::v0::multi_location::MultiLocation983 **/984 XcmV0MultiLocation: {985 _enum: {986 Null: 'Null',987 X1: 'XcmV0Junction',988 X2: '(XcmV0Junction,XcmV0Junction)',989 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',990 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',991 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',992 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',993 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',994 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'995 }996 },997 /**998 * Lookup88: xcm::v0::junction::Junction999 **/1000 XcmV0Junction: {1001 _enum: {1002 Parent: 'Null',1003 Parachain: 'Compact<u32>',1004 AccountId32: {1005 network: 'XcmV0JunctionNetworkId',1006 id: '[u8;32]',1007 },1008 AccountIndex64: {1009 network: 'XcmV0JunctionNetworkId',1010 index: 'Compact<u64>',1011 },1012 AccountKey20: {1013 network: 'XcmV0JunctionNetworkId',1014 key: '[u8;20]',1015 },1016 PalletInstance: 'u8',1017 GeneralIndex: 'Compact<u128>',1018 GeneralKey: 'Bytes',1019 OnlyChild: 'Null',1020 Plurality: {1021 id: 'XcmV0JunctionBodyId',1022 part: 'XcmV0JunctionBodyPart'1023 }1024 }1025 },1026 /**1027 * Lookup89: xcm::VersionedMultiLocation1028 **/1029 XcmVersionedMultiLocation: {1030 _enum: {1031 V0: 'XcmV0MultiLocation',1032 V1: 'XcmV1MultiLocation'1033 }1034 },1035 /**1036 * Lookup90: cumulus_pallet_xcm::pallet::Event<T>1037 **/1038 CumulusPalletXcmEvent: {1039 _enum: {1040 InvalidFormat: '[u8;8]',1041 UnsupportedVersion: '[u8;8]',1042 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1043 }1044 },1045 /**1046 * Lookup91: cumulus_pallet_dmp_queue::pallet::Event<T>1047 **/1048 CumulusPalletDmpQueueEvent: {1049 _enum: {1050 InvalidFormat: {1051 messageId: '[u8;32]',1052 },1053 UnsupportedVersion: {1054 messageId: '[u8;32]',1055 },1056 ExecutedDownward: {1057 messageId: '[u8;32]',1058 outcome: 'XcmV2TraitsOutcome',1059 },1060 WeightExhausted: {1061 messageId: '[u8;32]',1062 remainingWeight: 'SpWeightsWeightV2Weight',1063 requiredWeight: 'SpWeightsWeightV2Weight',1064 },1065 OverweightEnqueued: {1066 messageId: '[u8;32]',1067 overweightIndex: 'u64',1068 requiredWeight: 'SpWeightsWeightV2Weight',1069 },1070 OverweightServiced: {1071 overweightIndex: 'u64',1072 weightUsed: 'SpWeightsWeightV2Weight'1073 }1074 }1075 },1076 /**1077 * Lookup92: pallet_configuration::pallet::Event<T>1078 **/1079 PalletConfigurationEvent: {1080 _enum: {1081 NewDesiredCollators: {1082 desiredCollators: 'Option<u32>',1083 },1084 NewCollatorLicenseBond: {1085 bondCost: 'Option<u128>',1086 },1087 NewCollatorKickThreshold: {1088 lengthInBlocks: 'Option<u32>'1089 }1090 }1091 },1092 /**1093 * Lookup95: pallet_common::pallet::Event<T>1094 **/1095 PalletCommonEvent: {1096 _enum: {1097 CollectionCreated: '(u32,u8,AccountId32)',1098 CollectionDestroyed: 'u32',1099 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1100 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1101 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1102 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1103 ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1104 CollectionPropertySet: '(u32,Bytes)',1105 CollectionPropertyDeleted: '(u32,Bytes)',1106 TokenPropertySet: '(u32,u32,Bytes)',1107 TokenPropertyDeleted: '(u32,u32,Bytes)',1108 PropertyPermissionSet: '(u32,Bytes)',1109 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1110 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1111 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1112 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1113 CollectionLimitSet: 'u32',1114 CollectionOwnerChanged: '(u32,AccountId32)',1115 CollectionPermissionSet: 'u32',1116 CollectionSponsorSet: '(u32,AccountId32)',1117 SponsorshipConfirmed: '(u32,AccountId32)',1118 CollectionSponsorRemoved: 'u32'1119 }1120 },1121 /**1122 * Lookup98: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1123 **/1124 PalletEvmAccountBasicCrossAccountIdRepr: {1125 _enum: {1126 Substrate: 'AccountId32',1127 Ethereum: 'H160'1128 }1129 },1130 /**1131 * Lookup102: pallet_structure::pallet::Event<T>1132 **/1133 PalletStructureEvent: {1134 _enum: {1135 Executed: 'Result<Null, SpRuntimeDispatchError>'1136 }1137 },1138 /**1139 * Lookup103: pallet_rmrk_core::pallet::Event<T>1140 **/1141 PalletRmrkCoreEvent: {1142 _enum: {1143 CollectionCreated: {1144 issuer: 'AccountId32',1145 collectionId: 'u32',1146 },1147 CollectionDestroyed: {1148 issuer: 'AccountId32',1149 collectionId: 'u32',1150 },1151 IssuerChanged: {1152 oldIssuer: 'AccountId32',1153 newIssuer: 'AccountId32',1154 collectionId: 'u32',1155 },1156 CollectionLocked: {1157 issuer: 'AccountId32',1158 collectionId: 'u32',1159 },1160 NftMinted: {1161 owner: 'AccountId32',1162 collectionId: 'u32',1163 nftId: 'u32',1164 },1165 NFTBurned: {1166 owner: 'AccountId32',1167 nftId: 'u32',1168 },1169 NFTSent: {1170 sender: 'AccountId32',1171 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1172 collectionId: 'u32',1173 nftId: 'u32',1174 approvalRequired: 'bool',1175 },1176 NFTAccepted: {1177 sender: 'AccountId32',1178 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1179 collectionId: 'u32',1180 nftId: 'u32',1181 },1182 NFTRejected: {1183 sender: 'AccountId32',1184 collectionId: 'u32',1185 nftId: 'u32',1186 },1187 PropertySet: {1188 collectionId: 'u32',1189 maybeNftId: 'Option<u32>',1190 key: 'Bytes',1191 value: 'Bytes',1192 },1193 ResourceAdded: {1194 nftId: 'u32',1195 resourceId: 'u32',1196 },1197 ResourceRemoval: {1198 nftId: 'u32',1199 resourceId: 'u32',1200 },1201 ResourceAccepted: {1202 nftId: 'u32',1203 resourceId: 'u32',1204 },1205 ResourceRemovalAccepted: {1206 nftId: 'u32',1207 resourceId: 'u32',1208 },1209 PrioritySet: {1210 collectionId: 'u32',1211 nftId: 'u32'1212 }1213 }1214 },1215 /**1216 * Lookup104: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1217 **/1218 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1219 _enum: {1220 AccountId: 'AccountId32',1221 CollectionAndNftTuple: '(u32,u32)'1222 }1223 },1224 /**1225 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1226 **/1227 PalletRmrkEquipEvent: {1228 _enum: {1229 BaseCreated: {1230 issuer: 'AccountId32',1231 baseId: 'u32',1232 },1233 EquippablesUpdated: {1234 baseId: 'u32',1235 slotId: 'u32'1236 }1237 }1238 },1239 /**1240 * Lookup108: pallet_app_promotion::pallet::Event<T>1241 **/1242 PalletAppPromotionEvent: {1243 _enum: {1244 StakingRecalculation: '(AccountId32,u128,u128)',1245 Stake: '(AccountId32,u128)',1246 Unstake: '(AccountId32,u128)',1247 SetAdmin: 'AccountId32'1248 }1249 },1250 /**1251 * Lookup109: pallet_foreign_assets::module::Event<T>1252 **/1253 PalletForeignAssetsModuleEvent: {1254 _enum: {1255 ForeignAssetRegistered: {1256 assetId: 'u32',1257 assetAddress: 'XcmV1MultiLocation',1258 metadata: 'PalletForeignAssetsModuleAssetMetadata',1259 },1260 ForeignAssetUpdated: {1261 assetId: 'u32',1262 assetAddress: 'XcmV1MultiLocation',1263 metadata: 'PalletForeignAssetsModuleAssetMetadata',1264 },1265 AssetRegistered: {1266 assetId: 'PalletForeignAssetsAssetIds',1267 metadata: 'PalletForeignAssetsModuleAssetMetadata',1268 },1269 AssetUpdated: {1270 assetId: 'PalletForeignAssetsAssetIds',1271 metadata: 'PalletForeignAssetsModuleAssetMetadata'1272 }1273 }1274 },1275 /**1276 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1277 **/1278 PalletForeignAssetsModuleAssetMetadata: {1279 name: 'Bytes',1280 symbol: 'Bytes',1281 decimals: 'u8',1282 minimalBalance: 'u128'1283 },1284 /**1285 * Lookup111: pallet_evm::pallet::Event<T>1286 **/1287 PalletEvmEvent: {1288 _enum: {1289 Log: {1290 log: 'EthereumLog',1291 },1292 Created: {1293 address: 'H160',1294 },1295 CreatedFailed: {1296 address: 'H160',1297 },1298 Executed: {1299 address: 'H160',1300 },1301 ExecutedFailed: {1302 address: 'H160'1303 }1304 }1305 },1306 /**1307 * Lookup112: ethereum::log::Log1308 **/1309 EthereumLog: {1310 address: 'H160',1311 topics: 'Vec<H256>',1312 data: 'Bytes'1313 },1314 /**1315 * Lookup114: pallet_ethereum::pallet::Event1316 **/1317 PalletEthereumEvent: {1318 _enum: {1319 Executed: {1320 from: 'H160',1321 to: 'H160',1322 transactionHash: 'H256',1323 exitReason: 'EvmCoreErrorExitReason'1324 }1325 }1326 },1327 /**1328 * Lookup115: evm_core::error::ExitReason1329 **/1330 EvmCoreErrorExitReason: {1331 _enum: {1332 Succeed: 'EvmCoreErrorExitSucceed',1333 Error: 'EvmCoreErrorExitError',1334 Revert: 'EvmCoreErrorExitRevert',1335 Fatal: 'EvmCoreErrorExitFatal'1336 }1337 },1338 /**1339 * Lookup116: evm_core::error::ExitSucceed1340 **/1341 EvmCoreErrorExitSucceed: {1342 _enum: ['Stopped', 'Returned', 'Suicided']1343 },1344 /**1345 * Lookup117: evm_core::error::ExitError1346 **/1347 EvmCoreErrorExitError: {1348 _enum: {1349 StackUnderflow: 'Null',1350 StackOverflow: 'Null',1351 InvalidJump: 'Null',1352 InvalidRange: 'Null',1353 DesignatedInvalid: 'Null',1354 CallTooDeep: 'Null',1355 CreateCollision: 'Null',1356 CreateContractLimit: 'Null',1357 OutOfOffset: 'Null',1358 OutOfGas: 'Null',1359 OutOfFund: 'Null',1360 PCUnderflow: 'Null',1361 CreateEmpty: 'Null',1362 Other: 'Text',1363 InvalidCode: 'Null'1364 }1365 },1366 /**1367 * Lookup120: evm_core::error::ExitRevert1368 **/1369 EvmCoreErrorExitRevert: {1370 _enum: ['Reverted']1371 },1372 /**1373 * Lookup121: evm_core::error::ExitFatal1374 **/1375 EvmCoreErrorExitFatal: {1376 _enum: {1377 NotSupported: 'Null',1378 UnhandledInterrupt: 'Null',1379 CallErrorAsFatal: 'EvmCoreErrorExitError',1380 Other: 'Text'1381 }1382 },1383 /**1384 * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>1385 **/1386 PalletEvmContractHelpersEvent: {1387 _enum: {1388 ContractSponsorSet: '(H160,AccountId32)',1389 ContractSponsorshipConfirmed: '(H160,AccountId32)',1390 ContractSponsorRemoved: 'H160'1391 }1392 },1393 /**1394 * Lookup123: pallet_evm_migration::pallet::Event<T>1395 **/1396 PalletEvmMigrationEvent: {1397 _enum: ['TestEvent']1398 },1399 /**1400 * Lookup124: pallet_maintenance::pallet::Event<T>1401 **/1402 PalletMaintenanceEvent: {1403 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1404 },1405 /**1406 * Lookup125: pallet_test_utils::pallet::Event<T>1407 **/1408 PalletTestUtilsEvent: {1409 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1410 },1411 /**1412 * Lookup126: frame_system::Phase1413 **/1414 FrameSystemPhase: {1415 _enum: {1416 ApplyExtrinsic: 'u32',1417 Finalization: 'Null',1418 Initialization: 'Null'1419 }1420 },1421 /**1422 * Lookup129: frame_system::LastRuntimeUpgradeInfo1423 **/1424 FrameSystemLastRuntimeUpgradeInfo: {1425 specVersion: 'Compact<u32>',1426 specName: 'Text'1427 },1428 /**1429 * Lookup130: frame_system::pallet::Call<T>1430 **/1431 FrameSystemCall: {1432 _enum: {1433 remark: {1434 remark: 'Bytes',1435 },1436 set_heap_pages: {1437 pages: 'u64',1438 },1439 set_code: {1440 code: 'Bytes',1441 },1442 set_code_without_checks: {1443 code: 'Bytes',1444 },1445 set_storage: {1446 items: 'Vec<(Bytes,Bytes)>',1447 },1448 kill_storage: {1449 _alias: {1450 keys_: 'keys',1451 },1452 keys_: 'Vec<Bytes>',1453 },1454 kill_prefix: {1455 prefix: 'Bytes',1456 subkeys: 'u32',1457 },1458 remark_with_event: {1459 remark: 'Bytes'1460 }1461 }1462 },1463 /**1464 * Lookup134: frame_system::limits::BlockWeights1465 **/1466 FrameSystemLimitsBlockWeights: {1467 baseBlock: 'SpWeightsWeightV2Weight',1468 maxBlock: 'SpWeightsWeightV2Weight',1469 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1470 },1471 /**1472 * Lookup135: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1473 **/1474 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1475 normal: 'FrameSystemLimitsWeightsPerClass',1476 operational: 'FrameSystemLimitsWeightsPerClass',1477 mandatory: 'FrameSystemLimitsWeightsPerClass'1478 },1479 /**1480 * Lookup136: frame_system::limits::WeightsPerClass1481 **/1482 FrameSystemLimitsWeightsPerClass: {1483 baseExtrinsic: 'SpWeightsWeightV2Weight',1484 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1485 maxTotal: 'Option<SpWeightsWeightV2Weight>',1486 reserved: 'Option<SpWeightsWeightV2Weight>'1487 },1488 /**1489 * Lookup138: frame_system::limits::BlockLength1490 **/1491 FrameSystemLimitsBlockLength: {1492 max: 'FrameSupportDispatchPerDispatchClassU32'1493 },1494 /**1495 * Lookup139: frame_support::dispatch::PerDispatchClass<T>1496 **/1497 FrameSupportDispatchPerDispatchClassU32: {1498 normal: 'u32',1499 operational: 'u32',1500 mandatory: 'u32'1501 },1502 /**1503 * Lookup140: sp_weights::RuntimeDbWeight1504 **/1505 SpWeightsRuntimeDbWeight: {1506 read: 'u64',1507 write: 'u64'1508 },1509 /**1510 * Lookup141: sp_version::RuntimeVersion1511 **/1512 SpVersionRuntimeVersion: {1513 specName: 'Text',1514 implName: 'Text',1515 authoringVersion: 'u32',1516 specVersion: 'u32',1517 implVersion: 'u32',1518 apis: 'Vec<([u8;8],u32)>',1519 transactionVersion: 'u32',1520 stateVersion: 'u8'1521 },1522 /**1523 * Lookup146: frame_system::pallet::Error<T>1524 **/1525 FrameSystemError: {1526 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1527 },1528 /**1529 * Lookup147: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1530 **/1531 PolkadotPrimitivesV2PersistedValidationData: {1532 parentHead: 'Bytes',1533 relayParentNumber: 'u32',1534 relayParentStorageRoot: 'H256',1535 maxPovSize: 'u32'1536 },1537 /**1538 * Lookup150: polkadot_primitives::v2::UpgradeRestriction1539 **/1540 PolkadotPrimitivesV2UpgradeRestriction: {1541 _enum: ['Present']1542 },1543 /**1544 * Lookup151: sp_trie::storage_proof::StorageProof1545 **/1546 SpTrieStorageProof: {1547 trieNodes: 'BTreeSet<Bytes>'1548 },1549 /**1550 * Lookup153: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1551 **/1552 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1553 dmqMqcHead: 'H256',1554 relayDispatchQueueSize: '(u32,u32)',1555 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1556 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1557 },1558 /**1559 * Lookup156: polkadot_primitives::v2::AbridgedHrmpChannel1560 **/1561 PolkadotPrimitivesV2AbridgedHrmpChannel: {1562 maxCapacity: 'u32',1563 maxTotalSize: 'u32',1564 maxMessageSize: 'u32',1565 msgCount: 'u32',1566 totalSize: 'u32',1567 mqcHead: 'Option<H256>'1568 },1569 /**1570 * Lookup157: polkadot_primitives::v2::AbridgedHostConfiguration1571 **/1572 PolkadotPrimitivesV2AbridgedHostConfiguration: {1573 maxCodeSize: 'u32',1574 maxHeadDataSize: 'u32',1575 maxUpwardQueueCount: 'u32',1576 maxUpwardQueueSize: 'u32',1577 maxUpwardMessageSize: 'u32',1578 maxUpwardMessageNumPerCandidate: 'u32',1579 hrmpMaxMessageNumPerCandidate: 'u32',1580 validationUpgradeCooldown: 'u32',1581 validationUpgradeDelay: 'u32'1582 },1583 /**1584 * Lookup163: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1585 **/1586 PolkadotCorePrimitivesOutboundHrmpMessage: {1587 recipient: 'u32',1588 data: 'Bytes'1589 },1590 /**1591 * Lookup164: cumulus_pallet_parachain_system::pallet::Call<T>1592 **/1593 CumulusPalletParachainSystemCall: {1594 _enum: {1595 set_validation_data: {1596 data: 'CumulusPrimitivesParachainInherentParachainInherentData',1597 },1598 sudo_send_upward_message: {1599 message: 'Bytes',1600 },1601 authorize_upgrade: {1602 codeHash: 'H256',1603 },1604 enact_authorized_upgrade: {1605 code: 'Bytes'1606 }1607 }1608 },1609 /**1610 * Lookup165: cumulus_primitives_parachain_inherent::ParachainInherentData1611 **/1612 CumulusPrimitivesParachainInherentParachainInherentData: {1613 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1614 relayChainState: 'SpTrieStorageProof',1615 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1616 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1617 },1618 /**1619 * Lookup167: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1620 **/1621 PolkadotCorePrimitivesInboundDownwardMessage: {1622 sentAt: 'u32',1623 msg: 'Bytes'1624 },1625 /**1626 * Lookup170: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1627 **/1628 PolkadotCorePrimitivesInboundHrmpMessage: {1629 sentAt: 'u32',1630 data: 'Bytes'1631 },1632 /**1633 * Lookup173: cumulus_pallet_parachain_system::pallet::Error<T>1634 **/1635 CumulusPalletParachainSystemError: {1636 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1637 },1638 /**1639 * Lookup175: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1640 **/1641 PalletAuthorshipUncleEntryItem: {1642 _enum: {1643 InclusionHeight: 'u32',1644 Uncle: '(H256,Option<AccountId32>)'1645 }1646 },1647 /**1648 * Lookup177: pallet_authorship::pallet::Call<T>1649 **/1650 PalletAuthorshipCall: {1651 _enum: {1652 set_uncles: {1653 newUncles: 'Vec<SpRuntimeHeader>'1654 }1655 }1656 },1657 /**1658 * Lookup179: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>1659 **/1660 SpRuntimeHeader: {1661 parentHash: 'H256',1662 number: 'Compact<u32>',1663 stateRoot: 'H256',1664 extrinsicsRoot: 'H256',1665 digest: 'SpRuntimeDigest'1666 },1667 /**1668 * Lookup180: sp_runtime::traits::BlakeTwo2561669 **/1670 SpRuntimeBlakeTwo256: 'Null',1671 /**1672 * Lookup181: pallet_authorship::pallet::Error<T>1673 **/1674 PalletAuthorshipError: {1675 _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']1676 },1677 /**1678 * Lookup184: pallet_collator_selection::pallet::Call<T>1679 **/1680 PalletCollatorSelectionCall: {1681 _enum: {1682 add_invulnerable: {1683 _alias: {1684 new_: 'new',1685 },1686 new_: 'AccountId32',1687 },1688 remove_invulnerable: {1689 who: 'AccountId32',1690 },1691 get_license: 'Null',1692 onboard: 'Null',1693 offboard: 'Null',1694 release_license: 'Null',1695 force_release_license: {1696 who: 'AccountId32'1697 }1698 }1699 },1700 /**1701 * Lookup185: pallet_collator_selection::pallet::Error<T>1702 **/1703 PalletCollatorSelectionError: {1704 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1705 },1706 /**1707 * Lookup188: opal_runtime::runtime_common::SessionKeys1708 **/1709 OpalRuntimeRuntimeCommonSessionKeys: {1710 aura: 'SpConsensusAuraSr25519AppSr25519Public'1711 },1712 /**1713 * Lookup189: sp_consensus_aura::sr25519::app_sr25519::Public1714 **/1715 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1716 /**1717 * Lookup190: sp_core::sr25519::Public1718 **/1719 SpCoreSr25519Public: '[u8;32]',1720 /**1721 * Lookup193: sp_core::crypto::KeyTypeId1722 **/1723 SpCoreCryptoKeyTypeId: '[u8;4]',1724 /**1725 * Lookup194: pallet_session::pallet::Call<T>1726 **/1727 PalletSessionCall: {1728 _enum: {1729 set_keys: {1730 _alias: {1731 keys_: 'keys',1732 },1733 keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1734 proof: 'Bytes',1735 },1736 purge_keys: 'Null'1737 }1738 },1739 /**1740 * Lookup195: pallet_session::pallet::Error<T>1741 **/1742 PalletSessionError: {1743 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1744 },1745 /**1746 * Lookup196: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>1747 **/1748 PalletIdentityRegistration: {1749 judgements: 'Vec<(u32,PalletIdentityJudgement)>',1750 deposit: 'u128',1751 info: 'PalletIdentityIdentityInfo'1752 },1753 /**1754 * Lookup199: pallet_identity::types::Judgement<Balance>1755 **/1756 PalletIdentityJudgement: {1757 _enum: {1758 Unknown: 'Null',1759 FeePaid: 'u128',1760 Reasonable: 'Null',1761 KnownGood: 'Null',1762 OutOfDate: 'Null',1763 LowQuality: 'Null',1764 Erroneous: 'Null'1765 }1766 },1767 /**1768 * Lookup201: pallet_identity::types::IdentityInfo<FieldLimit>1769 **/1770 PalletIdentityIdentityInfo: {1771 additional: 'Vec<(Data,Data)>',1772 display: 'Data',1773 legal: 'Data',1774 web: 'Data',1775 riot: 'Data',1776 email: 'Data',1777 pgpFingerprint: 'Option<[u8;20]>',1778 image: 'Data',1779 twitter: 'Data'1780 },1781 /**1782 * Lookup240: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>1783 **/1784 PalletIdentityRegistrarInfo: {1785 account: 'AccountId32',1786 fee: 'u128',1787 fields: 'PalletIdentityBitFlags'1788 },1789 /**1790 * Lookup241: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>1791 **/1792 PalletIdentityBitFlags: {1793 _bitLength: 64,1794 Display: 1,1795 Legal: 2,1796 Web: 4,1797 Riot: 8,1798 Email: 16,1799 PgpFingerprint: 32,1800 Image: 64,1801 Twitter: 1281802 },1803 /**1804 * Lookup242: pallet_identity::types::IdentityField1805 **/1806 PalletIdentityIdentityField: {1807 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']1808 },1809 /**1810 * Lookup244: pallet_identity::pallet::Call<T>1811 **/1812 PalletIdentityCall: {1813 _enum: {1814 add_registrar: {1815 account: 'MultiAddress',1816 },1817 set_identity: {1818 info: 'PalletIdentityIdentityInfo',1819 },1820 set_subs: {1821 subs: 'Vec<(AccountId32,Data)>',1822 },1823 clear_identity: 'Null',1824 request_judgement: {1825 regIndex: 'Compact<u32>',1826 maxFee: 'Compact<u128>',1827 },1828 cancel_request: {1829 regIndex: 'u32',1830 },1831 set_fee: {1832 index: 'Compact<u32>',1833 fee: 'Compact<u128>',1834 },1835 set_account_id: {1836 _alias: {1837 new_: 'new',1838 },1839 index: 'Compact<u32>',1840 new_: 'MultiAddress',1841 },1842 set_fields: {1843 index: 'Compact<u32>',1844 fields: 'PalletIdentityBitFlags',1845 },1846 provide_judgement: {1847 regIndex: 'Compact<u32>',1848 target: 'MultiAddress',1849 judgement: 'PalletIdentityJudgement',1850 identity: 'H256',1851 },1852 kill_identity: {1853 target: 'MultiAddress',1854 },1855 add_sub: {1856 sub: 'MultiAddress',1857 data: 'Data',1858 },1859 rename_sub: {1860 sub: 'MultiAddress',1861 data: 'Data',1862 },1863 remove_sub: {1864 sub: 'MultiAddress',1865 },1866 quit_sub: 'Null',1867 set_identities: {1868 identities: 'Vec<(AccountId32,Option<PalletIdentityRegistration>)>'1869 }1870 }1871 },1872 /**1873 * Lookup251: pallet_identity::pallet::Error<T>1874 **/1875 PalletIdentityError: {1876 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']1877 },1878 /**1879 * Lookup253: pallet_balances::BalanceLock<Balance>1880 **/1881 PalletBalancesBalanceLock: {1882 id: '[u8;8]',1883 amount: 'u128',1884 reasons: 'PalletBalancesReasons'1885 },1886 /**1887 * Lookup254: pallet_balances::Reasons1888 **/1889 PalletBalancesReasons: {1890 _enum: ['Fee', 'Misc', 'All']1891 },1892 /**1893 * Lookup257: pallet_balances::ReserveData<ReserveIdentifier, Balance>1894 **/1895 PalletBalancesReserveData: {1896 id: '[u8;16]',1897 amount: 'u128'1898 },1899 /**1900 * Lookup259: pallet_balances::pallet::Call<T, I>1901 **/1902 PalletBalancesCall: {1903 _enum: {1904 transfer: {1905 dest: 'MultiAddress',1906 value: 'Compact<u128>',1907 },1908 set_balance: {1909 who: 'MultiAddress',1910 newFree: 'Compact<u128>',1911 newReserved: 'Compact<u128>',1912 },1913 force_transfer: {1914 source: 'MultiAddress',1915 dest: 'MultiAddress',1916 value: 'Compact<u128>',1917 },1918 transfer_keep_alive: {1919 dest: 'MultiAddress',1920 value: 'Compact<u128>',1921 },1922 transfer_all: {1923 dest: 'MultiAddress',1924 keepAlive: 'bool',1925 },1926 force_unreserve: {1927 who: 'MultiAddress',1928 amount: 'u128'1929 }1930 }1931 },1932 /**1933 * Lookup260: pallet_balances::pallet::Error<T, I>1934 **/1935 PalletBalancesError: {1936 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1937 },1938 /**1939 * Lookup262: pallet_timestamp::pallet::Call<T>1940 **/1941 PalletTimestampCall: {1942 _enum: {1943 set: {1944 now: 'Compact<u64>'1945 }1946 }1947 },1948 /**1949 * Lookup264: pallet_transaction_payment::Releases1950 **/1951 PalletTransactionPaymentReleases: {1952 _enum: ['V1Ancient', 'V2']1953 },1954 /**1955 * Lookup265: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1956 **/1957 PalletTreasuryProposal: {1958 proposer: 'AccountId32',1959 value: 'u128',1960 beneficiary: 'AccountId32',1961 bond: 'u128'1962 },1963 /**1964 * Lookup267: pallet_treasury::pallet::Call<T, I>1965 **/1966 PalletTreasuryCall: {1967 _enum: {1968 propose_spend: {1969 value: 'Compact<u128>',1970 beneficiary: 'MultiAddress',1971 },1972 reject_proposal: {1973 proposalId: 'Compact<u32>',1974 },1975 approve_proposal: {1976 proposalId: 'Compact<u32>',1977 },1978 spend: {1979 amount: 'Compact<u128>',1980 beneficiary: 'MultiAddress',1981 },1982 remove_approval: {1983 proposalId: 'Compact<u32>'1984 }1985 }1986 },1987 /**1988 * Lookup269: frame_support::PalletId1989 **/1990 FrameSupportPalletId: '[u8;8]',1991 /**1992 * Lookup270: pallet_treasury::pallet::Error<T, I>1993 **/1994 PalletTreasuryError: {1995 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1996 },1997 /**1998 * Lookup271: pallet_sudo::pallet::Call<T>1999 **/2000 PalletSudoCall: {2001 _enum: {2002 sudo: {2003 call: 'Call',2004 },2005 sudo_unchecked_weight: {2006 call: 'Call',2007 weight: 'SpWeightsWeightV2Weight',2008 },2009 set_key: {2010 _alias: {2011 new_: 'new',2012 },2013 new_: 'MultiAddress',2014 },2015 sudo_as: {2016 who: 'MultiAddress',2017 call: 'Call'2018 }2019 }2020 },2021 /**2022 * Lookup273: orml_vesting::module::Call<T>2023 **/2024 OrmlVestingModuleCall: {2025 _enum: {2026 claim: 'Null',2027 vested_transfer: {2028 dest: 'MultiAddress',2029 schedule: 'OrmlVestingVestingSchedule',2030 },2031 update_vesting_schedules: {2032 who: 'MultiAddress',2033 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',2034 },2035 claim_for: {2036 dest: 'MultiAddress'2037 }2038 }2039 },2040 /**2041 * Lookup275: orml_xtokens::module::Call<T>2042 **/2043 OrmlXtokensModuleCall: {2044 _enum: {2045 transfer: {2046 currencyId: 'PalletForeignAssetsAssetIds',2047 amount: 'u128',2048 dest: 'XcmVersionedMultiLocation',2049 destWeightLimit: 'XcmV2WeightLimit',2050 },2051 transfer_multiasset: {2052 asset: 'XcmVersionedMultiAsset',2053 dest: 'XcmVersionedMultiLocation',2054 destWeightLimit: 'XcmV2WeightLimit',2055 },2056 transfer_with_fee: {2057 currencyId: 'PalletForeignAssetsAssetIds',2058 amount: 'u128',2059 fee: 'u128',2060 dest: 'XcmVersionedMultiLocation',2061 destWeightLimit: 'XcmV2WeightLimit',2062 },2063 transfer_multiasset_with_fee: {2064 asset: 'XcmVersionedMultiAsset',2065 fee: 'XcmVersionedMultiAsset',2066 dest: 'XcmVersionedMultiLocation',2067 destWeightLimit: 'XcmV2WeightLimit',2068 },2069 transfer_multicurrencies: {2070 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',2071 feeItem: 'u32',2072 dest: 'XcmVersionedMultiLocation',2073 destWeightLimit: 'XcmV2WeightLimit',2074 },2075 transfer_multiassets: {2076 assets: 'XcmVersionedMultiAssets',2077 feeItem: 'u32',2078 dest: 'XcmVersionedMultiLocation',2079 destWeightLimit: 'XcmV2WeightLimit'2080 }2081 }2082 },2083 /**2084 * Lookup276: xcm::VersionedMultiAsset2085 **/2086 XcmVersionedMultiAsset: {2087 _enum: {2088 V0: 'XcmV0MultiAsset',2089 V1: 'XcmV1MultiAsset'2090 }2091 },2092 /**2093 * Lookup279: orml_tokens::module::Call<T>2094 **/2095 OrmlTokensModuleCall: {2096 _enum: {2097 transfer: {2098 dest: 'MultiAddress',2099 currencyId: 'PalletForeignAssetsAssetIds',2100 amount: 'Compact<u128>',2101 },2102 transfer_all: {2103 dest: 'MultiAddress',2104 currencyId: 'PalletForeignAssetsAssetIds',2105 keepAlive: 'bool',2106 },2107 transfer_keep_alive: {2108 dest: 'MultiAddress',2109 currencyId: 'PalletForeignAssetsAssetIds',2110 amount: 'Compact<u128>',2111 },2112 force_transfer: {2113 source: 'MultiAddress',2114 dest: 'MultiAddress',2115 currencyId: 'PalletForeignAssetsAssetIds',2116 amount: 'Compact<u128>',2117 },2118 set_balance: {2119 who: 'MultiAddress',2120 currencyId: 'PalletForeignAssetsAssetIds',2121 newFree: 'Compact<u128>',2122 newReserved: 'Compact<u128>'2123 }2124 }2125 },2126 /**2127 * Lookup280: cumulus_pallet_xcmp_queue::pallet::Call<T>2128 **/2129 CumulusPalletXcmpQueueCall: {2130 _enum: {2131 service_overweight: {2132 index: 'u64',2133 weightLimit: 'u64',2134 },2135 suspend_xcm_execution: 'Null',2136 resume_xcm_execution: 'Null',2137 update_suspend_threshold: {2138 _alias: {2139 new_: 'new',2140 },2141 new_: 'u32',2142 },2143 update_drop_threshold: {2144 _alias: {2145 new_: 'new',2146 },2147 new_: 'u32',2148 },2149 update_resume_threshold: {2150 _alias: {2151 new_: 'new',2152 },2153 new_: 'u32',2154 },2155 update_threshold_weight: {2156 _alias: {2157 new_: 'new',2158 },2159 new_: 'u64',2160 },2161 update_weight_restrict_decay: {2162 _alias: {2163 new_: 'new',2164 },2165 new_: 'u64',2166 },2167 update_xcmp_max_individual_weight: {2168 _alias: {2169 new_: 'new',2170 },2171 new_: 'u64'2172 }2173 }2174 },2175 /**2176 * Lookup281: pallet_xcm::pallet::Call<T>2177 **/2178 PalletXcmCall: {2179 _enum: {2180 send: {2181 dest: 'XcmVersionedMultiLocation',2182 message: 'XcmVersionedXcm',2183 },2184 teleport_assets: {2185 dest: 'XcmVersionedMultiLocation',2186 beneficiary: 'XcmVersionedMultiLocation',2187 assets: 'XcmVersionedMultiAssets',2188 feeAssetItem: 'u32',2189 },2190 reserve_transfer_assets: {2191 dest: 'XcmVersionedMultiLocation',2192 beneficiary: 'XcmVersionedMultiLocation',2193 assets: 'XcmVersionedMultiAssets',2194 feeAssetItem: 'u32',2195 },2196 execute: {2197 message: 'XcmVersionedXcm',2198 maxWeight: 'u64',2199 },2200 force_xcm_version: {2201 location: 'XcmV1MultiLocation',2202 xcmVersion: 'u32',2203 },2204 force_default_xcm_version: {2205 maybeXcmVersion: 'Option<u32>',2206 },2207 force_subscribe_version_notify: {2208 location: 'XcmVersionedMultiLocation',2209 },2210 force_unsubscribe_version_notify: {2211 location: 'XcmVersionedMultiLocation',2212 },2213 limited_reserve_transfer_assets: {2214 dest: 'XcmVersionedMultiLocation',2215 beneficiary: 'XcmVersionedMultiLocation',2216 assets: 'XcmVersionedMultiAssets',2217 feeAssetItem: 'u32',2218 weightLimit: 'XcmV2WeightLimit',2219 },2220 limited_teleport_assets: {2221 dest: 'XcmVersionedMultiLocation',2222 beneficiary: 'XcmVersionedMultiLocation',2223 assets: 'XcmVersionedMultiAssets',2224 feeAssetItem: 'u32',2225 weightLimit: 'XcmV2WeightLimit'2226 }2227 }2228 },2229 /**2230 * Lookup282: xcm::VersionedXcm<RuntimeCall>2231 **/2232 XcmVersionedXcm: {2233 _enum: {2234 V0: 'XcmV0Xcm',2235 V1: 'XcmV1Xcm',2236 V2: 'XcmV2Xcm'2237 }2238 },2239 /**2240 * Lookup283: xcm::v0::Xcm<RuntimeCall>2241 **/2242 XcmV0Xcm: {2243 _enum: {2244 WithdrawAsset: {2245 assets: 'Vec<XcmV0MultiAsset>',2246 effects: 'Vec<XcmV0Order>',2247 },2248 ReserveAssetDeposit: {2249 assets: 'Vec<XcmV0MultiAsset>',2250 effects: 'Vec<XcmV0Order>',2251 },2252 TeleportAsset: {2253 assets: 'Vec<XcmV0MultiAsset>',2254 effects: 'Vec<XcmV0Order>',2255 },2256 QueryResponse: {2257 queryId: 'Compact<u64>',2258 response: 'XcmV0Response',2259 },2260 TransferAsset: {2261 assets: 'Vec<XcmV0MultiAsset>',2262 dest: 'XcmV0MultiLocation',2263 },2264 TransferReserveAsset: {2265 assets: 'Vec<XcmV0MultiAsset>',2266 dest: 'XcmV0MultiLocation',2267 effects: 'Vec<XcmV0Order>',2268 },2269 Transact: {2270 originType: 'XcmV0OriginKind',2271 requireWeightAtMost: 'u64',2272 call: 'XcmDoubleEncoded',2273 },2274 HrmpNewChannelOpenRequest: {2275 sender: 'Compact<u32>',2276 maxMessageSize: 'Compact<u32>',2277 maxCapacity: 'Compact<u32>',2278 },2279 HrmpChannelAccepted: {2280 recipient: 'Compact<u32>',2281 },2282 HrmpChannelClosing: {2283 initiator: 'Compact<u32>',2284 sender: 'Compact<u32>',2285 recipient: 'Compact<u32>',2286 },2287 RelayedFrom: {2288 who: 'XcmV0MultiLocation',2289 message: 'XcmV0Xcm'2290 }2291 }2292 },2293 /**2294 * Lookup285: xcm::v0::order::Order<RuntimeCall>2295 **/2296 XcmV0Order: {2297 _enum: {2298 Null: 'Null',2299 DepositAsset: {2300 assets: 'Vec<XcmV0MultiAsset>',2301 dest: 'XcmV0MultiLocation',2302 },2303 DepositReserveAsset: {2304 assets: 'Vec<XcmV0MultiAsset>',2305 dest: 'XcmV0MultiLocation',2306 effects: 'Vec<XcmV0Order>',2307 },2308 ExchangeAsset: {2309 give: 'Vec<XcmV0MultiAsset>',2310 receive: 'Vec<XcmV0MultiAsset>',2311 },2312 InitiateReserveWithdraw: {2313 assets: 'Vec<XcmV0MultiAsset>',2314 reserve: 'XcmV0MultiLocation',2315 effects: 'Vec<XcmV0Order>',2316 },2317 InitiateTeleport: {2318 assets: 'Vec<XcmV0MultiAsset>',2319 dest: 'XcmV0MultiLocation',2320 effects: 'Vec<XcmV0Order>',2321 },2322 QueryHolding: {2323 queryId: 'Compact<u64>',2324 dest: 'XcmV0MultiLocation',2325 assets: 'Vec<XcmV0MultiAsset>',2326 },2327 BuyExecution: {2328 fees: 'XcmV0MultiAsset',2329 weight: 'u64',2330 debt: 'u64',2331 haltOnError: 'bool',2332 xcm: 'Vec<XcmV0Xcm>'2333 }2334 }2335 },2336 /**2337 * Lookup287: xcm::v0::Response2338 **/2339 XcmV0Response: {2340 _enum: {2341 Assets: 'Vec<XcmV0MultiAsset>'2342 }2343 },2344 /**2345 * Lookup288: xcm::v1::Xcm<RuntimeCall>2346 **/2347 XcmV1Xcm: {2348 _enum: {2349 WithdrawAsset: {2350 assets: 'XcmV1MultiassetMultiAssets',2351 effects: 'Vec<XcmV1Order>',2352 },2353 ReserveAssetDeposited: {2354 assets: 'XcmV1MultiassetMultiAssets',2355 effects: 'Vec<XcmV1Order>',2356 },2357 ReceiveTeleportedAsset: {2358 assets: 'XcmV1MultiassetMultiAssets',2359 effects: 'Vec<XcmV1Order>',2360 },2361 QueryResponse: {2362 queryId: 'Compact<u64>',2363 response: 'XcmV1Response',2364 },2365 TransferAsset: {2366 assets: 'XcmV1MultiassetMultiAssets',2367 beneficiary: 'XcmV1MultiLocation',2368 },2369 TransferReserveAsset: {2370 assets: 'XcmV1MultiassetMultiAssets',2371 dest: 'XcmV1MultiLocation',2372 effects: 'Vec<XcmV1Order>',2373 },2374 Transact: {2375 originType: 'XcmV0OriginKind',2376 requireWeightAtMost: 'u64',2377 call: 'XcmDoubleEncoded',2378 },2379 HrmpNewChannelOpenRequest: {2380 sender: 'Compact<u32>',2381 maxMessageSize: 'Compact<u32>',2382 maxCapacity: 'Compact<u32>',2383 },2384 HrmpChannelAccepted: {2385 recipient: 'Compact<u32>',2386 },2387 HrmpChannelClosing: {2388 initiator: 'Compact<u32>',2389 sender: 'Compact<u32>',2390 recipient: 'Compact<u32>',2391 },2392 RelayedFrom: {2393 who: 'XcmV1MultilocationJunctions',2394 message: 'XcmV1Xcm',2395 },2396 SubscribeVersion: {2397 queryId: 'Compact<u64>',2398 maxResponseWeight: 'Compact<u64>',2399 },2400 UnsubscribeVersion: 'Null'2401 }2402 },2403 /**2404 * Lookup290: xcm::v1::order::Order<RuntimeCall>2405 **/2406 XcmV1Order: {2407 _enum: {2408 Noop: 'Null',2409 DepositAsset: {2410 assets: 'XcmV1MultiassetMultiAssetFilter',2411 maxAssets: 'u32',2412 beneficiary: 'XcmV1MultiLocation',2413 },2414 DepositReserveAsset: {2415 assets: 'XcmV1MultiassetMultiAssetFilter',2416 maxAssets: 'u32',2417 dest: 'XcmV1MultiLocation',2418 effects: 'Vec<XcmV1Order>',2419 },2420 ExchangeAsset: {2421 give: 'XcmV1MultiassetMultiAssetFilter',2422 receive: 'XcmV1MultiassetMultiAssets',2423 },2424 InitiateReserveWithdraw: {2425 assets: 'XcmV1MultiassetMultiAssetFilter',2426 reserve: 'XcmV1MultiLocation',2427 effects: 'Vec<XcmV1Order>',2428 },2429 InitiateTeleport: {2430 assets: 'XcmV1MultiassetMultiAssetFilter',2431 dest: 'XcmV1MultiLocation',2432 effects: 'Vec<XcmV1Order>',2433 },2434 QueryHolding: {2435 queryId: 'Compact<u64>',2436 dest: 'XcmV1MultiLocation',2437 assets: 'XcmV1MultiassetMultiAssetFilter',2438 },2439 BuyExecution: {2440 fees: 'XcmV1MultiAsset',2441 weight: 'u64',2442 debt: 'u64',2443 haltOnError: 'bool',2444 instructions: 'Vec<XcmV1Xcm>'2445 }2446 }2447 },2448 /**2449 * Lookup292: xcm::v1::Response2450 **/2451 XcmV1Response: {2452 _enum: {2453 Assets: 'XcmV1MultiassetMultiAssets',2454 Version: 'u32'2455 }2456 },2457 /**2458 * Lookup306: cumulus_pallet_xcm::pallet::Call<T>2459 **/2460 CumulusPalletXcmCall: 'Null',2461 /**2462 * Lookup307: cumulus_pallet_dmp_queue::pallet::Call<T>2463 **/2464 CumulusPalletDmpQueueCall: {2465 _enum: {2466 service_overweight: {2467 index: 'u64',2468 weightLimit: 'u64'2469 }2470 }2471 },2472 /**2473 * Lookup308: pallet_inflation::pallet::Call<T>2474 **/2475 PalletInflationCall: {2476 _enum: {2477 start_inflation: {2478 inflationStartRelayBlock: 'u32'2479 }2480 }2481 },2482 /**2483 * Lookup309: pallet_unique::Call<T>2484 **/2485 PalletUniqueCall: {2486 _enum: {2487 create_collection: {2488 collectionName: 'Vec<u16>',2489 collectionDescription: 'Vec<u16>',2490 tokenPrefix: 'Bytes',2491 mode: 'UpDataStructsCollectionMode',2492 },2493 create_collection_ex: {2494 data: 'UpDataStructsCreateCollectionData',2495 },2496 destroy_collection: {2497 collectionId: 'u32',2498 },2499 add_to_allow_list: {2500 collectionId: 'u32',2501 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2502 },2503 remove_from_allow_list: {2504 collectionId: 'u32',2505 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2506 },2507 change_collection_owner: {2508 collectionId: 'u32',2509 newOwner: 'AccountId32',2510 },2511 add_collection_admin: {2512 collectionId: 'u32',2513 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2514 },2515 remove_collection_admin: {2516 collectionId: 'u32',2517 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2518 },2519 set_collection_sponsor: {2520 collectionId: 'u32',2521 newSponsor: 'AccountId32',2522 },2523 confirm_sponsorship: {2524 collectionId: 'u32',2525 },2526 remove_collection_sponsor: {2527 collectionId: 'u32',2528 },2529 create_item: {2530 collectionId: 'u32',2531 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2532 data: 'UpDataStructsCreateItemData',2533 },2534 create_multiple_items: {2535 collectionId: 'u32',2536 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2537 itemsData: 'Vec<UpDataStructsCreateItemData>',2538 },2539 set_collection_properties: {2540 collectionId: 'u32',2541 properties: 'Vec<UpDataStructsProperty>',2542 },2543 delete_collection_properties: {2544 collectionId: 'u32',2545 propertyKeys: 'Vec<Bytes>',2546 },2547 set_token_properties: {2548 collectionId: 'u32',2549 tokenId: 'u32',2550 properties: 'Vec<UpDataStructsProperty>',2551 },2552 delete_token_properties: {2553 collectionId: 'u32',2554 tokenId: 'u32',2555 propertyKeys: 'Vec<Bytes>',2556 },2557 set_token_property_permissions: {2558 collectionId: 'u32',2559 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2560 },2561 create_multiple_items_ex: {2562 collectionId: 'u32',2563 data: 'UpDataStructsCreateItemExData',2564 },2565 set_transfers_enabled_flag: {2566 collectionId: 'u32',2567 value: 'bool',2568 },2569 burn_item: {2570 collectionId: 'u32',2571 itemId: 'u32',2572 value: 'u128',2573 },2574 burn_from: {2575 collectionId: 'u32',2576 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2577 itemId: 'u32',2578 value: 'u128',2579 },2580 transfer: {2581 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2582 collectionId: 'u32',2583 itemId: 'u32',2584 value: 'u128',2585 },2586 approve: {2587 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2588 collectionId: 'u32',2589 itemId: 'u32',2590 amount: 'u128',2591 },2592 transfer_from: {2593 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2594 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2595 collectionId: 'u32',2596 itemId: 'u32',2597 value: 'u128',2598 },2599 set_collection_limits: {2600 collectionId: 'u32',2601 newLimit: 'UpDataStructsCollectionLimits',2602 },2603 set_collection_permissions: {2604 collectionId: 'u32',2605 newPermission: 'UpDataStructsCollectionPermissions',2606 },2607 repartition: {2608 collectionId: 'u32',2609 tokenId: 'u32',2610 amount: 'u128',2611 },2612 set_allowance_for_all: {2613 collectionId: 'u32',2614 operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2615 approve: 'bool',2616 },2617 force_repair_collection: {2618 collectionId: 'u32',2619 },2620 force_repair_item: {2621 collectionId: 'u32',2622 itemId: 'u32'2623 }2624 }2625 },2626 /**2627 * Lookup314: up_data_structs::CollectionMode2628 **/2629 UpDataStructsCollectionMode: {2630 _enum: {2631 NFT: 'Null',2632 Fungible: 'u8',2633 ReFungible: 'Null'2634 }2635 },2636 /**2637 * Lookup315: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2638 **/2639 UpDataStructsCreateCollectionData: {2640 mode: 'UpDataStructsCollectionMode',2641 access: 'Option<UpDataStructsAccessMode>',2642 name: 'Vec<u16>',2643 description: 'Vec<u16>',2644 tokenPrefix: 'Bytes',2645 pendingSponsor: 'Option<AccountId32>',2646 limits: 'Option<UpDataStructsCollectionLimits>',2647 permissions: 'Option<UpDataStructsCollectionPermissions>',2648 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2649 properties: 'Vec<UpDataStructsProperty>'2650 },2651 /**2652 * Lookup317: up_data_structs::AccessMode2653 **/2654 UpDataStructsAccessMode: {2655 _enum: ['Normal', 'AllowList']2656 },2657 /**2658 * Lookup319: up_data_structs::CollectionLimits2659 **/2660 UpDataStructsCollectionLimits: {2661 accountTokenOwnershipLimit: 'Option<u32>',2662 sponsoredDataSize: 'Option<u32>',2663 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2664 tokenLimit: 'Option<u32>',2665 sponsorTransferTimeout: 'Option<u32>',2666 sponsorApproveTimeout: 'Option<u32>',2667 ownerCanTransfer: 'Option<bool>',2668 ownerCanDestroy: 'Option<bool>',2669 transfersEnabled: 'Option<bool>'2670 },2671 /**2672 * Lookup321: up_data_structs::SponsoringRateLimit2673 **/2674 UpDataStructsSponsoringRateLimit: {2675 _enum: {2676 SponsoringDisabled: 'Null',2677 Blocks: 'u32'2678 }2679 },2680 /**2681 * Lookup324: up_data_structs::CollectionPermissions2682 **/2683 UpDataStructsCollectionPermissions: {2684 access: 'Option<UpDataStructsAccessMode>',2685 mintMode: 'Option<bool>',2686 nesting: 'Option<UpDataStructsNestingPermissions>'2687 },2688 /**2689 * Lookup326: up_data_structs::NestingPermissions2690 **/2691 UpDataStructsNestingPermissions: {2692 tokenOwner: 'bool',2693 collectionAdmin: 'bool',2694 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2695 },2696 /**2697 * Lookup328: up_data_structs::OwnerRestrictedSet2698 **/2699 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2700 /**2701 * Lookup333: up_data_structs::PropertyKeyPermission2702 **/2703 UpDataStructsPropertyKeyPermission: {2704 key: 'Bytes',2705 permission: 'UpDataStructsPropertyPermission'2706 },2707 /**2708 * Lookup334: up_data_structs::PropertyPermission2709 **/2710 UpDataStructsPropertyPermission: {2711 mutable: 'bool',2712 collectionAdmin: 'bool',2713 tokenOwner: 'bool'2714 },2715 /**2716 * Lookup337: up_data_structs::Property2717 **/2718 UpDataStructsProperty: {2719 key: 'Bytes',2720 value: 'Bytes'2721 },2722 /**2723 * Lookup340: up_data_structs::CreateItemData2724 **/2725 UpDataStructsCreateItemData: {2726 _enum: {2727 NFT: 'UpDataStructsCreateNftData',2728 Fungible: 'UpDataStructsCreateFungibleData',2729 ReFungible: 'UpDataStructsCreateReFungibleData'2730 }2731 },2732 /**2733 * Lookup341: up_data_structs::CreateNftData2734 **/2735 UpDataStructsCreateNftData: {2736 properties: 'Vec<UpDataStructsProperty>'2737 },2738 /**2739 * Lookup342: up_data_structs::CreateFungibleData2740 **/2741 UpDataStructsCreateFungibleData: {2742 value: 'u128'2743 },2744 /**2745 * Lookup343: up_data_structs::CreateReFungibleData2746 **/2747 UpDataStructsCreateReFungibleData: {2748 pieces: 'u128',2749 properties: 'Vec<UpDataStructsProperty>'2750 },2751 /**2752 * Lookup346: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2753 **/2754 UpDataStructsCreateItemExData: {2755 _enum: {2756 NFT: 'Vec<UpDataStructsCreateNftExData>',2757 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2758 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2759 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2760 }2761 },2762 /**2763 * Lookup348: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2764 **/2765 UpDataStructsCreateNftExData: {2766 properties: 'Vec<UpDataStructsProperty>',2767 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2768 },2769 /**2770 * Lookup355: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2771 **/2772 UpDataStructsCreateRefungibleExSingleOwner: {2773 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2774 pieces: 'u128',2775 properties: 'Vec<UpDataStructsProperty>'2776 },2777 /**2778 * Lookup357: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2779 **/2780 UpDataStructsCreateRefungibleExMultipleOwners: {2781 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2782 properties: 'Vec<UpDataStructsProperty>'2783 },2784 /**2785 * Lookup358: pallet_configuration::pallet::Call<T>2786 **/2787 PalletConfigurationCall: {2788 _enum: {2789 set_weight_to_fee_coefficient_override: {2790 coeff: 'Option<u64>',2791 },2792 set_min_gas_price_override: {2793 coeff: 'Option<u64>',2794 },2795 set_xcm_allowed_locations: {2796 locations: 'Option<Vec<XcmV1MultiLocation>>',2797 },2798 set_app_promotion_configuration_override: {2799 configuration: 'PalletConfigurationAppPromotionConfiguration',2800 },2801 set_collator_selection_desired_collators: {2802 max: 'Option<u32>',2803 },2804 set_collator_selection_license_bond: {2805 amount: 'Option<u128>',2806 },2807 set_collator_selection_kick_threshold: {2808 threshold: 'Option<u32>'2809 }2810 }2811 },2812 /**2813 * Lookup363: pallet_configuration::AppPromotionConfiguration<BlockNumber>2814 **/2815 PalletConfigurationAppPromotionConfiguration: {2816 recalculationInterval: 'Option<u32>',2817 pendingInterval: 'Option<u32>',2818 intervalIncome: 'Option<Perbill>',2819 maxStakersPerCalculation: 'Option<u8>'2820 },2821 /**2822 * Lookup367: pallet_template_transaction_payment::Call<T>2823 **/2824 PalletTemplateTransactionPaymentCall: 'Null',2825 /**2826 * Lookup368: pallet_structure::pallet::Call<T>2827 **/2828 PalletStructureCall: 'Null',2829 /**2830 * Lookup369: pallet_rmrk_core::pallet::Call<T>2831 **/2832 PalletRmrkCoreCall: {2833 _enum: {2834 create_collection: {2835 metadata: 'Bytes',2836 max: 'Option<u32>',2837 symbol: 'Bytes',2838 },2839 destroy_collection: {2840 collectionId: 'u32',2841 },2842 change_collection_issuer: {2843 collectionId: 'u32',2844 newIssuer: 'MultiAddress',2845 },2846 lock_collection: {2847 collectionId: 'u32',2848 },2849 mint_nft: {2850 owner: 'Option<AccountId32>',2851 collectionId: 'u32',2852 recipient: 'Option<AccountId32>',2853 royaltyAmount: 'Option<Permill>',2854 metadata: 'Bytes',2855 transferable: 'bool',2856 resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2857 },2858 burn_nft: {2859 collectionId: 'u32',2860 nftId: 'u32',2861 maxBurns: 'u32',2862 },2863 send: {2864 rmrkCollectionId: 'u32',2865 rmrkNftId: 'u32',2866 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2867 },2868 accept_nft: {2869 rmrkCollectionId: 'u32',2870 rmrkNftId: 'u32',2871 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2872 },2873 reject_nft: {2874 rmrkCollectionId: 'u32',2875 rmrkNftId: 'u32',2876 },2877 accept_resource: {2878 rmrkCollectionId: 'u32',2879 rmrkNftId: 'u32',2880 resourceId: 'u32',2881 },2882 accept_resource_removal: {2883 rmrkCollectionId: 'u32',2884 rmrkNftId: 'u32',2885 resourceId: 'u32',2886 },2887 set_property: {2888 rmrkCollectionId: 'Compact<u32>',2889 maybeNftId: 'Option<u32>',2890 key: 'Bytes',2891 value: 'Bytes',2892 },2893 set_priority: {2894 rmrkCollectionId: 'u32',2895 rmrkNftId: 'u32',2896 priorities: 'Vec<u32>',2897 },2898 add_basic_resource: {2899 rmrkCollectionId: 'u32',2900 nftId: 'u32',2901 resource: 'RmrkTraitsResourceBasicResource',2902 },2903 add_composable_resource: {2904 rmrkCollectionId: 'u32',2905 nftId: 'u32',2906 resource: 'RmrkTraitsResourceComposableResource',2907 },2908 add_slot_resource: {2909 rmrkCollectionId: 'u32',2910 nftId: 'u32',2911 resource: 'RmrkTraitsResourceSlotResource',2912 },2913 remove_resource: {2914 rmrkCollectionId: 'u32',2915 nftId: 'u32',2916 resourceId: 'u32'2917 }2918 }2919 },2920 /**2921 * Lookup375: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2922 **/2923 RmrkTraitsResourceResourceTypes: {2924 _enum: {2925 Basic: 'RmrkTraitsResourceBasicResource',2926 Composable: 'RmrkTraitsResourceComposableResource',2927 Slot: 'RmrkTraitsResourceSlotResource'2928 }2929 },2930 /**2931 * Lookup377: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2932 **/2933 RmrkTraitsResourceBasicResource: {2934 src: 'Option<Bytes>',2935 metadata: 'Option<Bytes>',2936 license: 'Option<Bytes>',2937 thumb: 'Option<Bytes>'2938 },2939 /**2940 * Lookup379: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2941 **/2942 RmrkTraitsResourceComposableResource: {2943 parts: 'Vec<u32>',2944 base: 'u32',2945 src: 'Option<Bytes>',2946 metadata: 'Option<Bytes>',2947 license: 'Option<Bytes>',2948 thumb: 'Option<Bytes>'2949 },2950 /**2951 * Lookup380: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2952 **/2953 RmrkTraitsResourceSlotResource: {2954 base: 'u32',2955 src: 'Option<Bytes>',2956 metadata: 'Option<Bytes>',2957 slot: 'u32',2958 license: 'Option<Bytes>',2959 thumb: 'Option<Bytes>'2960 },2961 /**2962 * Lookup383: pallet_rmrk_equip::pallet::Call<T>2963 **/2964 PalletRmrkEquipCall: {2965 _enum: {2966 create_base: {2967 baseType: 'Bytes',2968 symbol: 'Bytes',2969 parts: 'Vec<RmrkTraitsPartPartType>',2970 },2971 theme_add: {2972 baseId: 'u32',2973 theme: 'RmrkTraitsTheme',2974 },2975 equippable: {2976 baseId: 'u32',2977 slotId: 'u32',2978 equippables: 'RmrkTraitsPartEquippableList'2979 }2980 }2981 },2982 /**2983 * Lookup386: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2984 **/2985 RmrkTraitsPartPartType: {2986 _enum: {2987 FixedPart: 'RmrkTraitsPartFixedPart',2988 SlotPart: 'RmrkTraitsPartSlotPart'2989 }2990 },2991 /**2992 * Lookup388: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2993 **/2994 RmrkTraitsPartFixedPart: {2995 id: 'u32',2996 z: 'u32',2997 src: 'Bytes'2998 },2999 /**3000 * Lookup389: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3001 **/3002 RmrkTraitsPartSlotPart: {3003 id: 'u32',3004 equippable: 'RmrkTraitsPartEquippableList',3005 src: 'Bytes',3006 z: 'u32'3007 },3008 /**3009 * Lookup390: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3010 **/3011 RmrkTraitsPartEquippableList: {3012 _enum: {3013 All: 'Null',3014 Empty: 'Null',3015 Custom: 'Vec<u32>'3016 }3017 },3018 /**3019 * Lookup392: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>3020 **/3021 RmrkTraitsTheme: {3022 name: 'Bytes',3023 properties: 'Vec<RmrkTraitsThemeThemeProperty>',3024 inherit: 'bool'3025 },3026 /**3027 * Lookup394: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3028 **/3029 RmrkTraitsThemeThemeProperty: {3030 key: 'Bytes',3031 value: 'Bytes'3032 },3033 /**3034 * Lookup396: pallet_app_promotion::pallet::Call<T>3035 **/3036 PalletAppPromotionCall: {3037 _enum: {3038 set_admin_address: {3039 admin: 'PalletEvmAccountBasicCrossAccountIdRepr',3040 },3041 stake: {3042 amount: 'u128',3043 },3044 unstake: 'Null',3045 sponsor_collection: {3046 collectionId: 'u32',3047 },3048 stop_sponsoring_collection: {3049 collectionId: 'u32',3050 },3051 sponsor_contract: {3052 contractId: 'H160',3053 },3054 stop_sponsoring_contract: {3055 contractId: 'H160',3056 },3057 payout_stakers: {3058 stakersNumber: 'Option<u8>'3059 }3060 }3061 },3062 /**3063 * Lookup397: pallet_foreign_assets::module::Call<T>3064 **/3065 PalletForeignAssetsModuleCall: {3066 _enum: {3067 register_foreign_asset: {3068 owner: 'AccountId32',3069 location: 'XcmVersionedMultiLocation',3070 metadata: 'PalletForeignAssetsModuleAssetMetadata',3071 },3072 update_foreign_asset: {3073 foreignAssetId: 'u32',3074 location: 'XcmVersionedMultiLocation',3075 metadata: 'PalletForeignAssetsModuleAssetMetadata'3076 }3077 }3078 },3079 /**3080 * Lookup398: pallet_evm::pallet::Call<T>3081 **/3082 PalletEvmCall: {3083 _enum: {3084 withdraw: {3085 address: 'H160',3086 value: 'u128',3087 },3088 call: {3089 source: 'H160',3090 target: 'H160',3091 input: 'Bytes',3092 value: 'U256',3093 gasLimit: 'u64',3094 maxFeePerGas: 'U256',3095 maxPriorityFeePerGas: 'Option<U256>',3096 nonce: 'Option<U256>',3097 accessList: 'Vec<(H160,Vec<H256>)>',3098 },3099 create: {3100 source: 'H160',3101 init: 'Bytes',3102 value: 'U256',3103 gasLimit: 'u64',3104 maxFeePerGas: 'U256',3105 maxPriorityFeePerGas: 'Option<U256>',3106 nonce: 'Option<U256>',3107 accessList: 'Vec<(H160,Vec<H256>)>',3108 },3109 create2: {3110 source: 'H160',3111 init: 'Bytes',3112 salt: 'H256',3113 value: 'U256',3114 gasLimit: 'u64',3115 maxFeePerGas: 'U256',3116 maxPriorityFeePerGas: 'Option<U256>',3117 nonce: 'Option<U256>',3118 accessList: 'Vec<(H160,Vec<H256>)>'3119 }3120 }3121 },3122 /**3123 * Lookup404: pallet_ethereum::pallet::Call<T>3124 **/3125 PalletEthereumCall: {3126 _enum: {3127 transact: {3128 transaction: 'EthereumTransactionTransactionV2'3129 }3130 }3131 },3132 /**3133 * Lookup405: ethereum::transaction::TransactionV23134 **/3135 EthereumTransactionTransactionV2: {3136 _enum: {3137 Legacy: 'EthereumTransactionLegacyTransaction',3138 EIP2930: 'EthereumTransactionEip2930Transaction',3139 EIP1559: 'EthereumTransactionEip1559Transaction'3140 }3141 },3142 /**3143 * Lookup406: ethereum::transaction::LegacyTransaction3144 **/3145 EthereumTransactionLegacyTransaction: {3146 nonce: 'U256',3147 gasPrice: 'U256',3148 gasLimit: 'U256',3149 action: 'EthereumTransactionTransactionAction',3150 value: 'U256',3151 input: 'Bytes',3152 signature: 'EthereumTransactionTransactionSignature'3153 },3154 /**3155 * Lookup407: ethereum::transaction::TransactionAction3156 **/3157 EthereumTransactionTransactionAction: {3158 _enum: {3159 Call: 'H160',3160 Create: 'Null'3161 }3162 },3163 /**3164 * Lookup408: ethereum::transaction::TransactionSignature3165 **/3166 EthereumTransactionTransactionSignature: {3167 v: 'u64',3168 r: 'H256',3169 s: 'H256'3170 },3171 /**3172 * Lookup410: ethereum::transaction::EIP2930Transaction3173 **/3174 EthereumTransactionEip2930Transaction: {3175 chainId: 'u64',3176 nonce: 'U256',3177 gasPrice: 'U256',3178 gasLimit: 'U256',3179 action: 'EthereumTransactionTransactionAction',3180 value: 'U256',3181 input: 'Bytes',3182 accessList: 'Vec<EthereumTransactionAccessListItem>',3183 oddYParity: 'bool',3184 r: 'H256',3185 s: 'H256'3186 },3187 /**3188 * Lookup412: ethereum::transaction::AccessListItem3189 **/3190 EthereumTransactionAccessListItem: {3191 address: 'H160',3192 storageKeys: 'Vec<H256>'3193 },3194 /**3195 * Lookup413: ethereum::transaction::EIP1559Transaction3196 **/3197 EthereumTransactionEip1559Transaction: {3198 chainId: 'u64',3199 nonce: 'U256',3200 maxPriorityFeePerGas: 'U256',3201 maxFeePerGas: 'U256',3202 gasLimit: 'U256',3203 action: 'EthereumTransactionTransactionAction',3204 value: 'U256',3205 input: 'Bytes',3206 accessList: 'Vec<EthereumTransactionAccessListItem>',3207 oddYParity: 'bool',3208 r: 'H256',3209 s: 'H256'3210 },3211 /**3212 * Lookup414: pallet_evm_migration::pallet::Call<T>3213 **/3214 PalletEvmMigrationCall: {3215 _enum: {3216 begin: {3217 address: 'H160',3218 },3219 set_data: {3220 address: 'H160',3221 data: 'Vec<(H256,H256)>',3222 },3223 finish: {3224 address: 'H160',3225 code: 'Bytes',3226 },3227 insert_eth_logs: {3228 logs: 'Vec<EthereumLog>',3229 },3230 insert_events: {3231 events: 'Vec<Bytes>'3232 }3233 }3234 },3235 /**3236 * Lookup418: pallet_maintenance::pallet::Call<T>3237 **/3238 PalletMaintenanceCall: {3239 _enum: ['enable', 'disable']3240 },3241 /**3242 * Lookup419: pallet_test_utils::pallet::Call<T>3243 **/3244 PalletTestUtilsCall: {3245 _enum: {3246 enable: 'Null',3247 set_test_value: {3248 value: 'u32',3249 },3250 set_test_value_and_rollback: {3251 value: 'u32',3252 },3253 inc_test_value: 'Null',3254 just_take_fee: 'Null',3255 batch_all: {3256 calls: 'Vec<Call>'3257 }3258 }3259 },3260 /**3261 * Lookup421: pallet_sudo::pallet::Error<T>3262 **/3263 PalletSudoError: {3264 _enum: ['RequireSudo']3265 },3266 /**3267 * Lookup423: orml_vesting::module::Error<T>3268 **/3269 OrmlVestingModuleError: {3270 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3271 },3272 /**3273 * Lookup424: orml_xtokens::module::Error<T>3274 **/3275 OrmlXtokensModuleError: {3276 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3277 },3278 /**3279 * Lookup427: orml_tokens::BalanceLock<Balance>3280 **/3281 OrmlTokensBalanceLock: {3282 id: '[u8;8]',3283 amount: 'u128'3284 },3285 /**3286 * Lookup429: orml_tokens::AccountData<Balance>3287 **/3288 OrmlTokensAccountData: {3289 free: 'u128',3290 reserved: 'u128',3291 frozen: 'u128'3292 },3293 /**3294 * Lookup431: orml_tokens::ReserveData<ReserveIdentifier, Balance>3295 **/3296 OrmlTokensReserveData: {3297 id: 'Null',3298 amount: 'u128'3299 },3300 /**3301 * Lookup433: orml_tokens::module::Error<T>3302 **/3303 OrmlTokensModuleError: {3304 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3305 },3306 /**3307 * Lookup435: cumulus_pallet_xcmp_queue::InboundChannelDetails3308 **/3309 CumulusPalletXcmpQueueInboundChannelDetails: {3310 sender: 'u32',3311 state: 'CumulusPalletXcmpQueueInboundState',3312 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3313 },3314 /**3315 * Lookup436: cumulus_pallet_xcmp_queue::InboundState3316 **/3317 CumulusPalletXcmpQueueInboundState: {3318 _enum: ['Ok', 'Suspended']3319 },3320 /**3321 * Lookup439: polkadot_parachain::primitives::XcmpMessageFormat3322 **/3323 PolkadotParachainPrimitivesXcmpMessageFormat: {3324 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3325 },3326 /**3327 * Lookup442: cumulus_pallet_xcmp_queue::OutboundChannelDetails3328 **/3329 CumulusPalletXcmpQueueOutboundChannelDetails: {3330 recipient: 'u32',3331 state: 'CumulusPalletXcmpQueueOutboundState',3332 signalsExist: 'bool',3333 firstIndex: 'u16',3334 lastIndex: 'u16'3335 },3336 /**3337 * Lookup443: cumulus_pallet_xcmp_queue::OutboundState3338 **/3339 CumulusPalletXcmpQueueOutboundState: {3340 _enum: ['Ok', 'Suspended']3341 },3342 /**3343 * Lookup445: cumulus_pallet_xcmp_queue::QueueConfigData3344 **/3345 CumulusPalletXcmpQueueQueueConfigData: {3346 suspendThreshold: 'u32',3347 dropThreshold: 'u32',3348 resumeThreshold: 'u32',3349 thresholdWeight: 'SpWeightsWeightV2Weight',3350 weightRestrictDecay: 'SpWeightsWeightV2Weight',3351 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3352 },3353 /**3354 * Lookup447: cumulus_pallet_xcmp_queue::pallet::Error<T>3355 **/3356 CumulusPalletXcmpQueueError: {3357 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3358 },3359 /**3360 * Lookup448: pallet_xcm::pallet::Error<T>3361 **/3362 PalletXcmError: {3363 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3364 },3365 /**3366 * Lookup449: cumulus_pallet_xcm::pallet::Error<T>3367 **/3368 CumulusPalletXcmError: 'Null',3369 /**3370 * Lookup450: cumulus_pallet_dmp_queue::ConfigData3371 **/3372 CumulusPalletDmpQueueConfigData: {3373 maxIndividual: 'SpWeightsWeightV2Weight'3374 },3375 /**3376 * Lookup451: cumulus_pallet_dmp_queue::PageIndexData3377 **/3378 CumulusPalletDmpQueuePageIndexData: {3379 beginUsed: 'u32',3380 endUsed: 'u32',3381 overweightCount: 'u64'3382 },3383 /**3384 * Lookup454: cumulus_pallet_dmp_queue::pallet::Error<T>3385 **/3386 CumulusPalletDmpQueueError: {3387 _enum: ['Unknown', 'OverLimit']3388 },3389 /**3390 * Lookup458: pallet_unique::Error<T>3391 **/3392 PalletUniqueError: {3393 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3394 },3395 /**3396 * Lookup459: pallet_configuration::pallet::Error<T>3397 **/3398 PalletConfigurationError: {3399 _enum: ['InconsistentConfiguration']3400 },3401 /**3402 * Lookup460: up_data_structs::Collection<sp_core::crypto::AccountId32>3403 **/3404 UpDataStructsCollection: {3405 owner: 'AccountId32',3406 mode: 'UpDataStructsCollectionMode',3407 name: 'Vec<u16>',3408 description: 'Vec<u16>',3409 tokenPrefix: 'Bytes',3410 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3411 limits: 'UpDataStructsCollectionLimits',3412 permissions: 'UpDataStructsCollectionPermissions',3413 flags: '[u8;1]'3414 },3415 /**3416 * Lookup461: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3417 **/3418 UpDataStructsSponsorshipStateAccountId32: {3419 _enum: {3420 Disabled: 'Null',3421 Unconfirmed: 'AccountId32',3422 Confirmed: 'AccountId32'3423 }3424 },3425 /**3426 * Lookup462: up_data_structs::Properties3427 **/3428 UpDataStructsProperties: {3429 map: 'UpDataStructsPropertiesMapBoundedVec',3430 consumedSpace: 'u32',3431 spaceLimit: 'u32'3432 },3433 /**3434 * Lookup463: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3435 **/3436 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3437 /**3438 * Lookup468: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3439 **/3440 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3441 /**3442 * Lookup475: up_data_structs::CollectionStats3443 **/3444 UpDataStructsCollectionStats: {3445 created: 'u32',3446 destroyed: 'u32',3447 alive: 'u32'3448 },3449 /**3450 * Lookup476: up_data_structs::TokenChild3451 **/3452 UpDataStructsTokenChild: {3453 token: 'u32',3454 collection: 'u32'3455 },3456 /**3457 * Lookup477: PhantomType::up_data_structs<T>3458 **/3459 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',3460 /**3461 * Lookup479: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3462 **/3463 UpDataStructsTokenData: {3464 properties: 'Vec<UpDataStructsProperty>',3465 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3466 pieces: 'u128'3467 },3468 /**3469 * Lookup481: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3470 **/3471 UpDataStructsRpcCollection: {3472 owner: 'AccountId32',3473 mode: 'UpDataStructsCollectionMode',3474 name: 'Vec<u16>',3475 description: 'Vec<u16>',3476 tokenPrefix: 'Bytes',3477 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3478 limits: 'UpDataStructsCollectionLimits',3479 permissions: 'UpDataStructsCollectionPermissions',3480 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3481 properties: 'Vec<UpDataStructsProperty>',3482 readOnly: 'bool',3483 flags: 'UpDataStructsRpcCollectionFlags'3484 },3485 /**3486 * Lookup482: up_data_structs::RpcCollectionFlags3487 **/3488 UpDataStructsRpcCollectionFlags: {3489 foreign: 'bool',3490 erc721metadata: 'bool'3491 },3492 /**3493 * Lookup483: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3494 **/3495 RmrkTraitsCollectionCollectionInfo: {3496 issuer: 'AccountId32',3497 metadata: 'Bytes',3498 max: 'Option<u32>',3499 symbol: 'Bytes',3500 nftsCount: 'u32'3501 },3502 /**3503 * Lookup484: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3504 **/3505 RmrkTraitsNftNftInfo: {3506 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3507 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3508 metadata: 'Bytes',3509 equipped: 'bool',3510 pending: 'bool'3511 },3512 /**3513 * Lookup486: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3514 **/3515 RmrkTraitsNftRoyaltyInfo: {3516 recipient: 'AccountId32',3517 amount: 'Permill'3518 },3519 /**3520 * Lookup487: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3521 **/3522 RmrkTraitsResourceResourceInfo: {3523 id: 'u32',3524 resource: 'RmrkTraitsResourceResourceTypes',3525 pending: 'bool',3526 pendingRemoval: 'bool'3527 },3528 /**3529 * Lookup488: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3530 **/3531 RmrkTraitsPropertyPropertyInfo: {3532 key: 'Bytes',3533 value: 'Bytes'3534 },3535 /**3536 * Lookup489: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3537 **/3538 RmrkTraitsBaseBaseInfo: {3539 issuer: 'AccountId32',3540 baseType: 'Bytes',3541 symbol: 'Bytes'3542 },3543 /**3544 * Lookup490: rmrk_traits::nft::NftChild3545 **/3546 RmrkTraitsNftNftChild: {3547 collectionId: 'u32',3548 nftId: 'u32'3549 },3550 /**3551 * Lookup491: up_pov_estimate_rpc::PovInfo3552 **/3553 UpPovEstimateRpcPovInfo: {3554 proofSize: 'u64',3555 compactProofSize: 'u64',3556 compressedProofSize: 'u64',3557 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3558 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3559 },3560 /**3561 * Lookup494: sp_runtime::transaction_validity::TransactionValidityError3562 **/3563 SpRuntimeTransactionValidityTransactionValidityError: {3564 _enum: {3565 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3566 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3567 }3568 },3569 /**3570 * Lookup495: sp_runtime::transaction_validity::InvalidTransaction3571 **/3572 SpRuntimeTransactionValidityInvalidTransaction: {3573 _enum: {3574 Call: 'Null',3575 Payment: 'Null',3576 Future: 'Null',3577 Stale: 'Null',3578 BadProof: 'Null',3579 AncientBirthBlock: 'Null',3580 ExhaustsResources: 'Null',3581 Custom: 'u8',3582 BadMandatory: 'Null',3583 MandatoryValidation: 'Null',3584 BadSigner: 'Null'3585 }3586 },3587 /**3588 * Lookup496: sp_runtime::transaction_validity::UnknownTransaction3589 **/3590 SpRuntimeTransactionValidityUnknownTransaction: {3591 _enum: {3592 CannotLookup: 'Null',3593 NoUnsignedValidator: 'Null',3594 Custom: 'u8'3595 }3596 },3597 /**3598 * Lookup498: up_pov_estimate_rpc::TrieKeyValue3599 **/3600 UpPovEstimateRpcTrieKeyValue: {3601 key: 'Bytes',3602 value: 'Bytes'3603 },3604 /**3605 * Lookup500: pallet_common::pallet::Error<T>3606 **/3607 PalletCommonError: {3608 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3609 },3610 /**3611 * Lookup502: pallet_fungible::pallet::Error<T>3612 **/3613 PalletFungibleError: {3614 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3615 },3616 /**3617 * Lookup506: pallet_refungible::pallet::Error<T>3618 **/3619 PalletRefungibleError: {3620 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3621 },3622 /**3623 * Lookup507: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3624 **/3625 PalletNonfungibleItemData: {3626 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3627 },3628 /**3629 * Lookup509: up_data_structs::PropertyScope3630 **/3631 UpDataStructsPropertyScope: {3632 _enum: ['None', 'Rmrk']3633 },3634 /**3635 * Lookup512: pallet_nonfungible::pallet::Error<T>3636 **/3637 PalletNonfungibleError: {3638 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3639 },3640 /**3641 * Lookup513: pallet_structure::pallet::Error<T>3642 **/3643 PalletStructureError: {3644 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3645 },3646 /**3647 * Lookup514: pallet_rmrk_core::pallet::Error<T>3648 **/3649 PalletRmrkCoreError: {3650 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3651 },3652 /**3653 * Lookup516: pallet_rmrk_equip::pallet::Error<T>3654 **/3655 PalletRmrkEquipError: {3656 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3657 },3658 /**3659 * Lookup522: pallet_app_promotion::pallet::Error<T>3660 **/3661 PalletAppPromotionError: {3662 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3663 },3664 /**3665 * Lookup523: pallet_foreign_assets::module::Error<T>3666 **/3667 PalletForeignAssetsModuleError: {3668 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3669 },3670 /**3671 * Lookup525: pallet_evm::pallet::Error<T>3672 **/3673 PalletEvmError: {3674 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3675 },3676 /**3677 * Lookup528: fp_rpc::TransactionStatus3678 **/3679 FpRpcTransactionStatus: {3680 transactionHash: 'H256',3681 transactionIndex: 'u32',3682 from: 'H160',3683 to: 'Option<H160>',3684 contractAddress: 'Option<H160>',3685 logs: 'Vec<EthereumLog>',3686 logsBloom: 'EthbloomBloom'3687 },3688 /**3689 * Lookup530: ethbloom::Bloom3690 **/3691 EthbloomBloom: '[u8;256]',3692 /**3693 * Lookup532: ethereum::receipt::ReceiptV33694 **/3695 EthereumReceiptReceiptV3: {3696 _enum: {3697 Legacy: 'EthereumReceiptEip658ReceiptData',3698 EIP2930: 'EthereumReceiptEip658ReceiptData',3699 EIP1559: 'EthereumReceiptEip658ReceiptData'3700 }3701 },3702 /**3703 * Lookup533: ethereum::receipt::EIP658ReceiptData3704 **/3705 EthereumReceiptEip658ReceiptData: {3706 statusCode: 'u8',3707 usedGas: 'U256',3708 logsBloom: 'EthbloomBloom',3709 logs: 'Vec<EthereumLog>'3710 },3711 /**3712 * Lookup534: ethereum::block::Block<ethereum::transaction::TransactionV2>3713 **/3714 EthereumBlock: {3715 header: 'EthereumHeader',3716 transactions: 'Vec<EthereumTransactionTransactionV2>',3717 ommers: 'Vec<EthereumHeader>'3718 },3719 /**3720 * Lookup535: ethereum::header::Header3721 **/3722 EthereumHeader: {3723 parentHash: 'H256',3724 ommersHash: 'H256',3725 beneficiary: 'H160',3726 stateRoot: 'H256',3727 transactionsRoot: 'H256',3728 receiptsRoot: 'H256',3729 logsBloom: 'EthbloomBloom',3730 difficulty: 'U256',3731 number: 'U256',3732 gasLimit: 'U256',3733 gasUsed: 'U256',3734 timestamp: 'u64',3735 extraData: 'Bytes',3736 mixHash: 'H256',3737 nonce: 'EthereumTypesHashH64'3738 },3739 /**3740 * Lookup536: ethereum_types::hash::H643741 **/3742 EthereumTypesHashH64: '[u8;8]',3743 /**3744 * Lookup541: pallet_ethereum::pallet::Error<T>3745 **/3746 PalletEthereumError: {3747 _enum: ['InvalidSignature', 'PreLogExists']3748 },3749 /**3750 * Lookup542: pallet_evm_coder_substrate::pallet::Error<T>3751 **/3752 PalletEvmCoderSubstrateError: {3753 _enum: ['OutOfGas', 'OutOfFund']3754 },3755 /**3756 * Lookup543: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3757 **/3758 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3759 _enum: {3760 Disabled: 'Null',3761 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3762 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3763 }3764 },3765 /**3766 * Lookup544: pallet_evm_contract_helpers::SponsoringModeT3767 **/3768 PalletEvmContractHelpersSponsoringModeT: {3769 _enum: ['Disabled', 'Allowlisted', 'Generous']3770 },3771 /**3772 * Lookup550: pallet_evm_contract_helpers::pallet::Error<T>3773 **/3774 PalletEvmContractHelpersError: {3775 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3776 },3777 /**3778 * Lookup551: pallet_evm_migration::pallet::Error<T>3779 **/3780 PalletEvmMigrationError: {3781 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3782 },3783 /**3784 * Lookup552: pallet_maintenance::pallet::Error<T>3785 **/3786 PalletMaintenanceError: 'Null',3787 /**3788 * Lookup553: pallet_test_utils::pallet::Error<T>3789 **/3790 PalletTestUtilsError: {3791 _enum: ['TestPalletDisabled', 'TriggerRollback']3792 },3793 /**3794 * Lookup555: sp_runtime::MultiSignature3795 **/3796 SpRuntimeMultiSignature: {3797 _enum: {3798 Ed25519: 'SpCoreEd25519Signature',3799 Sr25519: 'SpCoreSr25519Signature',3800 Ecdsa: 'SpCoreEcdsaSignature'3801 }3802 },3803 /**3804 * Lookup556: sp_core::ed25519::Signature3805 **/3806 SpCoreEd25519Signature: '[u8;64]',3807 /**3808 * Lookup558: sp_core::sr25519::Signature3809 **/3810 SpCoreSr25519Signature: '[u8;64]',3811 /**3812 * Lookup559: sp_core::ecdsa::Signature3813 **/3814 SpCoreEcdsaSignature: '[u8;65]',3815 /**3816 * Lookup562: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3817 **/3818 FrameSystemExtensionsCheckSpecVersion: 'Null',3819 /**3820 * Lookup563: frame_system::extensions::check_tx_version::CheckTxVersion<T>3821 **/3822 FrameSystemExtensionsCheckTxVersion: 'Null',3823 /**3824 * Lookup564: frame_system::extensions::check_genesis::CheckGenesis<T>3825 **/3826 FrameSystemExtensionsCheckGenesis: 'Null',3827 /**3828 * Lookup567: frame_system::extensions::check_nonce::CheckNonce<T>3829 **/3830 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3831 /**3832 * Lookup568: frame_system::extensions::check_weight::CheckWeight<T>3833 **/3834 FrameSystemExtensionsCheckWeight: 'Null',3835 /**3836 * Lookup569: opal_runtime::runtime_common::maintenance::CheckMaintenance3837 **/3838 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3839 /**3840 * Lookup570: opal_runtime::runtime_common::evm_migration::FilterIdentity3841 **/3842 OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity: 'Null',3843 /**3844 * Lookup571: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3845 **/3846 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3847 /**3848 * Lookup572: opal_runtime::Runtime3849 **/3850 OpalRuntimeRuntime: 'Null',3851 /**3852 * Lookup573: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3853 **/3854 PalletEthereumFakeTransactionFinalizer: 'Null'3855};tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDataManagementCall, PalletDataManagementError, PalletDataManagementEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -74,7 +74,7 @@
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
OpalRuntimeRuntime: OpalRuntimeRuntime;
- OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
+ OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity: OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OrmlTokensAccountData: OrmlTokensAccountData;
@@ -112,9 +112,9 @@
PalletConfigurationCall: PalletConfigurationCall;
PalletConfigurationError: PalletConfigurationError;
PalletConfigurationEvent: PalletConfigurationEvent;
- PalletDataManagementCall: PalletDataManagementCall;
- PalletDataManagementError: PalletDataManagementError;
- PalletDataManagementEvent: PalletDataManagementEvent;
+ PalletEvmMigrationCall: PalletEvmMigrationCall;
+ PalletEvmMigrationError: PalletEvmMigrationError;
+ PalletEvmMigrationEvent: PalletEvmMigrationEvent;
PalletEthereumCall: PalletEthereumCall;
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1564,8 +1564,8 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name PalletDataManagementEvent (123) */
- interface PalletDataManagementEvent extends Enum {
+ /** @name PalletEvmMigrationEvent (123) */
+ interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
@@ -3493,8 +3493,8 @@
readonly s: H256;
}
- /** @name PalletDataManagementCall (414) */
- interface PalletDataManagementCall extends Enum {
+ /** @name PalletEvmMigrationCall (414) */
+ interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
readonly address: H160;
@@ -4180,8 +4180,8 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletDataManagementError (551) */
- interface PalletDataManagementError extends Enum {
+ /** @name PalletEvmMigrationError (551) */
+ interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly isBadEvent: boolean;
@@ -4236,8 +4236,8 @@
/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (569) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (570) */
- type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;
+ /** @name OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity (570) */
+ type OpalRuntimeRuntimeCommonEvmMigrationFilterIdentity = Null;
/** @name PalletTemplateTransactionPaymentChargeTransactionPayment (571) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
tests/src/pallet-presence.test.tsdiffbeforeafterboth--- a/tests/src/pallet-presence.test.ts
+++ b/tests/src/pallet-presence.test.ts
@@ -32,7 +32,7 @@
'evm',
'evmcodersubstrate',
'evmcontracthelpers',
- 'datamanagement',
+ 'evmmigration',
'evmtransactionpayment',
'ethereum',
'fungible',