difftreelog
fix UniqueApi generics, added events for contract + fix logic inside `evm-helper` methods, added correct wegihts for `on_initialize`
in: master
18 files changed
client/rpc/src/lib.rsdiffbeforeafterboth--- a/client/rpc/src/lib.rs
+++ b/client/rpc/src/lib.rs
@@ -44,7 +44,7 @@
#[rpc(server)]
#[async_trait]
-pub trait UniqueApi<BlockHash, BlockNumber, CrossAccountId, AccountId> {
+pub trait UniqueApi<BlockHash, CrossAccountId, AccountId> {
/// Get tokens owned by account.
#[method(name = "unique_accountTokens")]
fn account_tokens(
@@ -481,7 +481,7 @@
macro_rules! unique_api {
() => {
- dyn UniqueRuntimeApi<Block, BlockNumber, CrossAccountId, AccountId>
+ dyn UniqueRuntimeApi<Block, CrossAccountId, AccountId>
};
}
@@ -498,15 +498,13 @@
}
#[allow(deprecated)]
-impl<C, Block, BlockNumber, CrossAccountId, AccountId>
- UniqueApiServer<<Block as BlockT>::Hash, BlockNumber, CrossAccountId, AccountId>
- for Unique<C, Block>
+impl<C, Block, CrossAccountId, AccountId>
+ UniqueApiServer<<Block as BlockT>::Hash, CrossAccountId, AccountId> for Unique<C, Block>
where
Block: BlockT,
- BlockNumber: Decode + Member + AtLeast32BitUnsigned,
AccountId: Decode,
C: 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
- C::Api: UniqueRuntimeApi<Block, BlockNumber, CrossAccountId, AccountId>,
+ C::Api: UniqueRuntimeApi<Block, CrossAccountId, AccountId>,
CrossAccountId: pallet_evm::account::CrossAccountId<AccountId>,
{
pass_method!(
node/cli/src/service.rsdiffbeforeafterboth--- a/node/cli/src/service.rs
+++ b/node/cli/src/service.rs
@@ -363,7 +363,7 @@
+ sp_block_builder::BlockBuilder<Block>
+ pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>
+ sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>
- + up_rpc::UniqueApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
+ + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>
+ app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
+ rmrk_rpc::RmrkApi<
Block,
@@ -665,7 +665,7 @@
+ sp_block_builder::BlockBuilder<Block>
+ pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>
+ sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>
- + up_rpc::UniqueApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
+ + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>
+ app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
+ rmrk_rpc::RmrkApi<
Block,
@@ -810,7 +810,7 @@
+ sp_block_builder::BlockBuilder<Block>
+ pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>
+ sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>
- + up_rpc::UniqueApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
+ + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>
+ app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
+ rmrk_rpc::RmrkApi<
Block,
node/rpc/src/lib.rsdiffbeforeafterboth--- a/node/rpc/src/lib.rs
+++ b/node/rpc/src/lib.rs
@@ -100,8 +100,7 @@
C: HeaderBackend<Block> + HeaderMetadata<Block, Error = BlockChainError>,
C: Send + Sync + 'static,
C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,
- C::Api:
- up_rpc::UniqueApi<Block, BlockNumber, <R as RuntimeInstance>::CrossAccountId, AccountId>,
+ C::Api: up_rpc::UniqueApi<Block, <R as RuntimeInstance>::CrossAccountId, AccountId>,
BE: Backend<Block> + 'static,
BE::State: StateBackend<BlakeTwo256>,
R: RuntimeInstance + Send + Sync + 'static,
@@ -145,8 +144,7 @@
C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi<Block, Balance>,
C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,
C::Api: fp_rpc::ConvertTransactionRuntimeApi<Block>,
- C::Api:
- up_rpc::UniqueApi<Block, BlockNumber, <R as RuntimeInstance>::CrossAccountId, AccountId>,
+ C::Api: up_rpc::UniqueApi<Block, <R as RuntimeInstance>::CrossAccountId, AccountId>,
C::Api: app_promotion_rpc::AppPromotionApi<
Block,
BlockNumber,
@@ -236,7 +234,7 @@
io.merge(Unique::new(client.clone()).into_rpc())?;
- #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
+ #[cfg(any(feature = "opal-runtime"))]
io.merge(AppPromotion::new(client.clone()).into_rpc())?;
#[cfg(not(feature = "unique-runtime"))]
pallets/app-promotion/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/benchmarking.rs
+++ b/pallets/app-promotion/src/benchmarking.rs
@@ -23,26 +23,52 @@
use sp_std::vec;
use frame_benchmarking::{benchmarks, account};
-
+use frame_support::traits::OnInitialize;
use frame_system::{Origin, RawOrigin};
use pallet_unique::benchmarking::create_nft_collection;
use pallet_evm_migration::Pallet as EvmMigrationPallet;
const SEED: u32 = 0;
+fn set_admin<T>() -> DispatchResult
+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>,
+{
+ let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
+
+ <T as Config>::Currency::make_free_balance_be(
+ &pallet_admin,
+ Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value(),
+ );
+
+ PromototionPallet::<T>::set_admin_address(
+ RawOrigin::Root.into(),
+ T::CrossAccountId::from_sub(pallet_admin.clone()),
+ )
+}
+
benchmarks! {
where_clause{
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>
}
- // start_app_promotion {
- // } : {PromototionPallet::<T>::start_app_promotion(RawOrigin::Root.into(), None)?}
+ on_initialize {
+ let b in 0..PENDING_LIMIT_PER_BLOCK;
+ set_admin::<T>()?;
- // stop_app_promotion{
- // PromototionPallet::<T>::start_app_promotion(RawOrigin::Root.into(), Some(25.into()))?;
- // } : {PromototionPallet::<T>::stop_app_promotion(RawOrigin::Root.into())?}
+ (0..b).try_for_each(|index| {
+ let staker = account::<T::AccountId>("staker", index, SEED);
+ <T as Config>::Currency::make_free_balance_be(&staker, Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+ PromototionPallet::<T>::stake(RawOrigin::Signed(staker.clone()).into(), Into::<BalanceOf<T>>::into(100u128) * T::Nominal::get())?;
+ PromototionPallet::<T>::unstake(RawOrigin::Signed(staker.clone()).into()).map_err(|e| e.error)?;
+ Result::<(), sp_runtime::DispatchError>::Ok(())
+ })?;
+ let block_number = <frame_system::Pallet<T>>::current_block_number() + T::PendingInterval::get();
+ }: {PromototionPallet::<T>::on_initialize(block_number)}
set_admin_address {
let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
@@ -66,7 +92,7 @@
(0..10).try_for_each(|_| {
stakers.iter()
.map(|staker| {
-
+
PromototionPallet::<T>::stake(RawOrigin::Signed(staker.clone()).into(), Into::<BalanceOf<T>>::into(100u128) * T::Nominal::get())
}).collect::<Result<Vec<_>, _>>()?;
<frame_system::Pallet<T>>::finalize();
pallets/app-promotion/src/lib.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/lib.rs
+++ b/pallets/app-promotion/src/lib.rs
@@ -226,15 +226,15 @@
where
<T as frame_system::Config>::BlockNumber: From<u32>,
{
- let mut consumed_weight = 0;
- let mut add_weight = |reads, writes, weight| {
- consumed_weight += T::DbWeight::get().reads_writes(reads, writes);
- consumed_weight += weight;
- };
+ // let mut consumed_weight = 0;
+ // let mut add_weight = |reads, writes, weight| {
+ // consumed_weight += T::DbWeight::get().reads_writes(reads, writes);
+ // consumed_weight += weight;
+ // };
let block_pending = PendingUnstake::<T>::take(current_block_number);
-
- add_weight(0, 1, 0);
+ let counter = block_pending.len() as u32;
+ // add_weight(0, 1, 0);
if !block_pending.is_empty() {
block_pending.into_iter().for_each(|(staker, amount)| {
@@ -242,7 +242,8 @@
});
}
- consumed_weight
+ T::WeightInfo::on_initialize(counter)
+ // consumed_weight
}
}
@@ -280,7 +281,7 @@
let balance =
<<T as Config>::Currency as Currency<T::AccountId>>::free_balance(&staker_id);
- ensure!(balance >= amount, ArithmeticError::Underflow);
+ // ensure!(balance >= amount, ArithmeticError::Underflow);
<<T as Config>::Currency as Currency<T::AccountId>>::ensure_can_withdraw(
&staker_id,
@@ -672,7 +673,7 @@
LOCK_IDENTIFIER,
staker,
amount,
- WithdrawReasons::all(),
+ WithdrawReasons::RESERVE,
)
}
}
pallets/app-promotion/src/types.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/types.rs
+++ b/pallets/app-promotion/src/types.rs
@@ -72,12 +72,16 @@
type ContractId;
type AccountId;
- fn set_sponsor(sponsor_id: Self::AccountId, contract_id: Self::ContractId) -> DispatchResult;
+ fn set_sponsor(
+ sponsor_id: Self::AccountId,
+ contract_address: Self::ContractId,
+ ) -> DispatchResult;
- fn remove_contract_sponsor(contract_id: Self::ContractId) -> DispatchResult;
+ fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult;
- fn get_sponsor(contract_id: Self::ContractId)
- -> Result<Option<Self::AccountId>, DispatchError>;
+ fn get_sponsor(
+ contract_address: Self::ContractId,
+ ) -> Result<Option<Self::AccountId>, DispatchError>;
}
impl<T: EvmHelpersConfig> ContractHandler for EvmHelpersPallet<T> {
@@ -85,22 +89,20 @@
type AccountId = T::CrossAccountId;
- fn set_sponsor(sponsor_id: Self::AccountId, contract_id: Self::ContractId) -> DispatchResult {
- Sponsoring::<T>::insert(
- contract_id,
- SponsorshipState::<T::CrossAccountId>::Confirmed(sponsor_id),
- );
- Ok(())
+ fn set_sponsor(
+ sponsor_id: Self::AccountId,
+ contract_address: Self::ContractId,
+ ) -> DispatchResult {
+ Self::force_set_sponsor(contract_address, &sponsor_id)
}
- fn remove_contract_sponsor(contract_id: Self::ContractId) -> DispatchResult {
- Sponsoring::<T>::remove(contract_id);
- Ok(())
+ fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult {
+ Self::force_remove_sponsor(contract_address)
}
fn get_sponsor(
- contract_id: Self::ContractId,
+ contract_address: Self::ContractId,
) -> Result<Option<Self::AccountId>, DispatchError> {
- Ok(Self::get_sponsor(contract_id))
+ Ok(Self::get_sponsor(contract_address))
}
}
pallets/app-promotion/src/weights.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/weights.rs
+++ b/pallets/app-promotion/src/weights.rs
@@ -34,6 +34,7 @@
/// Weight functions needed for pallet_app_promotion.
pub trait WeightInfo {
+ fn on_initialize(b: u32, ) -> Weight;
fn set_admin_address() -> Weight;
fn payout_stakers(b: u32, ) -> Weight;
fn stake() -> Weight;
@@ -47,9 +48,19 @@
/// Weights for pallet_app_promotion using the Substrate node and recommended hardware.
pub struct SubstrateWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
+ // Storage: AppPromotion PendingUnstake (r:1 w:0)
+ // Storage: System Account (r:1 w:1)
+ fn on_initialize(b: u32, ) -> Weight {
+ (2_461_000 as Weight)
+ // Standard Error: 87_000
+ .saturating_add((6_006_000 as Weight).saturating_mul(b as Weight))
+ .saturating_add(T::DbWeight::get().reads(1 as Weight))
+ .saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
+ .saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(b as Weight)))
+ }
// Storage: AppPromotion Admin (r:0 w:1)
fn set_admin_address() -> Weight {
- (5_297_000 as Weight)
+ (5_467_000 as Weight)
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
@@ -57,9 +68,9 @@
// Storage: AppPromotion NextCalculatedRecord (r:1 w:1)
// Storage: AppPromotion Staked (r:2 w:0)
fn payout_stakers(b: u32, ) -> Weight {
- (8_045_000 as Weight)
- // Standard Error: 19_000
- .saturating_add((4_778_000 as Weight).saturating_mul(b as Weight))
+ (4_946_000 as Weight)
+ // Standard Error: 5_000
+ .saturating_add((4_599_000 as Weight).saturating_mul(b as Weight))
.saturating_add(T::DbWeight::get().reads(4 as Weight))
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
@@ -71,7 +82,7 @@
// Storage: AppPromotion Staked (r:1 w:1)
// Storage: AppPromotion TotalStaked (r:1 w:1)
fn stake() -> Weight {
- (17_623_000 as Weight)
+ (17_766_000 as Weight)
.saturating_add(T::DbWeight::get().reads(6 as Weight))
.saturating_add(T::DbWeight::get().writes(5 as Weight))
}
@@ -82,35 +93,35 @@
// Storage: AppPromotion TotalStaked (r:1 w:1)
// Storage: AppPromotion StakesPerAccount (r:0 w:1)
fn unstake() -> Weight {
- (27_190_000 as Weight)
+ (27_250_000 as Weight)
.saturating_add(T::DbWeight::get().reads(6 as Weight))
.saturating_add(T::DbWeight::get().writes(6 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: Common CollectionById (r:1 w:1)
fn sponsor_collection() -> Weight {
- (11_351_000 as Weight)
+ (11_014_000 as Weight)
.saturating_add(T::DbWeight::get().reads(2 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: Common CollectionById (r:1 w:1)
fn stop_sponsoring_collection() -> Weight {
- (10_687_000 as Weight)
+ (10_494_000 as Weight)
.saturating_add(T::DbWeight::get().reads(2 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: EvmContractHelpers Sponsoring (r:0 w:1)
fn sponsor_contract() -> Weight {
- (2_332_000 as Weight)
+ (9_754_000 as Weight)
.saturating_add(T::DbWeight::get().reads(1 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: EvmContractHelpers Sponsoring (r:1 w:1)
fn stop_sponsoring_contract() -> Weight {
- (3_712_000 as Weight)
+ (10_063_000 as Weight)
.saturating_add(T::DbWeight::get().reads(2 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
@@ -118,9 +129,19 @@
// For backwards compatibility and tests
impl WeightInfo for () {
+ // Storage: AppPromotion PendingUnstake (r:1 w:0)
+ // Storage: System Account (r:1 w:1)
+ fn on_initialize(b: u32, ) -> Weight {
+ (2_461_000 as Weight)
+ // Standard Error: 87_000
+ .saturating_add((6_006_000 as Weight).saturating_mul(b as Weight))
+ .saturating_add(RocksDbWeight::get().reads(1 as Weight))
+ .saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
+ .saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(b as Weight)))
+ }
// Storage: AppPromotion Admin (r:0 w:1)
fn set_admin_address() -> Weight {
- (5_297_000 as Weight)
+ (5_467_000 as Weight)
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
@@ -128,9 +149,9 @@
// Storage: AppPromotion NextCalculatedRecord (r:1 w:1)
// Storage: AppPromotion Staked (r:2 w:0)
fn payout_stakers(b: u32, ) -> Weight {
- (8_045_000 as Weight)
- // Standard Error: 19_000
- .saturating_add((4_778_000 as Weight).saturating_mul(b as Weight))
+ (4_946_000 as Weight)
+ // Standard Error: 5_000
+ .saturating_add((4_599_000 as Weight).saturating_mul(b as Weight))
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
@@ -142,7 +163,7 @@
// Storage: AppPromotion Staked (r:1 w:1)
// Storage: AppPromotion TotalStaked (r:1 w:1)
fn stake() -> Weight {
- (17_623_000 as Weight)
+ (17_766_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(6 as Weight))
.saturating_add(RocksDbWeight::get().writes(5 as Weight))
}
@@ -153,35 +174,35 @@
// Storage: AppPromotion TotalStaked (r:1 w:1)
// Storage: AppPromotion StakesPerAccount (r:0 w:1)
fn unstake() -> Weight {
- (27_190_000 as Weight)
+ (27_250_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(6 as Weight))
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: Common CollectionById (r:1 w:1)
fn sponsor_collection() -> Weight {
- (11_351_000 as Weight)
+ (11_014_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: Common CollectionById (r:1 w:1)
fn stop_sponsoring_collection() -> Weight {
- (10_687_000 as Weight)
+ (10_494_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: EvmContractHelpers Sponsoring (r:0 w:1)
fn sponsor_contract() -> Weight {
- (2_332_000 as Weight)
+ (9_754_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
}
// Storage: AppPromotion Admin (r:1 w:0)
// Storage: EvmContractHelpers Sponsoring (r:1 w:1)
fn stop_sponsoring_contract() -> Weight {
- (3_712_000 as Weight)
+ (10_063_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
}
pallets/evm-contract-helpers/src/eth.rsdiffbeforeafterboth--- a/pallets/evm-contract-helpers/src/eth.rs
+++ b/pallets/evm-contract-helpers/src/eth.rs
@@ -122,8 +122,12 @@
self.recorder().consume_sload()?;
self.recorder().consume_sstore()?;
+ let caller = T::CrossAccountId::from_eth(caller);
+
+ Pallet::<T>::ensure_owner(contract_address, *caller.as_eth())
+ .map_err(dispatch_to_evm::<T>)?;
+
Pallet::<T>::force_set_sponsor(
- &T::CrossAccountId::from_eth(caller),
contract_address,
&T::CrossAccountId::from_eth(contract_address),
)
pallets/evm-contract-helpers/src/lib.rsdiffbeforeafterboth--- a/pallets/evm-contract-helpers/src/lib.rs
+++ b/pallets/evm-contract-helpers/src/lib.rs
@@ -216,20 +216,16 @@
Ok(())
}
- /// Set sponsor as already confirmed.
+ /// TO-DO
+ ///
///
- /// `sender` must be owner of contract.
pub fn force_set_sponsor(
- sender: &T::CrossAccountId,
contract_address: H160,
sponsor: &T::CrossAccountId,
) -> DispatchResult {
- Pallet::<T>::ensure_owner(contract_address, *sender.as_eth())?;
Sponsoring::<T>::insert(
contract_address,
- SponsorshipState::<T::CrossAccountId>::Confirmed(T::CrossAccountId::from_eth(
- contract_address,
- )),
+ SponsorshipState::<T::CrossAccountId>::Confirmed(sponsor.clone()),
);
let eth_sponsor = *sponsor.as_eth();
@@ -265,13 +261,24 @@
/// Remove sponsor for `contract`.
///
/// `sender` must be owner of contract.
- pub fn remove_sponsor(sender: &T::CrossAccountId, contract_address: H160) -> DispatchResult {
- Pallet::<T>::ensure_owner(contract_address, *sender.as_eth())?;
+ pub fn remove_sponsor(
+ sender: &T::CrossAccountId,
+ contract_address: H160,
+ ) -> DispatchResult {
+ Self::ensure_owner(contract_address, *sender.as_eth())?;
+ Self::force_remove_sponsor(contract_address)
+ }
+
+ /// TO-DO
+ ///
+ ///
+ pub fn force_remove_sponsor(contract_address: H160) -> DispatchResult {
Sponsoring::<T>::remove(contract_address);
- <Pallet<T>>::deposit_event(Event::<T>::ContractSponsorRemoved(contract_address));
+ Self::deposit_event(Event::<T>::ContractSponsorRemoved(contract_address));
<PalletEvm<T>>::deposit_log(
- ContractHelpersEvents::ContractSponsorRemoved { contract_address }.to_log(contract_address),
+ ContractHelpersEvents::ContractSponsorRemoved { contract_address }
+ .to_log(contract_address),
);
Ok(())
@@ -280,7 +287,10 @@
/// Confirm sponsorship.
///
/// `sender` must be same that set via [`set_sponsor`].
- pub fn confirm_sponsorship(sender: &T::CrossAccountId, contract_address: H160) -> DispatchResult {
+ pub fn confirm_sponsorship(
+ sender: &T::CrossAccountId,
+ contract_address: H160,
+ ) -> DispatchResult {
match Sponsoring::<T>::get(contract_address) {
SponsorshipState::Unconfirmed(sponsor) => {
ensure!(sponsor == *sender, Error::<T>::NoPermission);
primitives/rpc/src/lib.rsdiffbeforeafterboth--- a/primitives/rpc/src/lib.rs
+++ b/primitives/rpc/src/lib.rs
@@ -33,8 +33,7 @@
sp_api::decl_runtime_apis! {
#[api_version(2)]
/// Trait for generate rpc.
- pub trait UniqueApi<BlockNumber ,CrossAccountId, AccountId> where
- BlockNumber: Decode + Member + AtLeast32BitUnsigned,
+ pub trait UniqueApi<CrossAccountId, AccountId> where
AccountId: Decode,
CrossAccountId: pallet_evm::account::CrossAccountId<AccountId>,
{
runtime/common/runtime_apis.rsdiffbeforeafterboth--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -61,7 +61,7 @@
impl_runtime_apis! {
$($($custom_apis)+)?
- impl up_rpc::UniqueApi<Block, BlockNumber, CrossAccountId, AccountId> for Runtime {
+ impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId> for Runtime {
fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {
dispatch_unique_runtime!(collection.account_tokens(account))
}
tests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth--- a/tests/src/eth/contractSponsoring.test.ts
+++ b/tests/src/eth/contractSponsoring.test.ts
@@ -37,7 +37,7 @@
expect(await helpers.methods.hasSponsor(flipper.options.address).call()).to.be.true;
});
- itWeb3.only('Set self sponsored events', async ({api, web3, privateKeyWrapper}) => {
+ itWeb3('Set self sponsored events', async ({api, web3, privateKeyWrapper}) => {
const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
const flipper = await deployFlipper(web3, owner);
const helpers = contractHelpers(web3, owner);
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -218,6 +218,24 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ evmContractHelpers: {
+ /**
+ * Collection sponsor was removed.
+ **/
+ ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;
+ /**
+ * Contract sponsor was set.
+ **/
+ ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;
+ /**
+ * New sponsor was confirm.
+ **/
+ ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
parachainSystem: {
/**
* Downward messages were processed using the given weight.
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, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, 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';
@@ -835,6 +835,7 @@
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
PalletEvmContractHelpersError: PalletEvmContractHelpersError;
+ PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
PalletEvmError: PalletEvmError;
PalletEvmEvent: PalletEvmEvent;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1188,6 +1188,17 @@
readonly type: 'NoPermission' | 'NoPendingSponsor';
}
+/** @name PalletEvmContractHelpersEvent */
+export interface PalletEvmContractHelpersEvent extends Enum {
+ readonly isContractSponsorSet: boolean;
+ readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
+ readonly isContractSponsorshipConfirmed: boolean;
+ readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;
+ readonly isContractSponsorRemoved: boolean;
+ readonly asContractSponsorRemoved: H160;
+ readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
+}
+
/** @name PalletEvmContractHelpersSponsoringModeT */
export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1154,7 +1154,17 @@
}
},
/**
- * Lookup117: frame_system::Phase
+ * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>
+ **/
+ PalletEvmContractHelpersEvent: {
+ _enum: {
+ ContractSponsorSet: '(H160,AccountId32)',
+ ContractSponsorshipConfirmed: '(H160,AccountId32)',
+ ContractSponsorRemoved: 'H160'
+ }
+ },
+ /**
+ * Lookup118: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1164,14 +1174,14 @@
}
},
/**
- * Lookup119: frame_system::LastRuntimeUpgradeInfo
+ * Lookup120: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup120: frame_system::pallet::Call<T>
+ * Lookup121: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1209,7 +1219,7 @@
}
},
/**
- * Lookup125: frame_system::limits::BlockWeights
+ * Lookup126: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -1217,7 +1227,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup126: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup127: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1225,7 +1235,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup127: frame_system::limits::WeightsPerClass
+ * Lookup128: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -1234,13 +1244,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup129: frame_system::limits::BlockLength
+ * Lookup130: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup130: frame_support::weights::PerDispatchClass<T>
+ * Lookup131: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -1248,14 +1258,14 @@
mandatory: 'u32'
},
/**
- * Lookup131: frame_support::weights::RuntimeDbWeight
+ * Lookup132: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup132: sp_version::RuntimeVersion
+ * Lookup133: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1268,13 +1278,13 @@
stateVersion: 'u8'
},
/**
- * Lookup137: frame_system::pallet::Error<T>
+ * Lookup138: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup138: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup139: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1283,19 +1293,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup141: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup142: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup142: sp_trie::storage_proof::StorageProof
+ * Lookup143: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup144: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup145: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1304,7 +1314,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup147: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup148: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1315,7 +1325,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup148: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup149: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1329,14 +1339,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup154: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup155: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup155: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup156: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1355,7 +1365,7 @@
}
},
/**
- * Lookup156: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup157: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1364,27 +1374,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup158: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup159: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup161: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup162: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup164: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup165: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup166: pallet_balances::BalanceLock<Balance>
+ * Lookup167: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1392,26 +1402,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup167: pallet_balances::Reasons
+ * Lookup168: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup170: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup171: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup172: pallet_balances::Releases
+ * Lookup173: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup173: pallet_balances::pallet::Call<T, I>
+ * Lookup174: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1444,13 +1454,13 @@
}
},
/**
- * Lookup176: pallet_balances::pallet::Error<T, I>
+ * Lookup177: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup178: pallet_timestamp::pallet::Call<T>
+ * Lookup179: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1460,13 +1470,13 @@
}
},
/**
- * Lookup180: pallet_transaction_payment::Releases
+ * Lookup181: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup181: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup182: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1475,7 +1485,7 @@
bond: 'u128'
},
/**
- * Lookup184: pallet_treasury::pallet::Call<T, I>
+ * Lookup185: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1499,17 +1509,17 @@
}
},
/**
- * Lookup187: frame_support::PalletId
+ * Lookup188: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup188: pallet_treasury::pallet::Error<T, I>
+ * Lookup189: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup189: pallet_sudo::pallet::Call<T>
+ * Lookup190: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1533,7 +1543,7 @@
}
},
/**
- * Lookup191: orml_vesting::module::Call<T>
+ * Lookup192: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1552,7 +1562,7 @@
}
},
/**
- * Lookup193: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup194: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -1601,7 +1611,7 @@
}
},
/**
- * Lookup194: pallet_xcm::pallet::Call<T>
+ * Lookup195: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1655,7 +1665,7 @@
}
},
/**
- * Lookup195: xcm::VersionedXcm<Call>
+ * Lookup196: xcm::VersionedXcm<Call>
**/
XcmVersionedXcm: {
_enum: {
@@ -1665,7 +1675,7 @@
}
},
/**
- * Lookup196: xcm::v0::Xcm<Call>
+ * Lookup197: xcm::v0::Xcm<Call>
**/
XcmV0Xcm: {
_enum: {
@@ -1719,7 +1729,7 @@
}
},
/**
- * Lookup198: xcm::v0::order::Order<Call>
+ * Lookup199: xcm::v0::order::Order<Call>
**/
XcmV0Order: {
_enum: {
@@ -1762,7 +1772,7 @@
}
},
/**
- * Lookup200: xcm::v0::Response
+ * Lookup201: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -1770,7 +1780,7 @@
}
},
/**
- * Lookup201: xcm::v1::Xcm<Call>
+ * Lookup202: xcm::v1::Xcm<Call>
**/
XcmV1Xcm: {
_enum: {
@@ -1829,7 +1839,7 @@
}
},
/**
- * Lookup203: xcm::v1::order::Order<Call>
+ * Lookup204: xcm::v1::order::Order<Call>
**/
XcmV1Order: {
_enum: {
@@ -1874,7 +1884,7 @@
}
},
/**
- * Lookup205: xcm::v1::Response
+ * Lookup206: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -1883,11 +1893,11 @@
}
},
/**
- * Lookup219: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup220: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup220: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup221: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -1898,7 +1908,7 @@
}
},
/**
- * Lookup221: pallet_inflation::pallet::Call<T>
+ * Lookup222: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -1908,7 +1918,7 @@
}
},
/**
- * Lookup222: pallet_unique::Call<T>
+ * Lookup223: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2040,7 +2050,7 @@
}
},
/**
- * Lookup227: up_data_structs::CollectionMode
+ * Lookup228: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2050,7 +2060,7 @@
}
},
/**
- * Lookup228: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup229: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2065,13 +2075,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup230: up_data_structs::AccessMode
+ * Lookup231: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup232: up_data_structs::CollectionLimits
+ * Lookup233: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2085,7 +2095,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup234: up_data_structs::SponsoringRateLimit
+ * Lookup235: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2094,7 +2104,7 @@
}
},
/**
- * Lookup237: up_data_structs::CollectionPermissions
+ * Lookup238: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2102,7 +2112,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup239: up_data_structs::NestingPermissions
+ * Lookup240: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2110,18 +2120,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup241: up_data_structs::OwnerRestrictedSet
+ * Lookup242: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup246: up_data_structs::PropertyKeyPermission
+ * Lookup247: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup247: up_data_structs::PropertyPermission
+ * Lookup248: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2129,14 +2139,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup250: up_data_structs::Property
+ * Lookup251: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup253: up_data_structs::CreateItemData
+ * Lookup254: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2146,26 +2156,26 @@
}
},
/**
- * Lookup254: up_data_structs::CreateNftData
+ * Lookup255: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup255: up_data_structs::CreateFungibleData
+ * Lookup256: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup256: up_data_structs::CreateReFungibleData
+ * Lookup257: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup259: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup260: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2176,14 +2186,14 @@
}
},
/**
- * Lookup261: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup262: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup268: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup269: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2191,14 +2201,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup270: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup271: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup271: pallet_unique_scheduler::pallet::Call<T>
+ * Lookup272: pallet_unique_scheduler::pallet::Call<T>
**/
PalletUniqueSchedulerCall: {
_enum: {
@@ -2222,7 +2232,7 @@
}
},
/**
- * Lookup273: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
+ * Lookup274: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
**/
FrameSupportScheduleMaybeHashed: {
_enum: {
@@ -2231,7 +2241,7 @@
}
},
/**
- * Lookup274: pallet_configuration::pallet::Call<T>
+ * Lookup275: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2244,15 +2254,15 @@
}
},
/**
- * Lookup275: pallet_template_transaction_payment::Call<T>
+ * Lookup276: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup276: pallet_structure::pallet::Call<T>
+ * Lookup277: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup277: pallet_rmrk_core::pallet::Call<T>
+ * Lookup278: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2343,7 +2353,7 @@
}
},
/**
- * Lookup283: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup284: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2353,7 +2363,7 @@
}
},
/**
- * Lookup285: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup286: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2362,7 +2372,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup287: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup288: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2373,7 +2383,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup288: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup289: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2384,7 +2394,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup291: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup292: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2405,7 +2415,7 @@
}
},
/**
- * Lookup294: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup295: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2414,7 +2424,7 @@
}
},
/**
- * Lookup296: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup297: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2422,7 +2432,7 @@
src: 'Bytes'
},
/**
- * Lookup297: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup298: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2431,7 +2441,7 @@
z: 'u32'
},
/**
- * Lookup298: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2441,7 +2451,7 @@
}
},
/**
- * Lookup300: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup301: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2449,14 +2459,14 @@
inherit: 'bool'
},
/**
- * Lookup302: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup303: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup304: pallet_app_promotion::pallet::Call<T>
+ * Lookup305: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2485,7 +2495,7 @@
}
},
/**
- * Lookup306: pallet_evm::pallet::Call<T>
+ * Lookup307: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2528,7 +2538,7 @@
}
},
/**
- * Lookup310: pallet_ethereum::pallet::Call<T>
+ * Lookup311: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2538,7 +2548,7 @@
}
},
/**
- * Lookup311: ethereum::transaction::TransactionV2
+ * Lookup312: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2548,7 +2558,7 @@
}
},
/**
- * Lookup312: ethereum::transaction::LegacyTransaction
+ * Lookup313: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2560,7 +2570,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup313: ethereum::transaction::TransactionAction
+ * Lookup314: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2569,7 +2579,7 @@
}
},
/**
- * Lookup314: ethereum::transaction::TransactionSignature
+ * Lookup315: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2577,7 +2587,7 @@
s: 'H256'
},
/**
- * Lookup316: ethereum::transaction::EIP2930Transaction
+ * Lookup317: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2593,14 +2603,14 @@
s: 'H256'
},
/**
- * Lookup318: ethereum::transaction::AccessListItem
+ * Lookup319: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup319: ethereum::transaction::EIP1559Transaction
+ * Lookup320: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2617,7 +2627,7 @@
s: 'H256'
},
/**
- * Lookup320: pallet_evm_migration::pallet::Call<T>
+ * Lookup321: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2635,19 +2645,19 @@
}
},
/**
- * Lookup323: pallet_sudo::pallet::Error<T>
+ * Lookup324: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup325: orml_vesting::module::Error<T>
+ * Lookup326: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup327: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup328: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2655,19 +2665,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup328: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup329: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup331: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup332: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup334: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup335: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2677,13 +2687,13 @@
lastIndex: 'u16'
},
/**
- * Lookup335: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup336: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup337: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup338: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2694,29 +2704,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup339: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup340: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup340: pallet_xcm::pallet::Error<T>
+ * Lookup341: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup341: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup342: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup342: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup343: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup343: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup344: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2724,19 +2734,19 @@
overweightCount: 'u64'
},
/**
- * Lookup346: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup347: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup350: pallet_unique::Error<T>
+ * Lookup351: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup353: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup354: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletUniqueSchedulerScheduledV3: {
maybeId: 'Option<[u8;16]>',
@@ -2746,7 +2756,7 @@
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup354: opal_runtime::OriginCaller
+ * Lookup355: opal_runtime::OriginCaller
**/
OpalRuntimeOriginCaller: {
_enum: {
@@ -2855,7 +2865,7 @@
}
},
/**
- * Lookup355: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup356: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -2865,7 +2875,7 @@
}
},
/**
- * Lookup356: pallet_xcm::pallet::Origin
+ * Lookup357: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -2874,7 +2884,7 @@
}
},
/**
- * Lookup357: cumulus_pallet_xcm::pallet::Origin
+ * Lookup358: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -2883,7 +2893,7 @@
}
},
/**
- * Lookup358: pallet_ethereum::RawOrigin
+ * Lookup359: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -2891,17 +2901,17 @@
}
},
/**
- * Lookup359: sp_core::Void
+ * Lookup360: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup360: pallet_unique_scheduler::pallet::Error<T>
+ * Lookup361: pallet_unique_scheduler::pallet::Error<T>
**/
PalletUniqueSchedulerError: {
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
},
/**
- * Lookup361: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup362: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -2915,7 +2925,7 @@
externalCollection: 'bool'
},
/**
- * Lookup362: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup363: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -2925,7 +2935,7 @@
}
},
/**
- * Lookup363: up_data_structs::Properties
+ * Lookup364: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2933,15 +2943,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup364: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup365: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup369: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup370: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup376: up_data_structs::CollectionStats
+ * Lookup377: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2949,18 +2959,18 @@
alive: 'u32'
},
/**
- * Lookup377: up_data_structs::TokenChild
+ * Lookup378: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup378: PhantomType::up_data_structs<T>
+ * Lookup379: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup380: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup381: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -2968,7 +2978,7 @@
pieces: 'u128'
},
/**
- * Lookup382: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup383: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2984,7 +2994,7 @@
readOnly: 'bool'
},
/**
- * Lookup383: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup384: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -2994,7 +3004,7 @@
nftsCount: 'u32'
},
/**
- * Lookup384: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup385: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3004,14 +3014,14 @@
pending: 'bool'
},
/**
- * Lookup386: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup387: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup387: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup388: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3020,14 +3030,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup388: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup389: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup389: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup390: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3035,86 +3045,86 @@
symbol: 'Bytes'
},
/**
- * Lookup390: rmrk_traits::nft::NftChild
+ * Lookup391: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup392: pallet_common::pallet::Error<T>
+ * Lookup393: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_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']
},
/**
- * Lookup394: pallet_fungible::pallet::Error<T>
+ * Lookup395: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup395: pallet_refungible::ItemData
+ * Lookup396: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup400: pallet_refungible::pallet::Error<T>
+ * Lookup401: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup401: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup402: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup403: up_data_structs::PropertyScope
+ * Lookup404: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup405: pallet_nonfungible::pallet::Error<T>
+ * Lookup406: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup406: pallet_structure::pallet::Error<T>
+ * Lookup407: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup407: pallet_rmrk_core::pallet::Error<T>
+ * Lookup408: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup409: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup410: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup415: pallet_app_promotion::pallet::Error<T>
+ * Lookup416: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'InvalidArgument']
},
/**
- * Lookup418: pallet_evm::pallet::Error<T>
+ * Lookup419: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup421: fp_rpc::TransactionStatus
+ * Lookup422: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3126,11 +3136,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup423: ethbloom::Bloom
+ * Lookup424: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup425: ethereum::receipt::ReceiptV3
+ * Lookup426: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3140,7 +3150,7 @@
}
},
/**
- * Lookup426: ethereum::receipt::EIP658ReceiptData
+ * Lookup427: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3149,7 +3159,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup427: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup428: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3157,7 +3167,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup428: ethereum::header::Header
+ * Lookup429: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3177,23 +3187,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup429: ethereum_types::hash::H64
+ * Lookup430: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup434: pallet_ethereum::pallet::Error<T>
+ * Lookup435: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup435: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup436: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup436: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup437: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3203,25 +3213,25 @@
}
},
/**
- * Lookup437: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup438: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup439: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup440: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor']
},
/**
- * Lookup440: pallet_evm_migration::pallet::Error<T>
+ * Lookup441: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup442: sp_runtime::MultiSignature
+ * Lookup443: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3231,43 +3241,43 @@
}
},
/**
- * Lookup443: sp_core::ed25519::Signature
+ * Lookup444: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup445: sp_core::sr25519::Signature
+ * Lookup446: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup446: sp_core::ecdsa::Signature
+ * Lookup447: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup449: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup450: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup450: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup451: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup453: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup454: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup454: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup455: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup455: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup456: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup456: opal_runtime::Runtime
+ * Lookup457: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup457: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup458: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -106,6 +106,7 @@
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
PalletEvmContractHelpersError: PalletEvmContractHelpersError;
+ PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
PalletEvmError: PalletEvmError;
PalletEvmEvent: PalletEvmEvent;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1303 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1303 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1304 }1304 }13051306 /** @name PalletEvmContractHelpersEvent (117) */1307 interface PalletEvmContractHelpersEvent extends Enum {1308 readonly isContractSponsorSet: boolean;1309 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1310 readonly isContractSponsorshipConfirmed: boolean;1311 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1312 readonly isContractSponsorRemoved: boolean;1313 readonly asContractSponsorRemoved: H160;1314 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1315 }130513161306 /** @name FrameSystemPhase (117) */1317 /** @name FrameSystemPhase (118) */1307 interface FrameSystemPhase extends Enum {1318 interface FrameSystemPhase extends Enum {1308 readonly isApplyExtrinsic: boolean;1319 readonly isApplyExtrinsic: boolean;1309 readonly asApplyExtrinsic: u32;1320 readonly asApplyExtrinsic: u32;1312 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1323 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1313 }1324 }131413251315 /** @name FrameSystemLastRuntimeUpgradeInfo (119) */1326 /** @name FrameSystemLastRuntimeUpgradeInfo (120) */1316 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1327 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1317 readonly specVersion: Compact<u32>;1328 readonly specVersion: Compact<u32>;1318 readonly specName: Text;1329 readonly specName: Text;1319 }1330 }132013311321 /** @name FrameSystemCall (120) */1332 /** @name FrameSystemCall (121) */1322 interface FrameSystemCall extends Enum {1333 interface FrameSystemCall extends Enum {1323 readonly isFillBlock: boolean;1334 readonly isFillBlock: boolean;1324 readonly asFillBlock: {1335 readonly asFillBlock: {1360 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1371 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1361 }1372 }136213731363 /** @name FrameSystemLimitsBlockWeights (125) */1374 /** @name FrameSystemLimitsBlockWeights (126) */1364 interface FrameSystemLimitsBlockWeights extends Struct {1375 interface FrameSystemLimitsBlockWeights extends Struct {1365 readonly baseBlock: u64;1376 readonly baseBlock: u64;1366 readonly maxBlock: u64;1377 readonly maxBlock: u64;1367 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1378 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1368 }1379 }136913801370 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (126) */1381 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (127) */1371 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1382 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1372 readonly normal: FrameSystemLimitsWeightsPerClass;1383 readonly normal: FrameSystemLimitsWeightsPerClass;1373 readonly operational: FrameSystemLimitsWeightsPerClass;1384 readonly operational: FrameSystemLimitsWeightsPerClass;1374 readonly mandatory: FrameSystemLimitsWeightsPerClass;1385 readonly mandatory: FrameSystemLimitsWeightsPerClass;1375 }1386 }137613871377 /** @name FrameSystemLimitsWeightsPerClass (127) */1388 /** @name FrameSystemLimitsWeightsPerClass (128) */1378 interface FrameSystemLimitsWeightsPerClass extends Struct {1389 interface FrameSystemLimitsWeightsPerClass extends Struct {1379 readonly baseExtrinsic: u64;1390 readonly baseExtrinsic: u64;1380 readonly maxExtrinsic: Option<u64>;1391 readonly maxExtrinsic: Option<u64>;1381 readonly maxTotal: Option<u64>;1392 readonly maxTotal: Option<u64>;1382 readonly reserved: Option<u64>;1393 readonly reserved: Option<u64>;1383 }1394 }138413951385 /** @name FrameSystemLimitsBlockLength (129) */1396 /** @name FrameSystemLimitsBlockLength (130) */1386 interface FrameSystemLimitsBlockLength extends Struct {1397 interface FrameSystemLimitsBlockLength extends Struct {1387 readonly max: FrameSupportWeightsPerDispatchClassU32;1398 readonly max: FrameSupportWeightsPerDispatchClassU32;1388 }1399 }138914001390 /** @name FrameSupportWeightsPerDispatchClassU32 (130) */1401 /** @name FrameSupportWeightsPerDispatchClassU32 (131) */1391 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1402 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1392 readonly normal: u32;1403 readonly normal: u32;1393 readonly operational: u32;1404 readonly operational: u32;1394 readonly mandatory: u32;1405 readonly mandatory: u32;1395 }1406 }139614071397 /** @name FrameSupportWeightsRuntimeDbWeight (131) */1408 /** @name FrameSupportWeightsRuntimeDbWeight (132) */1398 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1409 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1399 readonly read: u64;1410 readonly read: u64;1400 readonly write: u64;1411 readonly write: u64;1401 }1412 }140214131403 /** @name SpVersionRuntimeVersion (132) */1414 /** @name SpVersionRuntimeVersion (133) */1404 interface SpVersionRuntimeVersion extends Struct {1415 interface SpVersionRuntimeVersion extends Struct {1405 readonly specName: Text;1416 readonly specName: Text;1406 readonly implName: Text;1417 readonly implName: Text;1412 readonly stateVersion: u8;1423 readonly stateVersion: u8;1413 }1424 }141414251415 /** @name FrameSystemError (137) */1426 /** @name FrameSystemError (138) */1416 interface FrameSystemError extends Enum {1427 interface FrameSystemError extends Enum {1417 readonly isInvalidSpecName: boolean;1428 readonly isInvalidSpecName: boolean;1418 readonly isSpecVersionNeedsToIncrease: boolean;1429 readonly isSpecVersionNeedsToIncrease: boolean;1423 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1434 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1424 }1435 }142514361426 /** @name PolkadotPrimitivesV2PersistedValidationData (138) */1437 /** @name PolkadotPrimitivesV2PersistedValidationData (139) */1427 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1438 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1428 readonly parentHead: Bytes;1439 readonly parentHead: Bytes;1429 readonly relayParentNumber: u32;1440 readonly relayParentNumber: u32;1430 readonly relayParentStorageRoot: H256;1441 readonly relayParentStorageRoot: H256;1431 readonly maxPovSize: u32;1442 readonly maxPovSize: u32;1432 }1443 }143314441434 /** @name PolkadotPrimitivesV2UpgradeRestriction (141) */1445 /** @name PolkadotPrimitivesV2UpgradeRestriction (142) */1435 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1446 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1436 readonly isPresent: boolean;1447 readonly isPresent: boolean;1437 readonly type: 'Present';1448 readonly type: 'Present';1438 }1449 }143914501440 /** @name SpTrieStorageProof (142) */1451 /** @name SpTrieStorageProof (143) */1441 interface SpTrieStorageProof extends Struct {1452 interface SpTrieStorageProof extends Struct {1442 readonly trieNodes: BTreeSet<Bytes>;1453 readonly trieNodes: BTreeSet<Bytes>;1443 }1454 }144414551445 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (144) */1456 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (145) */1446 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1457 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1447 readonly dmqMqcHead: H256;1458 readonly dmqMqcHead: H256;1448 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1459 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1449 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1460 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1450 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1461 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1451 }1462 }145214631453 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (147) */1464 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (148) */1454 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1465 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1455 readonly maxCapacity: u32;1466 readonly maxCapacity: u32;1456 readonly maxTotalSize: u32;1467 readonly maxTotalSize: u32;1460 readonly mqcHead: Option<H256>;1471 readonly mqcHead: Option<H256>;1461 }1472 }146214731463 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (148) */1474 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (149) */1464 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1475 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1465 readonly maxCodeSize: u32;1476 readonly maxCodeSize: u32;1466 readonly maxHeadDataSize: u32;1477 readonly maxHeadDataSize: u32;1473 readonly validationUpgradeDelay: u32;1484 readonly validationUpgradeDelay: u32;1474 }1485 }147514861476 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (154) */1487 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (155) */1477 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1488 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1478 readonly recipient: u32;1489 readonly recipient: u32;1479 readonly data: Bytes;1490 readonly data: Bytes;1480 }1491 }148114921482 /** @name CumulusPalletParachainSystemCall (155) */1493 /** @name CumulusPalletParachainSystemCall (156) */1483 interface CumulusPalletParachainSystemCall extends Enum {1494 interface CumulusPalletParachainSystemCall extends Enum {1484 readonly isSetValidationData: boolean;1495 readonly isSetValidationData: boolean;1485 readonly asSetValidationData: {1496 readonly asSetValidationData: {1500 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1511 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1501 }1512 }150215131503 /** @name CumulusPrimitivesParachainInherentParachainInherentData (156) */1514 /** @name CumulusPrimitivesParachainInherentParachainInherentData (157) */1504 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1515 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1505 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1516 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1506 readonly relayChainState: SpTrieStorageProof;1517 readonly relayChainState: SpTrieStorageProof;1507 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1518 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1508 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1519 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1509 }1520 }151015211511 /** @name PolkadotCorePrimitivesInboundDownwardMessage (158) */1522 /** @name PolkadotCorePrimitivesInboundDownwardMessage (159) */1512 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1523 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1513 readonly sentAt: u32;1524 readonly sentAt: u32;1514 readonly msg: Bytes;1525 readonly msg: Bytes;1515 }1526 }151615271517 /** @name PolkadotCorePrimitivesInboundHrmpMessage (161) */1528 /** @name PolkadotCorePrimitivesInboundHrmpMessage (162) */1518 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1529 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1519 readonly sentAt: u32;1530 readonly sentAt: u32;1520 readonly data: Bytes;1531 readonly data: Bytes;1521 }1532 }152215331523 /** @name CumulusPalletParachainSystemError (164) */1534 /** @name CumulusPalletParachainSystemError (165) */1524 interface CumulusPalletParachainSystemError extends Enum {1535 interface CumulusPalletParachainSystemError extends Enum {1525 readonly isOverlappingUpgrades: boolean;1536 readonly isOverlappingUpgrades: boolean;1526 readonly isProhibitedByPolkadot: boolean;1537 readonly isProhibitedByPolkadot: boolean;1533 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1544 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1534 }1545 }153515461536 /** @name PalletBalancesBalanceLock (166) */1547 /** @name PalletBalancesBalanceLock (167) */1537 interface PalletBalancesBalanceLock extends Struct {1548 interface PalletBalancesBalanceLock extends Struct {1538 readonly id: U8aFixed;1549 readonly id: U8aFixed;1539 readonly amount: u128;1550 readonly amount: u128;1540 readonly reasons: PalletBalancesReasons;1551 readonly reasons: PalletBalancesReasons;1541 }1552 }154215531543 /** @name PalletBalancesReasons (167) */1554 /** @name PalletBalancesReasons (168) */1544 interface PalletBalancesReasons extends Enum {1555 interface PalletBalancesReasons extends Enum {1545 readonly isFee: boolean;1556 readonly isFee: boolean;1546 readonly isMisc: boolean;1557 readonly isMisc: boolean;1547 readonly isAll: boolean;1558 readonly isAll: boolean;1548 readonly type: 'Fee' | 'Misc' | 'All';1559 readonly type: 'Fee' | 'Misc' | 'All';1549 }1560 }155015611551 /** @name PalletBalancesReserveData (170) */1562 /** @name PalletBalancesReserveData (171) */1552 interface PalletBalancesReserveData extends Struct {1563 interface PalletBalancesReserveData extends Struct {1553 readonly id: U8aFixed;1564 readonly id: U8aFixed;1554 readonly amount: u128;1565 readonly amount: u128;1555 }1566 }155615671557 /** @name PalletBalancesReleases (172) */1568 /** @name PalletBalancesReleases (173) */1558 interface PalletBalancesReleases extends Enum {1569 interface PalletBalancesReleases extends Enum {1559 readonly isV100: boolean;1570 readonly isV100: boolean;1560 readonly isV200: boolean;1571 readonly isV200: boolean;1561 readonly type: 'V100' | 'V200';1572 readonly type: 'V100' | 'V200';1562 }1573 }156315741564 /** @name PalletBalancesCall (173) */1575 /** @name PalletBalancesCall (174) */1565 interface PalletBalancesCall extends Enum {1576 interface PalletBalancesCall extends Enum {1566 readonly isTransfer: boolean;1577 readonly isTransfer: boolean;1567 readonly asTransfer: {1578 readonly asTransfer: {1598 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1609 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1599 }1610 }160016111601 /** @name PalletBalancesError (176) */1612 /** @name PalletBalancesError (177) */1602 interface PalletBalancesError extends Enum {1613 interface PalletBalancesError extends Enum {1603 readonly isVestingBalance: boolean;1614 readonly isVestingBalance: boolean;1604 readonly isLiquidityRestrictions: boolean;1615 readonly isLiquidityRestrictions: boolean;1611 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1622 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1612 }1623 }161316241614 /** @name PalletTimestampCall (178) */1625 /** @name PalletTimestampCall (179) */1615 interface PalletTimestampCall extends Enum {1626 interface PalletTimestampCall extends Enum {1616 readonly isSet: boolean;1627 readonly isSet: boolean;1617 readonly asSet: {1628 readonly asSet: {1620 readonly type: 'Set';1631 readonly type: 'Set';1621 }1632 }162216331623 /** @name PalletTransactionPaymentReleases (180) */1634 /** @name PalletTransactionPaymentReleases (181) */1624 interface PalletTransactionPaymentReleases extends Enum {1635 interface PalletTransactionPaymentReleases extends Enum {1625 readonly isV1Ancient: boolean;1636 readonly isV1Ancient: boolean;1626 readonly isV2: boolean;1637 readonly isV2: boolean;1627 readonly type: 'V1Ancient' | 'V2';1638 readonly type: 'V1Ancient' | 'V2';1628 }1639 }162916401630 /** @name PalletTreasuryProposal (181) */1641 /** @name PalletTreasuryProposal (182) */1631 interface PalletTreasuryProposal extends Struct {1642 interface PalletTreasuryProposal extends Struct {1632 readonly proposer: AccountId32;1643 readonly proposer: AccountId32;1633 readonly value: u128;1644 readonly value: u128;1634 readonly beneficiary: AccountId32;1645 readonly beneficiary: AccountId32;1635 readonly bond: u128;1646 readonly bond: u128;1636 }1647 }163716481638 /** @name PalletTreasuryCall (184) */1649 /** @name PalletTreasuryCall (185) */1639 interface PalletTreasuryCall extends Enum {1650 interface PalletTreasuryCall extends Enum {1640 readonly isProposeSpend: boolean;1651 readonly isProposeSpend: boolean;1641 readonly asProposeSpend: {1652 readonly asProposeSpend: {1662 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1673 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1663 }1674 }166416751665 /** @name FrameSupportPalletId (187) */1676 /** @name FrameSupportPalletId (188) */1666 interface FrameSupportPalletId extends U8aFixed {}1677 interface FrameSupportPalletId extends U8aFixed {}166716781668 /** @name PalletTreasuryError (188) */1679 /** @name PalletTreasuryError (189) */1669 interface PalletTreasuryError extends Enum {1680 interface PalletTreasuryError extends Enum {1670 readonly isInsufficientProposersBalance: boolean;1681 readonly isInsufficientProposersBalance: boolean;1671 readonly isInvalidIndex: boolean;1682 readonly isInvalidIndex: boolean;1675 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1686 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1676 }1687 }167716881678 /** @name PalletSudoCall (189) */1689 /** @name PalletSudoCall (190) */1679 interface PalletSudoCall extends Enum {1690 interface PalletSudoCall extends Enum {1680 readonly isSudo: boolean;1691 readonly isSudo: boolean;1681 readonly asSudo: {1692 readonly asSudo: {1698 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1709 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1699 }1710 }170017111701 /** @name OrmlVestingModuleCall (191) */1712 /** @name OrmlVestingModuleCall (192) */1702 interface OrmlVestingModuleCall extends Enum {1713 interface OrmlVestingModuleCall extends Enum {1703 readonly isClaim: boolean;1714 readonly isClaim: boolean;1704 readonly isVestedTransfer: boolean;1715 readonly isVestedTransfer: boolean;1718 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1729 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1719 }1730 }172017311721 /** @name CumulusPalletXcmpQueueCall (193) */1732 /** @name CumulusPalletXcmpQueueCall (194) */1722 interface CumulusPalletXcmpQueueCall extends Enum {1733 interface CumulusPalletXcmpQueueCall extends Enum {1723 readonly isServiceOverweight: boolean;1734 readonly isServiceOverweight: boolean;1724 readonly asServiceOverweight: {1735 readonly asServiceOverweight: {1754 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';1765 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';1755 }1766 }175617671757 /** @name PalletXcmCall (194) */1768 /** @name PalletXcmCall (195) */1758 interface PalletXcmCall extends Enum {1769 interface PalletXcmCall extends Enum {1759 readonly isSend: boolean;1770 readonly isSend: boolean;1760 readonly asSend: {1771 readonly asSend: {1816 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1827 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1817 }1828 }181818291819 /** @name XcmVersionedXcm (195) */1830 /** @name XcmVersionedXcm (196) */1820 interface XcmVersionedXcm extends Enum {1831 interface XcmVersionedXcm extends Enum {1821 readonly isV0: boolean;1832 readonly isV0: boolean;1822 readonly asV0: XcmV0Xcm;1833 readonly asV0: XcmV0Xcm;1827 readonly type: 'V0' | 'V1' | 'V2';1838 readonly type: 'V0' | 'V1' | 'V2';1828 }1839 }182918401830 /** @name XcmV0Xcm (196) */1841 /** @name XcmV0Xcm (197) */1831 interface XcmV0Xcm extends Enum {1842 interface XcmV0Xcm extends Enum {1832 readonly isWithdrawAsset: boolean;1843 readonly isWithdrawAsset: boolean;1833 readonly asWithdrawAsset: {1844 readonly asWithdrawAsset: {1890 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';1901 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';1891 }1902 }189219031893 /** @name XcmV0Order (198) */1904 /** @name XcmV0Order (199) */1894 interface XcmV0Order extends Enum {1905 interface XcmV0Order extends Enum {1895 readonly isNull: boolean;1906 readonly isNull: boolean;1896 readonly isDepositAsset: boolean;1907 readonly isDepositAsset: boolean;1938 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1949 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1939 }1950 }194019511941 /** @name XcmV0Response (200) */1952 /** @name XcmV0Response (201) */1942 interface XcmV0Response extends Enum {1953 interface XcmV0Response extends Enum {1943 readonly isAssets: boolean;1954 readonly isAssets: boolean;1944 readonly asAssets: Vec<XcmV0MultiAsset>;1955 readonly asAssets: Vec<XcmV0MultiAsset>;1945 readonly type: 'Assets';1956 readonly type: 'Assets';1946 }1957 }194719581948 /** @name XcmV1Xcm (201) */1959 /** @name XcmV1Xcm (202) */1949 interface XcmV1Xcm extends Enum {1960 interface XcmV1Xcm extends Enum {1950 readonly isWithdrawAsset: boolean;1961 readonly isWithdrawAsset: boolean;1951 readonly asWithdrawAsset: {1962 readonly asWithdrawAsset: {2014 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2025 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2015 }2026 }201620272017 /** @name XcmV1Order (203) */2028 /** @name XcmV1Order (204) */2018 interface XcmV1Order extends Enum {2029 interface XcmV1Order extends Enum {2019 readonly isNoop: boolean;2030 readonly isNoop: boolean;2020 readonly isDepositAsset: boolean;2031 readonly isDepositAsset: boolean;2064 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2075 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2065 }2076 }206620772067 /** @name XcmV1Response (205) */2078 /** @name XcmV1Response (206) */2068 interface XcmV1Response extends Enum {2079 interface XcmV1Response extends Enum {2069 readonly isAssets: boolean;2080 readonly isAssets: boolean;2070 readonly asAssets: XcmV1MultiassetMultiAssets;2081 readonly asAssets: XcmV1MultiassetMultiAssets;2073 readonly type: 'Assets' | 'Version';2084 readonly type: 'Assets' | 'Version';2074 }2085 }207520862076 /** @name CumulusPalletXcmCall (219) */2087 /** @name CumulusPalletXcmCall (220) */2077 type CumulusPalletXcmCall = Null;2088 type CumulusPalletXcmCall = Null;207820892079 /** @name CumulusPalletDmpQueueCall (220) */2090 /** @name CumulusPalletDmpQueueCall (221) */2080 interface CumulusPalletDmpQueueCall extends Enum {2091 interface CumulusPalletDmpQueueCall extends Enum {2081 readonly isServiceOverweight: boolean;2092 readonly isServiceOverweight: boolean;2082 readonly asServiceOverweight: {2093 readonly asServiceOverweight: {2086 readonly type: 'ServiceOverweight';2097 readonly type: 'ServiceOverweight';2087 }2098 }208820992089 /** @name PalletInflationCall (221) */2100 /** @name PalletInflationCall (222) */2090 interface PalletInflationCall extends Enum {2101 interface PalletInflationCall extends Enum {2091 readonly isStartInflation: boolean;2102 readonly isStartInflation: boolean;2092 readonly asStartInflation: {2103 readonly asStartInflation: {2095 readonly type: 'StartInflation';2106 readonly type: 'StartInflation';2096 }2107 }209721082098 /** @name PalletUniqueCall (222) */2109 /** @name PalletUniqueCall (223) */2099 interface PalletUniqueCall extends Enum {2110 interface PalletUniqueCall extends Enum {2100 readonly isCreateCollection: boolean;2111 readonly isCreateCollection: boolean;2101 readonly asCreateCollection: {2112 readonly asCreateCollection: {2253 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2264 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2254 }2265 }225522662256 /** @name UpDataStructsCollectionMode (227) */2267 /** @name UpDataStructsCollectionMode (228) */2257 interface UpDataStructsCollectionMode extends Enum {2268 interface UpDataStructsCollectionMode extends Enum {2258 readonly isNft: boolean;2269 readonly isNft: boolean;2259 readonly isFungible: boolean;2270 readonly isFungible: boolean;2262 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2273 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2263 }2274 }226422752265 /** @name UpDataStructsCreateCollectionData (228) */2276 /** @name UpDataStructsCreateCollectionData (229) */2266 interface UpDataStructsCreateCollectionData extends Struct {2277 interface UpDataStructsCreateCollectionData extends Struct {2267 readonly mode: UpDataStructsCollectionMode;2278 readonly mode: UpDataStructsCollectionMode;2268 readonly access: Option<UpDataStructsAccessMode>;2279 readonly access: Option<UpDataStructsAccessMode>;2276 readonly properties: Vec<UpDataStructsProperty>;2287 readonly properties: Vec<UpDataStructsProperty>;2277 }2288 }227822892279 /** @name UpDataStructsAccessMode (230) */2290 /** @name UpDataStructsAccessMode (231) */2280 interface UpDataStructsAccessMode extends Enum {2291 interface UpDataStructsAccessMode extends Enum {2281 readonly isNormal: boolean;2292 readonly isNormal: boolean;2282 readonly isAllowList: boolean;2293 readonly isAllowList: boolean;2283 readonly type: 'Normal' | 'AllowList';2294 readonly type: 'Normal' | 'AllowList';2284 }2295 }228522962286 /** @name UpDataStructsCollectionLimits (232) */2297 /** @name UpDataStructsCollectionLimits (233) */2287 interface UpDataStructsCollectionLimits extends Struct {2298 interface UpDataStructsCollectionLimits extends Struct {2288 readonly accountTokenOwnershipLimit: Option<u32>;2299 readonly accountTokenOwnershipLimit: Option<u32>;2289 readonly sponsoredDataSize: Option<u32>;2300 readonly sponsoredDataSize: Option<u32>;2296 readonly transfersEnabled: Option<bool>;2307 readonly transfersEnabled: Option<bool>;2297 }2308 }229823092299 /** @name UpDataStructsSponsoringRateLimit (234) */2310 /** @name UpDataStructsSponsoringRateLimit (235) */2300 interface UpDataStructsSponsoringRateLimit extends Enum {2311 interface UpDataStructsSponsoringRateLimit extends Enum {2301 readonly isSponsoringDisabled: boolean;2312 readonly isSponsoringDisabled: boolean;2302 readonly isBlocks: boolean;2313 readonly isBlocks: boolean;2303 readonly asBlocks: u32;2314 readonly asBlocks: u32;2304 readonly type: 'SponsoringDisabled' | 'Blocks';2315 readonly type: 'SponsoringDisabled' | 'Blocks';2305 }2316 }230623172307 /** @name UpDataStructsCollectionPermissions (237) */2318 /** @name UpDataStructsCollectionPermissions (238) */2308 interface UpDataStructsCollectionPermissions extends Struct {2319 interface UpDataStructsCollectionPermissions extends Struct {2309 readonly access: Option<UpDataStructsAccessMode>;2320 readonly access: Option<UpDataStructsAccessMode>;2310 readonly mintMode: Option<bool>;2321 readonly mintMode: Option<bool>;2311 readonly nesting: Option<UpDataStructsNestingPermissions>;2322 readonly nesting: Option<UpDataStructsNestingPermissions>;2312 }2323 }231323242314 /** @name UpDataStructsNestingPermissions (239) */2325 /** @name UpDataStructsNestingPermissions (240) */2315 interface UpDataStructsNestingPermissions extends Struct {2326 interface UpDataStructsNestingPermissions extends Struct {2316 readonly tokenOwner: bool;2327 readonly tokenOwner: bool;2317 readonly collectionAdmin: bool;2328 readonly collectionAdmin: bool;2318 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2329 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2319 }2330 }232023312321 /** @name UpDataStructsOwnerRestrictedSet (241) */2332 /** @name UpDataStructsOwnerRestrictedSet (242) */2322 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2333 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}232323342324 /** @name UpDataStructsPropertyKeyPermission (246) */2335 /** @name UpDataStructsPropertyKeyPermission (247) */2325 interface UpDataStructsPropertyKeyPermission extends Struct {2336 interface UpDataStructsPropertyKeyPermission extends Struct {2326 readonly key: Bytes;2337 readonly key: Bytes;2327 readonly permission: UpDataStructsPropertyPermission;2338 readonly permission: UpDataStructsPropertyPermission;2328 }2339 }232923402330 /** @name UpDataStructsPropertyPermission (247) */2341 /** @name UpDataStructsPropertyPermission (248) */2331 interface UpDataStructsPropertyPermission extends Struct {2342 interface UpDataStructsPropertyPermission extends Struct {2332 readonly mutable: bool;2343 readonly mutable: bool;2333 readonly collectionAdmin: bool;2344 readonly collectionAdmin: bool;2334 readonly tokenOwner: bool;2345 readonly tokenOwner: bool;2335 }2346 }233623472337 /** @name UpDataStructsProperty (250) */2348 /** @name UpDataStructsProperty (251) */2338 interface UpDataStructsProperty extends Struct {2349 interface UpDataStructsProperty extends Struct {2339 readonly key: Bytes;2350 readonly key: Bytes;2340 readonly value: Bytes;2351 readonly value: Bytes;2341 }2352 }234223532343 /** @name UpDataStructsCreateItemData (253) */2354 /** @name UpDataStructsCreateItemData (254) */2344 interface UpDataStructsCreateItemData extends Enum {2355 interface UpDataStructsCreateItemData extends Enum {2345 readonly isNft: boolean;2356 readonly isNft: boolean;2346 readonly asNft: UpDataStructsCreateNftData;2357 readonly asNft: UpDataStructsCreateNftData;2351 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2362 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2352 }2363 }235323642354 /** @name UpDataStructsCreateNftData (254) */2365 /** @name UpDataStructsCreateNftData (255) */2355 interface UpDataStructsCreateNftData extends Struct {2366 interface UpDataStructsCreateNftData extends Struct {2356 readonly properties: Vec<UpDataStructsProperty>;2367 readonly properties: Vec<UpDataStructsProperty>;2357 }2368 }235823692359 /** @name UpDataStructsCreateFungibleData (255) */2370 /** @name UpDataStructsCreateFungibleData (256) */2360 interface UpDataStructsCreateFungibleData extends Struct {2371 interface UpDataStructsCreateFungibleData extends Struct {2361 readonly value: u128;2372 readonly value: u128;2362 }2373 }236323742364 /** @name UpDataStructsCreateReFungibleData (256) */2375 /** @name UpDataStructsCreateReFungibleData (257) */2365 interface UpDataStructsCreateReFungibleData extends Struct {2376 interface UpDataStructsCreateReFungibleData extends Struct {2366 readonly pieces: u128;2377 readonly pieces: u128;2367 readonly properties: Vec<UpDataStructsProperty>;2378 readonly properties: Vec<UpDataStructsProperty>;2368 }2379 }236923802370 /** @name UpDataStructsCreateItemExData (259) */2381 /** @name UpDataStructsCreateItemExData (260) */2371 interface UpDataStructsCreateItemExData extends Enum {2382 interface UpDataStructsCreateItemExData extends Enum {2372 readonly isNft: boolean;2383 readonly isNft: boolean;2373 readonly asNft: Vec<UpDataStructsCreateNftExData>;2384 readonly asNft: Vec<UpDataStructsCreateNftExData>;2380 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2391 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2381 }2392 }238223932383 /** @name UpDataStructsCreateNftExData (261) */2394 /** @name UpDataStructsCreateNftExData (262) */2384 interface UpDataStructsCreateNftExData extends Struct {2395 interface UpDataStructsCreateNftExData extends Struct {2385 readonly properties: Vec<UpDataStructsProperty>;2396 readonly properties: Vec<UpDataStructsProperty>;2386 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2397 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2387 }2398 }238823992389 /** @name UpDataStructsCreateRefungibleExSingleOwner (268) */2400 /** @name UpDataStructsCreateRefungibleExSingleOwner (269) */2390 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2401 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2391 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2402 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2392 readonly pieces: u128;2403 readonly pieces: u128;2393 readonly properties: Vec<UpDataStructsProperty>;2404 readonly properties: Vec<UpDataStructsProperty>;2394 }2405 }239524062396 /** @name UpDataStructsCreateRefungibleExMultipleOwners (270) */2407 /** @name UpDataStructsCreateRefungibleExMultipleOwners (271) */2397 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2408 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2398 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2409 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2399 readonly properties: Vec<UpDataStructsProperty>;2410 readonly properties: Vec<UpDataStructsProperty>;2400 }2411 }240124122402 /** @name PalletUniqueSchedulerCall (271) */2413 /** @name PalletUniqueSchedulerCall (272) */2403 interface PalletUniqueSchedulerCall extends Enum {2414 interface PalletUniqueSchedulerCall extends Enum {2404 readonly isScheduleNamed: boolean;2415 readonly isScheduleNamed: boolean;2405 readonly asScheduleNamed: {2416 readonly asScheduleNamed: {2424 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2435 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2425 }2436 }242624372427 /** @name FrameSupportScheduleMaybeHashed (273) */2438 /** @name FrameSupportScheduleMaybeHashed (274) */2428 interface FrameSupportScheduleMaybeHashed extends Enum {2439 interface FrameSupportScheduleMaybeHashed extends Enum {2429 readonly isValue: boolean;2440 readonly isValue: boolean;2430 readonly asValue: Call;2441 readonly asValue: Call;2433 readonly type: 'Value' | 'Hash';2444 readonly type: 'Value' | 'Hash';2434 }2445 }243524462436 /** @name PalletConfigurationCall (274) */2447 /** @name PalletConfigurationCall (275) */2437 interface PalletConfigurationCall extends Enum {2448 interface PalletConfigurationCall extends Enum {2438 readonly isSetWeightToFeeCoefficientOverride: boolean;2449 readonly isSetWeightToFeeCoefficientOverride: boolean;2439 readonly asSetWeightToFeeCoefficientOverride: {2450 readonly asSetWeightToFeeCoefficientOverride: {2446 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2457 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2447 }2458 }244824592449 /** @name PalletTemplateTransactionPaymentCall (275) */2460 /** @name PalletTemplateTransactionPaymentCall (276) */2450 type PalletTemplateTransactionPaymentCall = Null;2461 type PalletTemplateTransactionPaymentCall = Null;245124622452 /** @name PalletStructureCall (276) */2463 /** @name PalletStructureCall (277) */2453 type PalletStructureCall = Null;2464 type PalletStructureCall = Null;245424652455 /** @name PalletRmrkCoreCall (277) */2466 /** @name PalletRmrkCoreCall (278) */2456 interface PalletRmrkCoreCall extends Enum {2467 interface PalletRmrkCoreCall extends Enum {2457 readonly isCreateCollection: boolean;2468 readonly isCreateCollection: boolean;2458 readonly asCreateCollection: {2469 readonly asCreateCollection: {2558 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2569 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2559 }2570 }256025712561 /** @name RmrkTraitsResourceResourceTypes (283) */2572 /** @name RmrkTraitsResourceResourceTypes (284) */2562 interface RmrkTraitsResourceResourceTypes extends Enum {2573 interface RmrkTraitsResourceResourceTypes extends Enum {2563 readonly isBasic: boolean;2574 readonly isBasic: boolean;2564 readonly asBasic: RmrkTraitsResourceBasicResource;2575 readonly asBasic: RmrkTraitsResourceBasicResource;2569 readonly type: 'Basic' | 'Composable' | 'Slot';2580 readonly type: 'Basic' | 'Composable' | 'Slot';2570 }2581 }257125822572 /** @name RmrkTraitsResourceBasicResource (285) */2583 /** @name RmrkTraitsResourceBasicResource (286) */2573 interface RmrkTraitsResourceBasicResource extends Struct {2584 interface RmrkTraitsResourceBasicResource extends Struct {2574 readonly src: Option<Bytes>;2585 readonly src: Option<Bytes>;2575 readonly metadata: Option<Bytes>;2586 readonly metadata: Option<Bytes>;2576 readonly license: Option<Bytes>;2587 readonly license: Option<Bytes>;2577 readonly thumb: Option<Bytes>;2588 readonly thumb: Option<Bytes>;2578 }2589 }257925902580 /** @name RmrkTraitsResourceComposableResource (287) */2591 /** @name RmrkTraitsResourceComposableResource (288) */2581 interface RmrkTraitsResourceComposableResource extends Struct {2592 interface RmrkTraitsResourceComposableResource extends Struct {2582 readonly parts: Vec<u32>;2593 readonly parts: Vec<u32>;2583 readonly base: u32;2594 readonly base: u32;2587 readonly thumb: Option<Bytes>;2598 readonly thumb: Option<Bytes>;2588 }2599 }258926002590 /** @name RmrkTraitsResourceSlotResource (288) */2601 /** @name RmrkTraitsResourceSlotResource (289) */2591 interface RmrkTraitsResourceSlotResource extends Struct {2602 interface RmrkTraitsResourceSlotResource extends Struct {2592 readonly base: u32;2603 readonly base: u32;2593 readonly src: Option<Bytes>;2604 readonly src: Option<Bytes>;2597 readonly thumb: Option<Bytes>;2608 readonly thumb: Option<Bytes>;2598 }2609 }259926102600 /** @name PalletRmrkEquipCall (291) */2611 /** @name PalletRmrkEquipCall (292) */2601 interface PalletRmrkEquipCall extends Enum {2612 interface PalletRmrkEquipCall extends Enum {2602 readonly isCreateBase: boolean;2613 readonly isCreateBase: boolean;2603 readonly asCreateBase: {2614 readonly asCreateBase: {2619 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2630 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2620 }2631 }262126322622 /** @name RmrkTraitsPartPartType (294) */2633 /** @name RmrkTraitsPartPartType (295) */2623 interface RmrkTraitsPartPartType extends Enum {2634 interface RmrkTraitsPartPartType extends Enum {2624 readonly isFixedPart: boolean;2635 readonly isFixedPart: boolean;2625 readonly asFixedPart: RmrkTraitsPartFixedPart;2636 readonly asFixedPart: RmrkTraitsPartFixedPart;2628 readonly type: 'FixedPart' | 'SlotPart';2639 readonly type: 'FixedPart' | 'SlotPart';2629 }2640 }263026412631 /** @name RmrkTraitsPartFixedPart (296) */2642 /** @name RmrkTraitsPartFixedPart (297) */2632 interface RmrkTraitsPartFixedPart extends Struct {2643 interface RmrkTraitsPartFixedPart extends Struct {2633 readonly id: u32;2644 readonly id: u32;2634 readonly z: u32;2645 readonly z: u32;2635 readonly src: Bytes;2646 readonly src: Bytes;2636 }2647 }263726482638 /** @name RmrkTraitsPartSlotPart (297) */2649 /** @name RmrkTraitsPartSlotPart (298) */2639 interface RmrkTraitsPartSlotPart extends Struct {2650 interface RmrkTraitsPartSlotPart extends Struct {2640 readonly id: u32;2651 readonly id: u32;2641 readonly equippable: RmrkTraitsPartEquippableList;2652 readonly equippable: RmrkTraitsPartEquippableList;2642 readonly src: Bytes;2653 readonly src: Bytes;2643 readonly z: u32;2654 readonly z: u32;2644 }2655 }264526562646 /** @name RmrkTraitsPartEquippableList (298) */2657 /** @name RmrkTraitsPartEquippableList (299) */2647 interface RmrkTraitsPartEquippableList extends Enum {2658 interface RmrkTraitsPartEquippableList extends Enum {2648 readonly isAll: boolean;2659 readonly isAll: boolean;2649 readonly isEmpty: boolean;2660 readonly isEmpty: boolean;2652 readonly type: 'All' | 'Empty' | 'Custom';2663 readonly type: 'All' | 'Empty' | 'Custom';2653 }2664 }265426652655 /** @name RmrkTraitsTheme (300) */2666 /** @name RmrkTraitsTheme (301) */2656 interface RmrkTraitsTheme extends Struct {2667 interface RmrkTraitsTheme extends Struct {2657 readonly name: Bytes;2668 readonly name: Bytes;2658 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2669 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2659 readonly inherit: bool;2670 readonly inherit: bool;2660 }2671 }266126722662 /** @name RmrkTraitsThemeThemeProperty (302) */2673 /** @name RmrkTraitsThemeThemeProperty (303) */2663 interface RmrkTraitsThemeThemeProperty extends Struct {2674 interface RmrkTraitsThemeThemeProperty extends Struct {2664 readonly key: Bytes;2675 readonly key: Bytes;2665 readonly value: Bytes;2676 readonly value: Bytes;2666 }2677 }266726782668 /** @name PalletAppPromotionCall (304) */2679 /** @name PalletAppPromotionCall (305) */2669 interface PalletAppPromotionCall extends Enum {2680 interface PalletAppPromotionCall extends Enum {2670 readonly isSetAdminAddress: boolean;2681 readonly isSetAdminAddress: boolean;2671 readonly asSetAdminAddress: {2682 readonly asSetAdminAddress: {2699 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorConract' | 'StopSponsoringContract' | 'PayoutStakers';2710 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorConract' | 'StopSponsoringContract' | 'PayoutStakers';2700 }2711 }270127122702 /** @name PalletEvmCall (306) */2713 /** @name PalletEvmCall (307) */2703 interface PalletEvmCall extends Enum {2714 interface PalletEvmCall extends Enum {2704 readonly isWithdraw: boolean;2715 readonly isWithdraw: boolean;2705 readonly asWithdraw: {2716 readonly asWithdraw: {2744 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2755 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2745 }2756 }274627572747 /** @name PalletEthereumCall (310) */2758 /** @name PalletEthereumCall (311) */2748 interface PalletEthereumCall extends Enum {2759 interface PalletEthereumCall extends Enum {2749 readonly isTransact: boolean;2760 readonly isTransact: boolean;2750 readonly asTransact: {2761 readonly asTransact: {2753 readonly type: 'Transact';2764 readonly type: 'Transact';2754 }2765 }275527662756 /** @name EthereumTransactionTransactionV2 (311) */2767 /** @name EthereumTransactionTransactionV2 (312) */2757 interface EthereumTransactionTransactionV2 extends Enum {2768 interface EthereumTransactionTransactionV2 extends Enum {2758 readonly isLegacy: boolean;2769 readonly isLegacy: boolean;2759 readonly asLegacy: EthereumTransactionLegacyTransaction;2770 readonly asLegacy: EthereumTransactionLegacyTransaction;2764 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2775 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2765 }2776 }276627772767 /** @name EthereumTransactionLegacyTransaction (312) */2778 /** @name EthereumTransactionLegacyTransaction (313) */2768 interface EthereumTransactionLegacyTransaction extends Struct {2779 interface EthereumTransactionLegacyTransaction extends Struct {2769 readonly nonce: U256;2780 readonly nonce: U256;2770 readonly gasPrice: U256;2781 readonly gasPrice: U256;2775 readonly signature: EthereumTransactionTransactionSignature;2786 readonly signature: EthereumTransactionTransactionSignature;2776 }2787 }277727882778 /** @name EthereumTransactionTransactionAction (313) */2789 /** @name EthereumTransactionTransactionAction (314) */2779 interface EthereumTransactionTransactionAction extends Enum {2790 interface EthereumTransactionTransactionAction extends Enum {2780 readonly isCall: boolean;2791 readonly isCall: boolean;2781 readonly asCall: H160;2792 readonly asCall: H160;2782 readonly isCreate: boolean;2793 readonly isCreate: boolean;2783 readonly type: 'Call' | 'Create';2794 readonly type: 'Call' | 'Create';2784 }2795 }278527962786 /** @name EthereumTransactionTransactionSignature (314) */2797 /** @name EthereumTransactionTransactionSignature (315) */2787 interface EthereumTransactionTransactionSignature extends Struct {2798 interface EthereumTransactionTransactionSignature extends Struct {2788 readonly v: u64;2799 readonly v: u64;2789 readonly r: H256;2800 readonly r: H256;2790 readonly s: H256;2801 readonly s: H256;2791 }2802 }279228032793 /** @name EthereumTransactionEip2930Transaction (316) */2804 /** @name EthereumTransactionEip2930Transaction (317) */2794 interface EthereumTransactionEip2930Transaction extends Struct {2805 interface EthereumTransactionEip2930Transaction extends Struct {2795 readonly chainId: u64;2806 readonly chainId: u64;2796 readonly nonce: U256;2807 readonly nonce: U256;2805 readonly s: H256;2816 readonly s: H256;2806 }2817 }280728182808 /** @name EthereumTransactionAccessListItem (318) */2819 /** @name EthereumTransactionAccessListItem (319) */2809 interface EthereumTransactionAccessListItem extends Struct {2820 interface EthereumTransactionAccessListItem extends Struct {2810 readonly address: H160;2821 readonly address: H160;2811 readonly storageKeys: Vec<H256>;2822 readonly storageKeys: Vec<H256>;2812 }2823 }281328242814 /** @name EthereumTransactionEip1559Transaction (319) */2825 /** @name EthereumTransactionEip1559Transaction (320) */2815 interface EthereumTransactionEip1559Transaction extends Struct {2826 interface EthereumTransactionEip1559Transaction extends Struct {2816 readonly chainId: u64;2827 readonly chainId: u64;2817 readonly nonce: U256;2828 readonly nonce: U256;2827 readonly s: H256;2838 readonly s: H256;2828 }2839 }282928402830 /** @name PalletEvmMigrationCall (320) */2841 /** @name PalletEvmMigrationCall (321) */2831 interface PalletEvmMigrationCall extends Enum {2842 interface PalletEvmMigrationCall extends Enum {2832 readonly isBegin: boolean;2843 readonly isBegin: boolean;2833 readonly asBegin: {2844 readonly asBegin: {2846 readonly type: 'Begin' | 'SetData' | 'Finish';2857 readonly type: 'Begin' | 'SetData' | 'Finish';2847 }2858 }284828592849 /** @name PalletSudoError (323) */2860 /** @name PalletSudoError (324) */2850 interface PalletSudoError extends Enum {2861 interface PalletSudoError extends Enum {2851 readonly isRequireSudo: boolean;2862 readonly isRequireSudo: boolean;2852 readonly type: 'RequireSudo';2863 readonly type: 'RequireSudo';2853 }2864 }285428652855 /** @name OrmlVestingModuleError (325) */2866 /** @name OrmlVestingModuleError (326) */2856 interface OrmlVestingModuleError extends Enum {2867 interface OrmlVestingModuleError extends Enum {2857 readonly isZeroVestingPeriod: boolean;2868 readonly isZeroVestingPeriod: boolean;2858 readonly isZeroVestingPeriodCount: boolean;2869 readonly isZeroVestingPeriodCount: boolean;2863 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2874 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2864 }2875 }286528762866 /** @name CumulusPalletXcmpQueueInboundChannelDetails (327) */2877 /** @name CumulusPalletXcmpQueueInboundChannelDetails (328) */2867 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2878 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2868 readonly sender: u32;2879 readonly sender: u32;2869 readonly state: CumulusPalletXcmpQueueInboundState;2880 readonly state: CumulusPalletXcmpQueueInboundState;2870 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2881 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2871 }2882 }287228832873 /** @name CumulusPalletXcmpQueueInboundState (328) */2884 /** @name CumulusPalletXcmpQueueInboundState (329) */2874 interface CumulusPalletXcmpQueueInboundState extends Enum {2885 interface CumulusPalletXcmpQueueInboundState extends Enum {2875 readonly isOk: boolean;2886 readonly isOk: boolean;2876 readonly isSuspended: boolean;2887 readonly isSuspended: boolean;2877 readonly type: 'Ok' | 'Suspended';2888 readonly type: 'Ok' | 'Suspended';2878 }2889 }287928902880 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (331) */2891 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (332) */2881 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2892 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2882 readonly isConcatenatedVersionedXcm: boolean;2893 readonly isConcatenatedVersionedXcm: boolean;2883 readonly isConcatenatedEncodedBlob: boolean;2894 readonly isConcatenatedEncodedBlob: boolean;2884 readonly isSignals: boolean;2895 readonly isSignals: boolean;2885 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2896 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2886 }2897 }288728982888 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (334) */2899 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (335) */2889 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2900 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2890 readonly recipient: u32;2901 readonly recipient: u32;2891 readonly state: CumulusPalletXcmpQueueOutboundState;2902 readonly state: CumulusPalletXcmpQueueOutboundState;2894 readonly lastIndex: u16;2905 readonly lastIndex: u16;2895 }2906 }289629072897 /** @name CumulusPalletXcmpQueueOutboundState (335) */2908 /** @name CumulusPalletXcmpQueueOutboundState (336) */2898 interface CumulusPalletXcmpQueueOutboundState extends Enum {2909 interface CumulusPalletXcmpQueueOutboundState extends Enum {2899 readonly isOk: boolean;2910 readonly isOk: boolean;2900 readonly isSuspended: boolean;2911 readonly isSuspended: boolean;2901 readonly type: 'Ok' | 'Suspended';2912 readonly type: 'Ok' | 'Suspended';2902 }2913 }290329142904 /** @name CumulusPalletXcmpQueueQueueConfigData (337) */2915 /** @name CumulusPalletXcmpQueueQueueConfigData (338) */2905 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2916 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2906 readonly suspendThreshold: u32;2917 readonly suspendThreshold: u32;2907 readonly dropThreshold: u32;2918 readonly dropThreshold: u32;2911 readonly xcmpMaxIndividualWeight: u64;2922 readonly xcmpMaxIndividualWeight: u64;2912 }2923 }291329242914 /** @name CumulusPalletXcmpQueueError (339) */2925 /** @name CumulusPalletXcmpQueueError (340) */2915 interface CumulusPalletXcmpQueueError extends Enum {2926 interface CumulusPalletXcmpQueueError extends Enum {2916 readonly isFailedToSend: boolean;2927 readonly isFailedToSend: boolean;2917 readonly isBadXcmOrigin: boolean;2928 readonly isBadXcmOrigin: boolean;2921 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2932 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2922 }2933 }292329342924 /** @name PalletXcmError (340) */2935 /** @name PalletXcmError (341) */2925 interface PalletXcmError extends Enum {2936 interface PalletXcmError extends Enum {2926 readonly isUnreachable: boolean;2937 readonly isUnreachable: boolean;2927 readonly isSendFailure: boolean;2938 readonly isSendFailure: boolean;2939 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2950 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2940 }2951 }294129522942 /** @name CumulusPalletXcmError (341) */2953 /** @name CumulusPalletXcmError (342) */2943 type CumulusPalletXcmError = Null;2954 type CumulusPalletXcmError = Null;294429552945 /** @name CumulusPalletDmpQueueConfigData (342) */2956 /** @name CumulusPalletDmpQueueConfigData (343) */2946 interface CumulusPalletDmpQueueConfigData extends Struct {2957 interface CumulusPalletDmpQueueConfigData extends Struct {2947 readonly maxIndividual: u64;2958 readonly maxIndividual: u64;2948 }2959 }294929602950 /** @name CumulusPalletDmpQueuePageIndexData (343) */2961 /** @name CumulusPalletDmpQueuePageIndexData (344) */2951 interface CumulusPalletDmpQueuePageIndexData extends Struct {2962 interface CumulusPalletDmpQueuePageIndexData extends Struct {2952 readonly beginUsed: u32;2963 readonly beginUsed: u32;2953 readonly endUsed: u32;2964 readonly endUsed: u32;2954 readonly overweightCount: u64;2965 readonly overweightCount: u64;2955 }2966 }295629672957 /** @name CumulusPalletDmpQueueError (346) */2968 /** @name CumulusPalletDmpQueueError (347) */2958 interface CumulusPalletDmpQueueError extends Enum {2969 interface CumulusPalletDmpQueueError extends Enum {2959 readonly isUnknown: boolean;2970 readonly isUnknown: boolean;2960 readonly isOverLimit: boolean;2971 readonly isOverLimit: boolean;2961 readonly type: 'Unknown' | 'OverLimit';2972 readonly type: 'Unknown' | 'OverLimit';2962 }2973 }296329742964 /** @name PalletUniqueError (350) */2975 /** @name PalletUniqueError (351) */2965 interface PalletUniqueError extends Enum {2976 interface PalletUniqueError extends Enum {2966 readonly isCollectionDecimalPointLimitExceeded: boolean;2977 readonly isCollectionDecimalPointLimitExceeded: boolean;2967 readonly isConfirmUnsetSponsorFail: boolean;2978 readonly isConfirmUnsetSponsorFail: boolean;2970 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2981 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2971 }2982 }297229832973 /** @name PalletUniqueSchedulerScheduledV3 (353) */2984 /** @name PalletUniqueSchedulerScheduledV3 (354) */2974 interface PalletUniqueSchedulerScheduledV3 extends Struct {2985 interface PalletUniqueSchedulerScheduledV3 extends Struct {2975 readonly maybeId: Option<U8aFixed>;2986 readonly maybeId: Option<U8aFixed>;2976 readonly priority: u8;2987 readonly priority: u8;2979 readonly origin: OpalRuntimeOriginCaller;2990 readonly origin: OpalRuntimeOriginCaller;2980 }2991 }298129922982 /** @name OpalRuntimeOriginCaller (354) */2993 /** @name OpalRuntimeOriginCaller (355) */2983 interface OpalRuntimeOriginCaller extends Enum {2994 interface OpalRuntimeOriginCaller extends Enum {2984 readonly isSystem: boolean;2995 readonly isSystem: boolean;2985 readonly asSystem: FrameSupportDispatchRawOrigin;2996 readonly asSystem: FrameSupportDispatchRawOrigin;2993 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3004 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';2994 }3005 }299530062996 /** @name FrameSupportDispatchRawOrigin (355) */3007 /** @name FrameSupportDispatchRawOrigin (356) */2997 interface FrameSupportDispatchRawOrigin extends Enum {3008 interface FrameSupportDispatchRawOrigin extends Enum {2998 readonly isRoot: boolean;3009 readonly isRoot: boolean;2999 readonly isSigned: boolean;3010 readonly isSigned: boolean;3002 readonly type: 'Root' | 'Signed' | 'None';3013 readonly type: 'Root' | 'Signed' | 'None';3003 }3014 }300430153005 /** @name PalletXcmOrigin (356) */3016 /** @name PalletXcmOrigin (357) */3006 interface PalletXcmOrigin extends Enum {3017 interface PalletXcmOrigin extends Enum {3007 readonly isXcm: boolean;3018 readonly isXcm: boolean;3008 readonly asXcm: XcmV1MultiLocation;3019 readonly asXcm: XcmV1MultiLocation;3011 readonly type: 'Xcm' | 'Response';3022 readonly type: 'Xcm' | 'Response';3012 }3023 }301330243014 /** @name CumulusPalletXcmOrigin (357) */3025 /** @name CumulusPalletXcmOrigin (358) */3015 interface CumulusPalletXcmOrigin extends Enum {3026 interface CumulusPalletXcmOrigin extends Enum {3016 readonly isRelay: boolean;3027 readonly isRelay: boolean;3017 readonly isSiblingParachain: boolean;3028 readonly isSiblingParachain: boolean;3018 readonly asSiblingParachain: u32;3029 readonly asSiblingParachain: u32;3019 readonly type: 'Relay' | 'SiblingParachain';3030 readonly type: 'Relay' | 'SiblingParachain';3020 }3031 }302130323022 /** @name PalletEthereumRawOrigin (358) */3033 /** @name PalletEthereumRawOrigin (359) */3023 interface PalletEthereumRawOrigin extends Enum {3034 interface PalletEthereumRawOrigin extends Enum {3024 readonly isEthereumTransaction: boolean;3035 readonly isEthereumTransaction: boolean;3025 readonly asEthereumTransaction: H160;3036 readonly asEthereumTransaction: H160;3026 readonly type: 'EthereumTransaction';3037 readonly type: 'EthereumTransaction';3027 }3038 }302830393029 /** @name SpCoreVoid (359) */3040 /** @name SpCoreVoid (360) */3030 type SpCoreVoid = Null;3041 type SpCoreVoid = Null;303130423032 /** @name PalletUniqueSchedulerError (360) */3043 /** @name PalletUniqueSchedulerError (361) */3033 interface PalletUniqueSchedulerError extends Enum {3044 interface PalletUniqueSchedulerError extends Enum {3034 readonly isFailedToSchedule: boolean;3045 readonly isFailedToSchedule: boolean;3035 readonly isNotFound: boolean;3046 readonly isNotFound: boolean;3038 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3049 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3039 }3050 }304030513041 /** @name UpDataStructsCollection (361) */3052 /** @name UpDataStructsCollection (362) */3042 interface UpDataStructsCollection extends Struct {3053 interface UpDataStructsCollection extends Struct {3043 readonly owner: AccountId32;3054 readonly owner: AccountId32;3044 readonly mode: UpDataStructsCollectionMode;3055 readonly mode: UpDataStructsCollectionMode;3051 readonly externalCollection: bool;3062 readonly externalCollection: bool;3052 }3063 }305330643054 /** @name UpDataStructsSponsorshipStateAccountId32 (362) */3065 /** @name UpDataStructsSponsorshipStateAccountId32 (363) */3055 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3066 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3056 readonly isDisabled: boolean;3067 readonly isDisabled: boolean;3057 readonly isUnconfirmed: boolean;3068 readonly isUnconfirmed: boolean;3061 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3072 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3062 }3073 }306330743064 /** @name UpDataStructsProperties (363) */3075 /** @name UpDataStructsProperties (364) */3065 interface UpDataStructsProperties extends Struct {3076 interface UpDataStructsProperties extends Struct {3066 readonly map: UpDataStructsPropertiesMapBoundedVec;3077 readonly map: UpDataStructsPropertiesMapBoundedVec;3067 readonly consumedSpace: u32;3078 readonly consumedSpace: u32;3068 readonly spaceLimit: u32;3079 readonly spaceLimit: u32;3069 }3080 }307030813071 /** @name UpDataStructsPropertiesMapBoundedVec (364) */3082 /** @name UpDataStructsPropertiesMapBoundedVec (365) */3072 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3083 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}307330843074 /** @name UpDataStructsPropertiesMapPropertyPermission (369) */3085 /** @name UpDataStructsPropertiesMapPropertyPermission (370) */3075 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3086 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}307630873077 /** @name UpDataStructsCollectionStats (376) */3088 /** @name UpDataStructsCollectionStats (377) */3078 interface UpDataStructsCollectionStats extends Struct {3089 interface UpDataStructsCollectionStats extends Struct {3079 readonly created: u32;3090 readonly created: u32;3080 readonly destroyed: u32;3091 readonly destroyed: u32;3081 readonly alive: u32;3092 readonly alive: u32;3082 }3093 }308330943084 /** @name UpDataStructsTokenChild (377) */3095 /** @name UpDataStructsTokenChild (378) */3085 interface UpDataStructsTokenChild extends Struct {3096 interface UpDataStructsTokenChild extends Struct {3086 readonly token: u32;3097 readonly token: u32;3087 readonly collection: u32;3098 readonly collection: u32;3088 }3099 }308931003090 /** @name PhantomTypeUpDataStructs (378) */3101 /** @name PhantomTypeUpDataStructs (379) */3091 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3102 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}309231033093 /** @name UpDataStructsTokenData (380) */3104 /** @name UpDataStructsTokenData (381) */3094 interface UpDataStructsTokenData extends Struct {3105 interface UpDataStructsTokenData extends Struct {3095 readonly properties: Vec<UpDataStructsProperty>;3106 readonly properties: Vec<UpDataStructsProperty>;3096 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3107 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3097 readonly pieces: u128;3108 readonly pieces: u128;3098 }3109 }309931103100 /** @name UpDataStructsRpcCollection (382) */3111 /** @name UpDataStructsRpcCollection (383) */3101 interface UpDataStructsRpcCollection extends Struct {3112 interface UpDataStructsRpcCollection extends Struct {3102 readonly owner: AccountId32;3113 readonly owner: AccountId32;3103 readonly mode: UpDataStructsCollectionMode;3114 readonly mode: UpDataStructsCollectionMode;3112 readonly readOnly: bool;3123 readonly readOnly: bool;3113 }3124 }311431253115 /** @name RmrkTraitsCollectionCollectionInfo (383) */3126 /** @name RmrkTraitsCollectionCollectionInfo (384) */3116 interface RmrkTraitsCollectionCollectionInfo extends Struct {3127 interface RmrkTraitsCollectionCollectionInfo extends Struct {3117 readonly issuer: AccountId32;3128 readonly issuer: AccountId32;3118 readonly metadata: Bytes;3129 readonly metadata: Bytes;3121 readonly nftsCount: u32;3132 readonly nftsCount: u32;3122 }3133 }312331343124 /** @name RmrkTraitsNftNftInfo (384) */3135 /** @name RmrkTraitsNftNftInfo (385) */3125 interface RmrkTraitsNftNftInfo extends Struct {3136 interface RmrkTraitsNftNftInfo extends Struct {3126 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3137 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3127 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3138 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3130 readonly pending: bool;3141 readonly pending: bool;3131 }3142 }313231433133 /** @name RmrkTraitsNftRoyaltyInfo (386) */3144 /** @name RmrkTraitsNftRoyaltyInfo (387) */3134 interface RmrkTraitsNftRoyaltyInfo extends Struct {3145 interface RmrkTraitsNftRoyaltyInfo extends Struct {3135 readonly recipient: AccountId32;3146 readonly recipient: AccountId32;3136 readonly amount: Permill;3147 readonly amount: Permill;3137 }3148 }313831493139 /** @name RmrkTraitsResourceResourceInfo (387) */3150 /** @name RmrkTraitsResourceResourceInfo (388) */3140 interface RmrkTraitsResourceResourceInfo extends Struct {3151 interface RmrkTraitsResourceResourceInfo extends Struct {3141 readonly id: u32;3152 readonly id: u32;3142 readonly resource: RmrkTraitsResourceResourceTypes;3153 readonly resource: RmrkTraitsResourceResourceTypes;3143 readonly pending: bool;3154 readonly pending: bool;3144 readonly pendingRemoval: bool;3155 readonly pendingRemoval: bool;3145 }3156 }314631573147 /** @name RmrkTraitsPropertyPropertyInfo (388) */3158 /** @name RmrkTraitsPropertyPropertyInfo (389) */3148 interface RmrkTraitsPropertyPropertyInfo extends Struct {3159 interface RmrkTraitsPropertyPropertyInfo extends Struct {3149 readonly key: Bytes;3160 readonly key: Bytes;3150 readonly value: Bytes;3161 readonly value: Bytes;3151 }3162 }315231633153 /** @name RmrkTraitsBaseBaseInfo (389) */3164 /** @name RmrkTraitsBaseBaseInfo (390) */3154 interface RmrkTraitsBaseBaseInfo extends Struct {3165 interface RmrkTraitsBaseBaseInfo extends Struct {3155 readonly issuer: AccountId32;3166 readonly issuer: AccountId32;3156 readonly baseType: Bytes;3167 readonly baseType: Bytes;3157 readonly symbol: Bytes;3168 readonly symbol: Bytes;3158 }3169 }315931703160 /** @name RmrkTraitsNftNftChild (390) */3171 /** @name RmrkTraitsNftNftChild (391) */3161 interface RmrkTraitsNftNftChild extends Struct {3172 interface RmrkTraitsNftNftChild extends Struct {3162 readonly collectionId: u32;3173 readonly collectionId: u32;3163 readonly nftId: u32;3174 readonly nftId: u32;3164 }3175 }316531763166 /** @name PalletCommonError (392) */3177 /** @name PalletCommonError (393) */3167 interface PalletCommonError extends Enum {3178 interface PalletCommonError extends Enum {3168 readonly isCollectionNotFound: boolean;3179 readonly isCollectionNotFound: boolean;3169 readonly isMustBeTokenOwner: boolean;3180 readonly isMustBeTokenOwner: boolean;3202 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3213 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3203 }3214 }320432153205 /** @name PalletFungibleError (394) */3216 /** @name PalletFungibleError (395) */3206 interface PalletFungibleError extends Enum {3217 interface PalletFungibleError extends Enum {3207 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3218 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3208 readonly isFungibleItemsHaveNoId: boolean;3219 readonly isFungibleItemsHaveNoId: boolean;3212 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3223 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3213 }3224 }321432253215 /** @name PalletRefungibleItemData (395) */3226 /** @name PalletRefungibleItemData (396) */3216 interface PalletRefungibleItemData extends Struct {3227 interface PalletRefungibleItemData extends Struct {3217 readonly constData: Bytes;3228 readonly constData: Bytes;3218 }3229 }321932303220 /** @name PalletRefungibleError (400) */3231 /** @name PalletRefungibleError (401) */3221 interface PalletRefungibleError extends Enum {3232 interface PalletRefungibleError extends Enum {3222 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3233 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3223 readonly isWrongRefungiblePieces: boolean;3234 readonly isWrongRefungiblePieces: boolean;3227 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3238 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3228 }3239 }322932403230 /** @name PalletNonfungibleItemData (401) */3241 /** @name PalletNonfungibleItemData (402) */3231 interface PalletNonfungibleItemData extends Struct {3242 interface PalletNonfungibleItemData extends Struct {3232 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3243 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3233 }3244 }323432453235 /** @name UpDataStructsPropertyScope (403) */3246 /** @name UpDataStructsPropertyScope (404) */3236 interface UpDataStructsPropertyScope extends Enum {3247 interface UpDataStructsPropertyScope extends Enum {3237 readonly isNone: boolean;3248 readonly isNone: boolean;3238 readonly isRmrk: boolean;3249 readonly isRmrk: boolean;3239 readonly type: 'None' | 'Rmrk';3250 readonly type: 'None' | 'Rmrk';3240 }3251 }324132523242 /** @name PalletNonfungibleError (405) */3253 /** @name PalletNonfungibleError (406) */3243 interface PalletNonfungibleError extends Enum {3254 interface PalletNonfungibleError extends Enum {3244 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3255 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3245 readonly isNonfungibleItemsHaveNoAmount: boolean;3256 readonly isNonfungibleItemsHaveNoAmount: boolean;3246 readonly isCantBurnNftWithChildren: boolean;3257 readonly isCantBurnNftWithChildren: boolean;3247 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3258 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3248 }3259 }324932603250 /** @name PalletStructureError (406) */3261 /** @name PalletStructureError (407) */3251 interface PalletStructureError extends Enum {3262 interface PalletStructureError extends Enum {3252 readonly isOuroborosDetected: boolean;3263 readonly isOuroborosDetected: boolean;3253 readonly isDepthLimit: boolean;3264 readonly isDepthLimit: boolean;3256 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3267 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3257 }3268 }325832693259 /** @name PalletRmrkCoreError (407) */3270 /** @name PalletRmrkCoreError (408) */3260 interface PalletRmrkCoreError extends Enum {3271 interface PalletRmrkCoreError extends Enum {3261 readonly isCorruptedCollectionType: boolean;3272 readonly isCorruptedCollectionType: boolean;3262 readonly isRmrkPropertyKeyIsTooLong: boolean;3273 readonly isRmrkPropertyKeyIsTooLong: boolean;3280 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3291 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3281 }3292 }328232933283 /** @name PalletRmrkEquipError (409) */3294 /** @name PalletRmrkEquipError (410) */3284 interface PalletRmrkEquipError extends Enum {3295 interface PalletRmrkEquipError extends Enum {3285 readonly isPermissionError: boolean;3296 readonly isPermissionError: boolean;3286 readonly isNoAvailableBaseId: boolean;3297 readonly isNoAvailableBaseId: boolean;3292 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3303 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3293 }3304 }329433053295 /** @name PalletAppPromotionError (415) */3306 /** @name PalletAppPromotionError (416) */3296 interface PalletAppPromotionError extends Enum {3307 interface PalletAppPromotionError extends Enum {3297 readonly isAdminNotSet: boolean;3308 readonly isAdminNotSet: boolean;3298 readonly isNoPermission: boolean;3309 readonly isNoPermission: boolean;3302 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'InvalidArgument';3313 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'InvalidArgument';3303 }3314 }330433153305 /** @name PalletEvmError (418) */3316 /** @name PalletEvmError (419) */3306 interface PalletEvmError extends Enum {3317 interface PalletEvmError extends Enum {3307 readonly isBalanceLow: boolean;3318 readonly isBalanceLow: boolean;3308 readonly isFeeOverflow: boolean;3319 readonly isFeeOverflow: boolean;3313 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3324 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3314 }3325 }331533263316 /** @name FpRpcTransactionStatus (421) */3327 /** @name FpRpcTransactionStatus (422) */3317 interface FpRpcTransactionStatus extends Struct {3328 interface FpRpcTransactionStatus extends Struct {3318 readonly transactionHash: H256;3329 readonly transactionHash: H256;3319 readonly transactionIndex: u32;3330 readonly transactionIndex: u32;3324 readonly logsBloom: EthbloomBloom;3335 readonly logsBloom: EthbloomBloom;3325 }3336 }332633373327 /** @name EthbloomBloom (423) */3338 /** @name EthbloomBloom (424) */3328 interface EthbloomBloom extends U8aFixed {}3339 interface EthbloomBloom extends U8aFixed {}332933403330 /** @name EthereumReceiptReceiptV3 (425) */3341 /** @name EthereumReceiptReceiptV3 (426) */3331 interface EthereumReceiptReceiptV3 extends Enum {3342 interface EthereumReceiptReceiptV3 extends Enum {3332 readonly isLegacy: boolean;3343 readonly isLegacy: boolean;3333 readonly asLegacy: EthereumReceiptEip658ReceiptData;3344 readonly asLegacy: EthereumReceiptEip658ReceiptData;3338 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3349 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3339 }3350 }334033513341 /** @name EthereumReceiptEip658ReceiptData (426) */3352 /** @name EthereumReceiptEip658ReceiptData (427) */3342 interface EthereumReceiptEip658ReceiptData extends Struct {3353 interface EthereumReceiptEip658ReceiptData extends Struct {3343 readonly statusCode: u8;3354 readonly statusCode: u8;3344 readonly usedGas: U256;3355 readonly usedGas: U256;3345 readonly logsBloom: EthbloomBloom;3356 readonly logsBloom: EthbloomBloom;3346 readonly logs: Vec<EthereumLog>;3357 readonly logs: Vec<EthereumLog>;3347 }3358 }334833593349 /** @name EthereumBlock (427) */3360 /** @name EthereumBlock (428) */3350 interface EthereumBlock extends Struct {3361 interface EthereumBlock extends Struct {3351 readonly header: EthereumHeader;3362 readonly header: EthereumHeader;3352 readonly transactions: Vec<EthereumTransactionTransactionV2>;3363 readonly transactions: Vec<EthereumTransactionTransactionV2>;3353 readonly ommers: Vec<EthereumHeader>;3364 readonly ommers: Vec<EthereumHeader>;3354 }3365 }335533663356 /** @name EthereumHeader (428) */3367 /** @name EthereumHeader (429) */3357 interface EthereumHeader extends Struct {3368 interface EthereumHeader extends Struct {3358 readonly parentHash: H256;3369 readonly parentHash: H256;3359 readonly ommersHash: H256;3370 readonly ommersHash: H256;3372 readonly nonce: EthereumTypesHashH64;3383 readonly nonce: EthereumTypesHashH64;3373 }3384 }337433853375 /** @name EthereumTypesHashH64 (429) */3386 /** @name EthereumTypesHashH64 (430) */3376 interface EthereumTypesHashH64 extends U8aFixed {}3387 interface EthereumTypesHashH64 extends U8aFixed {}337733883378 /** @name PalletEthereumError (434) */3389 /** @name PalletEthereumError (435) */3379 interface PalletEthereumError extends Enum {3390 interface PalletEthereumError extends Enum {3380 readonly isInvalidSignature: boolean;3391 readonly isInvalidSignature: boolean;3381 readonly isPreLogExists: boolean;3392 readonly isPreLogExists: boolean;3382 readonly type: 'InvalidSignature' | 'PreLogExists';3393 readonly type: 'InvalidSignature' | 'PreLogExists';3383 }3394 }338433953385 /** @name PalletEvmCoderSubstrateError (435) */3396 /** @name PalletEvmCoderSubstrateError (436) */3386 interface PalletEvmCoderSubstrateError extends Enum {3397 interface PalletEvmCoderSubstrateError extends Enum {3387 readonly isOutOfGas: boolean;3398 readonly isOutOfGas: boolean;3388 readonly isOutOfFund: boolean;3399 readonly isOutOfFund: boolean;3389 readonly type: 'OutOfGas' | 'OutOfFund';3400 readonly type: 'OutOfGas' | 'OutOfFund';3390 }3401 }339134023392 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (436) */3403 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (437) */3393 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3404 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3394 readonly isDisabled: boolean;3405 readonly isDisabled: boolean;3395 readonly isUnconfirmed: boolean;3406 readonly isUnconfirmed: boolean;3399 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3410 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3400 }3411 }340134123402 /** @name PalletEvmContractHelpersSponsoringModeT (437) */3413 /** @name PalletEvmContractHelpersSponsoringModeT (438) */3403 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3414 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3404 readonly isDisabled: boolean;3415 readonly isDisabled: boolean;3405 readonly isAllowlisted: boolean;3416 readonly isAllowlisted: boolean;3406 readonly isGenerous: boolean;3417 readonly isGenerous: boolean;3407 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3418 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3408 }3419 }340934203410 /** @name PalletEvmContractHelpersError (439) */3421 /** @name PalletEvmContractHelpersError (440) */3411 interface PalletEvmContractHelpersError extends Enum {3422 interface PalletEvmContractHelpersError extends Enum {3412 readonly isNoPermission: boolean;3423 readonly isNoPermission: boolean;3413 readonly isNoPendingSponsor: boolean;3424 readonly isNoPendingSponsor: boolean;3414 readonly type: 'NoPermission' | 'NoPendingSponsor';3425 readonly type: 'NoPermission' | 'NoPendingSponsor';3415 }3426 }341634273417 /** @name PalletEvmMigrationError (440) */3428 /** @name PalletEvmMigrationError (441) */3418 interface PalletEvmMigrationError extends Enum {3429 interface PalletEvmMigrationError extends Enum {3419 readonly isAccountNotEmpty: boolean;3430 readonly isAccountNotEmpty: boolean;3420 readonly isAccountIsNotMigrating: boolean;3431 readonly isAccountIsNotMigrating: boolean;3421 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3432 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3422 }3433 }342334343424 /** @name SpRuntimeMultiSignature (442) */3435 /** @name SpRuntimeMultiSignature (443) */3425 interface SpRuntimeMultiSignature extends Enum {3436 interface SpRuntimeMultiSignature extends Enum {3426 readonly isEd25519: boolean;3437 readonly isEd25519: boolean;3427 readonly asEd25519: SpCoreEd25519Signature;3438 readonly asEd25519: SpCoreEd25519Signature;3432 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3443 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3433 }3444 }343434453435 /** @name SpCoreEd25519Signature (443) */3446 /** @name SpCoreEd25519Signature (444) */3436 interface SpCoreEd25519Signature extends U8aFixed {}3447 interface SpCoreEd25519Signature extends U8aFixed {}343734483438 /** @name SpCoreSr25519Signature (445) */3449 /** @name SpCoreSr25519Signature (446) */3439 interface SpCoreSr25519Signature extends U8aFixed {}3450 interface SpCoreSr25519Signature extends U8aFixed {}344034513441 /** @name SpCoreEcdsaSignature (446) */3452 /** @name SpCoreEcdsaSignature (447) */3442 interface SpCoreEcdsaSignature extends U8aFixed {}3453 interface SpCoreEcdsaSignature extends U8aFixed {}344334543444 /** @name FrameSystemExtensionsCheckSpecVersion (449) */3455 /** @name FrameSystemExtensionsCheckSpecVersion (450) */3445 type FrameSystemExtensionsCheckSpecVersion = Null;3456 type FrameSystemExtensionsCheckSpecVersion = Null;344634573447 /** @name FrameSystemExtensionsCheckGenesis (450) */3458 /** @name FrameSystemExtensionsCheckGenesis (451) */3448 type FrameSystemExtensionsCheckGenesis = Null;3459 type FrameSystemExtensionsCheckGenesis = Null;344934603450 /** @name FrameSystemExtensionsCheckNonce (453) */3461 /** @name FrameSystemExtensionsCheckNonce (454) */3451 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3462 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}345234633453 /** @name FrameSystemExtensionsCheckWeight (454) */3464 /** @name FrameSystemExtensionsCheckWeight (455) */3454 type FrameSystemExtensionsCheckWeight = Null;3465 type FrameSystemExtensionsCheckWeight = Null;345534663456 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (455) */3467 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (456) */3457 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3468 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}345834693459 /** @name OpalRuntimeRuntime (456) */3470 /** @name OpalRuntimeRuntime (457) */3460 type OpalRuntimeRuntime = Null;3471 type OpalRuntimeRuntime = Null;346134723462 /** @name PalletEthereumFakeTransactionFinalizer (457) */3473 /** @name PalletEthereumFakeTransactionFinalizer (458) */3463 type PalletEthereumFakeTransactionFinalizer = Null;3474 type PalletEthereumFakeTransactionFinalizer = Null;346434753465} // declare module3476} // declare module