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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportWeightsPerDispatchClassU64 (7) */32 interface FrameSupportWeightsPerDispatchClassU64 extends Struct {33 readonly normal: u64;34 readonly operational: u64;35 readonly mandatory: u64;36 }3738 /** @name SpRuntimeDigest (11) */39 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }4243 /** @name SpRuntimeDigestDigestItem (13) */44 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;46 readonly asOther: Bytes;47 readonly isConsensus: boolean;48 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;49 readonly isSeal: boolean;50 readonly asSeal: ITuple<[U8aFixed, Bytes]>;51 readonly isPreRuntime: boolean;52 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;53 readonly isRuntimeEnvironmentUpdated: boolean;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }5657 /** @name FrameSystemEventRecord (16) */58 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;60 readonly event: Event;61 readonly topics: Vec<H256>;62 }6364 /** @name FrameSystemEvent (18) */65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {68 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;69 } & Struct;70 readonly isExtrinsicFailed: boolean;71 readonly asExtrinsicFailed: {72 readonly dispatchError: SpRuntimeDispatchError;73 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;74 } & Struct;75 readonly isCodeUpdated: boolean;76 readonly isNewAccount: boolean;77 readonly asNewAccount: {78 readonly account: AccountId32;79 } & Struct;80 readonly isKilledAccount: boolean;81 readonly asKilledAccount: {82 readonly account: AccountId32;83 } & Struct;84 readonly isRemarked: boolean;85 readonly asRemarked: {86 readonly sender: AccountId32;87 readonly hash_: H256;88 } & Struct;89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }9192 /** @name FrameSupportWeightsDispatchInfo (19) */93 interface FrameSupportWeightsDispatchInfo extends Struct {94 readonly weight: u64;95 readonly class: FrameSupportWeightsDispatchClass;96 readonly paysFee: FrameSupportWeightsPays;97 }9899 /** @name FrameSupportWeightsDispatchClass (20) */100 interface FrameSupportWeightsDispatchClass extends Enum {101 readonly isNormal: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }106107 /** @name FrameSupportWeightsPays (21) */108 interface FrameSupportWeightsPays extends Enum {109 readonly isYes: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';112 }113114 /** @name SpRuntimeDispatchError (22) */115 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;117 readonly isCannotLookup: boolean;118 readonly isBadOrigin: boolean;119 readonly isModule: boolean;120 readonly asModule: SpRuntimeModuleError;121 readonly isConsumerRemaining: boolean;122 readonly isNoProviders: boolean;123 readonly isTooManyConsumers: boolean;124 readonly isToken: boolean;125 readonly asToken: SpRuntimeTokenError;126 readonly isArithmetic: boolean;127 readonly asArithmetic: SpRuntimeArithmeticError;128 readonly isTransactional: boolean;129 readonly asTransactional: SpRuntimeTransactionalError;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';131 }132133 /** @name SpRuntimeModuleError (23) */134 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;136 readonly error: U8aFixed;137 }138139 /** @name SpRuntimeTokenError (24) */140 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;143 readonly isBelowMinimum: boolean;144 readonly isCannotCreate: boolean;145 readonly isUnknownAsset: boolean;146 readonly isFrozen: boolean;147 readonly isUnsupported: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }150151 /** @name SpRuntimeArithmeticError (25) */152 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }158159 /** @name SpRuntimeTransactionalError (26) */160 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';164 }165166 /** @name CumulusPalletParachainSystemEvent (27) */167 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;170 readonly asValidationFunctionApplied: {171 readonly relayChainBlockNum: u32;172 } & Struct;173 readonly isValidationFunctionDiscarded: boolean;174 readonly isUpgradeAuthorized: boolean;175 readonly asUpgradeAuthorized: {176 readonly codeHash: H256;177 } & Struct;178 readonly isDownwardMessagesReceived: boolean;179 readonly asDownwardMessagesReceived: {180 readonly count: u32;181 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: u64;185 readonly dmqHead: H256;186 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }189190 /** @name PalletBalancesEvent (28) */191 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;193 readonly asEndowed: {194 readonly account: AccountId32;195 readonly freeBalance: u128;196 } & Struct;197 readonly isDustLost: boolean;198 readonly asDustLost: {199 readonly account: AccountId32;200 readonly amount: u128;201 } & Struct;202 readonly isTransfer: boolean;203 readonly asTransfer: {204 readonly from: AccountId32;205 readonly to: AccountId32;206 readonly amount: u128;207 } & Struct;208 readonly isBalanceSet: boolean;209 readonly asBalanceSet: {210 readonly who: AccountId32;211 readonly free: u128;212 readonly reserved: u128;213 } & Struct;214 readonly isReserved: boolean;215 readonly asReserved: {216 readonly who: AccountId32;217 readonly amount: u128;218 } & Struct;219 readonly isUnreserved: boolean;220 readonly asUnreserved: {221 readonly who: AccountId32;222 readonly amount: u128;223 } & Struct;224 readonly isReserveRepatriated: boolean;225 readonly asReserveRepatriated: {226 readonly from: AccountId32;227 readonly to: AccountId32;228 readonly amount: u128;229 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;230 } & Struct;231 readonly isDeposit: boolean;232 readonly asDeposit: {233 readonly who: AccountId32;234 readonly amount: u128;235 } & Struct;236 readonly isWithdraw: boolean;237 readonly asWithdraw: {238 readonly who: AccountId32;239 readonly amount: u128;240 } & Struct;241 readonly isSlashed: boolean;242 readonly asSlashed: {243 readonly who: AccountId32;244 readonly amount: u128;245 } & Struct;246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }248249 /** @name FrameSupportTokensMiscBalanceStatus (29) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;252 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';254 }255256 /** @name PalletTransactionPaymentEvent (30) */257 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {260 readonly who: AccountId32;261 readonly actualFee: u128;262 readonly tip: u128;263 } & Struct;264 readonly type: 'TransactionFeePaid';265 }266267 /** @name PalletTreasuryEvent (31) */268 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;270 readonly asProposed: {271 readonly proposalIndex: u32;272 } & Struct;273 readonly isSpending: boolean;274 readonly asSpending: {275 readonly budgetRemaining: u128;276 } & Struct;277 readonly isAwarded: boolean;278 readonly asAwarded: {279 readonly proposalIndex: u32;280 readonly award: u128;281 readonly account: AccountId32;282 } & Struct;283 readonly isRejected: boolean;284 readonly asRejected: {285 readonly proposalIndex: u32;286 readonly slashed: u128;287 } & Struct;288 readonly isBurnt: boolean;289 readonly asBurnt: {290 readonly burntFunds: u128;291 } & Struct;292 readonly isRollover: boolean;293 readonly asRollover: {294 readonly rolloverBalance: u128;295 } & Struct;296 readonly isDeposit: boolean;297 readonly asDeposit: {298 readonly value: u128;299 } & Struct;300 readonly isSpendApproved: boolean;301 readonly asSpendApproved: {302 readonly proposalIndex: u32;303 readonly amount: u128;304 readonly beneficiary: AccountId32;305 } & Struct;306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }308309 /** @name PalletSudoEvent (32) */310 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;312 readonly asSudid: {313 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;314 } & Struct;315 readonly isKeyChanged: boolean;316 readonly asKeyChanged: {317 readonly oldSudoer: Option<AccountId32>;318 } & Struct;319 readonly isSudoAsDone: boolean;320 readonly asSudoAsDone: {321 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;322 } & Struct;323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }325326 /** @name OrmlVestingModuleEvent (36) */327 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {330 readonly from: AccountId32;331 readonly to: AccountId32;332 readonly vestingSchedule: OrmlVestingVestingSchedule;333 } & Struct;334 readonly isClaimed: boolean;335 readonly asClaimed: {336 readonly who: AccountId32;337 readonly amount: u128;338 } & Struct;339 readonly isVestingSchedulesUpdated: boolean;340 readonly asVestingSchedulesUpdated: {341 readonly who: AccountId32;342 } & Struct;343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }345346 /** @name OrmlVestingVestingSchedule (37) */347 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;349 readonly period: u32;350 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;352 }353354 /** @name CumulusPalletXcmpQueueEvent (39) */355 interface CumulusPalletXcmpQueueEvent extends Enum {356 readonly isSuccess: boolean;357 readonly asSuccess: {358 readonly messageHash: Option<H256>;359 readonly weight: u64;360 } & Struct;361 readonly isFail: boolean;362 readonly asFail: {363 readonly messageHash: Option<H256>;364 readonly error: XcmV2TraitsError;365 readonly weight: u64;366 } & Struct;367 readonly isBadVersion: boolean;368 readonly asBadVersion: {369 readonly messageHash: Option<H256>;370 } & Struct;371 readonly isBadFormat: boolean;372 readonly asBadFormat: {373 readonly messageHash: Option<H256>;374 } & Struct;375 readonly isUpwardMessageSent: boolean;376 readonly asUpwardMessageSent: {377 readonly messageHash: Option<H256>;378 } & Struct;379 readonly isXcmpMessageSent: boolean;380 readonly asXcmpMessageSent: {381 readonly messageHash: Option<H256>;382 } & Struct;383 readonly isOverweightEnqueued: boolean;384 readonly asOverweightEnqueued: {385 readonly sender: u32;386 readonly sentAt: u32;387 readonly index: u64;388 readonly required: u64;389 } & Struct;390 readonly isOverweightServiced: boolean;391 readonly asOverweightServiced: {392 readonly index: u64;393 readonly used: u64;394 } & Struct;395 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';396 }397398 /** @name XcmV2TraitsError (41) */399 interface XcmV2TraitsError extends Enum {400 readonly isOverflow: boolean;401 readonly isUnimplemented: boolean;402 readonly isUntrustedReserveLocation: boolean;403 readonly isUntrustedTeleportLocation: boolean;404 readonly isMultiLocationFull: boolean;405 readonly isMultiLocationNotInvertible: boolean;406 readonly isBadOrigin: boolean;407 readonly isInvalidLocation: boolean;408 readonly isAssetNotFound: boolean;409 readonly isFailedToTransactAsset: boolean;410 readonly isNotWithdrawable: boolean;411 readonly isLocationCannotHold: boolean;412 readonly isExceedsMaxMessageSize: boolean;413 readonly isDestinationUnsupported: boolean;414 readonly isTransport: boolean;415 readonly isUnroutable: boolean;416 readonly isUnknownClaim: boolean;417 readonly isFailedToDecode: boolean;418 readonly isMaxWeightInvalid: boolean;419 readonly isNotHoldingFees: boolean;420 readonly isTooExpensive: boolean;421 readonly isTrap: boolean;422 readonly asTrap: u64;423 readonly isUnhandledXcmVersion: boolean;424 readonly isWeightLimitReached: boolean;425 readonly asWeightLimitReached: u64;426 readonly isBarrier: boolean;427 readonly isWeightNotComputable: boolean;428 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';429 }430431 /** @name PalletXcmEvent (43) */432 interface PalletXcmEvent extends Enum {433 readonly isAttempted: boolean;434 readonly asAttempted: XcmV2TraitsOutcome;435 readonly isSent: boolean;436 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;437 readonly isUnexpectedResponse: boolean;438 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;439 readonly isResponseReady: boolean;440 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;441 readonly isNotified: boolean;442 readonly asNotified: ITuple<[u64, u8, u8]>;443 readonly isNotifyOverweight: boolean;444 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;445 readonly isNotifyDispatchError: boolean;446 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;447 readonly isNotifyDecodeFailed: boolean;448 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;449 readonly isInvalidResponder: boolean;450 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;451 readonly isInvalidResponderVersion: boolean;452 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;453 readonly isResponseTaken: boolean;454 readonly asResponseTaken: u64;455 readonly isAssetsTrapped: boolean;456 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;457 readonly isVersionChangeNotified: boolean;458 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;459 readonly isSupportedVersionChanged: boolean;460 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;461 readonly isNotifyTargetSendFail: boolean;462 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;463 readonly isNotifyTargetMigrationFail: boolean;464 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;465 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';466 }467468 /** @name XcmV2TraitsOutcome (44) */469 interface XcmV2TraitsOutcome extends Enum {470 readonly isComplete: boolean;471 readonly asComplete: u64;472 readonly isIncomplete: boolean;473 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;474 readonly isError: boolean;475 readonly asError: XcmV2TraitsError;476 readonly type: 'Complete' | 'Incomplete' | 'Error';477 }478479 /** @name XcmV1MultiLocation (45) */480 interface XcmV1MultiLocation extends Struct {481 readonly parents: u8;482 readonly interior: XcmV1MultilocationJunctions;483 }484485 /** @name XcmV1MultilocationJunctions (46) */486 interface XcmV1MultilocationJunctions extends Enum {487 readonly isHere: boolean;488 readonly isX1: boolean;489 readonly asX1: XcmV1Junction;490 readonly isX2: boolean;491 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;492 readonly isX3: boolean;493 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;494 readonly isX4: boolean;495 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;496 readonly isX5: boolean;497 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;498 readonly isX6: boolean;499 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;500 readonly isX7: boolean;501 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;502 readonly isX8: boolean;503 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;504 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';505 }506507 /** @name XcmV1Junction (47) */508 interface XcmV1Junction extends Enum {509 readonly isParachain: boolean;510 readonly asParachain: Compact<u32>;511 readonly isAccountId32: boolean;512 readonly asAccountId32: {513 readonly network: XcmV0JunctionNetworkId;514 readonly id: U8aFixed;515 } & Struct;516 readonly isAccountIndex64: boolean;517 readonly asAccountIndex64: {518 readonly network: XcmV0JunctionNetworkId;519 readonly index: Compact<u64>;520 } & Struct;521 readonly isAccountKey20: boolean;522 readonly asAccountKey20: {523 readonly network: XcmV0JunctionNetworkId;524 readonly key: U8aFixed;525 } & Struct;526 readonly isPalletInstance: boolean;527 readonly asPalletInstance: u8;528 readonly isGeneralIndex: boolean;529 readonly asGeneralIndex: Compact<u128>;530 readonly isGeneralKey: boolean;531 readonly asGeneralKey: Bytes;532 readonly isOnlyChild: boolean;533 readonly isPlurality: boolean;534 readonly asPlurality: {535 readonly id: XcmV0JunctionBodyId;536 readonly part: XcmV0JunctionBodyPart;537 } & Struct;538 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';539 }540541 /** @name XcmV0JunctionNetworkId (49) */542 interface XcmV0JunctionNetworkId extends Enum {543 readonly isAny: boolean;544 readonly isNamed: boolean;545 readonly asNamed: Bytes;546 readonly isPolkadot: boolean;547 readonly isKusama: boolean;548 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';549 }550551 /** @name XcmV0JunctionBodyId (53) */552 interface XcmV0JunctionBodyId extends Enum {553 readonly isUnit: boolean;554 readonly isNamed: boolean;555 readonly asNamed: Bytes;556 readonly isIndex: boolean;557 readonly asIndex: Compact<u32>;558 readonly isExecutive: boolean;559 readonly isTechnical: boolean;560 readonly isLegislative: boolean;561 readonly isJudicial: boolean;562 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';563 }564565 /** @name XcmV0JunctionBodyPart (54) */566 interface XcmV0JunctionBodyPart extends Enum {567 readonly isVoice: boolean;568 readonly isMembers: boolean;569 readonly asMembers: {570 readonly count: Compact<u32>;571 } & Struct;572 readonly isFraction: boolean;573 readonly asFraction: {574 readonly nom: Compact<u32>;575 readonly denom: Compact<u32>;576 } & Struct;577 readonly isAtLeastProportion: boolean;578 readonly asAtLeastProportion: {579 readonly nom: Compact<u32>;580 readonly denom: Compact<u32>;581 } & Struct;582 readonly isMoreThanProportion: boolean;583 readonly asMoreThanProportion: {584 readonly nom: Compact<u32>;585 readonly denom: Compact<u32>;586 } & Struct;587 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';588 }589590 /** @name XcmV2Xcm (55) */591 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}592593 /** @name XcmV2Instruction (57) */594 interface XcmV2Instruction extends Enum {595 readonly isWithdrawAsset: boolean;596 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;597 readonly isReserveAssetDeposited: boolean;598 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;599 readonly isReceiveTeleportedAsset: boolean;600 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;601 readonly isQueryResponse: boolean;602 readonly asQueryResponse: {603 readonly queryId: Compact<u64>;604 readonly response: XcmV2Response;605 readonly maxWeight: Compact<u64>;606 } & Struct;607 readonly isTransferAsset: boolean;608 readonly asTransferAsset: {609 readonly assets: XcmV1MultiassetMultiAssets;610 readonly beneficiary: XcmV1MultiLocation;611 } & Struct;612 readonly isTransferReserveAsset: boolean;613 readonly asTransferReserveAsset: {614 readonly assets: XcmV1MultiassetMultiAssets;615 readonly dest: XcmV1MultiLocation;616 readonly xcm: XcmV2Xcm;617 } & Struct;618 readonly isTransact: boolean;619 readonly asTransact: {620 readonly originType: XcmV0OriginKind;621 readonly requireWeightAtMost: Compact<u64>;622 readonly call: XcmDoubleEncoded;623 } & Struct;624 readonly isHrmpNewChannelOpenRequest: boolean;625 readonly asHrmpNewChannelOpenRequest: {626 readonly sender: Compact<u32>;627 readonly maxMessageSize: Compact<u32>;628 readonly maxCapacity: Compact<u32>;629 } & Struct;630 readonly isHrmpChannelAccepted: boolean;631 readonly asHrmpChannelAccepted: {632 readonly recipient: Compact<u32>;633 } & Struct;634 readonly isHrmpChannelClosing: boolean;635 readonly asHrmpChannelClosing: {636 readonly initiator: Compact<u32>;637 readonly sender: Compact<u32>;638 readonly recipient: Compact<u32>;639 } & Struct;640 readonly isClearOrigin: boolean;641 readonly isDescendOrigin: boolean;642 readonly asDescendOrigin: XcmV1MultilocationJunctions;643 readonly isReportError: boolean;644 readonly asReportError: {645 readonly queryId: Compact<u64>;646 readonly dest: XcmV1MultiLocation;647 readonly maxResponseWeight: Compact<u64>;648 } & Struct;649 readonly isDepositAsset: boolean;650 readonly asDepositAsset: {651 readonly assets: XcmV1MultiassetMultiAssetFilter;652 readonly maxAssets: Compact<u32>;653 readonly beneficiary: XcmV1MultiLocation;654 } & Struct;655 readonly isDepositReserveAsset: boolean;656 readonly asDepositReserveAsset: {657 readonly assets: XcmV1MultiassetMultiAssetFilter;658 readonly maxAssets: Compact<u32>;659 readonly dest: XcmV1MultiLocation;660 readonly xcm: XcmV2Xcm;661 } & Struct;662 readonly isExchangeAsset: boolean;663 readonly asExchangeAsset: {664 readonly give: XcmV1MultiassetMultiAssetFilter;665 readonly receive: XcmV1MultiassetMultiAssets;666 } & Struct;667 readonly isInitiateReserveWithdraw: boolean;668 readonly asInitiateReserveWithdraw: {669 readonly assets: XcmV1MultiassetMultiAssetFilter;670 readonly reserve: XcmV1MultiLocation;671 readonly xcm: XcmV2Xcm;672 } & Struct;673 readonly isInitiateTeleport: boolean;674 readonly asInitiateTeleport: {675 readonly assets: XcmV1MultiassetMultiAssetFilter;676 readonly dest: XcmV1MultiLocation;677 readonly xcm: XcmV2Xcm;678 } & Struct;679 readonly isQueryHolding: boolean;680 readonly asQueryHolding: {681 readonly queryId: Compact<u64>;682 readonly dest: XcmV1MultiLocation;683 readonly assets: XcmV1MultiassetMultiAssetFilter;684 readonly maxResponseWeight: Compact<u64>;685 } & Struct;686 readonly isBuyExecution: boolean;687 readonly asBuyExecution: {688 readonly fees: XcmV1MultiAsset;689 readonly weightLimit: XcmV2WeightLimit;690 } & Struct;691 readonly isRefundSurplus: boolean;692 readonly isSetErrorHandler: boolean;693 readonly asSetErrorHandler: XcmV2Xcm;694 readonly isSetAppendix: boolean;695 readonly asSetAppendix: XcmV2Xcm;696 readonly isClearError: boolean;697 readonly isClaimAsset: boolean;698 readonly asClaimAsset: {699 readonly assets: XcmV1MultiassetMultiAssets;700 readonly ticket: XcmV1MultiLocation;701 } & Struct;702 readonly isTrap: boolean;703 readonly asTrap: Compact<u64>;704 readonly isSubscribeVersion: boolean;705 readonly asSubscribeVersion: {706 readonly queryId: Compact<u64>;707 readonly maxResponseWeight: Compact<u64>;708 } & Struct;709 readonly isUnsubscribeVersion: boolean;710 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';711 }712713 /** @name XcmV1MultiassetMultiAssets (58) */714 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}715716 /** @name XcmV1MultiAsset (60) */717 interface XcmV1MultiAsset extends Struct {718 readonly id: XcmV1MultiassetAssetId;719 readonly fun: XcmV1MultiassetFungibility;720 }721722 /** @name XcmV1MultiassetAssetId (61) */723 interface XcmV1MultiassetAssetId extends Enum {724 readonly isConcrete: boolean;725 readonly asConcrete: XcmV1MultiLocation;726 readonly isAbstract: boolean;727 readonly asAbstract: Bytes;728 readonly type: 'Concrete' | 'Abstract';729 }730731 /** @name XcmV1MultiassetFungibility (62) */732 interface XcmV1MultiassetFungibility extends Enum {733 readonly isFungible: boolean;734 readonly asFungible: Compact<u128>;735 readonly isNonFungible: boolean;736 readonly asNonFungible: XcmV1MultiassetAssetInstance;737 readonly type: 'Fungible' | 'NonFungible';738 }739740 /** @name XcmV1MultiassetAssetInstance (63) */741 interface XcmV1MultiassetAssetInstance extends Enum {742 readonly isUndefined: boolean;743 readonly isIndex: boolean;744 readonly asIndex: Compact<u128>;745 readonly isArray4: boolean;746 readonly asArray4: U8aFixed;747 readonly isArray8: boolean;748 readonly asArray8: U8aFixed;749 readonly isArray16: boolean;750 readonly asArray16: U8aFixed;751 readonly isArray32: boolean;752 readonly asArray32: U8aFixed;753 readonly isBlob: boolean;754 readonly asBlob: Bytes;755 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';756 }757758 /** @name XcmV2Response (66) */759 interface XcmV2Response extends Enum {760 readonly isNull: boolean;761 readonly isAssets: boolean;762 readonly asAssets: XcmV1MultiassetMultiAssets;763 readonly isExecutionResult: boolean;764 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;765 readonly isVersion: boolean;766 readonly asVersion: u32;767 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';768 }769770 /** @name XcmV0OriginKind (69) */771 interface XcmV0OriginKind extends Enum {772 readonly isNative: boolean;773 readonly isSovereignAccount: boolean;774 readonly isSuperuser: boolean;775 readonly isXcm: boolean;776 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';777 }778779 /** @name XcmDoubleEncoded (70) */780 interface XcmDoubleEncoded extends Struct {781 readonly encoded: Bytes;782 }783784 /** @name XcmV1MultiassetMultiAssetFilter (71) */785 interface XcmV1MultiassetMultiAssetFilter extends Enum {786 readonly isDefinite: boolean;787 readonly asDefinite: XcmV1MultiassetMultiAssets;788 readonly isWild: boolean;789 readonly asWild: XcmV1MultiassetWildMultiAsset;790 readonly type: 'Definite' | 'Wild';791 }792793 /** @name XcmV1MultiassetWildMultiAsset (72) */794 interface XcmV1MultiassetWildMultiAsset extends Enum {795 readonly isAll: boolean;796 readonly isAllOf: boolean;797 readonly asAllOf: {798 readonly id: XcmV1MultiassetAssetId;799 readonly fun: XcmV1MultiassetWildFungibility;800 } & Struct;801 readonly type: 'All' | 'AllOf';802 }803804 /** @name XcmV1MultiassetWildFungibility (73) */805 interface XcmV1MultiassetWildFungibility extends Enum {806 readonly isFungible: boolean;807 readonly isNonFungible: boolean;808 readonly type: 'Fungible' | 'NonFungible';809 }810811 /** @name XcmV2WeightLimit (74) */812 interface XcmV2WeightLimit extends Enum {813 readonly isUnlimited: boolean;814 readonly isLimited: boolean;815 readonly asLimited: Compact<u64>;816 readonly type: 'Unlimited' | 'Limited';817 }818819 /** @name XcmVersionedMultiAssets (76) */820 interface XcmVersionedMultiAssets extends Enum {821 readonly isV0: boolean;822 readonly asV0: Vec<XcmV0MultiAsset>;823 readonly isV1: boolean;824 readonly asV1: XcmV1MultiassetMultiAssets;825 readonly type: 'V0' | 'V1';826 }827828 /** @name XcmV0MultiAsset (78) */829 interface XcmV0MultiAsset extends Enum {830 readonly isNone: boolean;831 readonly isAll: boolean;832 readonly isAllFungible: boolean;833 readonly isAllNonFungible: boolean;834 readonly isAllAbstractFungible: boolean;835 readonly asAllAbstractFungible: {836 readonly id: Bytes;837 } & Struct;838 readonly isAllAbstractNonFungible: boolean;839 readonly asAllAbstractNonFungible: {840 readonly class: Bytes;841 } & Struct;842 readonly isAllConcreteFungible: boolean;843 readonly asAllConcreteFungible: {844 readonly id: XcmV0MultiLocation;845 } & Struct;846 readonly isAllConcreteNonFungible: boolean;847 readonly asAllConcreteNonFungible: {848 readonly class: XcmV0MultiLocation;849 } & Struct;850 readonly isAbstractFungible: boolean;851 readonly asAbstractFungible: {852 readonly id: Bytes;853 readonly amount: Compact<u128>;854 } & Struct;855 readonly isAbstractNonFungible: boolean;856 readonly asAbstractNonFungible: {857 readonly class: Bytes;858 readonly instance: XcmV1MultiassetAssetInstance;859 } & Struct;860 readonly isConcreteFungible: boolean;861 readonly asConcreteFungible: {862 readonly id: XcmV0MultiLocation;863 readonly amount: Compact<u128>;864 } & Struct;865 readonly isConcreteNonFungible: boolean;866 readonly asConcreteNonFungible: {867 readonly class: XcmV0MultiLocation;868 readonly instance: XcmV1MultiassetAssetInstance;869 } & Struct;870 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';871 }872873 /** @name XcmV0MultiLocation (79) */874 interface XcmV0MultiLocation extends Enum {875 readonly isNull: boolean;876 readonly isX1: boolean;877 readonly asX1: XcmV0Junction;878 readonly isX2: boolean;879 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;880 readonly isX3: boolean;881 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;882 readonly isX4: boolean;883 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;884 readonly isX5: boolean;885 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;886 readonly isX6: boolean;887 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;888 readonly isX7: boolean;889 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;890 readonly isX8: boolean;891 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;892 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';893 }894895 /** @name XcmV0Junction (80) */896 interface XcmV0Junction extends Enum {897 readonly isParent: boolean;898 readonly isParachain: boolean;899 readonly asParachain: Compact<u32>;900 readonly isAccountId32: boolean;901 readonly asAccountId32: {902 readonly network: XcmV0JunctionNetworkId;903 readonly id: U8aFixed;904 } & Struct;905 readonly isAccountIndex64: boolean;906 readonly asAccountIndex64: {907 readonly network: XcmV0JunctionNetworkId;908 readonly index: Compact<u64>;909 } & Struct;910 readonly isAccountKey20: boolean;911 readonly asAccountKey20: {912 readonly network: XcmV0JunctionNetworkId;913 readonly key: U8aFixed;914 } & Struct;915 readonly isPalletInstance: boolean;916 readonly asPalletInstance: u8;917 readonly isGeneralIndex: boolean;918 readonly asGeneralIndex: Compact<u128>;919 readonly isGeneralKey: boolean;920 readonly asGeneralKey: Bytes;921 readonly isOnlyChild: boolean;922 readonly isPlurality: boolean;923 readonly asPlurality: {924 readonly id: XcmV0JunctionBodyId;925 readonly part: XcmV0JunctionBodyPart;926 } & Struct;927 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';928 }929930 /** @name XcmVersionedMultiLocation (81) */931 interface XcmVersionedMultiLocation extends Enum {932 readonly isV0: boolean;933 readonly asV0: XcmV0MultiLocation;934 readonly isV1: boolean;935 readonly asV1: XcmV1MultiLocation;936 readonly type: 'V0' | 'V1';937 }938939 /** @name CumulusPalletXcmEvent (82) */940 interface CumulusPalletXcmEvent extends Enum {941 readonly isInvalidFormat: boolean;942 readonly asInvalidFormat: U8aFixed;943 readonly isUnsupportedVersion: boolean;944 readonly asUnsupportedVersion: U8aFixed;945 readonly isExecutedDownward: boolean;946 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;947 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';948 }949950 /** @name CumulusPalletDmpQueueEvent (83) */951 interface CumulusPalletDmpQueueEvent extends Enum {952 readonly isInvalidFormat: boolean;953 readonly asInvalidFormat: {954 readonly messageId: U8aFixed;955 } & Struct;956 readonly isUnsupportedVersion: boolean;957 readonly asUnsupportedVersion: {958 readonly messageId: U8aFixed;959 } & Struct;960 readonly isExecutedDownward: boolean;961 readonly asExecutedDownward: {962 readonly messageId: U8aFixed;963 readonly outcome: XcmV2TraitsOutcome;964 } & Struct;965 readonly isWeightExhausted: boolean;966 readonly asWeightExhausted: {967 readonly messageId: U8aFixed;968 readonly remainingWeight: u64;969 readonly requiredWeight: u64;970 } & Struct;971 readonly isOverweightEnqueued: boolean;972 readonly asOverweightEnqueued: {973 readonly messageId: U8aFixed;974 readonly overweightIndex: u64;975 readonly requiredWeight: u64;976 } & Struct;977 readonly isOverweightServiced: boolean;978 readonly asOverweightServiced: {979 readonly overweightIndex: u64;980 readonly weightUsed: u64;981 } & Struct;982 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';983 }984985 /** @name PalletUniqueRawEvent (84) */986 interface PalletUniqueRawEvent extends Enum {987 readonly isCollectionSponsorRemoved: boolean;988 readonly asCollectionSponsorRemoved: u32;989 readonly isCollectionAdminAdded: boolean;990 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;991 readonly isCollectionOwnedChanged: boolean;992 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;993 readonly isCollectionSponsorSet: boolean;994 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;995 readonly isSponsorshipConfirmed: boolean;996 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;997 readonly isCollectionAdminRemoved: boolean;998 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;999 readonly isAllowListAddressRemoved: boolean;1000 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1001 readonly isAllowListAddressAdded: boolean;1002 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1003 readonly isCollectionLimitSet: boolean;1004 readonly asCollectionLimitSet: u32;1005 readonly isCollectionPermissionSet: boolean;1006 readonly asCollectionPermissionSet: u32;1007 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1008 }10091010 /** @name PalletEvmAccountBasicCrossAccountIdRepr (85) */1011 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1012 readonly isSubstrate: boolean;1013 readonly asSubstrate: AccountId32;1014 readonly isEthereum: boolean;1015 readonly asEthereum: H160;1016 readonly type: 'Substrate' | 'Ethereum';1017 }10181019 /** @name PalletUniqueSchedulerEvent (88) */1020 interface PalletUniqueSchedulerEvent extends Enum {1021 readonly isScheduled: boolean;1022 readonly asScheduled: {1023 readonly when: u32;1024 readonly index: u32;1025 } & Struct;1026 readonly isCanceled: boolean;1027 readonly asCanceled: {1028 readonly when: u32;1029 readonly index: u32;1030 } & Struct;1031 readonly isDispatched: boolean;1032 readonly asDispatched: {1033 readonly task: ITuple<[u32, u32]>;1034 readonly id: Option<U8aFixed>;1035 readonly result: Result<Null, SpRuntimeDispatchError>;1036 } & Struct;1037 readonly isCallLookupFailed: boolean;1038 readonly asCallLookupFailed: {1039 readonly task: ITuple<[u32, u32]>;1040 readonly id: Option<U8aFixed>;1041 readonly error: FrameSupportScheduleLookupError;1042 } & Struct;1043 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1044 }10451046 /** @name FrameSupportScheduleLookupError (91) */1047 interface FrameSupportScheduleLookupError extends Enum {1048 readonly isUnknown: boolean;1049 readonly isBadFormat: boolean;1050 readonly type: 'Unknown' | 'BadFormat';1051 }10521053 /** @name PalletCommonEvent (92) */1054 interface PalletCommonEvent extends Enum {1055 readonly isCollectionCreated: boolean;1056 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1057 readonly isCollectionDestroyed: boolean;1058 readonly asCollectionDestroyed: u32;1059 readonly isItemCreated: boolean;1060 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1061 readonly isItemDestroyed: boolean;1062 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1063 readonly isTransfer: boolean;1064 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1065 readonly isApproved: boolean;1066 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1067 readonly isCollectionPropertySet: boolean;1068 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1069 readonly isCollectionPropertyDeleted: boolean;1070 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1071 readonly isTokenPropertySet: boolean;1072 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1073 readonly isTokenPropertyDeleted: boolean;1074 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1075 readonly isPropertyPermissionSet: boolean;1076 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1077 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1078 }10791080 /** @name PalletStructureEvent (95) */1081 interface PalletStructureEvent extends Enum {1082 readonly isExecuted: boolean;1083 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1084 readonly type: 'Executed';1085 }10861087 /** @name PalletRmrkCoreEvent (96) */1088 interface PalletRmrkCoreEvent extends Enum {1089 readonly isCollectionCreated: boolean;1090 readonly asCollectionCreated: {1091 readonly issuer: AccountId32;1092 readonly collectionId: u32;1093 } & Struct;1094 readonly isCollectionDestroyed: boolean;1095 readonly asCollectionDestroyed: {1096 readonly issuer: AccountId32;1097 readonly collectionId: u32;1098 } & Struct;1099 readonly isIssuerChanged: boolean;1100 readonly asIssuerChanged: {1101 readonly oldIssuer: AccountId32;1102 readonly newIssuer: AccountId32;1103 readonly collectionId: u32;1104 } & Struct;1105 readonly isCollectionLocked: boolean;1106 readonly asCollectionLocked: {1107 readonly issuer: AccountId32;1108 readonly collectionId: u32;1109 } & Struct;1110 readonly isNftMinted: boolean;1111 readonly asNftMinted: {1112 readonly owner: AccountId32;1113 readonly collectionId: u32;1114 readonly nftId: u32;1115 } & Struct;1116 readonly isNftBurned: boolean;1117 readonly asNftBurned: {1118 readonly owner: AccountId32;1119 readonly nftId: u32;1120 } & Struct;1121 readonly isNftSent: boolean;1122 readonly asNftSent: {1123 readonly sender: AccountId32;1124 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1125 readonly collectionId: u32;1126 readonly nftId: u32;1127 readonly approvalRequired: bool;1128 } & Struct;1129 readonly isNftAccepted: boolean;1130 readonly asNftAccepted: {1131 readonly sender: AccountId32;1132 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1133 readonly collectionId: u32;1134 readonly nftId: u32;1135 } & Struct;1136 readonly isNftRejected: boolean;1137 readonly asNftRejected: {1138 readonly sender: AccountId32;1139 readonly collectionId: u32;1140 readonly nftId: u32;1141 } & Struct;1142 readonly isPropertySet: boolean;1143 readonly asPropertySet: {1144 readonly collectionId: u32;1145 readonly maybeNftId: Option<u32>;1146 readonly key: Bytes;1147 readonly value: Bytes;1148 } & Struct;1149 readonly isResourceAdded: boolean;1150 readonly asResourceAdded: {1151 readonly nftId: u32;1152 readonly resourceId: u32;1153 } & Struct;1154 readonly isResourceRemoval: boolean;1155 readonly asResourceRemoval: {1156 readonly nftId: u32;1157 readonly resourceId: u32;1158 } & Struct;1159 readonly isResourceAccepted: boolean;1160 readonly asResourceAccepted: {1161 readonly nftId: u32;1162 readonly resourceId: u32;1163 } & Struct;1164 readonly isResourceRemovalAccepted: boolean;1165 readonly asResourceRemovalAccepted: {1166 readonly nftId: u32;1167 readonly resourceId: u32;1168 } & Struct;1169 readonly isPrioritySet: boolean;1170 readonly asPrioritySet: {1171 readonly collectionId: u32;1172 readonly nftId: u32;1173 } & Struct;1174 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1175 }11761177 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (97) */1178 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1179 readonly isAccountId: boolean;1180 readonly asAccountId: AccountId32;1181 readonly isCollectionAndNftTuple: boolean;1182 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1183 readonly type: 'AccountId' | 'CollectionAndNftTuple';1184 }11851186 /** @name PalletRmrkEquipEvent (102) */1187 interface PalletRmrkEquipEvent extends Enum {1188 readonly isBaseCreated: boolean;1189 readonly asBaseCreated: {1190 readonly issuer: AccountId32;1191 readonly baseId: u32;1192 } & Struct;1193 readonly isEquippablesUpdated: boolean;1194 readonly asEquippablesUpdated: {1195 readonly baseId: u32;1196 readonly slotId: u32;1197 } & Struct;1198 readonly type: 'BaseCreated' | 'EquippablesUpdated';1199 }12001201 /** @name PalletAppPromotionEvent (103) */1202 interface PalletAppPromotionEvent extends Enum {1203 readonly isStakingRecalculation: boolean;1204 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1205 readonly isStake: boolean;1206 readonly asStake: ITuple<[AccountId32, u128]>;1207 readonly isUnstake: boolean;1208 readonly asUnstake: ITuple<[AccountId32, u128]>;1209 readonly isSetAdmin: boolean;1210 readonly asSetAdmin: AccountId32;1211 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1212 }12131214 /** @name PalletEvmEvent (104) */1215 interface PalletEvmEvent extends Enum {1216 readonly isLog: boolean;1217 readonly asLog: EthereumLog;1218 readonly isCreated: boolean;1219 readonly asCreated: H160;1220 readonly isCreatedFailed: boolean;1221 readonly asCreatedFailed: H160;1222 readonly isExecuted: boolean;1223 readonly asExecuted: H160;1224 readonly isExecutedFailed: boolean;1225 readonly asExecutedFailed: H160;1226 readonly isBalanceDeposit: boolean;1227 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1228 readonly isBalanceWithdraw: boolean;1229 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1230 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1231 }12321233 /** @name EthereumLog (105) */1234 interface EthereumLog extends Struct {1235 readonly address: H160;1236 readonly topics: Vec<H256>;1237 readonly data: Bytes;1238 }12391240 /** @name PalletEthereumEvent (109) */1241 interface PalletEthereumEvent extends Enum {1242 readonly isExecuted: boolean;1243 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1244 readonly type: 'Executed';1245 }12461247 /** @name EvmCoreErrorExitReason (110) */1248 interface EvmCoreErrorExitReason extends Enum {1249 readonly isSucceed: boolean;1250 readonly asSucceed: EvmCoreErrorExitSucceed;1251 readonly isError: boolean;1252 readonly asError: EvmCoreErrorExitError;1253 readonly isRevert: boolean;1254 readonly asRevert: EvmCoreErrorExitRevert;1255 readonly isFatal: boolean;1256 readonly asFatal: EvmCoreErrorExitFatal;1257 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1258 }12591260 /** @name EvmCoreErrorExitSucceed (111) */1261 interface EvmCoreErrorExitSucceed extends Enum {1262 readonly isStopped: boolean;1263 readonly isReturned: boolean;1264 readonly isSuicided: boolean;1265 readonly type: 'Stopped' | 'Returned' | 'Suicided';1266 }12671268 /** @name EvmCoreErrorExitError (112) */1269 interface EvmCoreErrorExitError extends Enum {1270 readonly isStackUnderflow: boolean;1271 readonly isStackOverflow: boolean;1272 readonly isInvalidJump: boolean;1273 readonly isInvalidRange: boolean;1274 readonly isDesignatedInvalid: boolean;1275 readonly isCallTooDeep: boolean;1276 readonly isCreateCollision: boolean;1277 readonly isCreateContractLimit: boolean;1278 readonly isOutOfOffset: boolean;1279 readonly isOutOfGas: boolean;1280 readonly isOutOfFund: boolean;1281 readonly isPcUnderflow: boolean;1282 readonly isCreateEmpty: boolean;1283 readonly isOther: boolean;1284 readonly asOther: Text;1285 readonly isInvalidCode: boolean;1286 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1287 }12881289 /** @name EvmCoreErrorExitRevert (115) */1290 interface EvmCoreErrorExitRevert extends Enum {1291 readonly isReverted: boolean;1292 readonly type: 'Reverted';1293 }12941295 /** @name EvmCoreErrorExitFatal (116) */1296 interface EvmCoreErrorExitFatal extends Enum {1297 readonly isNotSupported: boolean;1298 readonly isUnhandledInterrupt: boolean;1299 readonly isCallErrorAsFatal: boolean;1300 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1301 readonly isOther: boolean;1302 readonly asOther: Text;1303 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1304 }13051306 /** @name FrameSystemPhase (117) */1307 interface FrameSystemPhase extends Enum {1308 readonly isApplyExtrinsic: boolean;1309 readonly asApplyExtrinsic: u32;1310 readonly isFinalization: boolean;1311 readonly isInitialization: boolean;1312 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1313 }13141315 /** @name FrameSystemLastRuntimeUpgradeInfo (119) */1316 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1317 readonly specVersion: Compact<u32>;1318 readonly specName: Text;1319 }13201321 /** @name FrameSystemCall (120) */1322 interface FrameSystemCall extends Enum {1323 readonly isFillBlock: boolean;1324 readonly asFillBlock: {1325 readonly ratio: Perbill;1326 } & Struct;1327 readonly isRemark: boolean;1328 readonly asRemark: {1329 readonly remark: Bytes;1330 } & Struct;1331 readonly isSetHeapPages: boolean;1332 readonly asSetHeapPages: {1333 readonly pages: u64;1334 } & Struct;1335 readonly isSetCode: boolean;1336 readonly asSetCode: {1337 readonly code: Bytes;1338 } & Struct;1339 readonly isSetCodeWithoutChecks: boolean;1340 readonly asSetCodeWithoutChecks: {1341 readonly code: Bytes;1342 } & Struct;1343 readonly isSetStorage: boolean;1344 readonly asSetStorage: {1345 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1346 } & Struct;1347 readonly isKillStorage: boolean;1348 readonly asKillStorage: {1349 readonly keys_: Vec<Bytes>;1350 } & Struct;1351 readonly isKillPrefix: boolean;1352 readonly asKillPrefix: {1353 readonly prefix: Bytes;1354 readonly subkeys: u32;1355 } & Struct;1356 readonly isRemarkWithEvent: boolean;1357 readonly asRemarkWithEvent: {1358 readonly remark: Bytes;1359 } & Struct;1360 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1361 }13621363 /** @name FrameSystemLimitsBlockWeights (125) */1364 interface FrameSystemLimitsBlockWeights extends Struct {1365 readonly baseBlock: u64;1366 readonly maxBlock: u64;1367 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1368 }13691370 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (126) */1371 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1372 readonly normal: FrameSystemLimitsWeightsPerClass;1373 readonly operational: FrameSystemLimitsWeightsPerClass;1374 readonly mandatory: FrameSystemLimitsWeightsPerClass;1375 }13761377 /** @name FrameSystemLimitsWeightsPerClass (127) */1378 interface FrameSystemLimitsWeightsPerClass extends Struct {1379 readonly baseExtrinsic: u64;1380 readonly maxExtrinsic: Option<u64>;1381 readonly maxTotal: Option<u64>;1382 readonly reserved: Option<u64>;1383 }13841385 /** @name FrameSystemLimitsBlockLength (129) */1386 interface FrameSystemLimitsBlockLength extends Struct {1387 readonly max: FrameSupportWeightsPerDispatchClassU32;1388 }13891390 /** @name FrameSupportWeightsPerDispatchClassU32 (130) */1391 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1392 readonly normal: u32;1393 readonly operational: u32;1394 readonly mandatory: u32;1395 }13961397 /** @name FrameSupportWeightsRuntimeDbWeight (131) */1398 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1399 readonly read: u64;1400 readonly write: u64;1401 }14021403 /** @name SpVersionRuntimeVersion (132) */1404 interface SpVersionRuntimeVersion extends Struct {1405 readonly specName: Text;1406 readonly implName: Text;1407 readonly authoringVersion: u32;1408 readonly specVersion: u32;1409 readonly implVersion: u32;1410 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1411 readonly transactionVersion: u32;1412 readonly stateVersion: u8;1413 }14141415 /** @name FrameSystemError (137) */1416 interface FrameSystemError extends Enum {1417 readonly isInvalidSpecName: boolean;1418 readonly isSpecVersionNeedsToIncrease: boolean;1419 readonly isFailedToExtractRuntimeVersion: boolean;1420 readonly isNonDefaultComposite: boolean;1421 readonly isNonZeroRefCount: boolean;1422 readonly isCallFiltered: boolean;1423 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1424 }14251426 /** @name PolkadotPrimitivesV2PersistedValidationData (138) */1427 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1428 readonly parentHead: Bytes;1429 readonly relayParentNumber: u32;1430 readonly relayParentStorageRoot: H256;1431 readonly maxPovSize: u32;1432 }14331434 /** @name PolkadotPrimitivesV2UpgradeRestriction (141) */1435 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1436 readonly isPresent: boolean;1437 readonly type: 'Present';1438 }14391440 /** @name SpTrieStorageProof (142) */1441 interface SpTrieStorageProof extends Struct {1442 readonly trieNodes: BTreeSet<Bytes>;1443 }14441445 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (144) */1446 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1447 readonly dmqMqcHead: H256;1448 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1449 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1450 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1451 }14521453 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (147) */1454 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1455 readonly maxCapacity: u32;1456 readonly maxTotalSize: u32;1457 readonly maxMessageSize: u32;1458 readonly msgCount: u32;1459 readonly totalSize: u32;1460 readonly mqcHead: Option<H256>;1461 }14621463 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (148) */1464 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1465 readonly maxCodeSize: u32;1466 readonly maxHeadDataSize: u32;1467 readonly maxUpwardQueueCount: u32;1468 readonly maxUpwardQueueSize: u32;1469 readonly maxUpwardMessageSize: u32;1470 readonly maxUpwardMessageNumPerCandidate: u32;1471 readonly hrmpMaxMessageNumPerCandidate: u32;1472 readonly validationUpgradeCooldown: u32;1473 readonly validationUpgradeDelay: u32;1474 }14751476 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (154) */1477 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1478 readonly recipient: u32;1479 readonly data: Bytes;1480 }14811482 /** @name CumulusPalletParachainSystemCall (155) */1483 interface CumulusPalletParachainSystemCall extends Enum {1484 readonly isSetValidationData: boolean;1485 readonly asSetValidationData: {1486 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1487 } & Struct;1488 readonly isSudoSendUpwardMessage: boolean;1489 readonly asSudoSendUpwardMessage: {1490 readonly message: Bytes;1491 } & Struct;1492 readonly isAuthorizeUpgrade: boolean;1493 readonly asAuthorizeUpgrade: {1494 readonly codeHash: H256;1495 } & Struct;1496 readonly isEnactAuthorizedUpgrade: boolean;1497 readonly asEnactAuthorizedUpgrade: {1498 readonly code: Bytes;1499 } & Struct;1500 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1501 }15021503 /** @name CumulusPrimitivesParachainInherentParachainInherentData (156) */1504 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1505 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1506 readonly relayChainState: SpTrieStorageProof;1507 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1508 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1509 }15101511 /** @name PolkadotCorePrimitivesInboundDownwardMessage (158) */1512 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1513 readonly sentAt: u32;1514 readonly msg: Bytes;1515 }15161517 /** @name PolkadotCorePrimitivesInboundHrmpMessage (161) */1518 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1519 readonly sentAt: u32;1520 readonly data: Bytes;1521 }15221523 /** @name CumulusPalletParachainSystemError (164) */1524 interface CumulusPalletParachainSystemError extends Enum {1525 readonly isOverlappingUpgrades: boolean;1526 readonly isProhibitedByPolkadot: boolean;1527 readonly isTooBig: boolean;1528 readonly isValidationDataNotAvailable: boolean;1529 readonly isHostConfigurationNotAvailable: boolean;1530 readonly isNotScheduled: boolean;1531 readonly isNothingAuthorized: boolean;1532 readonly isUnauthorized: boolean;1533 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1534 }15351536 /** @name PalletBalancesBalanceLock (166) */1537 interface PalletBalancesBalanceLock extends Struct {1538 readonly id: U8aFixed;1539 readonly amount: u128;1540 readonly reasons: PalletBalancesReasons;1541 }15421543 /** @name PalletBalancesReasons (167) */1544 interface PalletBalancesReasons extends Enum {1545 readonly isFee: boolean;1546 readonly isMisc: boolean;1547 readonly isAll: boolean;1548 readonly type: 'Fee' | 'Misc' | 'All';1549 }15501551 /** @name PalletBalancesReserveData (170) */1552 interface PalletBalancesReserveData extends Struct {1553 readonly id: U8aFixed;1554 readonly amount: u128;1555 }15561557 /** @name PalletBalancesReleases (172) */1558 interface PalletBalancesReleases extends Enum {1559 readonly isV100: boolean;1560 readonly isV200: boolean;1561 readonly type: 'V100' | 'V200';1562 }15631564 /** @name PalletBalancesCall (173) */1565 interface PalletBalancesCall extends Enum {1566 readonly isTransfer: boolean;1567 readonly asTransfer: {1568 readonly dest: MultiAddress;1569 readonly value: Compact<u128>;1570 } & Struct;1571 readonly isSetBalance: boolean;1572 readonly asSetBalance: {1573 readonly who: MultiAddress;1574 readonly newFree: Compact<u128>;1575 readonly newReserved: Compact<u128>;1576 } & Struct;1577 readonly isForceTransfer: boolean;1578 readonly asForceTransfer: {1579 readonly source: MultiAddress;1580 readonly dest: MultiAddress;1581 readonly value: Compact<u128>;1582 } & Struct;1583 readonly isTransferKeepAlive: boolean;1584 readonly asTransferKeepAlive: {1585 readonly dest: MultiAddress;1586 readonly value: Compact<u128>;1587 } & Struct;1588 readonly isTransferAll: boolean;1589 readonly asTransferAll: {1590 readonly dest: MultiAddress;1591 readonly keepAlive: bool;1592 } & Struct;1593 readonly isForceUnreserve: boolean;1594 readonly asForceUnreserve: {1595 readonly who: MultiAddress;1596 readonly amount: u128;1597 } & Struct;1598 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1599 }16001601 /** @name PalletBalancesError (176) */1602 interface PalletBalancesError extends Enum {1603 readonly isVestingBalance: boolean;1604 readonly isLiquidityRestrictions: boolean;1605 readonly isInsufficientBalance: boolean;1606 readonly isExistentialDeposit: boolean;1607 readonly isKeepAlive: boolean;1608 readonly isExistingVestingSchedule: boolean;1609 readonly isDeadAccount: boolean;1610 readonly isTooManyReserves: boolean;1611 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1612 }16131614 /** @name PalletTimestampCall (178) */1615 interface PalletTimestampCall extends Enum {1616 readonly isSet: boolean;1617 readonly asSet: {1618 readonly now: Compact<u64>;1619 } & Struct;1620 readonly type: 'Set';1621 }16221623 /** @name PalletTransactionPaymentReleases (180) */1624 interface PalletTransactionPaymentReleases extends Enum {1625 readonly isV1Ancient: boolean;1626 readonly isV2: boolean;1627 readonly type: 'V1Ancient' | 'V2';1628 }16291630 /** @name PalletTreasuryProposal (181) */1631 interface PalletTreasuryProposal extends Struct {1632 readonly proposer: AccountId32;1633 readonly value: u128;1634 readonly beneficiary: AccountId32;1635 readonly bond: u128;1636 }16371638 /** @name PalletTreasuryCall (184) */1639 interface PalletTreasuryCall extends Enum {1640 readonly isProposeSpend: boolean;1641 readonly asProposeSpend: {1642 readonly value: Compact<u128>;1643 readonly beneficiary: MultiAddress;1644 } & Struct;1645 readonly isRejectProposal: boolean;1646 readonly asRejectProposal: {1647 readonly proposalId: Compact<u32>;1648 } & Struct;1649 readonly isApproveProposal: boolean;1650 readonly asApproveProposal: {1651 readonly proposalId: Compact<u32>;1652 } & Struct;1653 readonly isSpend: boolean;1654 readonly asSpend: {1655 readonly amount: Compact<u128>;1656 readonly beneficiary: MultiAddress;1657 } & Struct;1658 readonly isRemoveApproval: boolean;1659 readonly asRemoveApproval: {1660 readonly proposalId: Compact<u32>;1661 } & Struct;1662 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1663 }16641665 /** @name FrameSupportPalletId (187) */1666 interface FrameSupportPalletId extends U8aFixed {}16671668 /** @name PalletTreasuryError (188) */1669 interface PalletTreasuryError extends Enum {1670 readonly isInsufficientProposersBalance: boolean;1671 readonly isInvalidIndex: boolean;1672 readonly isTooManyApprovals: boolean;1673 readonly isInsufficientPermission: boolean;1674 readonly isProposalNotApproved: boolean;1675 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1676 }16771678 /** @name PalletSudoCall (189) */1679 interface PalletSudoCall extends Enum {1680 readonly isSudo: boolean;1681 readonly asSudo: {1682 readonly call: Call;1683 } & Struct;1684 readonly isSudoUncheckedWeight: boolean;1685 readonly asSudoUncheckedWeight: {1686 readonly call: Call;1687 readonly weight: u64;1688 } & Struct;1689 readonly isSetKey: boolean;1690 readonly asSetKey: {1691 readonly new_: MultiAddress;1692 } & Struct;1693 readonly isSudoAs: boolean;1694 readonly asSudoAs: {1695 readonly who: MultiAddress;1696 readonly call: Call;1697 } & Struct;1698 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1699 }17001701 /** @name OrmlVestingModuleCall (191) */1702 interface OrmlVestingModuleCall extends Enum {1703 readonly isClaim: boolean;1704 readonly isVestedTransfer: boolean;1705 readonly asVestedTransfer: {1706 readonly dest: MultiAddress;1707 readonly schedule: OrmlVestingVestingSchedule;1708 } & Struct;1709 readonly isUpdateVestingSchedules: boolean;1710 readonly asUpdateVestingSchedules: {1711 readonly who: MultiAddress;1712 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1713 } & Struct;1714 readonly isClaimFor: boolean;1715 readonly asClaimFor: {1716 readonly dest: MultiAddress;1717 } & Struct;1718 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1719 }17201721 /** @name CumulusPalletXcmpQueueCall (193) */1722 interface CumulusPalletXcmpQueueCall extends Enum {1723 readonly isServiceOverweight: boolean;1724 readonly asServiceOverweight: {1725 readonly index: u64;1726 readonly weightLimit: u64;1727 } & Struct;1728 readonly isSuspendXcmExecution: boolean;1729 readonly isResumeXcmExecution: boolean;1730 readonly isUpdateSuspendThreshold: boolean;1731 readonly asUpdateSuspendThreshold: {1732 readonly new_: u32;1733 } & Struct;1734 readonly isUpdateDropThreshold: boolean;1735 readonly asUpdateDropThreshold: {1736 readonly new_: u32;1737 } & Struct;1738 readonly isUpdateResumeThreshold: boolean;1739 readonly asUpdateResumeThreshold: {1740 readonly new_: u32;1741 } & Struct;1742 readonly isUpdateThresholdWeight: boolean;1743 readonly asUpdateThresholdWeight: {1744 readonly new_: u64;1745 } & Struct;1746 readonly isUpdateWeightRestrictDecay: boolean;1747 readonly asUpdateWeightRestrictDecay: {1748 readonly new_: u64;1749 } & Struct;1750 readonly isUpdateXcmpMaxIndividualWeight: boolean;1751 readonly asUpdateXcmpMaxIndividualWeight: {1752 readonly new_: u64;1753 } & Struct;1754 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';1755 }17561757 /** @name PalletXcmCall (194) */1758 interface PalletXcmCall extends Enum {1759 readonly isSend: boolean;1760 readonly asSend: {1761 readonly dest: XcmVersionedMultiLocation;1762 readonly message: XcmVersionedXcm;1763 } & Struct;1764 readonly isTeleportAssets: boolean;1765 readonly asTeleportAssets: {1766 readonly dest: XcmVersionedMultiLocation;1767 readonly beneficiary: XcmVersionedMultiLocation;1768 readonly assets: XcmVersionedMultiAssets;1769 readonly feeAssetItem: u32;1770 } & Struct;1771 readonly isReserveTransferAssets: boolean;1772 readonly asReserveTransferAssets: {1773 readonly dest: XcmVersionedMultiLocation;1774 readonly beneficiary: XcmVersionedMultiLocation;1775 readonly assets: XcmVersionedMultiAssets;1776 readonly feeAssetItem: u32;1777 } & Struct;1778 readonly isExecute: boolean;1779 readonly asExecute: {1780 readonly message: XcmVersionedXcm;1781 readonly maxWeight: u64;1782 } & Struct;1783 readonly isForceXcmVersion: boolean;1784 readonly asForceXcmVersion: {1785 readonly location: XcmV1MultiLocation;1786 readonly xcmVersion: u32;1787 } & Struct;1788 readonly isForceDefaultXcmVersion: boolean;1789 readonly asForceDefaultXcmVersion: {1790 readonly maybeXcmVersion: Option<u32>;1791 } & Struct;1792 readonly isForceSubscribeVersionNotify: boolean;1793 readonly asForceSubscribeVersionNotify: {1794 readonly location: XcmVersionedMultiLocation;1795 } & Struct;1796 readonly isForceUnsubscribeVersionNotify: boolean;1797 readonly asForceUnsubscribeVersionNotify: {1798 readonly location: XcmVersionedMultiLocation;1799 } & Struct;1800 readonly isLimitedReserveTransferAssets: boolean;1801 readonly asLimitedReserveTransferAssets: {1802 readonly dest: XcmVersionedMultiLocation;1803 readonly beneficiary: XcmVersionedMultiLocation;1804 readonly assets: XcmVersionedMultiAssets;1805 readonly feeAssetItem: u32;1806 readonly weightLimit: XcmV2WeightLimit;1807 } & Struct;1808 readonly isLimitedTeleportAssets: boolean;1809 readonly asLimitedTeleportAssets: {1810 readonly dest: XcmVersionedMultiLocation;1811 readonly beneficiary: XcmVersionedMultiLocation;1812 readonly assets: XcmVersionedMultiAssets;1813 readonly feeAssetItem: u32;1814 readonly weightLimit: XcmV2WeightLimit;1815 } & Struct;1816 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1817 }18181819 /** @name XcmVersionedXcm (195) */1820 interface XcmVersionedXcm extends Enum {1821 readonly isV0: boolean;1822 readonly asV0: XcmV0Xcm;1823 readonly isV1: boolean;1824 readonly asV1: XcmV1Xcm;1825 readonly isV2: boolean;1826 readonly asV2: XcmV2Xcm;1827 readonly type: 'V0' | 'V1' | 'V2';1828 }18291830 /** @name XcmV0Xcm (196) */1831 interface XcmV0Xcm extends Enum {1832 readonly isWithdrawAsset: boolean;1833 readonly asWithdrawAsset: {1834 readonly assets: Vec<XcmV0MultiAsset>;1835 readonly effects: Vec<XcmV0Order>;1836 } & Struct;1837 readonly isReserveAssetDeposit: boolean;1838 readonly asReserveAssetDeposit: {1839 readonly assets: Vec<XcmV0MultiAsset>;1840 readonly effects: Vec<XcmV0Order>;1841 } & Struct;1842 readonly isTeleportAsset: boolean;1843 readonly asTeleportAsset: {1844 readonly assets: Vec<XcmV0MultiAsset>;1845 readonly effects: Vec<XcmV0Order>;1846 } & Struct;1847 readonly isQueryResponse: boolean;1848 readonly asQueryResponse: {1849 readonly queryId: Compact<u64>;1850 readonly response: XcmV0Response;1851 } & Struct;1852 readonly isTransferAsset: boolean;1853 readonly asTransferAsset: {1854 readonly assets: Vec<XcmV0MultiAsset>;1855 readonly dest: XcmV0MultiLocation;1856 } & Struct;1857 readonly isTransferReserveAsset: boolean;1858 readonly asTransferReserveAsset: {1859 readonly assets: Vec<XcmV0MultiAsset>;1860 readonly dest: XcmV0MultiLocation;1861 readonly effects: Vec<XcmV0Order>;1862 } & Struct;1863 readonly isTransact: boolean;1864 readonly asTransact: {1865 readonly originType: XcmV0OriginKind;1866 readonly requireWeightAtMost: u64;1867 readonly call: XcmDoubleEncoded;1868 } & Struct;1869 readonly isHrmpNewChannelOpenRequest: boolean;1870 readonly asHrmpNewChannelOpenRequest: {1871 readonly sender: Compact<u32>;1872 readonly maxMessageSize: Compact<u32>;1873 readonly maxCapacity: Compact<u32>;1874 } & Struct;1875 readonly isHrmpChannelAccepted: boolean;1876 readonly asHrmpChannelAccepted: {1877 readonly recipient: Compact<u32>;1878 } & Struct;1879 readonly isHrmpChannelClosing: boolean;1880 readonly asHrmpChannelClosing: {1881 readonly initiator: Compact<u32>;1882 readonly sender: Compact<u32>;1883 readonly recipient: Compact<u32>;1884 } & Struct;1885 readonly isRelayedFrom: boolean;1886 readonly asRelayedFrom: {1887 readonly who: XcmV0MultiLocation;1888 readonly message: XcmV0Xcm;1889 } & Struct;1890 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';1891 }18921893 /** @name XcmV0Order (198) */1894 interface XcmV0Order extends Enum {1895 readonly isNull: boolean;1896 readonly isDepositAsset: boolean;1897 readonly asDepositAsset: {1898 readonly assets: Vec<XcmV0MultiAsset>;1899 readonly dest: XcmV0MultiLocation;1900 } & Struct;1901 readonly isDepositReserveAsset: boolean;1902 readonly asDepositReserveAsset: {1903 readonly assets: Vec<XcmV0MultiAsset>;1904 readonly dest: XcmV0MultiLocation;1905 readonly effects: Vec<XcmV0Order>;1906 } & Struct;1907 readonly isExchangeAsset: boolean;1908 readonly asExchangeAsset: {1909 readonly give: Vec<XcmV0MultiAsset>;1910 readonly receive: Vec<XcmV0MultiAsset>;1911 } & Struct;1912 readonly isInitiateReserveWithdraw: boolean;1913 readonly asInitiateReserveWithdraw: {1914 readonly assets: Vec<XcmV0MultiAsset>;1915 readonly reserve: XcmV0MultiLocation;1916 readonly effects: Vec<XcmV0Order>;1917 } & Struct;1918 readonly isInitiateTeleport: boolean;1919 readonly asInitiateTeleport: {1920 readonly assets: Vec<XcmV0MultiAsset>;1921 readonly dest: XcmV0MultiLocation;1922 readonly effects: Vec<XcmV0Order>;1923 } & Struct;1924 readonly isQueryHolding: boolean;1925 readonly asQueryHolding: {1926 readonly queryId: Compact<u64>;1927 readonly dest: XcmV0MultiLocation;1928 readonly assets: Vec<XcmV0MultiAsset>;1929 } & Struct;1930 readonly isBuyExecution: boolean;1931 readonly asBuyExecution: {1932 readonly fees: XcmV0MultiAsset;1933 readonly weight: u64;1934 readonly debt: u64;1935 readonly haltOnError: bool;1936 readonly xcm: Vec<XcmV0Xcm>;1937 } & Struct;1938 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1939 }19401941 /** @name XcmV0Response (200) */1942 interface XcmV0Response extends Enum {1943 readonly isAssets: boolean;1944 readonly asAssets: Vec<XcmV0MultiAsset>;1945 readonly type: 'Assets';1946 }19471948 /** @name XcmV1Xcm (201) */1949 interface XcmV1Xcm extends Enum {1950 readonly isWithdrawAsset: boolean;1951 readonly asWithdrawAsset: {1952 readonly assets: XcmV1MultiassetMultiAssets;1953 readonly effects: Vec<XcmV1Order>;1954 } & Struct;1955 readonly isReserveAssetDeposited: boolean;1956 readonly asReserveAssetDeposited: {1957 readonly assets: XcmV1MultiassetMultiAssets;1958 readonly effects: Vec<XcmV1Order>;1959 } & Struct;1960 readonly isReceiveTeleportedAsset: boolean;1961 readonly asReceiveTeleportedAsset: {1962 readonly assets: XcmV1MultiassetMultiAssets;1963 readonly effects: Vec<XcmV1Order>;1964 } & Struct;1965 readonly isQueryResponse: boolean;1966 readonly asQueryResponse: {1967 readonly queryId: Compact<u64>;1968 readonly response: XcmV1Response;1969 } & Struct;1970 readonly isTransferAsset: boolean;1971 readonly asTransferAsset: {1972 readonly assets: XcmV1MultiassetMultiAssets;1973 readonly beneficiary: XcmV1MultiLocation;1974 } & Struct;1975 readonly isTransferReserveAsset: boolean;1976 readonly asTransferReserveAsset: {1977 readonly assets: XcmV1MultiassetMultiAssets;1978 readonly dest: XcmV1MultiLocation;1979 readonly effects: Vec<XcmV1Order>;1980 } & Struct;1981 readonly isTransact: boolean;1982 readonly asTransact: {1983 readonly originType: XcmV0OriginKind;1984 readonly requireWeightAtMost: u64;1985 readonly call: XcmDoubleEncoded;1986 } & Struct;1987 readonly isHrmpNewChannelOpenRequest: boolean;1988 readonly asHrmpNewChannelOpenRequest: {1989 readonly sender: Compact<u32>;1990 readonly maxMessageSize: Compact<u32>;1991 readonly maxCapacity: Compact<u32>;1992 } & Struct;1993 readonly isHrmpChannelAccepted: boolean;1994 readonly asHrmpChannelAccepted: {1995 readonly recipient: Compact<u32>;1996 } & Struct;1997 readonly isHrmpChannelClosing: boolean;1998 readonly asHrmpChannelClosing: {1999 readonly initiator: Compact<u32>;2000 readonly sender: Compact<u32>;2001 readonly recipient: Compact<u32>;2002 } & Struct;2003 readonly isRelayedFrom: boolean;2004 readonly asRelayedFrom: {2005 readonly who: XcmV1MultilocationJunctions;2006 readonly message: XcmV1Xcm;2007 } & Struct;2008 readonly isSubscribeVersion: boolean;2009 readonly asSubscribeVersion: {2010 readonly queryId: Compact<u64>;2011 readonly maxResponseWeight: Compact<u64>;2012 } & Struct;2013 readonly isUnsubscribeVersion: boolean;2014 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2015 }20162017 /** @name XcmV1Order (203) */2018 interface XcmV1Order extends Enum {2019 readonly isNoop: boolean;2020 readonly isDepositAsset: boolean;2021 readonly asDepositAsset: {2022 readonly assets: XcmV1MultiassetMultiAssetFilter;2023 readonly maxAssets: u32;2024 readonly beneficiary: XcmV1MultiLocation;2025 } & Struct;2026 readonly isDepositReserveAsset: boolean;2027 readonly asDepositReserveAsset: {2028 readonly assets: XcmV1MultiassetMultiAssetFilter;2029 readonly maxAssets: u32;2030 readonly dest: XcmV1MultiLocation;2031 readonly effects: Vec<XcmV1Order>;2032 } & Struct;2033 readonly isExchangeAsset: boolean;2034 readonly asExchangeAsset: {2035 readonly give: XcmV1MultiassetMultiAssetFilter;2036 readonly receive: XcmV1MultiassetMultiAssets;2037 } & Struct;2038 readonly isInitiateReserveWithdraw: boolean;2039 readonly asInitiateReserveWithdraw: {2040 readonly assets: XcmV1MultiassetMultiAssetFilter;2041 readonly reserve: XcmV1MultiLocation;2042 readonly effects: Vec<XcmV1Order>;2043 } & Struct;2044 readonly isInitiateTeleport: boolean;2045 readonly asInitiateTeleport: {2046 readonly assets: XcmV1MultiassetMultiAssetFilter;2047 readonly dest: XcmV1MultiLocation;2048 readonly effects: Vec<XcmV1Order>;2049 } & Struct;2050 readonly isQueryHolding: boolean;2051 readonly asQueryHolding: {2052 readonly queryId: Compact<u64>;2053 readonly dest: XcmV1MultiLocation;2054 readonly assets: XcmV1MultiassetMultiAssetFilter;2055 } & Struct;2056 readonly isBuyExecution: boolean;2057 readonly asBuyExecution: {2058 readonly fees: XcmV1MultiAsset;2059 readonly weight: u64;2060 readonly debt: u64;2061 readonly haltOnError: bool;2062 readonly instructions: Vec<XcmV1Xcm>;2063 } & Struct;2064 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2065 }20662067 /** @name XcmV1Response (205) */2068 interface XcmV1Response extends Enum {2069 readonly isAssets: boolean;2070 readonly asAssets: XcmV1MultiassetMultiAssets;2071 readonly isVersion: boolean;2072 readonly asVersion: u32;2073 readonly type: 'Assets' | 'Version';2074 }20752076 /** @name CumulusPalletXcmCall (219) */2077 type CumulusPalletXcmCall = Null;20782079 /** @name CumulusPalletDmpQueueCall (220) */2080 interface CumulusPalletDmpQueueCall extends Enum {2081 readonly isServiceOverweight: boolean;2082 readonly asServiceOverweight: {2083 readonly index: u64;2084 readonly weightLimit: u64;2085 } & Struct;2086 readonly type: 'ServiceOverweight';2087 }20882089 /** @name PalletInflationCall (221) */2090 interface PalletInflationCall extends Enum {2091 readonly isStartInflation: boolean;2092 readonly asStartInflation: {2093 readonly inflationStartRelayBlock: u32;2094 } & Struct;2095 readonly type: 'StartInflation';2096 }20972098 /** @name PalletUniqueCall (222) */2099 interface PalletUniqueCall extends Enum {2100 readonly isCreateCollection: boolean;2101 readonly asCreateCollection: {2102 readonly collectionName: Vec<u16>;2103 readonly collectionDescription: Vec<u16>;2104 readonly tokenPrefix: Bytes;2105 readonly mode: UpDataStructsCollectionMode;2106 } & Struct;2107 readonly isCreateCollectionEx: boolean;2108 readonly asCreateCollectionEx: {2109 readonly data: UpDataStructsCreateCollectionData;2110 } & Struct;2111 readonly isDestroyCollection: boolean;2112 readonly asDestroyCollection: {2113 readonly collectionId: u32;2114 } & Struct;2115 readonly isAddToAllowList: boolean;2116 readonly asAddToAllowList: {2117 readonly collectionId: u32;2118 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2119 } & Struct;2120 readonly isRemoveFromAllowList: boolean;2121 readonly asRemoveFromAllowList: {2122 readonly collectionId: u32;2123 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2124 } & Struct;2125 readonly isChangeCollectionOwner: boolean;2126 readonly asChangeCollectionOwner: {2127 readonly collectionId: u32;2128 readonly newOwner: AccountId32;2129 } & Struct;2130 readonly isAddCollectionAdmin: boolean;2131 readonly asAddCollectionAdmin: {2132 readonly collectionId: u32;2133 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2134 } & Struct;2135 readonly isRemoveCollectionAdmin: boolean;2136 readonly asRemoveCollectionAdmin: {2137 readonly collectionId: u32;2138 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2139 } & Struct;2140 readonly isSetCollectionSponsor: boolean;2141 readonly asSetCollectionSponsor: {2142 readonly collectionId: u32;2143 readonly newSponsor: AccountId32;2144 } & Struct;2145 readonly isConfirmSponsorship: boolean;2146 readonly asConfirmSponsorship: {2147 readonly collectionId: u32;2148 } & Struct;2149 readonly isRemoveCollectionSponsor: boolean;2150 readonly asRemoveCollectionSponsor: {2151 readonly collectionId: u32;2152 } & Struct;2153 readonly isCreateItem: boolean;2154 readonly asCreateItem: {2155 readonly collectionId: u32;2156 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2157 readonly data: UpDataStructsCreateItemData;2158 } & Struct;2159 readonly isCreateMultipleItems: boolean;2160 readonly asCreateMultipleItems: {2161 readonly collectionId: u32;2162 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2163 readonly itemsData: Vec<UpDataStructsCreateItemData>;2164 } & Struct;2165 readonly isSetCollectionProperties: boolean;2166 readonly asSetCollectionProperties: {2167 readonly collectionId: u32;2168 readonly properties: Vec<UpDataStructsProperty>;2169 } & Struct;2170 readonly isDeleteCollectionProperties: boolean;2171 readonly asDeleteCollectionProperties: {2172 readonly collectionId: u32;2173 readonly propertyKeys: Vec<Bytes>;2174 } & Struct;2175 readonly isSetTokenProperties: boolean;2176 readonly asSetTokenProperties: {2177 readonly collectionId: u32;2178 readonly tokenId: u32;2179 readonly properties: Vec<UpDataStructsProperty>;2180 } & Struct;2181 readonly isDeleteTokenProperties: boolean;2182 readonly asDeleteTokenProperties: {2183 readonly collectionId: u32;2184 readonly tokenId: u32;2185 readonly propertyKeys: Vec<Bytes>;2186 } & Struct;2187 readonly isSetTokenPropertyPermissions: boolean;2188 readonly asSetTokenPropertyPermissions: {2189 readonly collectionId: u32;2190 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2191 } & Struct;2192 readonly isCreateMultipleItemsEx: boolean;2193 readonly asCreateMultipleItemsEx: {2194 readonly collectionId: u32;2195 readonly data: UpDataStructsCreateItemExData;2196 } & Struct;2197 readonly isSetTransfersEnabledFlag: boolean;2198 readonly asSetTransfersEnabledFlag: {2199 readonly collectionId: u32;2200 readonly value: bool;2201 } & Struct;2202 readonly isBurnItem: boolean;2203 readonly asBurnItem: {2204 readonly collectionId: u32;2205 readonly itemId: u32;2206 readonly value: u128;2207 } & Struct;2208 readonly isBurnFrom: boolean;2209 readonly asBurnFrom: {2210 readonly collectionId: u32;2211 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2212 readonly itemId: u32;2213 readonly value: u128;2214 } & Struct;2215 readonly isTransfer: boolean;2216 readonly asTransfer: {2217 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2218 readonly collectionId: u32;2219 readonly itemId: u32;2220 readonly value: u128;2221 } & Struct;2222 readonly isApprove: boolean;2223 readonly asApprove: {2224 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2225 readonly collectionId: u32;2226 readonly itemId: u32;2227 readonly amount: u128;2228 } & Struct;2229 readonly isTransferFrom: boolean;2230 readonly asTransferFrom: {2231 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2232 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2233 readonly collectionId: u32;2234 readonly itemId: u32;2235 readonly value: u128;2236 } & Struct;2237 readonly isSetCollectionLimits: boolean;2238 readonly asSetCollectionLimits: {2239 readonly collectionId: u32;2240 readonly newLimit: UpDataStructsCollectionLimits;2241 } & Struct;2242 readonly isSetCollectionPermissions: boolean;2243 readonly asSetCollectionPermissions: {2244 readonly collectionId: u32;2245 readonly newPermission: UpDataStructsCollectionPermissions;2246 } & Struct;2247 readonly isRepartition: boolean;2248 readonly asRepartition: {2249 readonly collectionId: u32;2250 readonly tokenId: u32;2251 readonly amount: u128;2252 } & Struct;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';2254 }22552256 /** @name UpDataStructsCollectionMode (227) */2257 interface UpDataStructsCollectionMode extends Enum {2258 readonly isNft: boolean;2259 readonly isFungible: boolean;2260 readonly asFungible: u8;2261 readonly isReFungible: boolean;2262 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2263 }22642265 /** @name UpDataStructsCreateCollectionData (228) */2266 interface UpDataStructsCreateCollectionData extends Struct {2267 readonly mode: UpDataStructsCollectionMode;2268 readonly access: Option<UpDataStructsAccessMode>;2269 readonly name: Vec<u16>;2270 readonly description: Vec<u16>;2271 readonly tokenPrefix: Bytes;2272 readonly pendingSponsor: Option<AccountId32>;2273 readonly limits: Option<UpDataStructsCollectionLimits>;2274 readonly permissions: Option<UpDataStructsCollectionPermissions>;2275 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2276 readonly properties: Vec<UpDataStructsProperty>;2277 }22782279 /** @name UpDataStructsAccessMode (230) */2280 interface UpDataStructsAccessMode extends Enum {2281 readonly isNormal: boolean;2282 readonly isAllowList: boolean;2283 readonly type: 'Normal' | 'AllowList';2284 }22852286 /** @name UpDataStructsCollectionLimits (232) */2287 interface UpDataStructsCollectionLimits extends Struct {2288 readonly accountTokenOwnershipLimit: Option<u32>;2289 readonly sponsoredDataSize: Option<u32>;2290 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2291 readonly tokenLimit: Option<u32>;2292 readonly sponsorTransferTimeout: Option<u32>;2293 readonly sponsorApproveTimeout: Option<u32>;2294 readonly ownerCanTransfer: Option<bool>;2295 readonly ownerCanDestroy: Option<bool>;2296 readonly transfersEnabled: Option<bool>;2297 }22982299 /** @name UpDataStructsSponsoringRateLimit (234) */2300 interface UpDataStructsSponsoringRateLimit extends Enum {2301 readonly isSponsoringDisabled: boolean;2302 readonly isBlocks: boolean;2303 readonly asBlocks: u32;2304 readonly type: 'SponsoringDisabled' | 'Blocks';2305 }23062307 /** @name UpDataStructsCollectionPermissions (237) */2308 interface UpDataStructsCollectionPermissions extends Struct {2309 readonly access: Option<UpDataStructsAccessMode>;2310 readonly mintMode: Option<bool>;2311 readonly nesting: Option<UpDataStructsNestingPermissions>;2312 }23132314 /** @name UpDataStructsNestingPermissions (239) */2315 interface UpDataStructsNestingPermissions extends Struct {2316 readonly tokenOwner: bool;2317 readonly collectionAdmin: bool;2318 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2319 }23202321 /** @name UpDataStructsOwnerRestrictedSet (241) */2322 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}23232324 /** @name UpDataStructsPropertyKeyPermission (246) */2325 interface UpDataStructsPropertyKeyPermission extends Struct {2326 readonly key: Bytes;2327 readonly permission: UpDataStructsPropertyPermission;2328 }23292330 /** @name UpDataStructsPropertyPermission (247) */2331 interface UpDataStructsPropertyPermission extends Struct {2332 readonly mutable: bool;2333 readonly collectionAdmin: bool;2334 readonly tokenOwner: bool;2335 }23362337 /** @name UpDataStructsProperty (250) */2338 interface UpDataStructsProperty extends Struct {2339 readonly key: Bytes;2340 readonly value: Bytes;2341 }23422343 /** @name UpDataStructsCreateItemData (253) */2344 interface UpDataStructsCreateItemData extends Enum {2345 readonly isNft: boolean;2346 readonly asNft: UpDataStructsCreateNftData;2347 readonly isFungible: boolean;2348 readonly asFungible: UpDataStructsCreateFungibleData;2349 readonly isReFungible: boolean;2350 readonly asReFungible: UpDataStructsCreateReFungibleData;2351 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2352 }23532354 /** @name UpDataStructsCreateNftData (254) */2355 interface UpDataStructsCreateNftData extends Struct {2356 readonly properties: Vec<UpDataStructsProperty>;2357 }23582359 /** @name UpDataStructsCreateFungibleData (255) */2360 interface UpDataStructsCreateFungibleData extends Struct {2361 readonly value: u128;2362 }23632364 /** @name UpDataStructsCreateReFungibleData (256) */2365 interface UpDataStructsCreateReFungibleData extends Struct {2366 readonly pieces: u128;2367 readonly properties: Vec<UpDataStructsProperty>;2368 }23692370 /** @name UpDataStructsCreateItemExData (259) */2371 interface UpDataStructsCreateItemExData extends Enum {2372 readonly isNft: boolean;2373 readonly asNft: Vec<UpDataStructsCreateNftExData>;2374 readonly isFungible: boolean;2375 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2376 readonly isRefungibleMultipleItems: boolean;2377 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2378 readonly isRefungibleMultipleOwners: boolean;2379 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2380 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2381 }23822383 /** @name UpDataStructsCreateNftExData (261) */2384 interface UpDataStructsCreateNftExData extends Struct {2385 readonly properties: Vec<UpDataStructsProperty>;2386 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2387 }23882389 /** @name UpDataStructsCreateRefungibleExSingleOwner (268) */2390 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2391 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2392 readonly pieces: u128;2393 readonly properties: Vec<UpDataStructsProperty>;2394 }23952396 /** @name UpDataStructsCreateRefungibleExMultipleOwners (270) */2397 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2398 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2399 readonly properties: Vec<UpDataStructsProperty>;2400 }24012402 /** @name PalletUniqueSchedulerCall (271) */2403 interface PalletUniqueSchedulerCall extends Enum {2404 readonly isScheduleNamed: boolean;2405 readonly asScheduleNamed: {2406 readonly id: U8aFixed;2407 readonly when: u32;2408 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2409 readonly priority: u8;2410 readonly call: FrameSupportScheduleMaybeHashed;2411 } & Struct;2412 readonly isCancelNamed: boolean;2413 readonly asCancelNamed: {2414 readonly id: U8aFixed;2415 } & Struct;2416 readonly isScheduleNamedAfter: boolean;2417 readonly asScheduleNamedAfter: {2418 readonly id: U8aFixed;2419 readonly after: u32;2420 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2421 readonly priority: u8;2422 readonly call: FrameSupportScheduleMaybeHashed;2423 } & Struct;2424 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2425 }24262427 /** @name FrameSupportScheduleMaybeHashed (273) */2428 interface FrameSupportScheduleMaybeHashed extends Enum {2429 readonly isValue: boolean;2430 readonly asValue: Call;2431 readonly isHash: boolean;2432 readonly asHash: H256;2433 readonly type: 'Value' | 'Hash';2434 }24352436 /** @name PalletConfigurationCall (274) */2437 interface PalletConfigurationCall extends Enum {2438 readonly isSetWeightToFeeCoefficientOverride: boolean;2439 readonly asSetWeightToFeeCoefficientOverride: {2440 readonly coeff: Option<u32>;2441 } & Struct;2442 readonly isSetMinGasPriceOverride: boolean;2443 readonly asSetMinGasPriceOverride: {2444 readonly coeff: Option<u64>;2445 } & Struct;2446 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2447 }24482449 /** @name PalletTemplateTransactionPaymentCall (275) */2450 type PalletTemplateTransactionPaymentCall = Null;24512452 /** @name PalletStructureCall (276) */2453 type PalletStructureCall = Null;24542455 /** @name PalletRmrkCoreCall (277) */2456 interface PalletRmrkCoreCall extends Enum {2457 readonly isCreateCollection: boolean;2458 readonly asCreateCollection: {2459 readonly metadata: Bytes;2460 readonly max: Option<u32>;2461 readonly symbol: Bytes;2462 } & Struct;2463 readonly isDestroyCollection: boolean;2464 readonly asDestroyCollection: {2465 readonly collectionId: u32;2466 } & Struct;2467 readonly isChangeCollectionIssuer: boolean;2468 readonly asChangeCollectionIssuer: {2469 readonly collectionId: u32;2470 readonly newIssuer: MultiAddress;2471 } & Struct;2472 readonly isLockCollection: boolean;2473 readonly asLockCollection: {2474 readonly collectionId: u32;2475 } & Struct;2476 readonly isMintNft: boolean;2477 readonly asMintNft: {2478 readonly owner: Option<AccountId32>;2479 readonly collectionId: u32;2480 readonly recipient: Option<AccountId32>;2481 readonly royaltyAmount: Option<Permill>;2482 readonly metadata: Bytes;2483 readonly transferable: bool;2484 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2485 } & Struct;2486 readonly isBurnNft: boolean;2487 readonly asBurnNft: {2488 readonly collectionId: u32;2489 readonly nftId: u32;2490 readonly maxBurns: u32;2491 } & Struct;2492 readonly isSend: boolean;2493 readonly asSend: {2494 readonly rmrkCollectionId: u32;2495 readonly rmrkNftId: u32;2496 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2497 } & Struct;2498 readonly isAcceptNft: boolean;2499 readonly asAcceptNft: {2500 readonly rmrkCollectionId: u32;2501 readonly rmrkNftId: u32;2502 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2503 } & Struct;2504 readonly isRejectNft: boolean;2505 readonly asRejectNft: {2506 readonly rmrkCollectionId: u32;2507 readonly rmrkNftId: u32;2508 } & Struct;2509 readonly isAcceptResource: boolean;2510 readonly asAcceptResource: {2511 readonly rmrkCollectionId: u32;2512 readonly rmrkNftId: u32;2513 readonly resourceId: u32;2514 } & Struct;2515 readonly isAcceptResourceRemoval: boolean;2516 readonly asAcceptResourceRemoval: {2517 readonly rmrkCollectionId: u32;2518 readonly rmrkNftId: u32;2519 readonly resourceId: u32;2520 } & Struct;2521 readonly isSetProperty: boolean;2522 readonly asSetProperty: {2523 readonly rmrkCollectionId: Compact<u32>;2524 readonly maybeNftId: Option<u32>;2525 readonly key: Bytes;2526 readonly value: Bytes;2527 } & Struct;2528 readonly isSetPriority: boolean;2529 readonly asSetPriority: {2530 readonly rmrkCollectionId: u32;2531 readonly rmrkNftId: u32;2532 readonly priorities: Vec<u32>;2533 } & Struct;2534 readonly isAddBasicResource: boolean;2535 readonly asAddBasicResource: {2536 readonly rmrkCollectionId: u32;2537 readonly nftId: u32;2538 readonly resource: RmrkTraitsResourceBasicResource;2539 } & Struct;2540 readonly isAddComposableResource: boolean;2541 readonly asAddComposableResource: {2542 readonly rmrkCollectionId: u32;2543 readonly nftId: u32;2544 readonly resource: RmrkTraitsResourceComposableResource;2545 } & Struct;2546 readonly isAddSlotResource: boolean;2547 readonly asAddSlotResource: {2548 readonly rmrkCollectionId: u32;2549 readonly nftId: u32;2550 readonly resource: RmrkTraitsResourceSlotResource;2551 } & Struct;2552 readonly isRemoveResource: boolean;2553 readonly asRemoveResource: {2554 readonly rmrkCollectionId: u32;2555 readonly nftId: u32;2556 readonly resourceId: u32;2557 } & Struct;2558 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2559 }25602561 /** @name RmrkTraitsResourceResourceTypes (283) */2562 interface RmrkTraitsResourceResourceTypes extends Enum {2563 readonly isBasic: boolean;2564 readonly asBasic: RmrkTraitsResourceBasicResource;2565 readonly isComposable: boolean;2566 readonly asComposable: RmrkTraitsResourceComposableResource;2567 readonly isSlot: boolean;2568 readonly asSlot: RmrkTraitsResourceSlotResource;2569 readonly type: 'Basic' | 'Composable' | 'Slot';2570 }25712572 /** @name RmrkTraitsResourceBasicResource (285) */2573 interface RmrkTraitsResourceBasicResource extends Struct {2574 readonly src: Option<Bytes>;2575 readonly metadata: Option<Bytes>;2576 readonly license: Option<Bytes>;2577 readonly thumb: Option<Bytes>;2578 }25792580 /** @name RmrkTraitsResourceComposableResource (287) */2581 interface RmrkTraitsResourceComposableResource extends Struct {2582 readonly parts: Vec<u32>;2583 readonly base: u32;2584 readonly src: Option<Bytes>;2585 readonly metadata: Option<Bytes>;2586 readonly license: Option<Bytes>;2587 readonly thumb: Option<Bytes>;2588 }25892590 /** @name RmrkTraitsResourceSlotResource (288) */2591 interface RmrkTraitsResourceSlotResource extends Struct {2592 readonly base: u32;2593 readonly src: Option<Bytes>;2594 readonly metadata: Option<Bytes>;2595 readonly slot: u32;2596 readonly license: Option<Bytes>;2597 readonly thumb: Option<Bytes>;2598 }25992600 /** @name PalletRmrkEquipCall (291) */2601 interface PalletRmrkEquipCall extends Enum {2602 readonly isCreateBase: boolean;2603 readonly asCreateBase: {2604 readonly baseType: Bytes;2605 readonly symbol: Bytes;2606 readonly parts: Vec<RmrkTraitsPartPartType>;2607 } & Struct;2608 readonly isThemeAdd: boolean;2609 readonly asThemeAdd: {2610 readonly baseId: u32;2611 readonly theme: RmrkTraitsTheme;2612 } & Struct;2613 readonly isEquippable: boolean;2614 readonly asEquippable: {2615 readonly baseId: u32;2616 readonly slotId: u32;2617 readonly equippables: RmrkTraitsPartEquippableList;2618 } & Struct;2619 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2620 }26212622 /** @name RmrkTraitsPartPartType (294) */2623 interface RmrkTraitsPartPartType extends Enum {2624 readonly isFixedPart: boolean;2625 readonly asFixedPart: RmrkTraitsPartFixedPart;2626 readonly isSlotPart: boolean;2627 readonly asSlotPart: RmrkTraitsPartSlotPart;2628 readonly type: 'FixedPart' | 'SlotPart';2629 }26302631 /** @name RmrkTraitsPartFixedPart (296) */2632 interface RmrkTraitsPartFixedPart extends Struct {2633 readonly id: u32;2634 readonly z: u32;2635 readonly src: Bytes;2636 }26372638 /** @name RmrkTraitsPartSlotPart (297) */2639 interface RmrkTraitsPartSlotPart extends Struct {2640 readonly id: u32;2641 readonly equippable: RmrkTraitsPartEquippableList;2642 readonly src: Bytes;2643 readonly z: u32;2644 }26452646 /** @name RmrkTraitsPartEquippableList (298) */2647 interface RmrkTraitsPartEquippableList extends Enum {2648 readonly isAll: boolean;2649 readonly isEmpty: boolean;2650 readonly isCustom: boolean;2651 readonly asCustom: Vec<u32>;2652 readonly type: 'All' | 'Empty' | 'Custom';2653 }26542655 /** @name RmrkTraitsTheme (300) */2656 interface RmrkTraitsTheme extends Struct {2657 readonly name: Bytes;2658 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2659 readonly inherit: bool;2660 }26612662 /** @name RmrkTraitsThemeThemeProperty (302) */2663 interface RmrkTraitsThemeThemeProperty extends Struct {2664 readonly key: Bytes;2665 readonly value: Bytes;2666 }26672668 /** @name PalletAppPromotionCall (304) */2669 interface PalletAppPromotionCall extends Enum {2670 readonly isSetAdminAddress: boolean;2671 readonly asSetAdminAddress: {2672 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2673 } & Struct;2674 readonly isStake: boolean;2675 readonly asStake: {2676 readonly amount: u128;2677 } & Struct;2678 readonly isUnstake: boolean;2679 readonly isSponsorCollection: boolean;2680 readonly asSponsorCollection: {2681 readonly collectionId: u32;2682 } & Struct;2683 readonly isStopSponsoringCollection: boolean;2684 readonly asStopSponsoringCollection: {2685 readonly collectionId: u32;2686 } & Struct;2687 readonly isSponsorConract: boolean;2688 readonly asSponsorConract: {2689 readonly contractId: H160;2690 } & Struct;2691 readonly isStopSponsoringContract: boolean;2692 readonly asStopSponsoringContract: {2693 readonly contractId: H160;2694 } & Struct;2695 readonly isPayoutStakers: boolean;2696 readonly asPayoutStakers: {2697 readonly stakersNumber: Option<u8>;2698 } & Struct;2699 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorConract' | 'StopSponsoringContract' | 'PayoutStakers';2700 }27012702 /** @name PalletEvmCall (306) */2703 interface PalletEvmCall extends Enum {2704 readonly isWithdraw: boolean;2705 readonly asWithdraw: {2706 readonly address: H160;2707 readonly value: u128;2708 } & Struct;2709 readonly isCall: boolean;2710 readonly asCall: {2711 readonly source: H160;2712 readonly target: H160;2713 readonly input: Bytes;2714 readonly value: U256;2715 readonly gasLimit: u64;2716 readonly maxFeePerGas: U256;2717 readonly maxPriorityFeePerGas: Option<U256>;2718 readonly nonce: Option<U256>;2719 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2720 } & Struct;2721 readonly isCreate: boolean;2722 readonly asCreate: {2723 readonly source: H160;2724 readonly init: Bytes;2725 readonly value: U256;2726 readonly gasLimit: u64;2727 readonly maxFeePerGas: U256;2728 readonly maxPriorityFeePerGas: Option<U256>;2729 readonly nonce: Option<U256>;2730 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2731 } & Struct;2732 readonly isCreate2: boolean;2733 readonly asCreate2: {2734 readonly source: H160;2735 readonly init: Bytes;2736 readonly salt: H256;2737 readonly value: U256;2738 readonly gasLimit: u64;2739 readonly maxFeePerGas: U256;2740 readonly maxPriorityFeePerGas: Option<U256>;2741 readonly nonce: Option<U256>;2742 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2743 } & Struct;2744 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2745 }27462747 /** @name PalletEthereumCall (310) */2748 interface PalletEthereumCall extends Enum {2749 readonly isTransact: boolean;2750 readonly asTransact: {2751 readonly transaction: EthereumTransactionTransactionV2;2752 } & Struct;2753 readonly type: 'Transact';2754 }27552756 /** @name EthereumTransactionTransactionV2 (311) */2757 interface EthereumTransactionTransactionV2 extends Enum {2758 readonly isLegacy: boolean;2759 readonly asLegacy: EthereumTransactionLegacyTransaction;2760 readonly isEip2930: boolean;2761 readonly asEip2930: EthereumTransactionEip2930Transaction;2762 readonly isEip1559: boolean;2763 readonly asEip1559: EthereumTransactionEip1559Transaction;2764 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2765 }27662767 /** @name EthereumTransactionLegacyTransaction (312) */2768 interface EthereumTransactionLegacyTransaction extends Struct {2769 readonly nonce: U256;2770 readonly gasPrice: U256;2771 readonly gasLimit: U256;2772 readonly action: EthereumTransactionTransactionAction;2773 readonly value: U256;2774 readonly input: Bytes;2775 readonly signature: EthereumTransactionTransactionSignature;2776 }27772778 /** @name EthereumTransactionTransactionAction (313) */2779 interface EthereumTransactionTransactionAction extends Enum {2780 readonly isCall: boolean;2781 readonly asCall: H160;2782 readonly isCreate: boolean;2783 readonly type: 'Call' | 'Create';2784 }27852786 /** @name EthereumTransactionTransactionSignature (314) */2787 interface EthereumTransactionTransactionSignature extends Struct {2788 readonly v: u64;2789 readonly r: H256;2790 readonly s: H256;2791 }27922793 /** @name EthereumTransactionEip2930Transaction (316) */2794 interface EthereumTransactionEip2930Transaction extends Struct {2795 readonly chainId: u64;2796 readonly nonce: U256;2797 readonly gasPrice: U256;2798 readonly gasLimit: U256;2799 readonly action: EthereumTransactionTransactionAction;2800 readonly value: U256;2801 readonly input: Bytes;2802 readonly accessList: Vec<EthereumTransactionAccessListItem>;2803 readonly oddYParity: bool;2804 readonly r: H256;2805 readonly s: H256;2806 }28072808 /** @name EthereumTransactionAccessListItem (318) */2809 interface EthereumTransactionAccessListItem extends Struct {2810 readonly address: H160;2811 readonly storageKeys: Vec<H256>;2812 }28132814 /** @name EthereumTransactionEip1559Transaction (319) */2815 interface EthereumTransactionEip1559Transaction extends Struct {2816 readonly chainId: u64;2817 readonly nonce: U256;2818 readonly maxPriorityFeePerGas: U256;2819 readonly maxFeePerGas: U256;2820 readonly gasLimit: U256;2821 readonly action: EthereumTransactionTransactionAction;2822 readonly value: U256;2823 readonly input: Bytes;2824 readonly accessList: Vec<EthereumTransactionAccessListItem>;2825 readonly oddYParity: bool;2826 readonly r: H256;2827 readonly s: H256;2828 }28292830 /** @name PalletEvmMigrationCall (320) */2831 interface PalletEvmMigrationCall extends Enum {2832 readonly isBegin: boolean;2833 readonly asBegin: {2834 readonly address: H160;2835 } & Struct;2836 readonly isSetData: boolean;2837 readonly asSetData: {2838 readonly address: H160;2839 readonly data: Vec<ITuple<[H256, H256]>>;2840 } & Struct;2841 readonly isFinish: boolean;2842 readonly asFinish: {2843 readonly address: H160;2844 readonly code: Bytes;2845 } & Struct;2846 readonly type: 'Begin' | 'SetData' | 'Finish';2847 }28482849 /** @name PalletSudoError (323) */2850 interface PalletSudoError extends Enum {2851 readonly isRequireSudo: boolean;2852 readonly type: 'RequireSudo';2853 }28542855 /** @name OrmlVestingModuleError (325) */2856 interface OrmlVestingModuleError extends Enum {2857 readonly isZeroVestingPeriod: boolean;2858 readonly isZeroVestingPeriodCount: boolean;2859 readonly isInsufficientBalanceToLock: boolean;2860 readonly isTooManyVestingSchedules: boolean;2861 readonly isAmountLow: boolean;2862 readonly isMaxVestingSchedulesExceeded: boolean;2863 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2864 }28652866 /** @name CumulusPalletXcmpQueueInboundChannelDetails (327) */2867 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2868 readonly sender: u32;2869 readonly state: CumulusPalletXcmpQueueInboundState;2870 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2871 }28722873 /** @name CumulusPalletXcmpQueueInboundState (328) */2874 interface CumulusPalletXcmpQueueInboundState extends Enum {2875 readonly isOk: boolean;2876 readonly isSuspended: boolean;2877 readonly type: 'Ok' | 'Suspended';2878 }28792880 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (331) */2881 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2882 readonly isConcatenatedVersionedXcm: boolean;2883 readonly isConcatenatedEncodedBlob: boolean;2884 readonly isSignals: boolean;2885 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2886 }28872888 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (334) */2889 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2890 readonly recipient: u32;2891 readonly state: CumulusPalletXcmpQueueOutboundState;2892 readonly signalsExist: bool;2893 readonly firstIndex: u16;2894 readonly lastIndex: u16;2895 }28962897 /** @name CumulusPalletXcmpQueueOutboundState (335) */2898 interface CumulusPalletXcmpQueueOutboundState extends Enum {2899 readonly isOk: boolean;2900 readonly isSuspended: boolean;2901 readonly type: 'Ok' | 'Suspended';2902 }29032904 /** @name CumulusPalletXcmpQueueQueueConfigData (337) */2905 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2906 readonly suspendThreshold: u32;2907 readonly dropThreshold: u32;2908 readonly resumeThreshold: u32;2909 readonly thresholdWeight: u64;2910 readonly weightRestrictDecay: u64;2911 readonly xcmpMaxIndividualWeight: u64;2912 }29132914 /** @name CumulusPalletXcmpQueueError (339) */2915 interface CumulusPalletXcmpQueueError extends Enum {2916 readonly isFailedToSend: boolean;2917 readonly isBadXcmOrigin: boolean;2918 readonly isBadXcm: boolean;2919 readonly isBadOverweightIndex: boolean;2920 readonly isWeightOverLimit: boolean;2921 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2922 }29232924 /** @name PalletXcmError (340) */2925 interface PalletXcmError extends Enum {2926 readonly isUnreachable: boolean;2927 readonly isSendFailure: boolean;2928 readonly isFiltered: boolean;2929 readonly isUnweighableMessage: boolean;2930 readonly isDestinationNotInvertible: boolean;2931 readonly isEmpty: boolean;2932 readonly isCannotReanchor: boolean;2933 readonly isTooManyAssets: boolean;2934 readonly isInvalidOrigin: boolean;2935 readonly isBadVersion: boolean;2936 readonly isBadLocation: boolean;2937 readonly isNoSubscription: boolean;2938 readonly isAlreadySubscribed: boolean;2939 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2940 }29412942 /** @name CumulusPalletXcmError (341) */2943 type CumulusPalletXcmError = Null;29442945 /** @name CumulusPalletDmpQueueConfigData (342) */2946 interface CumulusPalletDmpQueueConfigData extends Struct {2947 readonly maxIndividual: u64;2948 }29492950 /** @name CumulusPalletDmpQueuePageIndexData (343) */2951 interface CumulusPalletDmpQueuePageIndexData extends Struct {2952 readonly beginUsed: u32;2953 readonly endUsed: u32;2954 readonly overweightCount: u64;2955 }29562957 /** @name CumulusPalletDmpQueueError (346) */2958 interface CumulusPalletDmpQueueError extends Enum {2959 readonly isUnknown: boolean;2960 readonly isOverLimit: boolean;2961 readonly type: 'Unknown' | 'OverLimit';2962 }29632964 /** @name PalletUniqueError (350) */2965 interface PalletUniqueError extends Enum {2966 readonly isCollectionDecimalPointLimitExceeded: boolean;2967 readonly isConfirmUnsetSponsorFail: boolean;2968 readonly isEmptyArgument: boolean;2969 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2970 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2971 }29722973 /** @name PalletUniqueSchedulerScheduledV3 (353) */2974 interface PalletUniqueSchedulerScheduledV3 extends Struct {2975 readonly maybeId: Option<U8aFixed>;2976 readonly priority: u8;2977 readonly call: FrameSupportScheduleMaybeHashed;2978 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2979 readonly origin: OpalRuntimeOriginCaller;2980 }29812982 /** @name OpalRuntimeOriginCaller (354) */2983 interface OpalRuntimeOriginCaller extends Enum {2984 readonly isSystem: boolean;2985 readonly asSystem: FrameSupportDispatchRawOrigin;2986 readonly isVoid: boolean;2987 readonly isPolkadotXcm: boolean;2988 readonly asPolkadotXcm: PalletXcmOrigin;2989 readonly isCumulusXcm: boolean;2990 readonly asCumulusXcm: CumulusPalletXcmOrigin;2991 readonly isEthereum: boolean;2992 readonly asEthereum: PalletEthereumRawOrigin;2993 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';2994 }29952996 /** @name FrameSupportDispatchRawOrigin (355) */2997 interface FrameSupportDispatchRawOrigin extends Enum {2998 readonly isRoot: boolean;2999 readonly isSigned: boolean;3000 readonly asSigned: AccountId32;3001 readonly isNone: boolean;3002 readonly type: 'Root' | 'Signed' | 'None';3003 }30043005 /** @name PalletXcmOrigin (356) */3006 interface PalletXcmOrigin extends Enum {3007 readonly isXcm: boolean;3008 readonly asXcm: XcmV1MultiLocation;3009 readonly isResponse: boolean;3010 readonly asResponse: XcmV1MultiLocation;3011 readonly type: 'Xcm' | 'Response';3012 }30133014 /** @name CumulusPalletXcmOrigin (357) */3015 interface CumulusPalletXcmOrigin extends Enum {3016 readonly isRelay: boolean;3017 readonly isSiblingParachain: boolean;3018 readonly asSiblingParachain: u32;3019 readonly type: 'Relay' | 'SiblingParachain';3020 }30213022 /** @name PalletEthereumRawOrigin (358) */3023 interface PalletEthereumRawOrigin extends Enum {3024 readonly isEthereumTransaction: boolean;3025 readonly asEthereumTransaction: H160;3026 readonly type: 'EthereumTransaction';3027 }30283029 /** @name SpCoreVoid (359) */3030 type SpCoreVoid = Null;30313032 /** @name PalletUniqueSchedulerError (360) */3033 interface PalletUniqueSchedulerError extends Enum {3034 readonly isFailedToSchedule: boolean;3035 readonly isNotFound: boolean;3036 readonly isTargetBlockNumberInPast: boolean;3037 readonly isRescheduleNoChange: boolean;3038 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3039 }30403041 /** @name UpDataStructsCollection (361) */3042 interface UpDataStructsCollection extends Struct {3043 readonly owner: AccountId32;3044 readonly mode: UpDataStructsCollectionMode;3045 readonly name: Vec<u16>;3046 readonly description: Vec<u16>;3047 readonly tokenPrefix: Bytes;3048 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3049 readonly limits: UpDataStructsCollectionLimits;3050 readonly permissions: UpDataStructsCollectionPermissions;3051 readonly externalCollection: bool;3052 }30533054 /** @name UpDataStructsSponsorshipStateAccountId32 (362) */3055 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3056 readonly isDisabled: boolean;3057 readonly isUnconfirmed: boolean;3058 readonly asUnconfirmed: AccountId32;3059 readonly isConfirmed: boolean;3060 readonly asConfirmed: AccountId32;3061 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3062 }30633064 /** @name UpDataStructsProperties (363) */3065 interface UpDataStructsProperties extends Struct {3066 readonly map: UpDataStructsPropertiesMapBoundedVec;3067 readonly consumedSpace: u32;3068 readonly spaceLimit: u32;3069 }30703071 /** @name UpDataStructsPropertiesMapBoundedVec (364) */3072 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}30733074 /** @name UpDataStructsPropertiesMapPropertyPermission (369) */3075 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}30763077 /** @name UpDataStructsCollectionStats (376) */3078 interface UpDataStructsCollectionStats extends Struct {3079 readonly created: u32;3080 readonly destroyed: u32;3081 readonly alive: u32;3082 }30833084 /** @name UpDataStructsTokenChild (377) */3085 interface UpDataStructsTokenChild extends Struct {3086 readonly token: u32;3087 readonly collection: u32;3088 }30893090 /** @name PhantomTypeUpDataStructs (378) */3091 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}30923093 /** @name UpDataStructsTokenData (380) */3094 interface UpDataStructsTokenData extends Struct {3095 readonly properties: Vec<UpDataStructsProperty>;3096 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3097 readonly pieces: u128;3098 }30993100 /** @name UpDataStructsRpcCollection (382) */3101 interface UpDataStructsRpcCollection extends Struct {3102 readonly owner: AccountId32;3103 readonly mode: UpDataStructsCollectionMode;3104 readonly name: Vec<u16>;3105 readonly description: Vec<u16>;3106 readonly tokenPrefix: Bytes;3107 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3108 readonly limits: UpDataStructsCollectionLimits;3109 readonly permissions: UpDataStructsCollectionPermissions;3110 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3111 readonly properties: Vec<UpDataStructsProperty>;3112 readonly readOnly: bool;3113 }31143115 /** @name RmrkTraitsCollectionCollectionInfo (383) */3116 interface RmrkTraitsCollectionCollectionInfo extends Struct {3117 readonly issuer: AccountId32;3118 readonly metadata: Bytes;3119 readonly max: Option<u32>;3120 readonly symbol: Bytes;3121 readonly nftsCount: u32;3122 }31233124 /** @name RmrkTraitsNftNftInfo (384) */3125 interface RmrkTraitsNftNftInfo extends Struct {3126 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3127 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3128 readonly metadata: Bytes;3129 readonly equipped: bool;3130 readonly pending: bool;3131 }31323133 /** @name RmrkTraitsNftRoyaltyInfo (386) */3134 interface RmrkTraitsNftRoyaltyInfo extends Struct {3135 readonly recipient: AccountId32;3136 readonly amount: Permill;3137 }31383139 /** @name RmrkTraitsResourceResourceInfo (387) */3140 interface RmrkTraitsResourceResourceInfo extends Struct {3141 readonly id: u32;3142 readonly resource: RmrkTraitsResourceResourceTypes;3143 readonly pending: bool;3144 readonly pendingRemoval: bool;3145 }31463147 /** @name RmrkTraitsPropertyPropertyInfo (388) */3148 interface RmrkTraitsPropertyPropertyInfo extends Struct {3149 readonly key: Bytes;3150 readonly value: Bytes;3151 }31523153 /** @name RmrkTraitsBaseBaseInfo (389) */3154 interface RmrkTraitsBaseBaseInfo extends Struct {3155 readonly issuer: AccountId32;3156 readonly baseType: Bytes;3157 readonly symbol: Bytes;3158 }31593160 /** @name RmrkTraitsNftNftChild (390) */3161 interface RmrkTraitsNftNftChild extends Struct {3162 readonly collectionId: u32;3163 readonly nftId: u32;3164 }31653166 /** @name PalletCommonError (392) */3167 interface PalletCommonError extends Enum {3168 readonly isCollectionNotFound: boolean;3169 readonly isMustBeTokenOwner: boolean;3170 readonly isNoPermission: boolean;3171 readonly isCantDestroyNotEmptyCollection: boolean;3172 readonly isPublicMintingNotAllowed: boolean;3173 readonly isAddressNotInAllowlist: boolean;3174 readonly isCollectionNameLimitExceeded: boolean;3175 readonly isCollectionDescriptionLimitExceeded: boolean;3176 readonly isCollectionTokenPrefixLimitExceeded: boolean;3177 readonly isTotalCollectionsLimitExceeded: boolean;3178 readonly isCollectionAdminCountExceeded: boolean;3179 readonly isCollectionLimitBoundsExceeded: boolean;3180 readonly isOwnerPermissionsCantBeReverted: boolean;3181 readonly isTransferNotAllowed: boolean;3182 readonly isAccountTokenLimitExceeded: boolean;3183 readonly isCollectionTokenLimitExceeded: boolean;3184 readonly isMetadataFlagFrozen: boolean;3185 readonly isTokenNotFound: boolean;3186 readonly isTokenValueTooLow: boolean;3187 readonly isApprovedValueTooLow: boolean;3188 readonly isCantApproveMoreThanOwned: boolean;3189 readonly isAddressIsZero: boolean;3190 readonly isUnsupportedOperation: boolean;3191 readonly isNotSufficientFounds: boolean;3192 readonly isUserIsNotAllowedToNest: boolean;3193 readonly isSourceCollectionIsNotAllowedToNest: boolean;3194 readonly isCollectionFieldSizeExceeded: boolean;3195 readonly isNoSpaceForProperty: boolean;3196 readonly isPropertyLimitReached: boolean;3197 readonly isPropertyKeyIsTooLong: boolean;3198 readonly isInvalidCharacterInPropertyKey: boolean;3199 readonly isEmptyPropertyKey: boolean;3200 readonly isCollectionIsExternal: boolean;3201 readonly isCollectionIsInternal: 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';3203 }32043205 /** @name PalletFungibleError (394) */3206 interface PalletFungibleError extends Enum {3207 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3208 readonly isFungibleItemsHaveNoId: boolean;3209 readonly isFungibleItemsDontHaveData: boolean;3210 readonly isFungibleDisallowsNesting: boolean;3211 readonly isSettingPropertiesNotAllowed: boolean;3212 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3213 }32143215 /** @name PalletRefungibleItemData (395) */3216 interface PalletRefungibleItemData extends Struct {3217 readonly constData: Bytes;3218 }32193220 /** @name PalletRefungibleError (400) */3221 interface PalletRefungibleError extends Enum {3222 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3223 readonly isWrongRefungiblePieces: boolean;3224 readonly isRepartitionWhileNotOwningAllPieces: boolean;3225 readonly isRefungibleDisallowsNesting: boolean;3226 readonly isSettingPropertiesNotAllowed: boolean;3227 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3228 }32293230 /** @name PalletNonfungibleItemData (401) */3231 interface PalletNonfungibleItemData extends Struct {3232 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3233 }32343235 /** @name UpDataStructsPropertyScope (403) */3236 interface UpDataStructsPropertyScope extends Enum {3237 readonly isNone: boolean;3238 readonly isRmrk: boolean;3239 readonly type: 'None' | 'Rmrk';3240 }32413242 /** @name PalletNonfungibleError (405) */3243 interface PalletNonfungibleError extends Enum {3244 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3245 readonly isNonfungibleItemsHaveNoAmount: boolean;3246 readonly isCantBurnNftWithChildren: boolean;3247 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3248 }32493250 /** @name PalletStructureError (406) */3251 interface PalletStructureError extends Enum {3252 readonly isOuroborosDetected: boolean;3253 readonly isDepthLimit: boolean;3254 readonly isBreadthLimit: boolean;3255 readonly isTokenNotFound: boolean;3256 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3257 }32583259 /** @name PalletRmrkCoreError (407) */3260 interface PalletRmrkCoreError extends Enum {3261 readonly isCorruptedCollectionType: boolean;3262 readonly isRmrkPropertyKeyIsTooLong: boolean;3263 readonly isRmrkPropertyValueIsTooLong: boolean;3264 readonly isRmrkPropertyIsNotFound: boolean;3265 readonly isUnableToDecodeRmrkData: boolean;3266 readonly isCollectionNotEmpty: boolean;3267 readonly isNoAvailableCollectionId: boolean;3268 readonly isNoAvailableNftId: boolean;3269 readonly isCollectionUnknown: boolean;3270 readonly isNoPermission: boolean;3271 readonly isNonTransferable: boolean;3272 readonly isCollectionFullOrLocked: boolean;3273 readonly isResourceDoesntExist: boolean;3274 readonly isCannotSendToDescendentOrSelf: boolean;3275 readonly isCannotAcceptNonOwnedNft: boolean;3276 readonly isCannotRejectNonOwnedNft: boolean;3277 readonly isCannotRejectNonPendingNft: boolean;3278 readonly isResourceNotPending: boolean;3279 readonly isNoAvailableResourceId: boolean;3280 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3281 }32823283 /** @name PalletRmrkEquipError (409) */3284 interface PalletRmrkEquipError extends Enum {3285 readonly isPermissionError: boolean;3286 readonly isNoAvailableBaseId: boolean;3287 readonly isNoAvailablePartId: boolean;3288 readonly isBaseDoesntExist: boolean;3289 readonly isNeedsDefaultThemeFirst: boolean;3290 readonly isPartDoesntExist: boolean;3291 readonly isNoEquippableOnFixedPart: boolean;3292 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3293 }32943295 /** @name PalletAppPromotionError (415) */3296 interface PalletAppPromotionError extends Enum {3297 readonly isAdminNotSet: boolean;3298 readonly isNoPermission: boolean;3299 readonly isNotSufficientFunds: boolean;3300 readonly isPendingForBlockOverflow: boolean;3301 readonly isInvalidArgument: boolean;3302 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'InvalidArgument';3303 }33043305 /** @name PalletEvmError (418) */3306 interface PalletEvmError extends Enum {3307 readonly isBalanceLow: boolean;3308 readonly isFeeOverflow: boolean;3309 readonly isPaymentOverflow: boolean;3310 readonly isWithdrawFailed: boolean;3311 readonly isGasPriceTooLow: boolean;3312 readonly isInvalidNonce: boolean;3313 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3314 }33153316 /** @name FpRpcTransactionStatus (421) */3317 interface FpRpcTransactionStatus extends Struct {3318 readonly transactionHash: H256;3319 readonly transactionIndex: u32;3320 readonly from: H160;3321 readonly to: Option<H160>;3322 readonly contractAddress: Option<H160>;3323 readonly logs: Vec<EthereumLog>;3324 readonly logsBloom: EthbloomBloom;3325 }33263327 /** @name EthbloomBloom (423) */3328 interface EthbloomBloom extends U8aFixed {}33293330 /** @name EthereumReceiptReceiptV3 (425) */3331 interface EthereumReceiptReceiptV3 extends Enum {3332 readonly isLegacy: boolean;3333 readonly asLegacy: EthereumReceiptEip658ReceiptData;3334 readonly isEip2930: boolean;3335 readonly asEip2930: EthereumReceiptEip658ReceiptData;3336 readonly isEip1559: boolean;3337 readonly asEip1559: EthereumReceiptEip658ReceiptData;3338 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3339 }33403341 /** @name EthereumReceiptEip658ReceiptData (426) */3342 interface EthereumReceiptEip658ReceiptData extends Struct {3343 readonly statusCode: u8;3344 readonly usedGas: U256;3345 readonly logsBloom: EthbloomBloom;3346 readonly logs: Vec<EthereumLog>;3347 }33483349 /** @name EthereumBlock (427) */3350 interface EthereumBlock extends Struct {3351 readonly header: EthereumHeader;3352 readonly transactions: Vec<EthereumTransactionTransactionV2>;3353 readonly ommers: Vec<EthereumHeader>;3354 }33553356 /** @name EthereumHeader (428) */3357 interface EthereumHeader extends Struct {3358 readonly parentHash: H256;3359 readonly ommersHash: H256;3360 readonly beneficiary: H160;3361 readonly stateRoot: H256;3362 readonly transactionsRoot: H256;3363 readonly receiptsRoot: H256;3364 readonly logsBloom: EthbloomBloom;3365 readonly difficulty: U256;3366 readonly number: U256;3367 readonly gasLimit: U256;3368 readonly gasUsed: U256;3369 readonly timestamp: u64;3370 readonly extraData: Bytes;3371 readonly mixHash: H256;3372 readonly nonce: EthereumTypesHashH64;3373 }33743375 /** @name EthereumTypesHashH64 (429) */3376 interface EthereumTypesHashH64 extends U8aFixed {}33773378 /** @name PalletEthereumError (434) */3379 interface PalletEthereumError extends Enum {3380 readonly isInvalidSignature: boolean;3381 readonly isPreLogExists: boolean;3382 readonly type: 'InvalidSignature' | 'PreLogExists';3383 }33843385 /** @name PalletEvmCoderSubstrateError (435) */3386 interface PalletEvmCoderSubstrateError extends Enum {3387 readonly isOutOfGas: boolean;3388 readonly isOutOfFund: boolean;3389 readonly type: 'OutOfGas' | 'OutOfFund';3390 }33913392 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (436) */3393 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3394 readonly isDisabled: boolean;3395 readonly isUnconfirmed: boolean;3396 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3397 readonly isConfirmed: boolean;3398 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3399 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3400 }34013402 /** @name PalletEvmContractHelpersSponsoringModeT (437) */3403 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3404 readonly isDisabled: boolean;3405 readonly isAllowlisted: boolean;3406 readonly isGenerous: boolean;3407 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3408 }34093410 /** @name PalletEvmContractHelpersError (439) */3411 interface PalletEvmContractHelpersError extends Enum {3412 readonly isNoPermission: boolean;3413 readonly isNoPendingSponsor: boolean;3414 readonly type: 'NoPermission' | 'NoPendingSponsor';3415 }34163417 /** @name PalletEvmMigrationError (440) */3418 interface PalletEvmMigrationError extends Enum {3419 readonly isAccountNotEmpty: boolean;3420 readonly isAccountIsNotMigrating: boolean;3421 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3422 }34233424 /** @name SpRuntimeMultiSignature (442) */3425 interface SpRuntimeMultiSignature extends Enum {3426 readonly isEd25519: boolean;3427 readonly asEd25519: SpCoreEd25519Signature;3428 readonly isSr25519: boolean;3429 readonly asSr25519: SpCoreSr25519Signature;3430 readonly isEcdsa: boolean;3431 readonly asEcdsa: SpCoreEcdsaSignature;3432 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3433 }34343435 /** @name SpCoreEd25519Signature (443) */3436 interface SpCoreEd25519Signature extends U8aFixed {}34373438 /** @name SpCoreSr25519Signature (445) */3439 interface SpCoreSr25519Signature extends U8aFixed {}34403441 /** @name SpCoreEcdsaSignature (446) */3442 interface SpCoreEcdsaSignature extends U8aFixed {}34433444 /** @name FrameSystemExtensionsCheckSpecVersion (449) */3445 type FrameSystemExtensionsCheckSpecVersion = Null;34463447 /** @name FrameSystemExtensionsCheckGenesis (450) */3448 type FrameSystemExtensionsCheckGenesis = Null;34493450 /** @name FrameSystemExtensionsCheckNonce (453) */3451 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}34523453 /** @name FrameSystemExtensionsCheckWeight (454) */3454 type FrameSystemExtensionsCheckWeight = Null;34553456 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (455) */3457 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}34583459 /** @name OpalRuntimeRuntime (456) */3460 type OpalRuntimeRuntime = Null;34613462 /** @name PalletEthereumFakeTransactionFinalizer (457) */3463 type PalletEthereumFakeTransactionFinalizer = Null;34643465} // declare module