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.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/types/registry';78import 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';9import type { Data, StorageKey } from '@polkadot/types';10import 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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountIdOf: AccountIdOf;83 AccountIndex: AccountIndex;84 AccountInfo: AccountInfo;85 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;86 AccountInfoWithProviders: AccountInfoWithProviders;87 AccountInfoWithRefCount: AccountInfoWithRefCount;88 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;89 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;90 AccountStatus: AccountStatus;91 AccountValidity: AccountValidity;92 AccountVote: AccountVote;93 AccountVoteSplit: AccountVoteSplit;94 AccountVoteStandard: AccountVoteStandard;95 ActiveEraInfo: ActiveEraInfo;96 ActiveGilt: ActiveGilt;97 ActiveGiltsTotal: ActiveGiltsTotal;98 ActiveIndex: ActiveIndex;99 ActiveRecovery: ActiveRecovery;100 Address: Address;101 AliveContractInfo: AliveContractInfo;102 AllowedSlots: AllowedSlots;103 AnySignature: AnySignature;104 ApiId: ApiId;105 ApplyExtrinsicResult: ApplyExtrinsicResult;106 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;107 ApprovalFlag: ApprovalFlag;108 Approvals: Approvals;109 ArithmeticError: ArithmeticError;110 AssetApproval: AssetApproval;111 AssetApprovalKey: AssetApprovalKey;112 AssetBalance: AssetBalance;113 AssetDestroyWitness: AssetDestroyWitness;114 AssetDetails: AssetDetails;115 AssetId: AssetId;116 AssetInstance: AssetInstance;117 AssetInstanceV0: AssetInstanceV0;118 AssetInstanceV1: AssetInstanceV1;119 AssetInstanceV2: AssetInstanceV2;120 AssetMetadata: AssetMetadata;121 AssetOptions: AssetOptions;122 AssignmentId: AssignmentId;123 AssignmentKind: AssignmentKind;124 AttestedCandidate: AttestedCandidate;125 AuctionIndex: AuctionIndex;126 AuthIndex: AuthIndex;127 AuthorityDiscoveryId: AuthorityDiscoveryId;128 AuthorityId: AuthorityId;129 AuthorityIndex: AuthorityIndex;130 AuthorityList: AuthorityList;131 AuthoritySet: AuthoritySet;132 AuthoritySetChange: AuthoritySetChange;133 AuthoritySetChanges: AuthoritySetChanges;134 AuthoritySignature: AuthoritySignature;135 AuthorityWeight: AuthorityWeight;136 AvailabilityBitfield: AvailabilityBitfield;137 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;138 BabeAuthorityWeight: BabeAuthorityWeight;139 BabeBlockWeight: BabeBlockWeight;140 BabeEpochConfiguration: BabeEpochConfiguration;141 BabeEquivocationProof: BabeEquivocationProof;142 BabeGenesisConfiguration: BabeGenesisConfiguration;143 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;144 BabeWeight: BabeWeight;145 BackedCandidate: BackedCandidate;146 Balance: Balance;147 BalanceLock: BalanceLock;148 BalanceLockTo212: BalanceLockTo212;149 BalanceOf: BalanceOf;150 BalanceStatus: BalanceStatus;151 BeefyAuthoritySet: BeefyAuthoritySet;152 BeefyCommitment: BeefyCommitment;153 BeefyId: BeefyId;154 BeefyKey: BeefyKey;155 BeefyNextAuthoritySet: BeefyNextAuthoritySet;156 BeefyPayload: BeefyPayload;157 BeefyPayloadId: BeefyPayloadId;158 BeefySignedCommitment: BeefySignedCommitment;159 BenchmarkBatch: BenchmarkBatch;160 BenchmarkConfig: BenchmarkConfig;161 BenchmarkList: BenchmarkList;162 BenchmarkMetadata: BenchmarkMetadata;163 BenchmarkParameter: BenchmarkParameter;164 BenchmarkResult: BenchmarkResult;165 Bid: Bid;166 Bidder: Bidder;167 BidKind: BidKind;168 BitVec: BitVec;169 Block: Block;170 BlockAttestations: BlockAttestations;171 BlockHash: BlockHash;172 BlockLength: BlockLength;173 BlockNumber: BlockNumber;174 BlockNumberFor: BlockNumberFor;175 BlockNumberOf: BlockNumberOf;176 BlockStats: BlockStats;177 BlockTrace: BlockTrace;178 BlockTraceEvent: BlockTraceEvent;179 BlockTraceEventData: BlockTraceEventData;180 BlockTraceSpan: BlockTraceSpan;181 BlockV0: BlockV0;182 BlockV1: BlockV1;183 BlockV2: BlockV2;184 BlockWeights: BlockWeights;185 BodyId: BodyId;186 BodyPart: BodyPart;187 bool: bool;188 Bool: Bool;189 Bounty: Bounty;190 BountyIndex: BountyIndex;191 BountyStatus: BountyStatus;192 BountyStatusActive: BountyStatusActive;193 BountyStatusCuratorProposed: BountyStatusCuratorProposed;194 BountyStatusPendingPayout: BountyStatusPendingPayout;195 BridgedBlockHash: BridgedBlockHash;196 BridgedBlockNumber: BridgedBlockNumber;197 BridgedHeader: BridgedHeader;198 BridgeMessageId: BridgeMessageId;199 BufferedSessionChange: BufferedSessionChange;200 Bytes: Bytes;201 Call: Call;202 CallHash: CallHash;203 CallHashOf: CallHashOf;204 CallIndex: CallIndex;205 CallOrigin: CallOrigin;206 CandidateCommitments: CandidateCommitments;207 CandidateDescriptor: CandidateDescriptor;208 CandidateEvent: CandidateEvent;209 CandidateHash: CandidateHash;210 CandidateInfo: CandidateInfo;211 CandidatePendingAvailability: CandidatePendingAvailability;212 CandidateReceipt: CandidateReceipt;213 ChainId: ChainId;214 ChainProperties: ChainProperties;215 ChainType: ChainType;216 ChangesTrieConfiguration: ChangesTrieConfiguration;217 ChangesTrieSignal: ChangesTrieSignal;218 CheckInherentsResult: CheckInherentsResult;219 ClassDetails: ClassDetails;220 ClassId: ClassId;221 ClassMetadata: ClassMetadata;222 CodecHash: CodecHash;223 CodeHash: CodeHash;224 CodeSource: CodeSource;225 CodeUploadRequest: CodeUploadRequest;226 CodeUploadResult: CodeUploadResult;227 CodeUploadResultValue: CodeUploadResultValue;228 CollationInfo: CollationInfo;229 CollationInfoV1: CollationInfoV1;230 CollatorId: CollatorId;231 CollatorSignature: CollatorSignature;232 CollectiveOrigin: CollectiveOrigin;233 CommittedCandidateReceipt: CommittedCandidateReceipt;234 CompactAssignments: CompactAssignments;235 CompactAssignmentsTo257: CompactAssignmentsTo257;236 CompactAssignmentsTo265: CompactAssignmentsTo265;237 CompactAssignmentsWith16: CompactAssignmentsWith16;238 CompactAssignmentsWith24: CompactAssignmentsWith24;239 CompactScore: CompactScore;240 CompactScoreCompact: CompactScoreCompact;241 ConfigData: ConfigData;242 Consensus: Consensus;243 ConsensusEngineId: ConsensusEngineId;244 ConsumedWeight: ConsumedWeight;245 ContractCallFlags: ContractCallFlags;246 ContractCallRequest: ContractCallRequest;247 ContractConstructorSpecLatest: ContractConstructorSpecLatest;248 ContractConstructorSpecV0: ContractConstructorSpecV0;249 ContractConstructorSpecV1: ContractConstructorSpecV1;250 ContractConstructorSpecV2: ContractConstructorSpecV2;251 ContractConstructorSpecV3: ContractConstructorSpecV3;252 ContractContractSpecV0: ContractContractSpecV0;253 ContractContractSpecV1: ContractContractSpecV1;254 ContractContractSpecV2: ContractContractSpecV2;255 ContractContractSpecV3: ContractContractSpecV3;256 ContractCryptoHasher: ContractCryptoHasher;257 ContractDiscriminant: ContractDiscriminant;258 ContractDisplayName: ContractDisplayName;259 ContractEventParamSpecLatest: ContractEventParamSpecLatest;260 ContractEventParamSpecV0: ContractEventParamSpecV0;261 ContractEventParamSpecV2: ContractEventParamSpecV2;262 ContractEventSpecLatest: ContractEventSpecLatest;263 ContractEventSpecV0: ContractEventSpecV0;264 ContractEventSpecV1: ContractEventSpecV1;265 ContractEventSpecV2: ContractEventSpecV2;266 ContractExecResult: ContractExecResult;267 ContractExecResultOk: ContractExecResultOk;268 ContractExecResultResult: ContractExecResultResult;269 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;270 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;271 ContractExecResultTo255: ContractExecResultTo255;272 ContractExecResultTo260: ContractExecResultTo260;273 ContractExecResultTo267: ContractExecResultTo267;274 ContractInfo: ContractInfo;275 ContractInstantiateResult: ContractInstantiateResult;276 ContractInstantiateResultTo267: ContractInstantiateResultTo267;277 ContractInstantiateResultTo299: ContractInstantiateResultTo299;278 ContractLayoutArray: ContractLayoutArray;279 ContractLayoutCell: ContractLayoutCell;280 ContractLayoutEnum: ContractLayoutEnum;281 ContractLayoutHash: ContractLayoutHash;282 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;283 ContractLayoutKey: ContractLayoutKey;284 ContractLayoutStruct: ContractLayoutStruct;285 ContractLayoutStructField: ContractLayoutStructField;286 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;287 ContractMessageParamSpecV0: ContractMessageParamSpecV0;288 ContractMessageParamSpecV2: ContractMessageParamSpecV2;289 ContractMessageSpecLatest: ContractMessageSpecLatest;290 ContractMessageSpecV0: ContractMessageSpecV0;291 ContractMessageSpecV1: ContractMessageSpecV1;292 ContractMessageSpecV2: ContractMessageSpecV2;293 ContractMetadata: ContractMetadata;294 ContractMetadataLatest: ContractMetadataLatest;295 ContractMetadataV0: ContractMetadataV0;296 ContractMetadataV1: ContractMetadataV1;297 ContractMetadataV2: ContractMetadataV2;298 ContractMetadataV3: ContractMetadataV3;299 ContractProject: ContractProject;300 ContractProjectContract: ContractProjectContract;301 ContractProjectInfo: ContractProjectInfo;302 ContractProjectSource: ContractProjectSource;303 ContractProjectV0: ContractProjectV0;304 ContractReturnFlags: ContractReturnFlags;305 ContractSelector: ContractSelector;306 ContractStorageKey: ContractStorageKey;307 ContractStorageLayout: ContractStorageLayout;308 ContractTypeSpec: ContractTypeSpec;309 Conviction: Conviction;310 CoreAssignment: CoreAssignment;311 CoreIndex: CoreIndex;312 CoreOccupied: CoreOccupied;313 CoreState: CoreState;314 CrateVersion: CrateVersion;315 CreatedBlock: CreatedBlock;316 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;317 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;318 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;319 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;320 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;321 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;322 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;323 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;324 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;325 CumulusPalletXcmCall: CumulusPalletXcmCall;326 CumulusPalletXcmError: CumulusPalletXcmError;327 CumulusPalletXcmEvent: CumulusPalletXcmEvent;328 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;329 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;330 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;331 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;332 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;333 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;334 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;335 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;336 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;337 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;338 Data: Data;339 DeferredOffenceOf: DeferredOffenceOf;340 DefunctVoter: DefunctVoter;341 DelayKind: DelayKind;342 DelayKindBest: DelayKindBest;343 Delegations: Delegations;344 DeletedContract: DeletedContract;345 DeliveredMessages: DeliveredMessages;346 DepositBalance: DepositBalance;347 DepositBalanceOf: DepositBalanceOf;348 DestroyWitness: DestroyWitness;349 Digest: Digest;350 DigestItem: DigestItem;351 DigestOf: DigestOf;352 DispatchClass: DispatchClass;353 DispatchError: DispatchError;354 DispatchErrorModule: DispatchErrorModule;355 DispatchErrorModulePre6: DispatchErrorModulePre6;356 DispatchErrorModuleU8: DispatchErrorModuleU8;357 DispatchErrorModuleU8a: DispatchErrorModuleU8a;358 DispatchErrorPre6: DispatchErrorPre6;359 DispatchErrorPre6First: DispatchErrorPre6First;360 DispatchErrorTo198: DispatchErrorTo198;361 DispatchFeePayment: DispatchFeePayment;362 DispatchInfo: DispatchInfo;363 DispatchInfoTo190: DispatchInfoTo190;364 DispatchInfoTo244: DispatchInfoTo244;365 DispatchOutcome: DispatchOutcome;366 DispatchOutcomePre6: DispatchOutcomePre6;367 DispatchResult: DispatchResult;368 DispatchResultOf: DispatchResultOf;369 DispatchResultTo198: DispatchResultTo198;370 DisputeLocation: DisputeLocation;371 DisputeResult: DisputeResult;372 DisputeState: DisputeState;373 DisputeStatement: DisputeStatement;374 DisputeStatementSet: DisputeStatementSet;375 DoubleEncodedCall: DoubleEncodedCall;376 DoubleVoteReport: DoubleVoteReport;377 DownwardMessage: DownwardMessage;378 EcdsaSignature: EcdsaSignature;379 Ed25519Signature: Ed25519Signature;380 EIP1559Transaction: EIP1559Transaction;381 EIP2930Transaction: EIP2930Transaction;382 ElectionCompute: ElectionCompute;383 ElectionPhase: ElectionPhase;384 ElectionResult: ElectionResult;385 ElectionScore: ElectionScore;386 ElectionSize: ElectionSize;387 ElectionStatus: ElectionStatus;388 EncodedFinalityProofs: EncodedFinalityProofs;389 EncodedJustification: EncodedJustification;390 Epoch: Epoch;391 EpochAuthorship: EpochAuthorship;392 Era: Era;393 EraIndex: EraIndex;394 EraPoints: EraPoints;395 EraRewardPoints: EraRewardPoints;396 EraRewards: EraRewards;397 ErrorMetadataLatest: ErrorMetadataLatest;398 ErrorMetadataV10: ErrorMetadataV10;399 ErrorMetadataV11: ErrorMetadataV11;400 ErrorMetadataV12: ErrorMetadataV12;401 ErrorMetadataV13: ErrorMetadataV13;402 ErrorMetadataV14: ErrorMetadataV14;403 ErrorMetadataV9: ErrorMetadataV9;404 EthAccessList: EthAccessList;405 EthAccessListItem: EthAccessListItem;406 EthAccount: EthAccount;407 EthAddress: EthAddress;408 EthBlock: EthBlock;409 EthBloom: EthBloom;410 EthbloomBloom: EthbloomBloom;411 EthCallRequest: EthCallRequest;412 EthereumAccountId: EthereumAccountId;413 EthereumAddress: EthereumAddress;414 EthereumBlock: EthereumBlock;415 EthereumHeader: EthereumHeader;416 EthereumLog: EthereumLog;417 EthereumLookupSource: EthereumLookupSource;418 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;419 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;420 EthereumSignature: EthereumSignature;421 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;422 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;423 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;424 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;425 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;426 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;427 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;428 EthereumTypesHashH64: EthereumTypesHashH64;429 EthFeeHistory: EthFeeHistory;430 EthFilter: EthFilter;431 EthFilterAddress: EthFilterAddress;432 EthFilterChanges: EthFilterChanges;433 EthFilterTopic: EthFilterTopic;434 EthFilterTopicEntry: EthFilterTopicEntry;435 EthFilterTopicInner: EthFilterTopicInner;436 EthHeader: EthHeader;437 EthLog: EthLog;438 EthReceipt: EthReceipt;439 EthReceiptV0: EthReceiptV0;440 EthReceiptV3: EthReceiptV3;441 EthRichBlock: EthRichBlock;442 EthRichHeader: EthRichHeader;443 EthStorageProof: EthStorageProof;444 EthSubKind: EthSubKind;445 EthSubParams: EthSubParams;446 EthSubResult: EthSubResult;447 EthSyncInfo: EthSyncInfo;448 EthSyncStatus: EthSyncStatus;449 EthTransaction: EthTransaction;450 EthTransactionAction: EthTransactionAction;451 EthTransactionCondition: EthTransactionCondition;452 EthTransactionRequest: EthTransactionRequest;453 EthTransactionSignature: EthTransactionSignature;454 EthTransactionStatus: EthTransactionStatus;455 EthWork: EthWork;456 Event: Event;457 EventId: EventId;458 EventIndex: EventIndex;459 EventMetadataLatest: EventMetadataLatest;460 EventMetadataV10: EventMetadataV10;461 EventMetadataV11: EventMetadataV11;462 EventMetadataV12: EventMetadataV12;463 EventMetadataV13: EventMetadataV13;464 EventMetadataV14: EventMetadataV14;465 EventMetadataV9: EventMetadataV9;466 EventRecord: EventRecord;467 EvmAccount: EvmAccount;468 EvmCallInfo: EvmCallInfo;469 EvmCoreErrorExitError: EvmCoreErrorExitError;470 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;471 EvmCoreErrorExitReason: EvmCoreErrorExitReason;472 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;473 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;474 EvmCreateInfo: EvmCreateInfo;475 EvmLog: EvmLog;476 EvmVicinity: EvmVicinity;477 ExecReturnValue: ExecReturnValue;478 ExitError: ExitError;479 ExitFatal: ExitFatal;480 ExitReason: ExitReason;481 ExitRevert: ExitRevert;482 ExitSucceed: ExitSucceed;483 ExplicitDisputeStatement: ExplicitDisputeStatement;484 Exposure: Exposure;485 ExtendedBalance: ExtendedBalance;486 Extrinsic: Extrinsic;487 ExtrinsicEra: ExtrinsicEra;488 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;489 ExtrinsicMetadataV11: ExtrinsicMetadataV11;490 ExtrinsicMetadataV12: ExtrinsicMetadataV12;491 ExtrinsicMetadataV13: ExtrinsicMetadataV13;492 ExtrinsicMetadataV14: ExtrinsicMetadataV14;493 ExtrinsicOrHash: ExtrinsicOrHash;494 ExtrinsicPayload: ExtrinsicPayload;495 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;496 ExtrinsicPayloadV4: ExtrinsicPayloadV4;497 ExtrinsicSignature: ExtrinsicSignature;498 ExtrinsicSignatureV4: ExtrinsicSignatureV4;499 ExtrinsicStatus: ExtrinsicStatus;500 ExtrinsicsWeight: ExtrinsicsWeight;501 ExtrinsicUnknown: ExtrinsicUnknown;502 ExtrinsicV4: ExtrinsicV4;503 f32: f32;504 F32: F32;505 f64: f64;506 F64: F64;507 FeeDetails: FeeDetails;508 Fixed128: Fixed128;509 Fixed64: Fixed64;510 FixedI128: FixedI128;511 FixedI64: FixedI64;512 FixedU128: FixedU128;513 FixedU64: FixedU64;514 Forcing: Forcing;515 ForkTreePendingChange: ForkTreePendingChange;516 ForkTreePendingChangeNode: ForkTreePendingChangeNode;517 FpRpcTransactionStatus: FpRpcTransactionStatus;518 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;519 FrameSupportPalletId: FrameSupportPalletId;520 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;521 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;522 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;523 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;524 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;525 FrameSupportWeightsPays: FrameSupportWeightsPays;526 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;527 FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;528 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;529 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;530 FrameSystemAccountInfo: FrameSystemAccountInfo;531 FrameSystemCall: FrameSystemCall;532 FrameSystemError: FrameSystemError;533 FrameSystemEvent: FrameSystemEvent;534 FrameSystemEventRecord: FrameSystemEventRecord;535 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;539 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;540 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;541 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;542 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;543 FrameSystemPhase: FrameSystemPhase;544 FullIdentification: FullIdentification;545 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;546 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;547 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;548 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;549 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;550 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;551 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;552 FunctionMetadataLatest: FunctionMetadataLatest;553 FunctionMetadataV10: FunctionMetadataV10;554 FunctionMetadataV11: FunctionMetadataV11;555 FunctionMetadataV12: FunctionMetadataV12;556 FunctionMetadataV13: FunctionMetadataV13;557 FunctionMetadataV14: FunctionMetadataV14;558 FunctionMetadataV9: FunctionMetadataV9;559 FundIndex: FundIndex;560 FundInfo: FundInfo;561 Fungibility: Fungibility;562 FungibilityV0: FungibilityV0;563 FungibilityV1: FungibilityV1;564 FungibilityV2: FungibilityV2;565 Gas: Gas;566 GiltBid: GiltBid;567 GlobalValidationData: GlobalValidationData;568 GlobalValidationSchedule: GlobalValidationSchedule;569 GrandpaCommit: GrandpaCommit;570 GrandpaEquivocation: GrandpaEquivocation;571 GrandpaEquivocationProof: GrandpaEquivocationProof;572 GrandpaEquivocationValue: GrandpaEquivocationValue;573 GrandpaJustification: GrandpaJustification;574 GrandpaPrecommit: GrandpaPrecommit;575 GrandpaPrevote: GrandpaPrevote;576 GrandpaSignedPrecommit: GrandpaSignedPrecommit;577 GroupIndex: GroupIndex;578 GroupRotationInfo: GroupRotationInfo;579 H1024: H1024;580 H128: H128;581 H160: H160;582 H2048: H2048;583 H256: H256;584 H32: H32;585 H512: H512;586 H64: H64;587 Hash: Hash;588 HeadData: HeadData;589 Header: Header;590 HeaderPartial: HeaderPartial;591 Health: Health;592 Heartbeat: Heartbeat;593 HeartbeatTo244: HeartbeatTo244;594 HostConfiguration: HostConfiguration;595 HostFnWeights: HostFnWeights;596 HostFnWeightsTo264: HostFnWeightsTo264;597 HrmpChannel: HrmpChannel;598 HrmpChannelId: HrmpChannelId;599 HrmpOpenChannelRequest: HrmpOpenChannelRequest;600 i128: i128;601 I128: I128;602 i16: i16;603 I16: I16;604 i256: i256;605 I256: I256;606 i32: i32;607 I32: I32;608 I32F32: I32F32;609 i64: i64;610 I64: I64;611 i8: i8;612 I8: I8;613 IdentificationTuple: IdentificationTuple;614 IdentityFields: IdentityFields;615 IdentityInfo: IdentityInfo;616 IdentityInfoAdditional: IdentityInfoAdditional;617 IdentityInfoTo198: IdentityInfoTo198;618 IdentityJudgement: IdentityJudgement;619 ImmortalEra: ImmortalEra;620 ImportedAux: ImportedAux;621 InboundDownwardMessage: InboundDownwardMessage;622 InboundHrmpMessage: InboundHrmpMessage;623 InboundHrmpMessages: InboundHrmpMessages;624 InboundLaneData: InboundLaneData;625 InboundRelayer: InboundRelayer;626 InboundStatus: InboundStatus;627 IncludedBlocks: IncludedBlocks;628 InclusionFee: InclusionFee;629 IncomingParachain: IncomingParachain;630 IncomingParachainDeploy: IncomingParachainDeploy;631 IncomingParachainFixed: IncomingParachainFixed;632 Index: Index;633 IndicesLookupSource: IndicesLookupSource;634 IndividualExposure: IndividualExposure;635 InherentData: InherentData;636 InherentIdentifier: InherentIdentifier;637 InitializationData: InitializationData;638 InstanceDetails: InstanceDetails;639 InstanceId: InstanceId;640 InstanceMetadata: InstanceMetadata;641 InstantiateRequest: InstantiateRequest;642 InstantiateRequestV1: InstantiateRequestV1;643 InstantiateRequestV2: InstantiateRequestV2;644 InstantiateReturnValue: InstantiateReturnValue;645 InstantiateReturnValueOk: InstantiateReturnValueOk;646 InstantiateReturnValueTo267: InstantiateReturnValueTo267;647 InstructionV2: InstructionV2;648 InstructionWeights: InstructionWeights;649 InteriorMultiLocation: InteriorMultiLocation;650 InvalidDisputeStatementKind: InvalidDisputeStatementKind;651 InvalidTransaction: InvalidTransaction;652 Json: Json;653 Junction: Junction;654 Junctions: Junctions;655 JunctionsV1: JunctionsV1;656 JunctionsV2: JunctionsV2;657 JunctionV0: JunctionV0;658 JunctionV1: JunctionV1;659 JunctionV2: JunctionV2;660 Justification: Justification;661 JustificationNotification: JustificationNotification;662 Justifications: Justifications;663 Key: Key;664 KeyOwnerProof: KeyOwnerProof;665 Keys: Keys;666 KeyType: KeyType;667 KeyTypeId: KeyTypeId;668 KeyValue: KeyValue;669 KeyValueOption: KeyValueOption;670 Kind: Kind;671 LaneId: LaneId;672 LastContribution: LastContribution;673 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;674 LeasePeriod: LeasePeriod;675 LeasePeriodOf: LeasePeriodOf;676 LegacyTransaction: LegacyTransaction;677 Limits: Limits;678 LimitsTo264: LimitsTo264;679 LocalValidationData: LocalValidationData;680 LockIdentifier: LockIdentifier;681 LookupSource: LookupSource;682 LookupTarget: LookupTarget;683 LotteryConfig: LotteryConfig;684 MaybeRandomness: MaybeRandomness;685 MaybeVrf: MaybeVrf;686 MemberCount: MemberCount;687 MembershipProof: MembershipProof;688 MessageData: MessageData;689 MessageId: MessageId;690 MessageIngestionType: MessageIngestionType;691 MessageKey: MessageKey;692 MessageNonce: MessageNonce;693 MessageQueueChain: MessageQueueChain;694 MessagesDeliveryProofOf: MessagesDeliveryProofOf;695 MessagesProofOf: MessagesProofOf;696 MessagingStateSnapshot: MessagingStateSnapshot;697 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;698 MetadataAll: MetadataAll;699 MetadataLatest: MetadataLatest;700 MetadataV10: MetadataV10;701 MetadataV11: MetadataV11;702 MetadataV12: MetadataV12;703 MetadataV13: MetadataV13;704 MetadataV14: MetadataV14;705 MetadataV9: MetadataV9;706 MigrationStatusResult: MigrationStatusResult;707 MmrBatchProof: MmrBatchProof;708 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;709 MmrError: MmrError;710 MmrLeafBatchProof: MmrLeafBatchProof;711 MmrLeafIndex: MmrLeafIndex;712 MmrLeafProof: MmrLeafProof;713 MmrNodeIndex: MmrNodeIndex;714 MmrProof: MmrProof;715 MmrRootHash: MmrRootHash;716 ModuleConstantMetadataV10: ModuleConstantMetadataV10;717 ModuleConstantMetadataV11: ModuleConstantMetadataV11;718 ModuleConstantMetadataV12: ModuleConstantMetadataV12;719 ModuleConstantMetadataV13: ModuleConstantMetadataV13;720 ModuleConstantMetadataV9: ModuleConstantMetadataV9;721 ModuleId: ModuleId;722 ModuleMetadataV10: ModuleMetadataV10;723 ModuleMetadataV11: ModuleMetadataV11;724 ModuleMetadataV12: ModuleMetadataV12;725 ModuleMetadataV13: ModuleMetadataV13;726 ModuleMetadataV9: ModuleMetadataV9;727 Moment: Moment;728 MomentOf: MomentOf;729 MoreAttestations: MoreAttestations;730 MortalEra: MortalEra;731 MultiAddress: MultiAddress;732 MultiAsset: MultiAsset;733 MultiAssetFilter: MultiAssetFilter;734 MultiAssetFilterV1: MultiAssetFilterV1;735 MultiAssetFilterV2: MultiAssetFilterV2;736 MultiAssets: MultiAssets;737 MultiAssetsV1: MultiAssetsV1;738 MultiAssetsV2: MultiAssetsV2;739 MultiAssetV0: MultiAssetV0;740 MultiAssetV1: MultiAssetV1;741 MultiAssetV2: MultiAssetV2;742 MultiDisputeStatementSet: MultiDisputeStatementSet;743 MultiLocation: MultiLocation;744 MultiLocationV0: MultiLocationV0;745 MultiLocationV1: MultiLocationV1;746 MultiLocationV2: MultiLocationV2;747 Multiplier: Multiplier;748 Multisig: Multisig;749 MultiSignature: MultiSignature;750 MultiSigner: MultiSigner;751 NetworkId: NetworkId;752 NetworkState: NetworkState;753 NetworkStatePeerset: NetworkStatePeerset;754 NetworkStatePeersetInfo: NetworkStatePeersetInfo;755 NewBidder: NewBidder;756 NextAuthority: NextAuthority;757 NextConfigDescriptor: NextConfigDescriptor;758 NextConfigDescriptorV1: NextConfigDescriptorV1;759 NodeRole: NodeRole;760 Nominations: Nominations;761 NominatorIndex: NominatorIndex;762 NominatorIndexCompact: NominatorIndexCompact;763 NotConnectedPeer: NotConnectedPeer;764 NpApiError: NpApiError;765 Null: Null;766 OccupiedCore: OccupiedCore;767 OccupiedCoreAssumption: OccupiedCoreAssumption;768 OffchainAccuracy: OffchainAccuracy;769 OffchainAccuracyCompact: OffchainAccuracyCompact;770 OffenceDetails: OffenceDetails;771 Offender: Offender;772 OldV1SessionInfo: OldV1SessionInfo;773 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;774 OpalRuntimeRuntime: OpalRuntimeRuntime;775 OpaqueCall: OpaqueCall;776 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;777 OpaqueMetadata: OpaqueMetadata;778 OpaqueMultiaddr: OpaqueMultiaddr;779 OpaqueNetworkState: OpaqueNetworkState;780 OpaquePeerId: OpaquePeerId;781 OpaqueTimeSlot: OpaqueTimeSlot;782 OpenTip: OpenTip;783 OpenTipFinderTo225: OpenTipFinderTo225;784 OpenTipTip: OpenTipTip;785 OpenTipTo225: OpenTipTo225;786 OperatingMode: OperatingMode;787 OptionBool: OptionBool;788 Origin: Origin;789 OriginCaller: OriginCaller;790 OriginKindV0: OriginKindV0;791 OriginKindV1: OriginKindV1;792 OriginKindV2: OriginKindV2;793 OrmlVestingModuleCall: OrmlVestingModuleCall;794 OrmlVestingModuleError: OrmlVestingModuleError;795 OrmlVestingModuleEvent: OrmlVestingModuleEvent;796 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;797 OutboundHrmpMessage: OutboundHrmpMessage;798 OutboundLaneData: OutboundLaneData;799 OutboundMessageFee: OutboundMessageFee;800 OutboundPayload: OutboundPayload;801 OutboundStatus: OutboundStatus;802 Outcome: Outcome;803 OverweightIndex: OverweightIndex;804 Owner: Owner;805 PageCounter: PageCounter;806 PageIndexData: PageIndexData;807 PalletAppPromotionCall: PalletAppPromotionCall;808 PalletAppPromotionError: PalletAppPromotionError;809 PalletAppPromotionEvent: PalletAppPromotionEvent;810 PalletBalancesAccountData: PalletBalancesAccountData;811 PalletBalancesBalanceLock: PalletBalancesBalanceLock;812 PalletBalancesCall: PalletBalancesCall;813 PalletBalancesError: PalletBalancesError;814 PalletBalancesEvent: PalletBalancesEvent;815 PalletBalancesReasons: PalletBalancesReasons;816 PalletBalancesReleases: PalletBalancesReleases;817 PalletBalancesReserveData: PalletBalancesReserveData;818 PalletCallMetadataLatest: PalletCallMetadataLatest;819 PalletCallMetadataV14: PalletCallMetadataV14;820 PalletCommonError: PalletCommonError;821 PalletCommonEvent: PalletCommonEvent;822 PalletConfigurationCall: PalletConfigurationCall;823 PalletConstantMetadataLatest: PalletConstantMetadataLatest;824 PalletConstantMetadataV14: PalletConstantMetadataV14;825 PalletErrorMetadataLatest: PalletErrorMetadataLatest;826 PalletErrorMetadataV14: PalletErrorMetadataV14;827 PalletEthereumCall: PalletEthereumCall;828 PalletEthereumError: PalletEthereumError;829 PalletEthereumEvent: PalletEthereumEvent;830 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;831 PalletEthereumRawOrigin: PalletEthereumRawOrigin;832 PalletEventMetadataLatest: PalletEventMetadataLatest;833 PalletEventMetadataV14: PalletEventMetadataV14;834 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;835 PalletEvmCall: PalletEvmCall;836 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;837 PalletEvmContractHelpersError: PalletEvmContractHelpersError;838 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;839 PalletEvmError: PalletEvmError;840 PalletEvmEvent: PalletEvmEvent;841 PalletEvmMigrationCall: PalletEvmMigrationCall;842 PalletEvmMigrationError: PalletEvmMigrationError;843 PalletFungibleError: PalletFungibleError;844 PalletId: PalletId;845 PalletInflationCall: PalletInflationCall;846 PalletMetadataLatest: PalletMetadataLatest;847 PalletMetadataV14: PalletMetadataV14;848 PalletNonfungibleError: PalletNonfungibleError;849 PalletNonfungibleItemData: PalletNonfungibleItemData;850 PalletRefungibleError: PalletRefungibleError;851 PalletRefungibleItemData: PalletRefungibleItemData;852 PalletRmrkCoreCall: PalletRmrkCoreCall;853 PalletRmrkCoreError: PalletRmrkCoreError;854 PalletRmrkCoreEvent: PalletRmrkCoreEvent;855 PalletRmrkEquipCall: PalletRmrkEquipCall;856 PalletRmrkEquipError: PalletRmrkEquipError;857 PalletRmrkEquipEvent: PalletRmrkEquipEvent;858 PalletsOrigin: PalletsOrigin;859 PalletStorageMetadataLatest: PalletStorageMetadataLatest;860 PalletStorageMetadataV14: PalletStorageMetadataV14;861 PalletStructureCall: PalletStructureCall;862 PalletStructureError: PalletStructureError;863 PalletStructureEvent: PalletStructureEvent;864 PalletSudoCall: PalletSudoCall;865 PalletSudoError: PalletSudoError;866 PalletSudoEvent: PalletSudoEvent;867 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;868 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;869 PalletTimestampCall: PalletTimestampCall;870 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;871 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;872 PalletTreasuryCall: PalletTreasuryCall;873 PalletTreasuryError: PalletTreasuryError;874 PalletTreasuryEvent: PalletTreasuryEvent;875 PalletTreasuryProposal: PalletTreasuryProposal;876 PalletUniqueCall: PalletUniqueCall;877 PalletUniqueError: PalletUniqueError;878 PalletUniqueRawEvent: PalletUniqueRawEvent;879 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;880 PalletUniqueSchedulerError: PalletUniqueSchedulerError;881 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;882 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;883 PalletVersion: PalletVersion;884 PalletXcmCall: PalletXcmCall;885 PalletXcmError: PalletXcmError;886 PalletXcmEvent: PalletXcmEvent;887 PalletXcmOrigin: PalletXcmOrigin;888 ParachainDispatchOrigin: ParachainDispatchOrigin;889 ParachainInherentData: ParachainInherentData;890 ParachainProposal: ParachainProposal;891 ParachainsInherentData: ParachainsInherentData;892 ParaGenesisArgs: ParaGenesisArgs;893 ParaId: ParaId;894 ParaInfo: ParaInfo;895 ParaLifecycle: ParaLifecycle;896 Parameter: Parameter;897 ParaPastCodeMeta: ParaPastCodeMeta;898 ParaScheduling: ParaScheduling;899 ParathreadClaim: ParathreadClaim;900 ParathreadClaimQueue: ParathreadClaimQueue;901 ParathreadEntry: ParathreadEntry;902 ParaValidatorIndex: ParaValidatorIndex;903 Pays: Pays;904 Peer: Peer;905 PeerEndpoint: PeerEndpoint;906 PeerEndpointAddr: PeerEndpointAddr;907 PeerInfo: PeerInfo;908 PeerPing: PeerPing;909 PendingChange: PendingChange;910 PendingPause: PendingPause;911 PendingResume: PendingResume;912 Perbill: Perbill;913 Percent: Percent;914 PerDispatchClassU32: PerDispatchClassU32;915 PerDispatchClassWeight: PerDispatchClassWeight;916 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;917 Period: Period;918 Permill: Permill;919 PermissionLatest: PermissionLatest;920 PermissionsV1: PermissionsV1;921 PermissionVersions: PermissionVersions;922 Perquintill: Perquintill;923 PersistedValidationData: PersistedValidationData;924 PerU16: PerU16;925 Phantom: Phantom;926 PhantomData: PhantomData;927 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;928 Phase: Phase;929 PhragmenScore: PhragmenScore;930 Points: Points;931 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;932 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;933 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;934 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;935 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;936 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;937 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;938 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;939 PortableType: PortableType;940 PortableTypeV14: PortableTypeV14;941 Precommits: Precommits;942 PrefabWasmModule: PrefabWasmModule;943 PrefixedStorageKey: PrefixedStorageKey;944 PreimageStatus: PreimageStatus;945 PreimageStatusAvailable: PreimageStatusAvailable;946 PreRuntime: PreRuntime;947 Prevotes: Prevotes;948 Priority: Priority;949 PriorLock: PriorLock;950 PropIndex: PropIndex;951 Proposal: Proposal;952 ProposalIndex: ProposalIndex;953 ProxyAnnouncement: ProxyAnnouncement;954 ProxyDefinition: ProxyDefinition;955 ProxyState: ProxyState;956 ProxyType: ProxyType;957 PvfCheckStatement: PvfCheckStatement;958 QueryId: QueryId;959 QueryStatus: QueryStatus;960 QueueConfigData: QueueConfigData;961 QueuedParathread: QueuedParathread;962 Randomness: Randomness;963 Raw: Raw;964 RawAuraPreDigest: RawAuraPreDigest;965 RawBabePreDigest: RawBabePreDigest;966 RawBabePreDigestCompat: RawBabePreDigestCompat;967 RawBabePreDigestPrimary: RawBabePreDigestPrimary;968 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;969 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;970 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;971 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;972 RawBabePreDigestTo159: RawBabePreDigestTo159;973 RawOrigin: RawOrigin;974 RawSolution: RawSolution;975 RawSolutionTo265: RawSolutionTo265;976 RawSolutionWith16: RawSolutionWith16;977 RawSolutionWith24: RawSolutionWith24;978 RawVRFOutput: RawVRFOutput;979 ReadProof: ReadProof;980 ReadySolution: ReadySolution;981 Reasons: Reasons;982 RecoveryConfig: RecoveryConfig;983 RefCount: RefCount;984 RefCountTo259: RefCountTo259;985 ReferendumIndex: ReferendumIndex;986 ReferendumInfo: ReferendumInfo;987 ReferendumInfoFinished: ReferendumInfoFinished;988 ReferendumInfoTo239: ReferendumInfoTo239;989 ReferendumStatus: ReferendumStatus;990 RegisteredParachainInfo: RegisteredParachainInfo;991 RegistrarIndex: RegistrarIndex;992 RegistrarInfo: RegistrarInfo;993 Registration: Registration;994 RegistrationJudgement: RegistrationJudgement;995 RegistrationTo198: RegistrationTo198;996 RelayBlockNumber: RelayBlockNumber;997 RelayChainBlockNumber: RelayChainBlockNumber;998 RelayChainHash: RelayChainHash;999 RelayerId: RelayerId;1000 RelayHash: RelayHash;1001 Releases: Releases;1002 Remark: Remark;1003 Renouncing: Renouncing;1004 RentProjection: RentProjection;1005 ReplacementTimes: ReplacementTimes;1006 ReportedRoundStates: ReportedRoundStates;1007 Reporter: Reporter;1008 ReportIdOf: ReportIdOf;1009 ReserveData: ReserveData;1010 ReserveIdentifier: ReserveIdentifier;1011 Response: Response;1012 ResponseV0: ResponseV0;1013 ResponseV1: ResponseV1;1014 ResponseV2: ResponseV2;1015 ResponseV2Error: ResponseV2Error;1016 ResponseV2Result: ResponseV2Result;1017 Retriable: Retriable;1018 RewardDestination: RewardDestination;1019 RewardPoint: RewardPoint;1020 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1021 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1022 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1023 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1024 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1025 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1026 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1027 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1028 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1029 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1030 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1031 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1032 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1033 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1034 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1035 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1036 RmrkTraitsTheme: RmrkTraitsTheme;1037 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1038 RoundSnapshot: RoundSnapshot;1039 RoundState: RoundState;1040 RpcMethods: RpcMethods;1041 RuntimeDbWeight: RuntimeDbWeight;1042 RuntimeDispatchInfo: RuntimeDispatchInfo;1043 RuntimeVersion: RuntimeVersion;1044 RuntimeVersionApi: RuntimeVersionApi;1045 RuntimeVersionPartial: RuntimeVersionPartial;1046 RuntimeVersionPre3: RuntimeVersionPre3;1047 RuntimeVersionPre4: RuntimeVersionPre4;1048 Schedule: Schedule;1049 Scheduled: Scheduled;1050 ScheduledCore: ScheduledCore;1051 ScheduledTo254: ScheduledTo254;1052 SchedulePeriod: SchedulePeriod;1053 SchedulePriority: SchedulePriority;1054 ScheduleTo212: ScheduleTo212;1055 ScheduleTo258: ScheduleTo258;1056 ScheduleTo264: ScheduleTo264;1057 Scheduling: Scheduling;1058 ScrapedOnChainVotes: ScrapedOnChainVotes;1059 Seal: Seal;1060 SealV0: SealV0;1061 SeatHolder: SeatHolder;1062 SeedOf: SeedOf;1063 ServiceQuality: ServiceQuality;1064 SessionIndex: SessionIndex;1065 SessionInfo: SessionInfo;1066 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1067 SessionKeys1: SessionKeys1;1068 SessionKeys10: SessionKeys10;1069 SessionKeys10B: SessionKeys10B;1070 SessionKeys2: SessionKeys2;1071 SessionKeys3: SessionKeys3;1072 SessionKeys4: SessionKeys4;1073 SessionKeys5: SessionKeys5;1074 SessionKeys6: SessionKeys6;1075 SessionKeys6B: SessionKeys6B;1076 SessionKeys7: SessionKeys7;1077 SessionKeys7B: SessionKeys7B;1078 SessionKeys8: SessionKeys8;1079 SessionKeys8B: SessionKeys8B;1080 SessionKeys9: SessionKeys9;1081 SessionKeys9B: SessionKeys9B;1082 SetId: SetId;1083 SetIndex: SetIndex;1084 Si0Field: Si0Field;1085 Si0LookupTypeId: Si0LookupTypeId;1086 Si0Path: Si0Path;1087 Si0Type: Si0Type;1088 Si0TypeDef: Si0TypeDef;1089 Si0TypeDefArray: Si0TypeDefArray;1090 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1091 Si0TypeDefCompact: Si0TypeDefCompact;1092 Si0TypeDefComposite: Si0TypeDefComposite;1093 Si0TypeDefPhantom: Si0TypeDefPhantom;1094 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1095 Si0TypeDefSequence: Si0TypeDefSequence;1096 Si0TypeDefTuple: Si0TypeDefTuple;1097 Si0TypeDefVariant: Si0TypeDefVariant;1098 Si0TypeParameter: Si0TypeParameter;1099 Si0Variant: Si0Variant;1100 Si1Field: Si1Field;1101 Si1LookupTypeId: Si1LookupTypeId;1102 Si1Path: Si1Path;1103 Si1Type: Si1Type;1104 Si1TypeDef: Si1TypeDef;1105 Si1TypeDefArray: Si1TypeDefArray;1106 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1107 Si1TypeDefCompact: Si1TypeDefCompact;1108 Si1TypeDefComposite: Si1TypeDefComposite;1109 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1110 Si1TypeDefSequence: Si1TypeDefSequence;1111 Si1TypeDefTuple: Si1TypeDefTuple;1112 Si1TypeDefVariant: Si1TypeDefVariant;1113 Si1TypeParameter: Si1TypeParameter;1114 Si1Variant: Si1Variant;1115 SiField: SiField;1116 Signature: Signature;1117 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1118 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1119 SignedBlock: SignedBlock;1120 SignedBlockWithJustification: SignedBlockWithJustification;1121 SignedBlockWithJustifications: SignedBlockWithJustifications;1122 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1123 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1124 SignedSubmission: SignedSubmission;1125 SignedSubmissionOf: SignedSubmissionOf;1126 SignedSubmissionTo276: SignedSubmissionTo276;1127 SignerPayload: SignerPayload;1128 SigningContext: SigningContext;1129 SiLookupTypeId: SiLookupTypeId;1130 SiPath: SiPath;1131 SiType: SiType;1132 SiTypeDef: SiTypeDef;1133 SiTypeDefArray: SiTypeDefArray;1134 SiTypeDefBitSequence: SiTypeDefBitSequence;1135 SiTypeDefCompact: SiTypeDefCompact;1136 SiTypeDefComposite: SiTypeDefComposite;1137 SiTypeDefPrimitive: SiTypeDefPrimitive;1138 SiTypeDefSequence: SiTypeDefSequence;1139 SiTypeDefTuple: SiTypeDefTuple;1140 SiTypeDefVariant: SiTypeDefVariant;1141 SiTypeParameter: SiTypeParameter;1142 SiVariant: SiVariant;1143 SlashingSpans: SlashingSpans;1144 SlashingSpansTo204: SlashingSpansTo204;1145 SlashJournalEntry: SlashJournalEntry;1146 Slot: Slot;1147 SlotDuration: SlotDuration;1148 SlotNumber: SlotNumber;1149 SlotRange: SlotRange;1150 SlotRange10: SlotRange10;1151 SocietyJudgement: SocietyJudgement;1152 SocietyVote: SocietyVote;1153 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1154 SolutionSupport: SolutionSupport;1155 SolutionSupports: SolutionSupports;1156 SpanIndex: SpanIndex;1157 SpanRecord: SpanRecord;1158 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1159 SpCoreEd25519Signature: SpCoreEd25519Signature;1160 SpCoreSr25519Signature: SpCoreSr25519Signature;1161 SpCoreVoid: SpCoreVoid;1162 SpecVersion: SpecVersion;1163 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1164 SpRuntimeDigest: SpRuntimeDigest;1165 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1166 SpRuntimeDispatchError: SpRuntimeDispatchError;1167 SpRuntimeModuleError: SpRuntimeModuleError;1168 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1169 SpRuntimeTokenError: SpRuntimeTokenError;1170 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1171 SpTrieStorageProof: SpTrieStorageProof;1172 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1173 Sr25519Signature: Sr25519Signature;1174 StakingLedger: StakingLedger;1175 StakingLedgerTo223: StakingLedgerTo223;1176 StakingLedgerTo240: StakingLedgerTo240;1177 Statement: Statement;1178 StatementKind: StatementKind;1179 StorageChangeSet: StorageChangeSet;1180 StorageData: StorageData;1181 StorageDeposit: StorageDeposit;1182 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1183 StorageEntryMetadataV10: StorageEntryMetadataV10;1184 StorageEntryMetadataV11: StorageEntryMetadataV11;1185 StorageEntryMetadataV12: StorageEntryMetadataV12;1186 StorageEntryMetadataV13: StorageEntryMetadataV13;1187 StorageEntryMetadataV14: StorageEntryMetadataV14;1188 StorageEntryMetadataV9: StorageEntryMetadataV9;1189 StorageEntryModifierLatest: StorageEntryModifierLatest;1190 StorageEntryModifierV10: StorageEntryModifierV10;1191 StorageEntryModifierV11: StorageEntryModifierV11;1192 StorageEntryModifierV12: StorageEntryModifierV12;1193 StorageEntryModifierV13: StorageEntryModifierV13;1194 StorageEntryModifierV14: StorageEntryModifierV14;1195 StorageEntryModifierV9: StorageEntryModifierV9;1196 StorageEntryTypeLatest: StorageEntryTypeLatest;1197 StorageEntryTypeV10: StorageEntryTypeV10;1198 StorageEntryTypeV11: StorageEntryTypeV11;1199 StorageEntryTypeV12: StorageEntryTypeV12;1200 StorageEntryTypeV13: StorageEntryTypeV13;1201 StorageEntryTypeV14: StorageEntryTypeV14;1202 StorageEntryTypeV9: StorageEntryTypeV9;1203 StorageHasher: StorageHasher;1204 StorageHasherV10: StorageHasherV10;1205 StorageHasherV11: StorageHasherV11;1206 StorageHasherV12: StorageHasherV12;1207 StorageHasherV13: StorageHasherV13;1208 StorageHasherV14: StorageHasherV14;1209 StorageHasherV9: StorageHasherV9;1210 StorageInfo: StorageInfo;1211 StorageKey: StorageKey;1212 StorageKind: StorageKind;1213 StorageMetadataV10: StorageMetadataV10;1214 StorageMetadataV11: StorageMetadataV11;1215 StorageMetadataV12: StorageMetadataV12;1216 StorageMetadataV13: StorageMetadataV13;1217 StorageMetadataV9: StorageMetadataV9;1218 StorageProof: StorageProof;1219 StoredPendingChange: StoredPendingChange;1220 StoredState: StoredState;1221 StrikeCount: StrikeCount;1222 SubId: SubId;1223 SubmissionIndicesOf: SubmissionIndicesOf;1224 Supports: Supports;1225 SyncState: SyncState;1226 SystemInherentData: SystemInherentData;1227 SystemOrigin: SystemOrigin;1228 Tally: Tally;1229 TaskAddress: TaskAddress;1230 TAssetBalance: TAssetBalance;1231 TAssetDepositBalance: TAssetDepositBalance;1232 Text: Text;1233 Timepoint: Timepoint;1234 TokenError: TokenError;1235 TombstoneContractInfo: TombstoneContractInfo;1236 TraceBlockResponse: TraceBlockResponse;1237 TraceError: TraceError;1238 TransactionalError: TransactionalError;1239 TransactionInfo: TransactionInfo;1240 TransactionLongevity: TransactionLongevity;1241 TransactionPriority: TransactionPriority;1242 TransactionSource: TransactionSource;1243 TransactionStorageProof: TransactionStorageProof;1244 TransactionTag: TransactionTag;1245 TransactionV0: TransactionV0;1246 TransactionV1: TransactionV1;1247 TransactionV2: TransactionV2;1248 TransactionValidity: TransactionValidity;1249 TransactionValidityError: TransactionValidityError;1250 TransientValidationData: TransientValidationData;1251 TreasuryProposal: TreasuryProposal;1252 TrieId: TrieId;1253 TrieIndex: TrieIndex;1254 Type: Type;1255 u128: u128;1256 U128: U128;1257 u16: u16;1258 U16: U16;1259 u256: u256;1260 U256: U256;1261 u32: u32;1262 U32: U32;1263 U32F32: U32F32;1264 u64: u64;1265 U64: U64;1266 u8: u8;1267 U8: U8;1268 UnappliedSlash: UnappliedSlash;1269 UnappliedSlashOther: UnappliedSlashOther;1270 UncleEntryItem: UncleEntryItem;1271 UnknownTransaction: UnknownTransaction;1272 UnlockChunk: UnlockChunk;1273 UnrewardedRelayer: UnrewardedRelayer;1274 UnrewardedRelayersState: UnrewardedRelayersState;1275 UpDataStructsAccessMode: UpDataStructsAccessMode;1276 UpDataStructsCollection: UpDataStructsCollection;1277 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1278 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1279 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1280 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1281 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1282 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1283 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1284 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1285 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1286 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1287 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1288 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1289 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1290 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1291 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1292 UpDataStructsProperties: UpDataStructsProperties;1293 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1294 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1295 UpDataStructsProperty: UpDataStructsProperty;1296 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1297 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1298 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1299 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1300 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1301 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1302 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1303 UpDataStructsTokenChild: UpDataStructsTokenChild;1304 UpDataStructsTokenData: UpDataStructsTokenData;1305 UpgradeGoAhead: UpgradeGoAhead;1306 UpgradeRestriction: UpgradeRestriction;1307 UpwardMessage: UpwardMessage;1308 usize: usize;1309 USize: USize;1310 ValidationCode: ValidationCode;1311 ValidationCodeHash: ValidationCodeHash;1312 ValidationData: ValidationData;1313 ValidationDataType: ValidationDataType;1314 ValidationFunctionParams: ValidationFunctionParams;1315 ValidatorCount: ValidatorCount;1316 ValidatorId: ValidatorId;1317 ValidatorIdOf: ValidatorIdOf;1318 ValidatorIndex: ValidatorIndex;1319 ValidatorIndexCompact: ValidatorIndexCompact;1320 ValidatorPrefs: ValidatorPrefs;1321 ValidatorPrefsTo145: ValidatorPrefsTo145;1322 ValidatorPrefsTo196: ValidatorPrefsTo196;1323 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1324 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1325 ValidatorSet: ValidatorSet;1326 ValidatorSetId: ValidatorSetId;1327 ValidatorSignature: ValidatorSignature;1328 ValidDisputeStatementKind: ValidDisputeStatementKind;1329 ValidityAttestation: ValidityAttestation;1330 ValidTransaction: ValidTransaction;1331 VecInboundHrmpMessage: VecInboundHrmpMessage;1332 VersionedMultiAsset: VersionedMultiAsset;1333 VersionedMultiAssets: VersionedMultiAssets;1334 VersionedMultiLocation: VersionedMultiLocation;1335 VersionedResponse: VersionedResponse;1336 VersionedXcm: VersionedXcm;1337 VersionMigrationStage: VersionMigrationStage;1338 VestingInfo: VestingInfo;1339 VestingSchedule: VestingSchedule;1340 Vote: Vote;1341 VoteIndex: VoteIndex;1342 Voter: Voter;1343 VoterInfo: VoterInfo;1344 Votes: Votes;1345 VotesTo230: VotesTo230;1346 VoteThreshold: VoteThreshold;1347 VoteWeight: VoteWeight;1348 Voting: Voting;1349 VotingDelegating: VotingDelegating;1350 VotingDirect: VotingDirect;1351 VotingDirectVote: VotingDirectVote;1352 VouchingStatus: VouchingStatus;1353 VrfData: VrfData;1354 VrfOutput: VrfOutput;1355 VrfProof: VrfProof;1356 Weight: Weight;1357 WeightLimitV2: WeightLimitV2;1358 WeightMultiplier: WeightMultiplier;1359 WeightPerClass: WeightPerClass;1360 WeightToFeeCoefficient: WeightToFeeCoefficient;1361 WildFungibility: WildFungibility;1362 WildFungibilityV0: WildFungibilityV0;1363 WildFungibilityV1: WildFungibilityV1;1364 WildFungibilityV2: WildFungibilityV2;1365 WildMultiAsset: WildMultiAsset;1366 WildMultiAssetV1: WildMultiAssetV1;1367 WildMultiAssetV2: WildMultiAssetV2;1368 WinnersData: WinnersData;1369 WinnersData10: WinnersData10;1370 WinnersDataTuple: WinnersDataTuple;1371 WinnersDataTuple10: WinnersDataTuple10;1372 WinningData: WinningData;1373 WinningData10: WinningData10;1374 WinningDataEntry: WinningDataEntry;1375 WithdrawReasons: WithdrawReasons;1376 Xcm: Xcm;1377 XcmAssetId: XcmAssetId;1378 XcmDoubleEncoded: XcmDoubleEncoded;1379 XcmError: XcmError;1380 XcmErrorV0: XcmErrorV0;1381 XcmErrorV1: XcmErrorV1;1382 XcmErrorV2: XcmErrorV2;1383 XcmOrder: XcmOrder;1384 XcmOrderV0: XcmOrderV0;1385 XcmOrderV1: XcmOrderV1;1386 XcmOrderV2: XcmOrderV2;1387 XcmOrigin: XcmOrigin;1388 XcmOriginKind: XcmOriginKind;1389 XcmpMessageFormat: XcmpMessageFormat;1390 XcmV0: XcmV0;1391 XcmV0Junction: XcmV0Junction;1392 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1393 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1394 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1395 XcmV0MultiAsset: XcmV0MultiAsset;1396 XcmV0MultiLocation: XcmV0MultiLocation;1397 XcmV0Order: XcmV0Order;1398 XcmV0OriginKind: XcmV0OriginKind;1399 XcmV0Response: XcmV0Response;1400 XcmV0Xcm: XcmV0Xcm;1401 XcmV1: XcmV1;1402 XcmV1Junction: XcmV1Junction;1403 XcmV1MultiAsset: XcmV1MultiAsset;1404 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1405 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1406 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1407 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1408 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1409 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1410 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1411 XcmV1MultiLocation: XcmV1MultiLocation;1412 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1413 XcmV1Order: XcmV1Order;1414 XcmV1Response: XcmV1Response;1415 XcmV1Xcm: XcmV1Xcm;1416 XcmV2: XcmV2;1417 XcmV2Instruction: XcmV2Instruction;1418 XcmV2Response: XcmV2Response;1419 XcmV2TraitsError: XcmV2TraitsError;1420 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1421 XcmV2WeightLimit: XcmV2WeightLimit;1422 XcmV2Xcm: XcmV2Xcm;1423 XcmVersion: XcmVersion;1424 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1425 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1426 XcmVersionedXcm: XcmVersionedXcm;1427 } // InterfaceTypes1428} // declare module1// 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/types/registry';78import 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';9import type { Data, StorageKey } from '@polkadot/types';10import 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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountIdOf: AccountIdOf;83 AccountIndex: AccountIndex;84 AccountInfo: AccountInfo;85 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;86 AccountInfoWithProviders: AccountInfoWithProviders;87 AccountInfoWithRefCount: AccountInfoWithRefCount;88 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;89 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;90 AccountStatus: AccountStatus;91 AccountValidity: AccountValidity;92 AccountVote: AccountVote;93 AccountVoteSplit: AccountVoteSplit;94 AccountVoteStandard: AccountVoteStandard;95 ActiveEraInfo: ActiveEraInfo;96 ActiveGilt: ActiveGilt;97 ActiveGiltsTotal: ActiveGiltsTotal;98 ActiveIndex: ActiveIndex;99 ActiveRecovery: ActiveRecovery;100 Address: Address;101 AliveContractInfo: AliveContractInfo;102 AllowedSlots: AllowedSlots;103 AnySignature: AnySignature;104 ApiId: ApiId;105 ApplyExtrinsicResult: ApplyExtrinsicResult;106 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;107 ApprovalFlag: ApprovalFlag;108 Approvals: Approvals;109 ArithmeticError: ArithmeticError;110 AssetApproval: AssetApproval;111 AssetApprovalKey: AssetApprovalKey;112 AssetBalance: AssetBalance;113 AssetDestroyWitness: AssetDestroyWitness;114 AssetDetails: AssetDetails;115 AssetId: AssetId;116 AssetInstance: AssetInstance;117 AssetInstanceV0: AssetInstanceV0;118 AssetInstanceV1: AssetInstanceV1;119 AssetInstanceV2: AssetInstanceV2;120 AssetMetadata: AssetMetadata;121 AssetOptions: AssetOptions;122 AssignmentId: AssignmentId;123 AssignmentKind: AssignmentKind;124 AttestedCandidate: AttestedCandidate;125 AuctionIndex: AuctionIndex;126 AuthIndex: AuthIndex;127 AuthorityDiscoveryId: AuthorityDiscoveryId;128 AuthorityId: AuthorityId;129 AuthorityIndex: AuthorityIndex;130 AuthorityList: AuthorityList;131 AuthoritySet: AuthoritySet;132 AuthoritySetChange: AuthoritySetChange;133 AuthoritySetChanges: AuthoritySetChanges;134 AuthoritySignature: AuthoritySignature;135 AuthorityWeight: AuthorityWeight;136 AvailabilityBitfield: AvailabilityBitfield;137 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;138 BabeAuthorityWeight: BabeAuthorityWeight;139 BabeBlockWeight: BabeBlockWeight;140 BabeEpochConfiguration: BabeEpochConfiguration;141 BabeEquivocationProof: BabeEquivocationProof;142 BabeGenesisConfiguration: BabeGenesisConfiguration;143 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;144 BabeWeight: BabeWeight;145 BackedCandidate: BackedCandidate;146 Balance: Balance;147 BalanceLock: BalanceLock;148 BalanceLockTo212: BalanceLockTo212;149 BalanceOf: BalanceOf;150 BalanceStatus: BalanceStatus;151 BeefyAuthoritySet: BeefyAuthoritySet;152 BeefyCommitment: BeefyCommitment;153 BeefyId: BeefyId;154 BeefyKey: BeefyKey;155 BeefyNextAuthoritySet: BeefyNextAuthoritySet;156 BeefyPayload: BeefyPayload;157 BeefyPayloadId: BeefyPayloadId;158 BeefySignedCommitment: BeefySignedCommitment;159 BenchmarkBatch: BenchmarkBatch;160 BenchmarkConfig: BenchmarkConfig;161 BenchmarkList: BenchmarkList;162 BenchmarkMetadata: BenchmarkMetadata;163 BenchmarkParameter: BenchmarkParameter;164 BenchmarkResult: BenchmarkResult;165 Bid: Bid;166 Bidder: Bidder;167 BidKind: BidKind;168 BitVec: BitVec;169 Block: Block;170 BlockAttestations: BlockAttestations;171 BlockHash: BlockHash;172 BlockLength: BlockLength;173 BlockNumber: BlockNumber;174 BlockNumberFor: BlockNumberFor;175 BlockNumberOf: BlockNumberOf;176 BlockStats: BlockStats;177 BlockTrace: BlockTrace;178 BlockTraceEvent: BlockTraceEvent;179 BlockTraceEventData: BlockTraceEventData;180 BlockTraceSpan: BlockTraceSpan;181 BlockV0: BlockV0;182 BlockV1: BlockV1;183 BlockV2: BlockV2;184 BlockWeights: BlockWeights;185 BodyId: BodyId;186 BodyPart: BodyPart;187 bool: bool;188 Bool: Bool;189 Bounty: Bounty;190 BountyIndex: BountyIndex;191 BountyStatus: BountyStatus;192 BountyStatusActive: BountyStatusActive;193 BountyStatusCuratorProposed: BountyStatusCuratorProposed;194 BountyStatusPendingPayout: BountyStatusPendingPayout;195 BridgedBlockHash: BridgedBlockHash;196 BridgedBlockNumber: BridgedBlockNumber;197 BridgedHeader: BridgedHeader;198 BridgeMessageId: BridgeMessageId;199 BufferedSessionChange: BufferedSessionChange;200 Bytes: Bytes;201 Call: Call;202 CallHash: CallHash;203 CallHashOf: CallHashOf;204 CallIndex: CallIndex;205 CallOrigin: CallOrigin;206 CandidateCommitments: CandidateCommitments;207 CandidateDescriptor: CandidateDescriptor;208 CandidateEvent: CandidateEvent;209 CandidateHash: CandidateHash;210 CandidateInfo: CandidateInfo;211 CandidatePendingAvailability: CandidatePendingAvailability;212 CandidateReceipt: CandidateReceipt;213 ChainId: ChainId;214 ChainProperties: ChainProperties;215 ChainType: ChainType;216 ChangesTrieConfiguration: ChangesTrieConfiguration;217 ChangesTrieSignal: ChangesTrieSignal;218 CheckInherentsResult: CheckInherentsResult;219 ClassDetails: ClassDetails;220 ClassId: ClassId;221 ClassMetadata: ClassMetadata;222 CodecHash: CodecHash;223 CodeHash: CodeHash;224 CodeSource: CodeSource;225 CodeUploadRequest: CodeUploadRequest;226 CodeUploadResult: CodeUploadResult;227 CodeUploadResultValue: CodeUploadResultValue;228 CollationInfo: CollationInfo;229 CollationInfoV1: CollationInfoV1;230 CollatorId: CollatorId;231 CollatorSignature: CollatorSignature;232 CollectiveOrigin: CollectiveOrigin;233 CommittedCandidateReceipt: CommittedCandidateReceipt;234 CompactAssignments: CompactAssignments;235 CompactAssignmentsTo257: CompactAssignmentsTo257;236 CompactAssignmentsTo265: CompactAssignmentsTo265;237 CompactAssignmentsWith16: CompactAssignmentsWith16;238 CompactAssignmentsWith24: CompactAssignmentsWith24;239 CompactScore: CompactScore;240 CompactScoreCompact: CompactScoreCompact;241 ConfigData: ConfigData;242 Consensus: Consensus;243 ConsensusEngineId: ConsensusEngineId;244 ConsumedWeight: ConsumedWeight;245 ContractCallFlags: ContractCallFlags;246 ContractCallRequest: ContractCallRequest;247 ContractConstructorSpecLatest: ContractConstructorSpecLatest;248 ContractConstructorSpecV0: ContractConstructorSpecV0;249 ContractConstructorSpecV1: ContractConstructorSpecV1;250 ContractConstructorSpecV2: ContractConstructorSpecV2;251 ContractConstructorSpecV3: ContractConstructorSpecV3;252 ContractContractSpecV0: ContractContractSpecV0;253 ContractContractSpecV1: ContractContractSpecV1;254 ContractContractSpecV2: ContractContractSpecV2;255 ContractContractSpecV3: ContractContractSpecV3;256 ContractCryptoHasher: ContractCryptoHasher;257 ContractDiscriminant: ContractDiscriminant;258 ContractDisplayName: ContractDisplayName;259 ContractEventParamSpecLatest: ContractEventParamSpecLatest;260 ContractEventParamSpecV0: ContractEventParamSpecV0;261 ContractEventParamSpecV2: ContractEventParamSpecV2;262 ContractEventSpecLatest: ContractEventSpecLatest;263 ContractEventSpecV0: ContractEventSpecV0;264 ContractEventSpecV1: ContractEventSpecV1;265 ContractEventSpecV2: ContractEventSpecV2;266 ContractExecResult: ContractExecResult;267 ContractExecResultOk: ContractExecResultOk;268 ContractExecResultResult: ContractExecResultResult;269 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;270 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;271 ContractExecResultTo255: ContractExecResultTo255;272 ContractExecResultTo260: ContractExecResultTo260;273 ContractExecResultTo267: ContractExecResultTo267;274 ContractInfo: ContractInfo;275 ContractInstantiateResult: ContractInstantiateResult;276 ContractInstantiateResultTo267: ContractInstantiateResultTo267;277 ContractInstantiateResultTo299: ContractInstantiateResultTo299;278 ContractLayoutArray: ContractLayoutArray;279 ContractLayoutCell: ContractLayoutCell;280 ContractLayoutEnum: ContractLayoutEnum;281 ContractLayoutHash: ContractLayoutHash;282 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;283 ContractLayoutKey: ContractLayoutKey;284 ContractLayoutStruct: ContractLayoutStruct;285 ContractLayoutStructField: ContractLayoutStructField;286 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;287 ContractMessageParamSpecV0: ContractMessageParamSpecV0;288 ContractMessageParamSpecV2: ContractMessageParamSpecV2;289 ContractMessageSpecLatest: ContractMessageSpecLatest;290 ContractMessageSpecV0: ContractMessageSpecV0;291 ContractMessageSpecV1: ContractMessageSpecV1;292 ContractMessageSpecV2: ContractMessageSpecV2;293 ContractMetadata: ContractMetadata;294 ContractMetadataLatest: ContractMetadataLatest;295 ContractMetadataV0: ContractMetadataV0;296 ContractMetadataV1: ContractMetadataV1;297 ContractMetadataV2: ContractMetadataV2;298 ContractMetadataV3: ContractMetadataV3;299 ContractProject: ContractProject;300 ContractProjectContract: ContractProjectContract;301 ContractProjectInfo: ContractProjectInfo;302 ContractProjectSource: ContractProjectSource;303 ContractProjectV0: ContractProjectV0;304 ContractReturnFlags: ContractReturnFlags;305 ContractSelector: ContractSelector;306 ContractStorageKey: ContractStorageKey;307 ContractStorageLayout: ContractStorageLayout;308 ContractTypeSpec: ContractTypeSpec;309 Conviction: Conviction;310 CoreAssignment: CoreAssignment;311 CoreIndex: CoreIndex;312 CoreOccupied: CoreOccupied;313 CoreState: CoreState;314 CrateVersion: CrateVersion;315 CreatedBlock: CreatedBlock;316 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;317 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;318 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;319 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;320 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;321 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;322 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;323 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;324 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;325 CumulusPalletXcmCall: CumulusPalletXcmCall;326 CumulusPalletXcmError: CumulusPalletXcmError;327 CumulusPalletXcmEvent: CumulusPalletXcmEvent;328 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;329 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;330 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;331 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;332 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;333 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;334 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;335 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;336 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;337 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;338 Data: Data;339 DeferredOffenceOf: DeferredOffenceOf;340 DefunctVoter: DefunctVoter;341 DelayKind: DelayKind;342 DelayKindBest: DelayKindBest;343 Delegations: Delegations;344 DeletedContract: DeletedContract;345 DeliveredMessages: DeliveredMessages;346 DepositBalance: DepositBalance;347 DepositBalanceOf: DepositBalanceOf;348 DestroyWitness: DestroyWitness;349 Digest: Digest;350 DigestItem: DigestItem;351 DigestOf: DigestOf;352 DispatchClass: DispatchClass;353 DispatchError: DispatchError;354 DispatchErrorModule: DispatchErrorModule;355 DispatchErrorModulePre6: DispatchErrorModulePre6;356 DispatchErrorModuleU8: DispatchErrorModuleU8;357 DispatchErrorModuleU8a: DispatchErrorModuleU8a;358 DispatchErrorPre6: DispatchErrorPre6;359 DispatchErrorPre6First: DispatchErrorPre6First;360 DispatchErrorTo198: DispatchErrorTo198;361 DispatchFeePayment: DispatchFeePayment;362 DispatchInfo: DispatchInfo;363 DispatchInfoTo190: DispatchInfoTo190;364 DispatchInfoTo244: DispatchInfoTo244;365 DispatchOutcome: DispatchOutcome;366 DispatchOutcomePre6: DispatchOutcomePre6;367 DispatchResult: DispatchResult;368 DispatchResultOf: DispatchResultOf;369 DispatchResultTo198: DispatchResultTo198;370 DisputeLocation: DisputeLocation;371 DisputeResult: DisputeResult;372 DisputeState: DisputeState;373 DisputeStatement: DisputeStatement;374 DisputeStatementSet: DisputeStatementSet;375 DoubleEncodedCall: DoubleEncodedCall;376 DoubleVoteReport: DoubleVoteReport;377 DownwardMessage: DownwardMessage;378 EcdsaSignature: EcdsaSignature;379 Ed25519Signature: Ed25519Signature;380 EIP1559Transaction: EIP1559Transaction;381 EIP2930Transaction: EIP2930Transaction;382 ElectionCompute: ElectionCompute;383 ElectionPhase: ElectionPhase;384 ElectionResult: ElectionResult;385 ElectionScore: ElectionScore;386 ElectionSize: ElectionSize;387 ElectionStatus: ElectionStatus;388 EncodedFinalityProofs: EncodedFinalityProofs;389 EncodedJustification: EncodedJustification;390 Epoch: Epoch;391 EpochAuthorship: EpochAuthorship;392 Era: Era;393 EraIndex: EraIndex;394 EraPoints: EraPoints;395 EraRewardPoints: EraRewardPoints;396 EraRewards: EraRewards;397 ErrorMetadataLatest: ErrorMetadataLatest;398 ErrorMetadataV10: ErrorMetadataV10;399 ErrorMetadataV11: ErrorMetadataV11;400 ErrorMetadataV12: ErrorMetadataV12;401 ErrorMetadataV13: ErrorMetadataV13;402 ErrorMetadataV14: ErrorMetadataV14;403 ErrorMetadataV9: ErrorMetadataV9;404 EthAccessList: EthAccessList;405 EthAccessListItem: EthAccessListItem;406 EthAccount: EthAccount;407 EthAddress: EthAddress;408 EthBlock: EthBlock;409 EthBloom: EthBloom;410 EthbloomBloom: EthbloomBloom;411 EthCallRequest: EthCallRequest;412 EthereumAccountId: EthereumAccountId;413 EthereumAddress: EthereumAddress;414 EthereumBlock: EthereumBlock;415 EthereumHeader: EthereumHeader;416 EthereumLog: EthereumLog;417 EthereumLookupSource: EthereumLookupSource;418 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;419 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;420 EthereumSignature: EthereumSignature;421 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;422 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;423 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;424 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;425 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;426 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;427 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;428 EthereumTypesHashH64: EthereumTypesHashH64;429 EthFeeHistory: EthFeeHistory;430 EthFilter: EthFilter;431 EthFilterAddress: EthFilterAddress;432 EthFilterChanges: EthFilterChanges;433 EthFilterTopic: EthFilterTopic;434 EthFilterTopicEntry: EthFilterTopicEntry;435 EthFilterTopicInner: EthFilterTopicInner;436 EthHeader: EthHeader;437 EthLog: EthLog;438 EthReceipt: EthReceipt;439 EthReceiptV0: EthReceiptV0;440 EthReceiptV3: EthReceiptV3;441 EthRichBlock: EthRichBlock;442 EthRichHeader: EthRichHeader;443 EthStorageProof: EthStorageProof;444 EthSubKind: EthSubKind;445 EthSubParams: EthSubParams;446 EthSubResult: EthSubResult;447 EthSyncInfo: EthSyncInfo;448 EthSyncStatus: EthSyncStatus;449 EthTransaction: EthTransaction;450 EthTransactionAction: EthTransactionAction;451 EthTransactionCondition: EthTransactionCondition;452 EthTransactionRequest: EthTransactionRequest;453 EthTransactionSignature: EthTransactionSignature;454 EthTransactionStatus: EthTransactionStatus;455 EthWork: EthWork;456 Event: Event;457 EventId: EventId;458 EventIndex: EventIndex;459 EventMetadataLatest: EventMetadataLatest;460 EventMetadataV10: EventMetadataV10;461 EventMetadataV11: EventMetadataV11;462 EventMetadataV12: EventMetadataV12;463 EventMetadataV13: EventMetadataV13;464 EventMetadataV14: EventMetadataV14;465 EventMetadataV9: EventMetadataV9;466 EventRecord: EventRecord;467 EvmAccount: EvmAccount;468 EvmCallInfo: EvmCallInfo;469 EvmCoreErrorExitError: EvmCoreErrorExitError;470 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;471 EvmCoreErrorExitReason: EvmCoreErrorExitReason;472 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;473 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;474 EvmCreateInfo: EvmCreateInfo;475 EvmLog: EvmLog;476 EvmVicinity: EvmVicinity;477 ExecReturnValue: ExecReturnValue;478 ExitError: ExitError;479 ExitFatal: ExitFatal;480 ExitReason: ExitReason;481 ExitRevert: ExitRevert;482 ExitSucceed: ExitSucceed;483 ExplicitDisputeStatement: ExplicitDisputeStatement;484 Exposure: Exposure;485 ExtendedBalance: ExtendedBalance;486 Extrinsic: Extrinsic;487 ExtrinsicEra: ExtrinsicEra;488 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;489 ExtrinsicMetadataV11: ExtrinsicMetadataV11;490 ExtrinsicMetadataV12: ExtrinsicMetadataV12;491 ExtrinsicMetadataV13: ExtrinsicMetadataV13;492 ExtrinsicMetadataV14: ExtrinsicMetadataV14;493 ExtrinsicOrHash: ExtrinsicOrHash;494 ExtrinsicPayload: ExtrinsicPayload;495 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;496 ExtrinsicPayloadV4: ExtrinsicPayloadV4;497 ExtrinsicSignature: ExtrinsicSignature;498 ExtrinsicSignatureV4: ExtrinsicSignatureV4;499 ExtrinsicStatus: ExtrinsicStatus;500 ExtrinsicsWeight: ExtrinsicsWeight;501 ExtrinsicUnknown: ExtrinsicUnknown;502 ExtrinsicV4: ExtrinsicV4;503 f32: f32;504 F32: F32;505 f64: f64;506 F64: F64;507 FeeDetails: FeeDetails;508 Fixed128: Fixed128;509 Fixed64: Fixed64;510 FixedI128: FixedI128;511 FixedI64: FixedI64;512 FixedU128: FixedU128;513 FixedU64: FixedU64;514 Forcing: Forcing;515 ForkTreePendingChange: ForkTreePendingChange;516 ForkTreePendingChangeNode: ForkTreePendingChangeNode;517 FpRpcTransactionStatus: FpRpcTransactionStatus;518 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;519 FrameSupportPalletId: FrameSupportPalletId;520 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;521 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;522 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;523 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;524 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;525 FrameSupportWeightsPays: FrameSupportWeightsPays;526 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;527 FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;528 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;529 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;530 FrameSystemAccountInfo: FrameSystemAccountInfo;531 FrameSystemCall: FrameSystemCall;532 FrameSystemError: FrameSystemError;533 FrameSystemEvent: FrameSystemEvent;534 FrameSystemEventRecord: FrameSystemEventRecord;535 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;539 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;540 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;541 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;542 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;543 FrameSystemPhase: FrameSystemPhase;544 FullIdentification: FullIdentification;545 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;546 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;547 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;548 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;549 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;550 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;551 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;552 FunctionMetadataLatest: FunctionMetadataLatest;553 FunctionMetadataV10: FunctionMetadataV10;554 FunctionMetadataV11: FunctionMetadataV11;555 FunctionMetadataV12: FunctionMetadataV12;556 FunctionMetadataV13: FunctionMetadataV13;557 FunctionMetadataV14: FunctionMetadataV14;558 FunctionMetadataV9: FunctionMetadataV9;559 FundIndex: FundIndex;560 FundInfo: FundInfo;561 Fungibility: Fungibility;562 FungibilityV0: FungibilityV0;563 FungibilityV1: FungibilityV1;564 FungibilityV2: FungibilityV2;565 Gas: Gas;566 GiltBid: GiltBid;567 GlobalValidationData: GlobalValidationData;568 GlobalValidationSchedule: GlobalValidationSchedule;569 GrandpaCommit: GrandpaCommit;570 GrandpaEquivocation: GrandpaEquivocation;571 GrandpaEquivocationProof: GrandpaEquivocationProof;572 GrandpaEquivocationValue: GrandpaEquivocationValue;573 GrandpaJustification: GrandpaJustification;574 GrandpaPrecommit: GrandpaPrecommit;575 GrandpaPrevote: GrandpaPrevote;576 GrandpaSignedPrecommit: GrandpaSignedPrecommit;577 GroupIndex: GroupIndex;578 GroupRotationInfo: GroupRotationInfo;579 H1024: H1024;580 H128: H128;581 H160: H160;582 H2048: H2048;583 H256: H256;584 H32: H32;585 H512: H512;586 H64: H64;587 Hash: Hash;588 HeadData: HeadData;589 Header: Header;590 HeaderPartial: HeaderPartial;591 Health: Health;592 Heartbeat: Heartbeat;593 HeartbeatTo244: HeartbeatTo244;594 HostConfiguration: HostConfiguration;595 HostFnWeights: HostFnWeights;596 HostFnWeightsTo264: HostFnWeightsTo264;597 HrmpChannel: HrmpChannel;598 HrmpChannelId: HrmpChannelId;599 HrmpOpenChannelRequest: HrmpOpenChannelRequest;600 i128: i128;601 I128: I128;602 i16: i16;603 I16: I16;604 i256: i256;605 I256: I256;606 i32: i32;607 I32: I32;608 I32F32: I32F32;609 i64: i64;610 I64: I64;611 i8: i8;612 I8: I8;613 IdentificationTuple: IdentificationTuple;614 IdentityFields: IdentityFields;615 IdentityInfo: IdentityInfo;616 IdentityInfoAdditional: IdentityInfoAdditional;617 IdentityInfoTo198: IdentityInfoTo198;618 IdentityJudgement: IdentityJudgement;619 ImmortalEra: ImmortalEra;620 ImportedAux: ImportedAux;621 InboundDownwardMessage: InboundDownwardMessage;622 InboundHrmpMessage: InboundHrmpMessage;623 InboundHrmpMessages: InboundHrmpMessages;624 InboundLaneData: InboundLaneData;625 InboundRelayer: InboundRelayer;626 InboundStatus: InboundStatus;627 IncludedBlocks: IncludedBlocks;628 InclusionFee: InclusionFee;629 IncomingParachain: IncomingParachain;630 IncomingParachainDeploy: IncomingParachainDeploy;631 IncomingParachainFixed: IncomingParachainFixed;632 Index: Index;633 IndicesLookupSource: IndicesLookupSource;634 IndividualExposure: IndividualExposure;635 InherentData: InherentData;636 InherentIdentifier: InherentIdentifier;637 InitializationData: InitializationData;638 InstanceDetails: InstanceDetails;639 InstanceId: InstanceId;640 InstanceMetadata: InstanceMetadata;641 InstantiateRequest: InstantiateRequest;642 InstantiateRequestV1: InstantiateRequestV1;643 InstantiateRequestV2: InstantiateRequestV2;644 InstantiateReturnValue: InstantiateReturnValue;645 InstantiateReturnValueOk: InstantiateReturnValueOk;646 InstantiateReturnValueTo267: InstantiateReturnValueTo267;647 InstructionV2: InstructionV2;648 InstructionWeights: InstructionWeights;649 InteriorMultiLocation: InteriorMultiLocation;650 InvalidDisputeStatementKind: InvalidDisputeStatementKind;651 InvalidTransaction: InvalidTransaction;652 Json: Json;653 Junction: Junction;654 Junctions: Junctions;655 JunctionsV1: JunctionsV1;656 JunctionsV2: JunctionsV2;657 JunctionV0: JunctionV0;658 JunctionV1: JunctionV1;659 JunctionV2: JunctionV2;660 Justification: Justification;661 JustificationNotification: JustificationNotification;662 Justifications: Justifications;663 Key: Key;664 KeyOwnerProof: KeyOwnerProof;665 Keys: Keys;666 KeyType: KeyType;667 KeyTypeId: KeyTypeId;668 KeyValue: KeyValue;669 KeyValueOption: KeyValueOption;670 Kind: Kind;671 LaneId: LaneId;672 LastContribution: LastContribution;673 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;674 LeasePeriod: LeasePeriod;675 LeasePeriodOf: LeasePeriodOf;676 LegacyTransaction: LegacyTransaction;677 Limits: Limits;678 LimitsTo264: LimitsTo264;679 LocalValidationData: LocalValidationData;680 LockIdentifier: LockIdentifier;681 LookupSource: LookupSource;682 LookupTarget: LookupTarget;683 LotteryConfig: LotteryConfig;684 MaybeRandomness: MaybeRandomness;685 MaybeVrf: MaybeVrf;686 MemberCount: MemberCount;687 MembershipProof: MembershipProof;688 MessageData: MessageData;689 MessageId: MessageId;690 MessageIngestionType: MessageIngestionType;691 MessageKey: MessageKey;692 MessageNonce: MessageNonce;693 MessageQueueChain: MessageQueueChain;694 MessagesDeliveryProofOf: MessagesDeliveryProofOf;695 MessagesProofOf: MessagesProofOf;696 MessagingStateSnapshot: MessagingStateSnapshot;697 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;698 MetadataAll: MetadataAll;699 MetadataLatest: MetadataLatest;700 MetadataV10: MetadataV10;701 MetadataV11: MetadataV11;702 MetadataV12: MetadataV12;703 MetadataV13: MetadataV13;704 MetadataV14: MetadataV14;705 MetadataV9: MetadataV9;706 MigrationStatusResult: MigrationStatusResult;707 MmrBatchProof: MmrBatchProof;708 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;709 MmrError: MmrError;710 MmrLeafBatchProof: MmrLeafBatchProof;711 MmrLeafIndex: MmrLeafIndex;712 MmrLeafProof: MmrLeafProof;713 MmrNodeIndex: MmrNodeIndex;714 MmrProof: MmrProof;715 MmrRootHash: MmrRootHash;716 ModuleConstantMetadataV10: ModuleConstantMetadataV10;717 ModuleConstantMetadataV11: ModuleConstantMetadataV11;718 ModuleConstantMetadataV12: ModuleConstantMetadataV12;719 ModuleConstantMetadataV13: ModuleConstantMetadataV13;720 ModuleConstantMetadataV9: ModuleConstantMetadataV9;721 ModuleId: ModuleId;722 ModuleMetadataV10: ModuleMetadataV10;723 ModuleMetadataV11: ModuleMetadataV11;724 ModuleMetadataV12: ModuleMetadataV12;725 ModuleMetadataV13: ModuleMetadataV13;726 ModuleMetadataV9: ModuleMetadataV9;727 Moment: Moment;728 MomentOf: MomentOf;729 MoreAttestations: MoreAttestations;730 MortalEra: MortalEra;731 MultiAddress: MultiAddress;732 MultiAsset: MultiAsset;733 MultiAssetFilter: MultiAssetFilter;734 MultiAssetFilterV1: MultiAssetFilterV1;735 MultiAssetFilterV2: MultiAssetFilterV2;736 MultiAssets: MultiAssets;737 MultiAssetsV1: MultiAssetsV1;738 MultiAssetsV2: MultiAssetsV2;739 MultiAssetV0: MultiAssetV0;740 MultiAssetV1: MultiAssetV1;741 MultiAssetV2: MultiAssetV2;742 MultiDisputeStatementSet: MultiDisputeStatementSet;743 MultiLocation: MultiLocation;744 MultiLocationV0: MultiLocationV0;745 MultiLocationV1: MultiLocationV1;746 MultiLocationV2: MultiLocationV2;747 Multiplier: Multiplier;748 Multisig: Multisig;749 MultiSignature: MultiSignature;750 MultiSigner: MultiSigner;751 NetworkId: NetworkId;752 NetworkState: NetworkState;753 NetworkStatePeerset: NetworkStatePeerset;754 NetworkStatePeersetInfo: NetworkStatePeersetInfo;755 NewBidder: NewBidder;756 NextAuthority: NextAuthority;757 NextConfigDescriptor: NextConfigDescriptor;758 NextConfigDescriptorV1: NextConfigDescriptorV1;759 NodeRole: NodeRole;760 Nominations: Nominations;761 NominatorIndex: NominatorIndex;762 NominatorIndexCompact: NominatorIndexCompact;763 NotConnectedPeer: NotConnectedPeer;764 NpApiError: NpApiError;765 Null: Null;766 OccupiedCore: OccupiedCore;767 OccupiedCoreAssumption: OccupiedCoreAssumption;768 OffchainAccuracy: OffchainAccuracy;769 OffchainAccuracyCompact: OffchainAccuracyCompact;770 OffenceDetails: OffenceDetails;771 Offender: Offender;772 OldV1SessionInfo: OldV1SessionInfo;773 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;774 OpalRuntimeRuntime: OpalRuntimeRuntime;775 OpaqueCall: OpaqueCall;776 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;777 OpaqueMetadata: OpaqueMetadata;778 OpaqueMultiaddr: OpaqueMultiaddr;779 OpaqueNetworkState: OpaqueNetworkState;780 OpaquePeerId: OpaquePeerId;781 OpaqueTimeSlot: OpaqueTimeSlot;782 OpenTip: OpenTip;783 OpenTipFinderTo225: OpenTipFinderTo225;784 OpenTipTip: OpenTipTip;785 OpenTipTo225: OpenTipTo225;786 OperatingMode: OperatingMode;787 OptionBool: OptionBool;788 Origin: Origin;789 OriginCaller: OriginCaller;790 OriginKindV0: OriginKindV0;791 OriginKindV1: OriginKindV1;792 OriginKindV2: OriginKindV2;793 OrmlVestingModuleCall: OrmlVestingModuleCall;794 OrmlVestingModuleError: OrmlVestingModuleError;795 OrmlVestingModuleEvent: OrmlVestingModuleEvent;796 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;797 OutboundHrmpMessage: OutboundHrmpMessage;798 OutboundLaneData: OutboundLaneData;799 OutboundMessageFee: OutboundMessageFee;800 OutboundPayload: OutboundPayload;801 OutboundStatus: OutboundStatus;802 Outcome: Outcome;803 OverweightIndex: OverweightIndex;804 Owner: Owner;805 PageCounter: PageCounter;806 PageIndexData: PageIndexData;807 PalletAppPromotionCall: PalletAppPromotionCall;808 PalletAppPromotionError: PalletAppPromotionError;809 PalletAppPromotionEvent: PalletAppPromotionEvent;810 PalletBalancesAccountData: PalletBalancesAccountData;811 PalletBalancesBalanceLock: PalletBalancesBalanceLock;812 PalletBalancesCall: PalletBalancesCall;813 PalletBalancesError: PalletBalancesError;814 PalletBalancesEvent: PalletBalancesEvent;815 PalletBalancesReasons: PalletBalancesReasons;816 PalletBalancesReleases: PalletBalancesReleases;817 PalletBalancesReserveData: PalletBalancesReserveData;818 PalletCallMetadataLatest: PalletCallMetadataLatest;819 PalletCallMetadataV14: PalletCallMetadataV14;820 PalletCommonError: PalletCommonError;821 PalletCommonEvent: PalletCommonEvent;822 PalletConfigurationCall: PalletConfigurationCall;823 PalletConstantMetadataLatest: PalletConstantMetadataLatest;824 PalletConstantMetadataV14: PalletConstantMetadataV14;825 PalletErrorMetadataLatest: PalletErrorMetadataLatest;826 PalletErrorMetadataV14: PalletErrorMetadataV14;827 PalletEthereumCall: PalletEthereumCall;828 PalletEthereumError: PalletEthereumError;829 PalletEthereumEvent: PalletEthereumEvent;830 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;831 PalletEthereumRawOrigin: PalletEthereumRawOrigin;832 PalletEventMetadataLatest: PalletEventMetadataLatest;833 PalletEventMetadataV14: PalletEventMetadataV14;834 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;835 PalletEvmCall: PalletEvmCall;836 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;837 PalletEvmContractHelpersError: PalletEvmContractHelpersError;838 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;839 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;840 PalletEvmError: PalletEvmError;841 PalletEvmEvent: PalletEvmEvent;842 PalletEvmMigrationCall: PalletEvmMigrationCall;843 PalletEvmMigrationError: PalletEvmMigrationError;844 PalletFungibleError: PalletFungibleError;845 PalletId: PalletId;846 PalletInflationCall: PalletInflationCall;847 PalletMetadataLatest: PalletMetadataLatest;848 PalletMetadataV14: PalletMetadataV14;849 PalletNonfungibleError: PalletNonfungibleError;850 PalletNonfungibleItemData: PalletNonfungibleItemData;851 PalletRefungibleError: PalletRefungibleError;852 PalletRefungibleItemData: PalletRefungibleItemData;853 PalletRmrkCoreCall: PalletRmrkCoreCall;854 PalletRmrkCoreError: PalletRmrkCoreError;855 PalletRmrkCoreEvent: PalletRmrkCoreEvent;856 PalletRmrkEquipCall: PalletRmrkEquipCall;857 PalletRmrkEquipError: PalletRmrkEquipError;858 PalletRmrkEquipEvent: PalletRmrkEquipEvent;859 PalletsOrigin: PalletsOrigin;860 PalletStorageMetadataLatest: PalletStorageMetadataLatest;861 PalletStorageMetadataV14: PalletStorageMetadataV14;862 PalletStructureCall: PalletStructureCall;863 PalletStructureError: PalletStructureError;864 PalletStructureEvent: PalletStructureEvent;865 PalletSudoCall: PalletSudoCall;866 PalletSudoError: PalletSudoError;867 PalletSudoEvent: PalletSudoEvent;868 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;869 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;870 PalletTimestampCall: PalletTimestampCall;871 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;872 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;873 PalletTreasuryCall: PalletTreasuryCall;874 PalletTreasuryError: PalletTreasuryError;875 PalletTreasuryEvent: PalletTreasuryEvent;876 PalletTreasuryProposal: PalletTreasuryProposal;877 PalletUniqueCall: PalletUniqueCall;878 PalletUniqueError: PalletUniqueError;879 PalletUniqueRawEvent: PalletUniqueRawEvent;880 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;881 PalletUniqueSchedulerError: PalletUniqueSchedulerError;882 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;883 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;884 PalletVersion: PalletVersion;885 PalletXcmCall: PalletXcmCall;886 PalletXcmError: PalletXcmError;887 PalletXcmEvent: PalletXcmEvent;888 PalletXcmOrigin: PalletXcmOrigin;889 ParachainDispatchOrigin: ParachainDispatchOrigin;890 ParachainInherentData: ParachainInherentData;891 ParachainProposal: ParachainProposal;892 ParachainsInherentData: ParachainsInherentData;893 ParaGenesisArgs: ParaGenesisArgs;894 ParaId: ParaId;895 ParaInfo: ParaInfo;896 ParaLifecycle: ParaLifecycle;897 Parameter: Parameter;898 ParaPastCodeMeta: ParaPastCodeMeta;899 ParaScheduling: ParaScheduling;900 ParathreadClaim: ParathreadClaim;901 ParathreadClaimQueue: ParathreadClaimQueue;902 ParathreadEntry: ParathreadEntry;903 ParaValidatorIndex: ParaValidatorIndex;904 Pays: Pays;905 Peer: Peer;906 PeerEndpoint: PeerEndpoint;907 PeerEndpointAddr: PeerEndpointAddr;908 PeerInfo: PeerInfo;909 PeerPing: PeerPing;910 PendingChange: PendingChange;911 PendingPause: PendingPause;912 PendingResume: PendingResume;913 Perbill: Perbill;914 Percent: Percent;915 PerDispatchClassU32: PerDispatchClassU32;916 PerDispatchClassWeight: PerDispatchClassWeight;917 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;918 Period: Period;919 Permill: Permill;920 PermissionLatest: PermissionLatest;921 PermissionsV1: PermissionsV1;922 PermissionVersions: PermissionVersions;923 Perquintill: Perquintill;924 PersistedValidationData: PersistedValidationData;925 PerU16: PerU16;926 Phantom: Phantom;927 PhantomData: PhantomData;928 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;929 Phase: Phase;930 PhragmenScore: PhragmenScore;931 Points: Points;932 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;933 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;934 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;935 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;936 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;937 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;938 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;939 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;940 PortableType: PortableType;941 PortableTypeV14: PortableTypeV14;942 Precommits: Precommits;943 PrefabWasmModule: PrefabWasmModule;944 PrefixedStorageKey: PrefixedStorageKey;945 PreimageStatus: PreimageStatus;946 PreimageStatusAvailable: PreimageStatusAvailable;947 PreRuntime: PreRuntime;948 Prevotes: Prevotes;949 Priority: Priority;950 PriorLock: PriorLock;951 PropIndex: PropIndex;952 Proposal: Proposal;953 ProposalIndex: ProposalIndex;954 ProxyAnnouncement: ProxyAnnouncement;955 ProxyDefinition: ProxyDefinition;956 ProxyState: ProxyState;957 ProxyType: ProxyType;958 PvfCheckStatement: PvfCheckStatement;959 QueryId: QueryId;960 QueryStatus: QueryStatus;961 QueueConfigData: QueueConfigData;962 QueuedParathread: QueuedParathread;963 Randomness: Randomness;964 Raw: Raw;965 RawAuraPreDigest: RawAuraPreDigest;966 RawBabePreDigest: RawBabePreDigest;967 RawBabePreDigestCompat: RawBabePreDigestCompat;968 RawBabePreDigestPrimary: RawBabePreDigestPrimary;969 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;970 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;971 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;972 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;973 RawBabePreDigestTo159: RawBabePreDigestTo159;974 RawOrigin: RawOrigin;975 RawSolution: RawSolution;976 RawSolutionTo265: RawSolutionTo265;977 RawSolutionWith16: RawSolutionWith16;978 RawSolutionWith24: RawSolutionWith24;979 RawVRFOutput: RawVRFOutput;980 ReadProof: ReadProof;981 ReadySolution: ReadySolution;982 Reasons: Reasons;983 RecoveryConfig: RecoveryConfig;984 RefCount: RefCount;985 RefCountTo259: RefCountTo259;986 ReferendumIndex: ReferendumIndex;987 ReferendumInfo: ReferendumInfo;988 ReferendumInfoFinished: ReferendumInfoFinished;989 ReferendumInfoTo239: ReferendumInfoTo239;990 ReferendumStatus: ReferendumStatus;991 RegisteredParachainInfo: RegisteredParachainInfo;992 RegistrarIndex: RegistrarIndex;993 RegistrarInfo: RegistrarInfo;994 Registration: Registration;995 RegistrationJudgement: RegistrationJudgement;996 RegistrationTo198: RegistrationTo198;997 RelayBlockNumber: RelayBlockNumber;998 RelayChainBlockNumber: RelayChainBlockNumber;999 RelayChainHash: RelayChainHash;1000 RelayerId: RelayerId;1001 RelayHash: RelayHash;1002 Releases: Releases;1003 Remark: Remark;1004 Renouncing: Renouncing;1005 RentProjection: RentProjection;1006 ReplacementTimes: ReplacementTimes;1007 ReportedRoundStates: ReportedRoundStates;1008 Reporter: Reporter;1009 ReportIdOf: ReportIdOf;1010 ReserveData: ReserveData;1011 ReserveIdentifier: ReserveIdentifier;1012 Response: Response;1013 ResponseV0: ResponseV0;1014 ResponseV1: ResponseV1;1015 ResponseV2: ResponseV2;1016 ResponseV2Error: ResponseV2Error;1017 ResponseV2Result: ResponseV2Result;1018 Retriable: Retriable;1019 RewardDestination: RewardDestination;1020 RewardPoint: RewardPoint;1021 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1022 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1023 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1024 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1025 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1026 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1027 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1028 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1029 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1030 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1031 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1032 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1033 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1034 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1035 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1036 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1037 RmrkTraitsTheme: RmrkTraitsTheme;1038 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1039 RoundSnapshot: RoundSnapshot;1040 RoundState: RoundState;1041 RpcMethods: RpcMethods;1042 RuntimeDbWeight: RuntimeDbWeight;1043 RuntimeDispatchInfo: RuntimeDispatchInfo;1044 RuntimeVersion: RuntimeVersion;1045 RuntimeVersionApi: RuntimeVersionApi;1046 RuntimeVersionPartial: RuntimeVersionPartial;1047 RuntimeVersionPre3: RuntimeVersionPre3;1048 RuntimeVersionPre4: RuntimeVersionPre4;1049 Schedule: Schedule;1050 Scheduled: Scheduled;1051 ScheduledCore: ScheduledCore;1052 ScheduledTo254: ScheduledTo254;1053 SchedulePeriod: SchedulePeriod;1054 SchedulePriority: SchedulePriority;1055 ScheduleTo212: ScheduleTo212;1056 ScheduleTo258: ScheduleTo258;1057 ScheduleTo264: ScheduleTo264;1058 Scheduling: Scheduling;1059 ScrapedOnChainVotes: ScrapedOnChainVotes;1060 Seal: Seal;1061 SealV0: SealV0;1062 SeatHolder: SeatHolder;1063 SeedOf: SeedOf;1064 ServiceQuality: ServiceQuality;1065 SessionIndex: SessionIndex;1066 SessionInfo: SessionInfo;1067 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1068 SessionKeys1: SessionKeys1;1069 SessionKeys10: SessionKeys10;1070 SessionKeys10B: SessionKeys10B;1071 SessionKeys2: SessionKeys2;1072 SessionKeys3: SessionKeys3;1073 SessionKeys4: SessionKeys4;1074 SessionKeys5: SessionKeys5;1075 SessionKeys6: SessionKeys6;1076 SessionKeys6B: SessionKeys6B;1077 SessionKeys7: SessionKeys7;1078 SessionKeys7B: SessionKeys7B;1079 SessionKeys8: SessionKeys8;1080 SessionKeys8B: SessionKeys8B;1081 SessionKeys9: SessionKeys9;1082 SessionKeys9B: SessionKeys9B;1083 SetId: SetId;1084 SetIndex: SetIndex;1085 Si0Field: Si0Field;1086 Si0LookupTypeId: Si0LookupTypeId;1087 Si0Path: Si0Path;1088 Si0Type: Si0Type;1089 Si0TypeDef: Si0TypeDef;1090 Si0TypeDefArray: Si0TypeDefArray;1091 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1092 Si0TypeDefCompact: Si0TypeDefCompact;1093 Si0TypeDefComposite: Si0TypeDefComposite;1094 Si0TypeDefPhantom: Si0TypeDefPhantom;1095 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1096 Si0TypeDefSequence: Si0TypeDefSequence;1097 Si0TypeDefTuple: Si0TypeDefTuple;1098 Si0TypeDefVariant: Si0TypeDefVariant;1099 Si0TypeParameter: Si0TypeParameter;1100 Si0Variant: Si0Variant;1101 Si1Field: Si1Field;1102 Si1LookupTypeId: Si1LookupTypeId;1103 Si1Path: Si1Path;1104 Si1Type: Si1Type;1105 Si1TypeDef: Si1TypeDef;1106 Si1TypeDefArray: Si1TypeDefArray;1107 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1108 Si1TypeDefCompact: Si1TypeDefCompact;1109 Si1TypeDefComposite: Si1TypeDefComposite;1110 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1111 Si1TypeDefSequence: Si1TypeDefSequence;1112 Si1TypeDefTuple: Si1TypeDefTuple;1113 Si1TypeDefVariant: Si1TypeDefVariant;1114 Si1TypeParameter: Si1TypeParameter;1115 Si1Variant: Si1Variant;1116 SiField: SiField;1117 Signature: Signature;1118 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1119 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1120 SignedBlock: SignedBlock;1121 SignedBlockWithJustification: SignedBlockWithJustification;1122 SignedBlockWithJustifications: SignedBlockWithJustifications;1123 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1124 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1125 SignedSubmission: SignedSubmission;1126 SignedSubmissionOf: SignedSubmissionOf;1127 SignedSubmissionTo276: SignedSubmissionTo276;1128 SignerPayload: SignerPayload;1129 SigningContext: SigningContext;1130 SiLookupTypeId: SiLookupTypeId;1131 SiPath: SiPath;1132 SiType: SiType;1133 SiTypeDef: SiTypeDef;1134 SiTypeDefArray: SiTypeDefArray;1135 SiTypeDefBitSequence: SiTypeDefBitSequence;1136 SiTypeDefCompact: SiTypeDefCompact;1137 SiTypeDefComposite: SiTypeDefComposite;1138 SiTypeDefPrimitive: SiTypeDefPrimitive;1139 SiTypeDefSequence: SiTypeDefSequence;1140 SiTypeDefTuple: SiTypeDefTuple;1141 SiTypeDefVariant: SiTypeDefVariant;1142 SiTypeParameter: SiTypeParameter;1143 SiVariant: SiVariant;1144 SlashingSpans: SlashingSpans;1145 SlashingSpansTo204: SlashingSpansTo204;1146 SlashJournalEntry: SlashJournalEntry;1147 Slot: Slot;1148 SlotDuration: SlotDuration;1149 SlotNumber: SlotNumber;1150 SlotRange: SlotRange;1151 SlotRange10: SlotRange10;1152 SocietyJudgement: SocietyJudgement;1153 SocietyVote: SocietyVote;1154 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1155 SolutionSupport: SolutionSupport;1156 SolutionSupports: SolutionSupports;1157 SpanIndex: SpanIndex;1158 SpanRecord: SpanRecord;1159 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1160 SpCoreEd25519Signature: SpCoreEd25519Signature;1161 SpCoreSr25519Signature: SpCoreSr25519Signature;1162 SpCoreVoid: SpCoreVoid;1163 SpecVersion: SpecVersion;1164 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1165 SpRuntimeDigest: SpRuntimeDigest;1166 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1167 SpRuntimeDispatchError: SpRuntimeDispatchError;1168 SpRuntimeModuleError: SpRuntimeModuleError;1169 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1170 SpRuntimeTokenError: SpRuntimeTokenError;1171 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1172 SpTrieStorageProof: SpTrieStorageProof;1173 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1174 Sr25519Signature: Sr25519Signature;1175 StakingLedger: StakingLedger;1176 StakingLedgerTo223: StakingLedgerTo223;1177 StakingLedgerTo240: StakingLedgerTo240;1178 Statement: Statement;1179 StatementKind: StatementKind;1180 StorageChangeSet: StorageChangeSet;1181 StorageData: StorageData;1182 StorageDeposit: StorageDeposit;1183 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1184 StorageEntryMetadataV10: StorageEntryMetadataV10;1185 StorageEntryMetadataV11: StorageEntryMetadataV11;1186 StorageEntryMetadataV12: StorageEntryMetadataV12;1187 StorageEntryMetadataV13: StorageEntryMetadataV13;1188 StorageEntryMetadataV14: StorageEntryMetadataV14;1189 StorageEntryMetadataV9: StorageEntryMetadataV9;1190 StorageEntryModifierLatest: StorageEntryModifierLatest;1191 StorageEntryModifierV10: StorageEntryModifierV10;1192 StorageEntryModifierV11: StorageEntryModifierV11;1193 StorageEntryModifierV12: StorageEntryModifierV12;1194 StorageEntryModifierV13: StorageEntryModifierV13;1195 StorageEntryModifierV14: StorageEntryModifierV14;1196 StorageEntryModifierV9: StorageEntryModifierV9;1197 StorageEntryTypeLatest: StorageEntryTypeLatest;1198 StorageEntryTypeV10: StorageEntryTypeV10;1199 StorageEntryTypeV11: StorageEntryTypeV11;1200 StorageEntryTypeV12: StorageEntryTypeV12;1201 StorageEntryTypeV13: StorageEntryTypeV13;1202 StorageEntryTypeV14: StorageEntryTypeV14;1203 StorageEntryTypeV9: StorageEntryTypeV9;1204 StorageHasher: StorageHasher;1205 StorageHasherV10: StorageHasherV10;1206 StorageHasherV11: StorageHasherV11;1207 StorageHasherV12: StorageHasherV12;1208 StorageHasherV13: StorageHasherV13;1209 StorageHasherV14: StorageHasherV14;1210 StorageHasherV9: StorageHasherV9;1211 StorageInfo: StorageInfo;1212 StorageKey: StorageKey;1213 StorageKind: StorageKind;1214 StorageMetadataV10: StorageMetadataV10;1215 StorageMetadataV11: StorageMetadataV11;1216 StorageMetadataV12: StorageMetadataV12;1217 StorageMetadataV13: StorageMetadataV13;1218 StorageMetadataV9: StorageMetadataV9;1219 StorageProof: StorageProof;1220 StoredPendingChange: StoredPendingChange;1221 StoredState: StoredState;1222 StrikeCount: StrikeCount;1223 SubId: SubId;1224 SubmissionIndicesOf: SubmissionIndicesOf;1225 Supports: Supports;1226 SyncState: SyncState;1227 SystemInherentData: SystemInherentData;1228 SystemOrigin: SystemOrigin;1229 Tally: Tally;1230 TaskAddress: TaskAddress;1231 TAssetBalance: TAssetBalance;1232 TAssetDepositBalance: TAssetDepositBalance;1233 Text: Text;1234 Timepoint: Timepoint;1235 TokenError: TokenError;1236 TombstoneContractInfo: TombstoneContractInfo;1237 TraceBlockResponse: TraceBlockResponse;1238 TraceError: TraceError;1239 TransactionalError: TransactionalError;1240 TransactionInfo: TransactionInfo;1241 TransactionLongevity: TransactionLongevity;1242 TransactionPriority: TransactionPriority;1243 TransactionSource: TransactionSource;1244 TransactionStorageProof: TransactionStorageProof;1245 TransactionTag: TransactionTag;1246 TransactionV0: TransactionV0;1247 TransactionV1: TransactionV1;1248 TransactionV2: TransactionV2;1249 TransactionValidity: TransactionValidity;1250 TransactionValidityError: TransactionValidityError;1251 TransientValidationData: TransientValidationData;1252 TreasuryProposal: TreasuryProposal;1253 TrieId: TrieId;1254 TrieIndex: TrieIndex;1255 Type: Type;1256 u128: u128;1257 U128: U128;1258 u16: u16;1259 U16: U16;1260 u256: u256;1261 U256: U256;1262 u32: u32;1263 U32: U32;1264 U32F32: U32F32;1265 u64: u64;1266 U64: U64;1267 u8: u8;1268 U8: U8;1269 UnappliedSlash: UnappliedSlash;1270 UnappliedSlashOther: UnappliedSlashOther;1271 UncleEntryItem: UncleEntryItem;1272 UnknownTransaction: UnknownTransaction;1273 UnlockChunk: UnlockChunk;1274 UnrewardedRelayer: UnrewardedRelayer;1275 UnrewardedRelayersState: UnrewardedRelayersState;1276 UpDataStructsAccessMode: UpDataStructsAccessMode;1277 UpDataStructsCollection: UpDataStructsCollection;1278 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1279 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1280 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1281 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1282 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1283 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1284 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1285 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1286 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1287 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1288 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1289 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1290 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1291 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1292 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1293 UpDataStructsProperties: UpDataStructsProperties;1294 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1295 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1296 UpDataStructsProperty: UpDataStructsProperty;1297 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1298 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1299 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1300 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1301 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1302 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1303 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1304 UpDataStructsTokenChild: UpDataStructsTokenChild;1305 UpDataStructsTokenData: UpDataStructsTokenData;1306 UpgradeGoAhead: UpgradeGoAhead;1307 UpgradeRestriction: UpgradeRestriction;1308 UpwardMessage: UpwardMessage;1309 usize: usize;1310 USize: USize;1311 ValidationCode: ValidationCode;1312 ValidationCodeHash: ValidationCodeHash;1313 ValidationData: ValidationData;1314 ValidationDataType: ValidationDataType;1315 ValidationFunctionParams: ValidationFunctionParams;1316 ValidatorCount: ValidatorCount;1317 ValidatorId: ValidatorId;1318 ValidatorIdOf: ValidatorIdOf;1319 ValidatorIndex: ValidatorIndex;1320 ValidatorIndexCompact: ValidatorIndexCompact;1321 ValidatorPrefs: ValidatorPrefs;1322 ValidatorPrefsTo145: ValidatorPrefsTo145;1323 ValidatorPrefsTo196: ValidatorPrefsTo196;1324 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1325 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1326 ValidatorSet: ValidatorSet;1327 ValidatorSetId: ValidatorSetId;1328 ValidatorSignature: ValidatorSignature;1329 ValidDisputeStatementKind: ValidDisputeStatementKind;1330 ValidityAttestation: ValidityAttestation;1331 ValidTransaction: ValidTransaction;1332 VecInboundHrmpMessage: VecInboundHrmpMessage;1333 VersionedMultiAsset: VersionedMultiAsset;1334 VersionedMultiAssets: VersionedMultiAssets;1335 VersionedMultiLocation: VersionedMultiLocation;1336 VersionedResponse: VersionedResponse;1337 VersionedXcm: VersionedXcm;1338 VersionMigrationStage: VersionMigrationStage;1339 VestingInfo: VestingInfo;1340 VestingSchedule: VestingSchedule;1341 Vote: Vote;1342 VoteIndex: VoteIndex;1343 Voter: Voter;1344 VoterInfo: VoterInfo;1345 Votes: Votes;1346 VotesTo230: VotesTo230;1347 VoteThreshold: VoteThreshold;1348 VoteWeight: VoteWeight;1349 Voting: Voting;1350 VotingDelegating: VotingDelegating;1351 VotingDirect: VotingDirect;1352 VotingDirectVote: VotingDirectVote;1353 VouchingStatus: VouchingStatus;1354 VrfData: VrfData;1355 VrfOutput: VrfOutput;1356 VrfProof: VrfProof;1357 Weight: Weight;1358 WeightLimitV2: WeightLimitV2;1359 WeightMultiplier: WeightMultiplier;1360 WeightPerClass: WeightPerClass;1361 WeightToFeeCoefficient: WeightToFeeCoefficient;1362 WildFungibility: WildFungibility;1363 WildFungibilityV0: WildFungibilityV0;1364 WildFungibilityV1: WildFungibilityV1;1365 WildFungibilityV2: WildFungibilityV2;1366 WildMultiAsset: WildMultiAsset;1367 WildMultiAssetV1: WildMultiAssetV1;1368 WildMultiAssetV2: WildMultiAssetV2;1369 WinnersData: WinnersData;1370 WinnersData10: WinnersData10;1371 WinnersDataTuple: WinnersDataTuple;1372 WinnersDataTuple10: WinnersDataTuple10;1373 WinningData: WinningData;1374 WinningData10: WinningData10;1375 WinningDataEntry: WinningDataEntry;1376 WithdrawReasons: WithdrawReasons;1377 Xcm: Xcm;1378 XcmAssetId: XcmAssetId;1379 XcmDoubleEncoded: XcmDoubleEncoded;1380 XcmError: XcmError;1381 XcmErrorV0: XcmErrorV0;1382 XcmErrorV1: XcmErrorV1;1383 XcmErrorV2: XcmErrorV2;1384 XcmOrder: XcmOrder;1385 XcmOrderV0: XcmOrderV0;1386 XcmOrderV1: XcmOrderV1;1387 XcmOrderV2: XcmOrderV2;1388 XcmOrigin: XcmOrigin;1389 XcmOriginKind: XcmOriginKind;1390 XcmpMessageFormat: XcmpMessageFormat;1391 XcmV0: XcmV0;1392 XcmV0Junction: XcmV0Junction;1393 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1394 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1395 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1396 XcmV0MultiAsset: XcmV0MultiAsset;1397 XcmV0MultiLocation: XcmV0MultiLocation;1398 XcmV0Order: XcmV0Order;1399 XcmV0OriginKind: XcmV0OriginKind;1400 XcmV0Response: XcmV0Response;1401 XcmV0Xcm: XcmV0Xcm;1402 XcmV1: XcmV1;1403 XcmV1Junction: XcmV1Junction;1404 XcmV1MultiAsset: XcmV1MultiAsset;1405 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1406 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1407 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1408 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1409 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1410 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1411 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1412 XcmV1MultiLocation: XcmV1MultiLocation;1413 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1414 XcmV1Order: XcmV1Order;1415 XcmV1Response: XcmV1Response;1416 XcmV1Xcm: XcmV1Xcm;1417 XcmV2: XcmV2;1418 XcmV2Instruction: XcmV2Instruction;1419 XcmV2Response: XcmV2Response;1420 XcmV2TraitsError: XcmV2TraitsError;1421 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1422 XcmV2WeightLimit: XcmV2WeightLimit;1423 XcmV2Xcm: XcmV2Xcm;1424 XcmVersion: XcmVersion;1425 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1426 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1427 XcmVersionedXcm: XcmVersionedXcm;1428 } // InterfaceTypes1429} // declare moduletests/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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1303,7 +1303,18 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name FrameSystemPhase (117) */
+ /** @name PalletEvmContractHelpersEvent (117) */
+ 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 FrameSystemPhase (118) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1312,13 +1323,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (119) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (120) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (120) */
+ /** @name FrameSystemCall (121) */
interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -1360,21 +1371,21 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (125) */
+ /** @name FrameSystemLimitsBlockWeights (126) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: u64;
readonly maxBlock: u64;
readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (126) */
+ /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (127) */
interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (127) */
+ /** @name FrameSystemLimitsWeightsPerClass (128) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: u64;
readonly maxExtrinsic: Option<u64>;
@@ -1382,25 +1393,25 @@
readonly reserved: Option<u64>;
}
- /** @name FrameSystemLimitsBlockLength (129) */
+ /** @name FrameSystemLimitsBlockLength (130) */
interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportWeightsPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (130) */
+ /** @name FrameSupportWeightsPerDispatchClassU32 (131) */
interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (131) */
+ /** @name FrameSupportWeightsRuntimeDbWeight (132) */
interface FrameSupportWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (132) */
+ /** @name SpVersionRuntimeVersion (133) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1412,7 +1423,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (137) */
+ /** @name FrameSystemError (138) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1423,7 +1434,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (138) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (139) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1431,18 +1442,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (141) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (142) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (142) */
+ /** @name SpTrieStorageProof (143) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (144) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (145) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1450,7 +1461,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (147) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (148) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1460,7 +1471,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (148) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (149) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1473,13 +1484,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (154) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (155) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (155) */
+ /** @name CumulusPalletParachainSystemCall (156) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1500,7 +1511,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (156) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (157) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1508,19 +1519,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (158) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (159) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (161) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (162) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (164) */
+ /** @name CumulusPalletParachainSystemError (165) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1533,14 +1544,14 @@
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
}
- /** @name PalletBalancesBalanceLock (166) */
+ /** @name PalletBalancesBalanceLock (167) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (167) */
+ /** @name PalletBalancesReasons (168) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -1548,20 +1559,20 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (170) */
+ /** @name PalletBalancesReserveData (171) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesReleases (172) */
+ /** @name PalletBalancesReleases (173) */
interface PalletBalancesReleases extends Enum {
readonly isV100: boolean;
readonly isV200: boolean;
readonly type: 'V100' | 'V200';
}
- /** @name PalletBalancesCall (173) */
+ /** @name PalletBalancesCall (174) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1598,7 +1609,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (176) */
+ /** @name PalletBalancesError (177) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -1611,7 +1622,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (178) */
+ /** @name PalletTimestampCall (179) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -1620,14 +1631,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (180) */
+ /** @name PalletTransactionPaymentReleases (181) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (181) */
+ /** @name PalletTreasuryProposal (182) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -1635,7 +1646,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (184) */
+ /** @name PalletTreasuryCall (185) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -1662,10 +1673,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (187) */
+ /** @name FrameSupportPalletId (188) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (188) */
+ /** @name PalletTreasuryError (189) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -1675,7 +1686,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (189) */
+ /** @name PalletSudoCall (190) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -1698,7 +1709,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (191) */
+ /** @name OrmlVestingModuleCall (192) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -1718,7 +1729,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name CumulusPalletXcmpQueueCall (193) */
+ /** @name CumulusPalletXcmpQueueCall (194) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -1754,7 +1765,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (194) */
+ /** @name PalletXcmCall (195) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -1816,7 +1827,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (195) */
+ /** @name XcmVersionedXcm (196) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -1827,7 +1838,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (196) */
+ /** @name XcmV0Xcm (197) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -1890,7 +1901,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (198) */
+ /** @name XcmV0Order (199) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -1938,14 +1949,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (200) */
+ /** @name XcmV0Response (201) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (201) */
+ /** @name XcmV1Xcm (202) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2014,7 +2025,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (203) */
+ /** @name XcmV1Order (204) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2064,7 +2075,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (205) */
+ /** @name XcmV1Response (206) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2073,10 +2084,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (219) */
+ /** @name CumulusPalletXcmCall (220) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (220) */
+ /** @name CumulusPalletDmpQueueCall (221) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2086,7 +2097,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (221) */
+ /** @name PalletInflationCall (222) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2095,7 +2106,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (222) */
+ /** @name PalletUniqueCall (223) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2253,7 +2264,7 @@
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';
}
- /** @name UpDataStructsCollectionMode (227) */
+ /** @name UpDataStructsCollectionMode (228) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2262,7 +2273,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (228) */
+ /** @name UpDataStructsCreateCollectionData (229) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2276,14 +2287,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (230) */
+ /** @name UpDataStructsAccessMode (231) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (232) */
+ /** @name UpDataStructsCollectionLimits (233) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2296,7 +2307,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (234) */
+ /** @name UpDataStructsSponsoringRateLimit (235) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2304,43 +2315,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (237) */
+ /** @name UpDataStructsCollectionPermissions (238) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (239) */
+ /** @name UpDataStructsNestingPermissions (240) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (241) */
+ /** @name UpDataStructsOwnerRestrictedSet (242) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (246) */
+ /** @name UpDataStructsPropertyKeyPermission (247) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (247) */
+ /** @name UpDataStructsPropertyPermission (248) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (250) */
+ /** @name UpDataStructsProperty (251) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (253) */
+ /** @name UpDataStructsCreateItemData (254) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -2351,23 +2362,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (254) */
+ /** @name UpDataStructsCreateNftData (255) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (255) */
+ /** @name UpDataStructsCreateFungibleData (256) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (256) */
+ /** @name UpDataStructsCreateReFungibleData (257) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (259) */
+ /** @name UpDataStructsCreateItemExData (260) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2380,26 +2391,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (261) */
+ /** @name UpDataStructsCreateNftExData (262) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (268) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (269) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (270) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (271) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletUniqueSchedulerCall (271) */
+ /** @name PalletUniqueSchedulerCall (272) */
interface PalletUniqueSchedulerCall extends Enum {
readonly isScheduleNamed: boolean;
readonly asScheduleNamed: {
@@ -2424,7 +2435,7 @@
readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
}
- /** @name FrameSupportScheduleMaybeHashed (273) */
+ /** @name FrameSupportScheduleMaybeHashed (274) */
interface FrameSupportScheduleMaybeHashed extends Enum {
readonly isValue: boolean;
readonly asValue: Call;
@@ -2433,7 +2444,7 @@
readonly type: 'Value' | 'Hash';
}
- /** @name PalletConfigurationCall (274) */
+ /** @name PalletConfigurationCall (275) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -2446,13 +2457,13 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
}
- /** @name PalletTemplateTransactionPaymentCall (275) */
+ /** @name PalletTemplateTransactionPaymentCall (276) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (276) */
+ /** @name PalletStructureCall (277) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (277) */
+ /** @name PalletRmrkCoreCall (278) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2558,7 +2569,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (283) */
+ /** @name RmrkTraitsResourceResourceTypes (284) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2569,7 +2580,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (285) */
+ /** @name RmrkTraitsResourceBasicResource (286) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2577,7 +2588,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (287) */
+ /** @name RmrkTraitsResourceComposableResource (288) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2587,7 +2598,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (288) */
+ /** @name RmrkTraitsResourceSlotResource (289) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2597,7 +2608,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (291) */
+ /** @name PalletRmrkEquipCall (292) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2619,7 +2630,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (294) */
+ /** @name RmrkTraitsPartPartType (295) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2628,14 +2639,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (296) */
+ /** @name RmrkTraitsPartFixedPart (297) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (297) */
+ /** @name RmrkTraitsPartSlotPart (298) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2643,7 +2654,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (298) */
+ /** @name RmrkTraitsPartEquippableList (299) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2652,20 +2663,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (300) */
+ /** @name RmrkTraitsTheme (301) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (302) */
+ /** @name RmrkTraitsThemeThemeProperty (303) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (304) */
+ /** @name PalletAppPromotionCall (305) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -2699,7 +2710,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorConract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletEvmCall (306) */
+ /** @name PalletEvmCall (307) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -2744,7 +2755,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (310) */
+ /** @name PalletEthereumCall (311) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -2753,7 +2764,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (311) */
+ /** @name EthereumTransactionTransactionV2 (312) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -2764,7 +2775,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (312) */
+ /** @name EthereumTransactionLegacyTransaction (313) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -2775,7 +2786,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (313) */
+ /** @name EthereumTransactionTransactionAction (314) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -2783,14 +2794,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (314) */
+ /** @name EthereumTransactionTransactionSignature (315) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (316) */
+ /** @name EthereumTransactionEip2930Transaction (317) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -2805,13 +2816,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (318) */
+ /** @name EthereumTransactionAccessListItem (319) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (319) */
+ /** @name EthereumTransactionEip1559Transaction (320) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -2827,7 +2838,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (320) */
+ /** @name PalletEvmMigrationCall (321) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -2846,13 +2857,13 @@
readonly type: 'Begin' | 'SetData' | 'Finish';
}
- /** @name PalletSudoError (323) */
+ /** @name PalletSudoError (324) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (325) */
+ /** @name OrmlVestingModuleError (326) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -2863,21 +2874,21 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (327) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (328) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (328) */
+ /** @name CumulusPalletXcmpQueueInboundState (329) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (331) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (332) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -2885,7 +2896,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (334) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (335) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2894,14 +2905,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (335) */
+ /** @name CumulusPalletXcmpQueueOutboundState (336) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (337) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (338) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -2911,7 +2922,7 @@
readonly xcmpMaxIndividualWeight: u64;
}
- /** @name CumulusPalletXcmpQueueError (339) */
+ /** @name CumulusPalletXcmpQueueError (340) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -2921,7 +2932,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (340) */
+ /** @name PalletXcmError (341) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -2939,29 +2950,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (341) */
+ /** @name CumulusPalletXcmError (342) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (342) */
+ /** @name CumulusPalletDmpQueueConfigData (343) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: u64;
}
- /** @name CumulusPalletDmpQueuePageIndexData (343) */
+ /** @name CumulusPalletDmpQueuePageIndexData (344) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (346) */
+ /** @name CumulusPalletDmpQueueError (347) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (350) */
+ /** @name PalletUniqueError (351) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -2970,7 +2981,7 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerScheduledV3 (353) */
+ /** @name PalletUniqueSchedulerScheduledV3 (354) */
interface PalletUniqueSchedulerScheduledV3 extends Struct {
readonly maybeId: Option<U8aFixed>;
readonly priority: u8;
@@ -2979,7 +2990,7 @@
readonly origin: OpalRuntimeOriginCaller;
}
- /** @name OpalRuntimeOriginCaller (354) */
+ /** @name OpalRuntimeOriginCaller (355) */
interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -2993,7 +3004,7 @@
readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
}
- /** @name FrameSupportDispatchRawOrigin (355) */
+ /** @name FrameSupportDispatchRawOrigin (356) */
interface FrameSupportDispatchRawOrigin extends Enum {
readonly isRoot: boolean;
readonly isSigned: boolean;
@@ -3002,7 +3013,7 @@
readonly type: 'Root' | 'Signed' | 'None';
}
- /** @name PalletXcmOrigin (356) */
+ /** @name PalletXcmOrigin (357) */
interface PalletXcmOrigin extends Enum {
readonly isXcm: boolean;
readonly asXcm: XcmV1MultiLocation;
@@ -3011,7 +3022,7 @@
readonly type: 'Xcm' | 'Response';
}
- /** @name CumulusPalletXcmOrigin (357) */
+ /** @name CumulusPalletXcmOrigin (358) */
interface CumulusPalletXcmOrigin extends Enum {
readonly isRelay: boolean;
readonly isSiblingParachain: boolean;
@@ -3019,17 +3030,17 @@
readonly type: 'Relay' | 'SiblingParachain';
}
- /** @name PalletEthereumRawOrigin (358) */
+ /** @name PalletEthereumRawOrigin (359) */
interface PalletEthereumRawOrigin extends Enum {
readonly isEthereumTransaction: boolean;
readonly asEthereumTransaction: H160;
readonly type: 'EthereumTransaction';
}
- /** @name SpCoreVoid (359) */
+ /** @name SpCoreVoid (360) */
type SpCoreVoid = Null;
- /** @name PalletUniqueSchedulerError (360) */
+ /** @name PalletUniqueSchedulerError (361) */
interface PalletUniqueSchedulerError extends Enum {
readonly isFailedToSchedule: boolean;
readonly isNotFound: boolean;
@@ -3038,7 +3049,7 @@
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
}
- /** @name UpDataStructsCollection (361) */
+ /** @name UpDataStructsCollection (362) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3051,7 +3062,7 @@
readonly externalCollection: bool;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (362) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (363) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3061,43 +3072,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (363) */
+ /** @name UpDataStructsProperties (364) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (364) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (365) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (369) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (370) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (376) */
+ /** @name UpDataStructsCollectionStats (377) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (377) */
+ /** @name UpDataStructsTokenChild (378) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (378) */
+ /** @name PhantomTypeUpDataStructs (379) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (380) */
+ /** @name UpDataStructsTokenData (381) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (382) */
+ /** @name UpDataStructsRpcCollection (383) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3112,7 +3123,7 @@
readonly readOnly: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (383) */
+ /** @name RmrkTraitsCollectionCollectionInfo (384) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3121,7 +3132,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (384) */
+ /** @name RmrkTraitsNftNftInfo (385) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3130,13 +3141,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (386) */
+ /** @name RmrkTraitsNftRoyaltyInfo (387) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (387) */
+ /** @name RmrkTraitsResourceResourceInfo (388) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3144,26 +3155,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (388) */
+ /** @name RmrkTraitsPropertyPropertyInfo (389) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (389) */
+ /** @name RmrkTraitsBaseBaseInfo (390) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (390) */
+ /** @name RmrkTraitsNftNftChild (391) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (392) */
+ /** @name PalletCommonError (393) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3202,7 +3213,7 @@
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';
}
- /** @name PalletFungibleError (394) */
+ /** @name PalletFungibleError (395) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3212,12 +3223,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (395) */
+ /** @name PalletRefungibleItemData (396) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (400) */
+ /** @name PalletRefungibleError (401) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3227,19 +3238,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (401) */
+ /** @name PalletNonfungibleItemData (402) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (403) */
+ /** @name UpDataStructsPropertyScope (404) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (405) */
+ /** @name PalletNonfungibleError (406) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3247,7 +3258,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (406) */
+ /** @name PalletStructureError (407) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3256,7 +3267,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (407) */
+ /** @name PalletRmrkCoreError (408) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3280,7 +3291,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (409) */
+ /** @name PalletRmrkEquipError (410) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3292,7 +3303,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (415) */
+ /** @name PalletAppPromotionError (416) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3302,7 +3313,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'InvalidArgument';
}
- /** @name PalletEvmError (418) */
+ /** @name PalletEvmError (419) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3313,7 +3324,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (421) */
+ /** @name FpRpcTransactionStatus (422) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3324,10 +3335,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (423) */
+ /** @name EthbloomBloom (424) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (425) */
+ /** @name EthereumReceiptReceiptV3 (426) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3338,7 +3349,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (426) */
+ /** @name EthereumReceiptEip658ReceiptData (427) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3346,14 +3357,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (427) */
+ /** @name EthereumBlock (428) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (428) */
+ /** @name EthereumHeader (429) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3372,24 +3383,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (429) */
+ /** @name EthereumTypesHashH64 (430) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (434) */
+ /** @name PalletEthereumError (435) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (435) */
+ /** @name PalletEvmCoderSubstrateError (436) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (436) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (437) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3399,7 +3410,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (437) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (438) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3407,21 +3418,21 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (439) */
+ /** @name PalletEvmContractHelpersError (440) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
readonly type: 'NoPermission' | 'NoPendingSponsor';
}
- /** @name PalletEvmMigrationError (440) */
+ /** @name PalletEvmMigrationError (441) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (442) */
+ /** @name SpRuntimeMultiSignature (443) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3432,34 +3443,34 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (443) */
+ /** @name SpCoreEd25519Signature (444) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (445) */
+ /** @name SpCoreSr25519Signature (446) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (446) */
+ /** @name SpCoreEcdsaSignature (447) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (449) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (450) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (450) */
+ /** @name FrameSystemExtensionsCheckGenesis (451) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (453) */
+ /** @name FrameSystemExtensionsCheckNonce (454) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (454) */
+ /** @name FrameSystemExtensionsCheckWeight (455) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (455) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (456) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (456) */
+ /** @name OpalRuntimeRuntime (457) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (457) */
+ /** @name PalletEthereumFakeTransactionFinalizer (458) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module