git.delta.rocks / unique-network / refs/commits / 3a6a58ff9218

difftreelog

fix UniqueApi generics, added events for contract + fix logic inside `evm-helper` methods, added correct wegihts for `on_initialize`

PraetorP2022-09-06parent: #8138c78.patch.diff
in: master

18 files changed

modifiedclient/rpc/src/lib.rsdiffbeforeafterboth
4444
45#[rpc(server)]45#[rpc(server)]
46#[async_trait]46#[async_trait]
47pub trait UniqueApi<BlockHash, BlockNumber, CrossAccountId, AccountId> {47pub trait UniqueApi<BlockHash, CrossAccountId, AccountId> {
48 /// Get tokens owned by account.48 /// Get tokens owned by account.
49 #[method(name = "unique_accountTokens")]49 #[method(name = "unique_accountTokens")]
50 fn account_tokens(50 fn account_tokens(
481481
482macro_rules! unique_api {482macro_rules! unique_api {
483 () => {483 () => {
484 dyn UniqueRuntimeApi<Block, BlockNumber, CrossAccountId, AccountId>484 dyn UniqueRuntimeApi<Block, CrossAccountId, AccountId>
485 };485 };
486}486}
487487
498}498}
499499
500#[allow(deprecated)]500#[allow(deprecated)]
501impl<C, Block, BlockNumber, CrossAccountId, AccountId>501impl<C, Block, CrossAccountId, AccountId>
502 UniqueApiServer<<Block as BlockT>::Hash, BlockNumber, CrossAccountId, AccountId>502 UniqueApiServer<<Block as BlockT>::Hash, CrossAccountId, AccountId> for Unique<C, Block>
503 for Unique<C, Block>
504where503where
505 Block: BlockT,504 Block: BlockT,
506 BlockNumber: Decode + Member + AtLeast32BitUnsigned,
507 AccountId: Decode,505 AccountId: Decode,
508 C: 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,506 C: 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
509 C::Api: UniqueRuntimeApi<Block, BlockNumber, CrossAccountId, AccountId>,507 C::Api: UniqueRuntimeApi<Block, CrossAccountId, AccountId>,
510 CrossAccountId: pallet_evm::account::CrossAccountId<AccountId>,508 CrossAccountId: pallet_evm::account::CrossAccountId<AccountId>,
511{509{
512 pass_method!(510 pass_method!(
modifiednode/cli/src/service.rsdiffbeforeafterboth
363 + sp_block_builder::BlockBuilder<Block>363 + sp_block_builder::BlockBuilder<Block>
364 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>364 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>
365 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>365 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>
366 + up_rpc::UniqueApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>366 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>
367 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>367 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
368 + rmrk_rpc::RmrkApi<368 + rmrk_rpc::RmrkApi<
369 Block,369 Block,
665 + sp_block_builder::BlockBuilder<Block>665 + sp_block_builder::BlockBuilder<Block>
666 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>666 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>
667 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>667 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>
668 + up_rpc::UniqueApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>668 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>
669 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>669 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
670 + rmrk_rpc::RmrkApi<670 + rmrk_rpc::RmrkApi<
671 Block,671 Block,
810 + sp_block_builder::BlockBuilder<Block>810 + sp_block_builder::BlockBuilder<Block>
811 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>811 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>
812 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>812 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>
813 + up_rpc::UniqueApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>813 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>
814 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>814 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>
815 + rmrk_rpc::RmrkApi<815 + rmrk_rpc::RmrkApi<
816 Block,816 Block,
modifiednode/rpc/src/lib.rsdiffbeforeafterboth
101 C: Send + Sync + 'static,101 C: Send + Sync + 'static,
102 C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,102 C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,
103 C::Api:103 C::Api: up_rpc::UniqueApi<Block, <R as RuntimeInstance>::CrossAccountId, AccountId>,
104 up_rpc::UniqueApi<Block, BlockNumber, <R as RuntimeInstance>::CrossAccountId, AccountId>,
105 BE: Backend<Block> + 'static,104 BE: Backend<Block> + 'static,
106 BE::State: StateBackend<BlakeTwo256>,105 BE::State: StateBackend<BlakeTwo256>,
107 R: RuntimeInstance + Send + Sync + 'static,106 R: RuntimeInstance + Send + Sync + 'static,
146 C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,145 C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,
147 C::Api: fp_rpc::ConvertTransactionRuntimeApi<Block>,146 C::Api: fp_rpc::ConvertTransactionRuntimeApi<Block>,
148 C::Api:147 C::Api: up_rpc::UniqueApi<Block, <R as RuntimeInstance>::CrossAccountId, AccountId>,
149 up_rpc::UniqueApi<Block, BlockNumber, <R as RuntimeInstance>::CrossAccountId, AccountId>,
150 C::Api: app_promotion_rpc::AppPromotionApi<148 C::Api: app_promotion_rpc::AppPromotionApi<
151 Block,149 Block,
152 BlockNumber,150 BlockNumber,
236234
237 io.merge(Unique::new(client.clone()).into_rpc())?;235 io.merge(Unique::new(client.clone()).into_rpc())?;
238236
239 #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]237 #[cfg(any(feature = "opal-runtime"))]
240 io.merge(AppPromotion::new(client.clone()).into_rpc())?;238 io.merge(AppPromotion::new(client.clone()).into_rpc())?;
241239
242 #[cfg(not(feature = "unique-runtime"))]240 #[cfg(not(feature = "unique-runtime"))]
modifiedpallets/app-promotion/src/benchmarking.rsdiffbeforeafterboth
23use sp_std::vec;23use sp_std::vec;
2424
25use frame_benchmarking::{benchmarks, account};25use frame_benchmarking::{benchmarks, account};
2626use frame_support::traits::OnInitialize;
27use frame_system::{Origin, RawOrigin};27use frame_system::{Origin, RawOrigin};
28use pallet_unique::benchmarking::create_nft_collection;28use pallet_unique::benchmarking::create_nft_collection;
29use pallet_evm_migration::Pallet as EvmMigrationPallet;29use pallet_evm_migration::Pallet as EvmMigrationPallet;
3030
31const SEED: u32 = 0;31const SEED: u32 = 0;
32
33fn set_admin<T>() -> DispatchResult
34where
35 T: Config + pallet_unique::Config + pallet_evm_migration::Config,
36 T::BlockNumber: From<u32> + Into<u32>,
37 <<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>,
38{
39 let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
40
41 <T as Config>::Currency::make_free_balance_be(
42 &pallet_admin,
43 Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value(),
44 );
45
46 PromototionPallet::<T>::set_admin_address(
47 RawOrigin::Root.into(),
48 T::CrossAccountId::from_sub(pallet_admin.clone()),
49 )
50}
3251
33benchmarks! {52benchmarks! {
34 where_clause{53 where_clause{
35 where T: Config + pallet_unique::Config + pallet_evm_migration::Config ,54 where T: Config + pallet_unique::Config + pallet_evm_migration::Config ,
36 T::BlockNumber: From<u32> + Into<u32>,55 T::BlockNumber: From<u32> + Into<u32>,
37 <<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>56 <<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>
38 }57 }
39 // start_app_promotion {58
4059 on_initialize {
41 // } : {PromototionPallet::<T>::start_app_promotion(RawOrigin::Root.into(), None)?}60 let b in 0..PENDING_LIMIT_PER_BLOCK;
4261 set_admin::<T>()?;
43 // stop_app_promotion{62
44 // PromototionPallet::<T>::start_app_promotion(RawOrigin::Root.into(), Some(25.into()))?;63 (0..b).try_for_each(|index| {
45 // } : {PromototionPallet::<T>::stop_app_promotion(RawOrigin::Root.into())?}64 let staker = account::<T::AccountId>("staker", index, SEED);
65 <T as Config>::Currency::make_free_balance_be(&staker, Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
66 PromototionPallet::<T>::stake(RawOrigin::Signed(staker.clone()).into(), Into::<BalanceOf<T>>::into(100u128) * T::Nominal::get())?;
67 PromototionPallet::<T>::unstake(RawOrigin::Signed(staker.clone()).into()).map_err(|e| e.error)?;
68 Result::<(), sp_runtime::DispatchError>::Ok(())
69 })?;
70 let block_number = <frame_system::Pallet<T>>::current_block_number() + T::PendingInterval::get();
71 }: {PromototionPallet::<T>::on_initialize(block_number)}
4672
47 set_admin_address {73 set_admin_address {
48 let pallet_admin = account::<T::AccountId>("admin", 0, SEED);74 let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
modifiedpallets/app-promotion/src/lib.rsdiffbeforeafterboth
226 where226 where
227 <T as frame_system::Config>::BlockNumber: From<u32>,227 <T as frame_system::Config>::BlockNumber: From<u32>,
228 {228 {
229 let mut consumed_weight = 0;229 // let mut consumed_weight = 0;
230 let mut add_weight = |reads, writes, weight| {230 // let mut add_weight = |reads, writes, weight| {
231 consumed_weight += T::DbWeight::get().reads_writes(reads, writes);231 // consumed_weight += T::DbWeight::get().reads_writes(reads, writes);
232 consumed_weight += weight;232 // consumed_weight += weight;
233 };233 // };
234234
235 let block_pending = PendingUnstake::<T>::take(current_block_number);235 let block_pending = PendingUnstake::<T>::take(current_block_number);
236
237 add_weight(0, 1, 0);236 let counter = block_pending.len() as u32;
237 // add_weight(0, 1, 0);
238238
239 if !block_pending.is_empty() {239 if !block_pending.is_empty() {
240 block_pending.into_iter().for_each(|(staker, amount)| {240 block_pending.into_iter().for_each(|(staker, amount)| {
241 <T::Currency as ReservableCurrency<T::AccountId>>::unreserve(&staker, amount);241 <T::Currency as ReservableCurrency<T::AccountId>>::unreserve(&staker, amount);
242 });242 });
243 }243 }
244244
245 consumed_weight245 T::WeightInfo::on_initialize(counter)
246 // consumed_weight
246 }247 }
247 }248 }
248249
280 let balance =281 let balance =
281 <<T as Config>::Currency as Currency<T::AccountId>>::free_balance(&staker_id);282 <<T as Config>::Currency as Currency<T::AccountId>>::free_balance(&staker_id);
282283
283 ensure!(balance >= amount, ArithmeticError::Underflow);284 // ensure!(balance >= amount, ArithmeticError::Underflow);
284285
285 <<T as Config>::Currency as Currency<T::AccountId>>::ensure_can_withdraw(286 <<T as Config>::Currency as Currency<T::AccountId>>::ensure_can_withdraw(
286 &staker_id,287 &staker_id,
672 LOCK_IDENTIFIER,673 LOCK_IDENTIFIER,
673 staker,674 staker,
674 amount,675 amount,
675 WithdrawReasons::all(),676 WithdrawReasons::RESERVE,
676 )677 )
677 }678 }
678 }679 }
modifiedpallets/app-promotion/src/types.rsdiffbeforeafterboth
72 type ContractId;72 type ContractId;
73 type AccountId;73 type AccountId;
7474
75 fn set_sponsor(sponsor_id: Self::AccountId, contract_id: Self::ContractId) -> DispatchResult;75 fn set_sponsor(
76 sponsor_id: Self::AccountId,
77 contract_address: Self::ContractId,
78 ) -> DispatchResult;
7679
77 fn remove_contract_sponsor(contract_id: Self::ContractId) -> DispatchResult;80 fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult;
7881
79 fn get_sponsor(contract_id: Self::ContractId)82 fn get_sponsor(
83 contract_address: Self::ContractId,
80 -> Result<Option<Self::AccountId>, DispatchError>;84 ) -> Result<Option<Self::AccountId>, DispatchError>;
81}85}
8286
8589
86 type AccountId = T::CrossAccountId;90 type AccountId = T::CrossAccountId;
8791
88 fn set_sponsor(sponsor_id: Self::AccountId, contract_id: Self::ContractId) -> DispatchResult {92 fn set_sponsor(
93 sponsor_id: Self::AccountId,
94 contract_address: Self::ContractId,
95 ) -> DispatchResult {
89 Sponsoring::<T>::insert(96 Self::force_set_sponsor(contract_address, &sponsor_id)
90 contract_id,
91 SponsorshipState::<T::CrossAccountId>::Confirmed(sponsor_id),
92 );
93 Ok(())
94 }97 }
9598
96 fn remove_contract_sponsor(contract_id: Self::ContractId) -> DispatchResult {99 fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult {
97 Sponsoring::<T>::remove(contract_id);100 Self::force_remove_sponsor(contract_address)
98 Ok(())
99 }101 }
100102
101 fn get_sponsor(103 fn get_sponsor(
102 contract_id: Self::ContractId,104 contract_address: Self::ContractId,
103 ) -> Result<Option<Self::AccountId>, DispatchError> {105 ) -> Result<Option<Self::AccountId>, DispatchError> {
104 Ok(Self::get_sponsor(contract_id))106 Ok(Self::get_sponsor(contract_address))
105 }107 }
106}108}
107109
modifiedpallets/app-promotion/src/weights.rsdiffbeforeafterboth
3434
35/// Weight functions needed for pallet_app_promotion.35/// Weight functions needed for pallet_app_promotion.
36pub trait WeightInfo {36pub trait WeightInfo {
37 fn on_initialize(b: u32, ) -> Weight;
37 fn set_admin_address() -> Weight;38 fn set_admin_address() -> Weight;
38 fn payout_stakers(b: u32, ) -> Weight;39 fn payout_stakers(b: u32, ) -> Weight;
39 fn stake() -> Weight;40 fn stake() -> Weight;
47/// Weights for pallet_app_promotion using the Substrate node and recommended hardware.48/// Weights for pallet_app_promotion using the Substrate node and recommended hardware.
48pub struct SubstrateWeight<T>(PhantomData<T>);49pub struct SubstrateWeight<T>(PhantomData<T>);
49impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {50impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
51 // Storage: AppPromotion PendingUnstake (r:1 w:0)
52 // Storage: System Account (r:1 w:1)
53 fn on_initialize(b: u32, ) -> Weight {
54 (2_461_000 as Weight)
55 // Standard Error: 87_000
56 .saturating_add((6_006_000 as Weight).saturating_mul(b as Weight))
57 .saturating_add(T::DbWeight::get().reads(1 as Weight))
58 .saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
59 .saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(b as Weight)))
60 }
50 // Storage: AppPromotion Admin (r:0 w:1)61 // Storage: AppPromotion Admin (r:0 w:1)
51 fn set_admin_address() -> Weight {62 fn set_admin_address() -> Weight {
52 (5_297_000 as Weight)63 (5_467_000 as Weight)
53 .saturating_add(T::DbWeight::get().writes(1 as Weight))64 .saturating_add(T::DbWeight::get().writes(1 as Weight))
54 }65 }
55 // Storage: AppPromotion Admin (r:1 w:0)66 // Storage: AppPromotion Admin (r:1 w:0)
56 // Storage: ParachainSystem ValidationData (r:1 w:0)67 // Storage: ParachainSystem ValidationData (r:1 w:0)
57 // Storage: AppPromotion NextCalculatedRecord (r:1 w:1)68 // Storage: AppPromotion NextCalculatedRecord (r:1 w:1)
58 // Storage: AppPromotion Staked (r:2 w:0)69 // Storage: AppPromotion Staked (r:2 w:0)
59 fn payout_stakers(b: u32, ) -> Weight {70 fn payout_stakers(b: u32, ) -> Weight {
60 (8_045_000 as Weight)71 (4_946_000 as Weight)
61 // Standard Error: 19_00072 // Standard Error: 5_000
62 .saturating_add((4_778_000 as Weight).saturating_mul(b as Weight))73 .saturating_add((4_599_000 as Weight).saturating_mul(b as Weight))
63 .saturating_add(T::DbWeight::get().reads(4 as Weight))74 .saturating_add(T::DbWeight::get().reads(4 as Weight))
64 .saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))75 .saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
65 .saturating_add(T::DbWeight::get().writes(1 as Weight))76 .saturating_add(T::DbWeight::get().writes(1 as Weight))
71 // Storage: AppPromotion Staked (r:1 w:1)82 // Storage: AppPromotion Staked (r:1 w:1)
72 // Storage: AppPromotion TotalStaked (r:1 w:1)83 // Storage: AppPromotion TotalStaked (r:1 w:1)
73 fn stake() -> Weight {84 fn stake() -> Weight {
74 (17_623_000 as Weight)85 (17_766_000 as Weight)
75 .saturating_add(T::DbWeight::get().reads(6 as Weight))86 .saturating_add(T::DbWeight::get().reads(6 as Weight))
76 .saturating_add(T::DbWeight::get().writes(5 as Weight))87 .saturating_add(T::DbWeight::get().writes(5 as Weight))
77 }88 }
82 // Storage: AppPromotion TotalStaked (r:1 w:1)93 // Storage: AppPromotion TotalStaked (r:1 w:1)
83 // Storage: AppPromotion StakesPerAccount (r:0 w:1)94 // Storage: AppPromotion StakesPerAccount (r:0 w:1)
84 fn unstake() -> Weight {95 fn unstake() -> Weight {
85 (27_190_000 as Weight)96 (27_250_000 as Weight)
86 .saturating_add(T::DbWeight::get().reads(6 as Weight))97 .saturating_add(T::DbWeight::get().reads(6 as Weight))
87 .saturating_add(T::DbWeight::get().writes(6 as Weight))98 .saturating_add(T::DbWeight::get().writes(6 as Weight))
88 }99 }
89 // Storage: AppPromotion Admin (r:1 w:0)100 // Storage: AppPromotion Admin (r:1 w:0)
90 // Storage: Common CollectionById (r:1 w:1)101 // Storage: Common CollectionById (r:1 w:1)
91 fn sponsor_collection() -> Weight {102 fn sponsor_collection() -> Weight {
92 (11_351_000 as Weight)103 (11_014_000 as Weight)
93 .saturating_add(T::DbWeight::get().reads(2 as Weight))104 .saturating_add(T::DbWeight::get().reads(2 as Weight))
94 .saturating_add(T::DbWeight::get().writes(1 as Weight))105 .saturating_add(T::DbWeight::get().writes(1 as Weight))
95 }106 }
96 // Storage: AppPromotion Admin (r:1 w:0)107 // Storage: AppPromotion Admin (r:1 w:0)
97 // Storage: Common CollectionById (r:1 w:1)108 // Storage: Common CollectionById (r:1 w:1)
98 fn stop_sponsoring_collection() -> Weight {109 fn stop_sponsoring_collection() -> Weight {
99 (10_687_000 as Weight)110 (10_494_000 as Weight)
100 .saturating_add(T::DbWeight::get().reads(2 as Weight))111 .saturating_add(T::DbWeight::get().reads(2 as Weight))
101 .saturating_add(T::DbWeight::get().writes(1 as Weight))112 .saturating_add(T::DbWeight::get().writes(1 as Weight))
102 }113 }
103 // Storage: AppPromotion Admin (r:1 w:0)114 // Storage: AppPromotion Admin (r:1 w:0)
104 // Storage: EvmContractHelpers Sponsoring (r:0 w:1)115 // Storage: EvmContractHelpers Sponsoring (r:0 w:1)
105 fn sponsor_contract() -> Weight {116 fn sponsor_contract() -> Weight {
106 (2_332_000 as Weight)117 (9_754_000 as Weight)
107 .saturating_add(T::DbWeight::get().reads(1 as Weight))118 .saturating_add(T::DbWeight::get().reads(1 as Weight))
108 .saturating_add(T::DbWeight::get().writes(1 as Weight))119 .saturating_add(T::DbWeight::get().writes(1 as Weight))
109 }120 }
110 // Storage: AppPromotion Admin (r:1 w:0)121 // Storage: AppPromotion Admin (r:1 w:0)
111 // Storage: EvmContractHelpers Sponsoring (r:1 w:1)122 // Storage: EvmContractHelpers Sponsoring (r:1 w:1)
112 fn stop_sponsoring_contract() -> Weight {123 fn stop_sponsoring_contract() -> Weight {
113 (3_712_000 as Weight)124 (10_063_000 as Weight)
114 .saturating_add(T::DbWeight::get().reads(2 as Weight))125 .saturating_add(T::DbWeight::get().reads(2 as Weight))
115 .saturating_add(T::DbWeight::get().writes(1 as Weight))126 .saturating_add(T::DbWeight::get().writes(1 as Weight))
116 }127 }
117}128}
118129
119// For backwards compatibility and tests130// For backwards compatibility and tests
120impl WeightInfo for () {131impl WeightInfo for () {
132 // Storage: AppPromotion PendingUnstake (r:1 w:0)
133 // Storage: System Account (r:1 w:1)
134 fn on_initialize(b: u32, ) -> Weight {
135 (2_461_000 as Weight)
136 // Standard Error: 87_000
137 .saturating_add((6_006_000 as Weight).saturating_mul(b as Weight))
138 .saturating_add(RocksDbWeight::get().reads(1 as Weight))
139 .saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
140 .saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(b as Weight)))
141 }
121 // Storage: AppPromotion Admin (r:0 w:1)142 // Storage: AppPromotion Admin (r:0 w:1)
122 fn set_admin_address() -> Weight {143 fn set_admin_address() -> Weight {
123 (5_297_000 as Weight)144 (5_467_000 as Weight)
124 .saturating_add(RocksDbWeight::get().writes(1 as Weight))145 .saturating_add(RocksDbWeight::get().writes(1 as Weight))
125 }146 }
126 // Storage: AppPromotion Admin (r:1 w:0)147 // Storage: AppPromotion Admin (r:1 w:0)
127 // Storage: ParachainSystem ValidationData (r:1 w:0)148 // Storage: ParachainSystem ValidationData (r:1 w:0)
128 // Storage: AppPromotion NextCalculatedRecord (r:1 w:1)149 // Storage: AppPromotion NextCalculatedRecord (r:1 w:1)
129 // Storage: AppPromotion Staked (r:2 w:0)150 // Storage: AppPromotion Staked (r:2 w:0)
130 fn payout_stakers(b: u32, ) -> Weight {151 fn payout_stakers(b: u32, ) -> Weight {
131 (8_045_000 as Weight)152 (4_946_000 as Weight)
132 // Standard Error: 19_000153 // Standard Error: 5_000
133 .saturating_add((4_778_000 as Weight).saturating_mul(b as Weight))154 .saturating_add((4_599_000 as Weight).saturating_mul(b as Weight))
134 .saturating_add(RocksDbWeight::get().reads(4 as Weight))155 .saturating_add(RocksDbWeight::get().reads(4 as Weight))
135 .saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))156 .saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(b as Weight)))
136 .saturating_add(RocksDbWeight::get().writes(1 as Weight))157 .saturating_add(RocksDbWeight::get().writes(1 as Weight))
142 // Storage: AppPromotion Staked (r:1 w:1)163 // Storage: AppPromotion Staked (r:1 w:1)
143 // Storage: AppPromotion TotalStaked (r:1 w:1)164 // Storage: AppPromotion TotalStaked (r:1 w:1)
144 fn stake() -> Weight {165 fn stake() -> Weight {
145 (17_623_000 as Weight)166 (17_766_000 as Weight)
146 .saturating_add(RocksDbWeight::get().reads(6 as Weight))167 .saturating_add(RocksDbWeight::get().reads(6 as Weight))
147 .saturating_add(RocksDbWeight::get().writes(5 as Weight))168 .saturating_add(RocksDbWeight::get().writes(5 as Weight))
148 }169 }
153 // Storage: AppPromotion TotalStaked (r:1 w:1)174 // Storage: AppPromotion TotalStaked (r:1 w:1)
154 // Storage: AppPromotion StakesPerAccount (r:0 w:1)175 // Storage: AppPromotion StakesPerAccount (r:0 w:1)
155 fn unstake() -> Weight {176 fn unstake() -> Weight {
156 (27_190_000 as Weight)177 (27_250_000 as Weight)
157 .saturating_add(RocksDbWeight::get().reads(6 as Weight))178 .saturating_add(RocksDbWeight::get().reads(6 as Weight))
158 .saturating_add(RocksDbWeight::get().writes(6 as Weight))179 .saturating_add(RocksDbWeight::get().writes(6 as Weight))
159 }180 }
160 // Storage: AppPromotion Admin (r:1 w:0)181 // Storage: AppPromotion Admin (r:1 w:0)
161 // Storage: Common CollectionById (r:1 w:1)182 // Storage: Common CollectionById (r:1 w:1)
162 fn sponsor_collection() -> Weight {183 fn sponsor_collection() -> Weight {
163 (11_351_000 as Weight)184 (11_014_000 as Weight)
164 .saturating_add(RocksDbWeight::get().reads(2 as Weight))185 .saturating_add(RocksDbWeight::get().reads(2 as Weight))
165 .saturating_add(RocksDbWeight::get().writes(1 as Weight))186 .saturating_add(RocksDbWeight::get().writes(1 as Weight))
166 }187 }
167 // Storage: AppPromotion Admin (r:1 w:0)188 // Storage: AppPromotion Admin (r:1 w:0)
168 // Storage: Common CollectionById (r:1 w:1)189 // Storage: Common CollectionById (r:1 w:1)
169 fn stop_sponsoring_collection() -> Weight {190 fn stop_sponsoring_collection() -> Weight {
170 (10_687_000 as Weight)191 (10_494_000 as Weight)
171 .saturating_add(RocksDbWeight::get().reads(2 as Weight))192 .saturating_add(RocksDbWeight::get().reads(2 as Weight))
172 .saturating_add(RocksDbWeight::get().writes(1 as Weight))193 .saturating_add(RocksDbWeight::get().writes(1 as Weight))
173 }194 }
174 // Storage: AppPromotion Admin (r:1 w:0)195 // Storage: AppPromotion Admin (r:1 w:0)
175 // Storage: EvmContractHelpers Sponsoring (r:0 w:1)196 // Storage: EvmContractHelpers Sponsoring (r:0 w:1)
176 fn sponsor_contract() -> Weight {197 fn sponsor_contract() -> Weight {
177 (2_332_000 as Weight)198 (9_754_000 as Weight)
178 .saturating_add(RocksDbWeight::get().reads(1 as Weight))199 .saturating_add(RocksDbWeight::get().reads(1 as Weight))
179 .saturating_add(RocksDbWeight::get().writes(1 as Weight))200 .saturating_add(RocksDbWeight::get().writes(1 as Weight))
180 }201 }
181 // Storage: AppPromotion Admin (r:1 w:0)202 // Storage: AppPromotion Admin (r:1 w:0)
182 // Storage: EvmContractHelpers Sponsoring (r:1 w:1)203 // Storage: EvmContractHelpers Sponsoring (r:1 w:1)
183 fn stop_sponsoring_contract() -> Weight {204 fn stop_sponsoring_contract() -> Weight {
184 (3_712_000 as Weight)205 (10_063_000 as Weight)
185 .saturating_add(RocksDbWeight::get().reads(2 as Weight))206 .saturating_add(RocksDbWeight::get().reads(2 as Weight))
186 .saturating_add(RocksDbWeight::get().writes(1 as Weight))207 .saturating_add(RocksDbWeight::get().writes(1 as Weight))
187 }208 }
modifiedpallets/evm-contract-helpers/src/eth.rsdiffbeforeafterboth
122 self.recorder().consume_sload()?;122 self.recorder().consume_sload()?;
123 self.recorder().consume_sstore()?;123 self.recorder().consume_sstore()?;
124
125 let caller = T::CrossAccountId::from_eth(caller);
126
127 Pallet::<T>::ensure_owner(contract_address, *caller.as_eth())
128 .map_err(dispatch_to_evm::<T>)?;
124129
125 Pallet::<T>::force_set_sponsor(130 Pallet::<T>::force_set_sponsor(
126 &T::CrossAccountId::from_eth(caller),
127 contract_address,131 contract_address,
128 &T::CrossAccountId::from_eth(contract_address),132 &T::CrossAccountId::from_eth(contract_address),
129 )133 )
modifiedpallets/evm-contract-helpers/src/lib.rsdiffbeforeafterboth
216 Ok(())216 Ok(())
217 }217 }
218218
219 /// Set sponsor as already confirmed.219 /// TO-DO
220 ///220 ///
221 /// `sender` must be owner of contract.221 ///
222 pub fn force_set_sponsor(222 pub fn force_set_sponsor(
223 sender: &T::CrossAccountId,
224 contract_address: H160,223 contract_address: H160,
225 sponsor: &T::CrossAccountId,224 sponsor: &T::CrossAccountId,
226 ) -> DispatchResult {225 ) -> DispatchResult {
227 Pallet::<T>::ensure_owner(contract_address, *sender.as_eth())?;
228 Sponsoring::<T>::insert(226 Sponsoring::<T>::insert(
229 contract_address,227 contract_address,
230 SponsorshipState::<T::CrossAccountId>::Confirmed(T::CrossAccountId::from_eth(228 SponsorshipState::<T::CrossAccountId>::Confirmed(sponsor.clone()),
231 contract_address,
232 )),
233 );229 );
234230
265 /// Remove sponsor for `contract`.261 /// Remove sponsor for `contract`.
266 ///262 ///
267 /// `sender` must be owner of contract.263 /// `sender` must be owner of contract.
268 pub fn remove_sponsor(sender: &T::CrossAccountId, contract_address: H160) -> DispatchResult {264 pub fn remove_sponsor(
269 Pallet::<T>::ensure_owner(contract_address, *sender.as_eth())?;265 sender: &T::CrossAccountId,
266 contract_address: H160,
267 ) -> DispatchResult {
268 Self::ensure_owner(contract_address, *sender.as_eth())?;
269 Self::force_remove_sponsor(contract_address)
270 }
271
272 /// TO-DO
273 ///
274 ///
275 pub fn force_remove_sponsor(contract_address: H160) -> DispatchResult {
270 Sponsoring::<T>::remove(contract_address);276 Sponsoring::<T>::remove(contract_address);
271277
272 <Pallet<T>>::deposit_event(Event::<T>::ContractSponsorRemoved(contract_address));278 Self::deposit_event(Event::<T>::ContractSponsorRemoved(contract_address));
273 <PalletEvm<T>>::deposit_log(279 <PalletEvm<T>>::deposit_log(
274 ContractHelpersEvents::ContractSponsorRemoved { contract_address }.to_log(contract_address),280 ContractHelpersEvents::ContractSponsorRemoved { contract_address }
281 .to_log(contract_address),
275 );282 );
276283
277 Ok(())284 Ok(())
278 }285 }
279286
280 /// Confirm sponsorship.287 /// Confirm sponsorship.
281 ///288 ///
modifiedprimitives/rpc/src/lib.rsdiffbeforeafterboth
33sp_api::decl_runtime_apis! {33sp_api::decl_runtime_apis! {
34 #[api_version(2)]34 #[api_version(2)]
35 /// Trait for generate rpc.35 /// Trait for generate rpc.
36 pub trait UniqueApi<BlockNumber ,CrossAccountId, AccountId> where36 pub trait UniqueApi<CrossAccountId, AccountId> where
37 BlockNumber: Decode + Member + AtLeast32BitUnsigned,
38 AccountId: Decode,37 AccountId: Decode,
39 CrossAccountId: pallet_evm::account::CrossAccountId<AccountId>,38 CrossAccountId: pallet_evm::account::CrossAccountId<AccountId>,
40 {39 {
modifiedruntime/common/runtime_apis.rsdiffbeforeafterboth
61 impl_runtime_apis! {61 impl_runtime_apis! {
62 $($($custom_apis)+)?62 $($($custom_apis)+)?
6363
64 impl up_rpc::UniqueApi<Block, BlockNumber, CrossAccountId, AccountId> for Runtime {64 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId> for Runtime {
65 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {65 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {
66 dispatch_unique_runtime!(collection.account_tokens(account))66 dispatch_unique_runtime!(collection.account_tokens(account))
67 }67 }
modifiedtests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth
37 expect(await helpers.methods.hasSponsor(flipper.options.address).call()).to.be.true;37 expect(await helpers.methods.hasSponsor(flipper.options.address).call()).to.be.true;
38 });38 });
3939
40 itWeb3.only('Set self sponsored events', async ({api, web3, privateKeyWrapper}) => {40 itWeb3('Set self sponsored events', async ({api, web3, privateKeyWrapper}) => {
41 const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);41 const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
42 const flipper = await deployFlipper(web3, owner);42 const flipper = await deployFlipper(web3, owner);
43 const helpers = contractHelpers(web3, owner);43 const helpers = contractHelpers(web3, owner);
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
218 **/218 **/
219 [key: string]: AugmentedEvent<ApiType>;219 [key: string]: AugmentedEvent<ApiType>;
220 };220 };
221 evmContractHelpers: {
222 /**
223 * Collection sponsor was removed.
224 **/
225 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;
226 /**
227 * Contract sponsor was set.
228 **/
229 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;
230 /**
231 * New sponsor was confirm.
232 **/
233 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;
234 /**
235 * Generic event
236 **/
237 [key: string]: AugmentedEvent<ApiType>;
238 };
221 parachainSystem: {239 parachainSystem: {
222 /**240 /**
223 * Downward messages were processed using the given weight.241 * Downward messages were processed using the given weight.
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import 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';8import 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';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';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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
835 PalletEvmCall: PalletEvmCall;835 PalletEvmCall: PalletEvmCall;
836 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;836 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
837 PalletEvmContractHelpersError: PalletEvmContractHelpersError;837 PalletEvmContractHelpersError: PalletEvmContractHelpersError;
838 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
838 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;839 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
839 PalletEvmError: PalletEvmError;840 PalletEvmError: PalletEvmError;
840 PalletEvmEvent: PalletEvmEvent;841 PalletEvmEvent: PalletEvmEvent;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
1188 readonly type: 'NoPermission' | 'NoPendingSponsor';1188 readonly type: 'NoPermission' | 'NoPendingSponsor';
1189}1189}
1190
1191/** @name PalletEvmContractHelpersEvent */
1192export interface PalletEvmContractHelpersEvent extends Enum {
1193 readonly isContractSponsorSet: boolean;
1194 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1195 readonly isContractSponsorshipConfirmed: boolean;
1196 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;
1197 readonly isContractSponsorRemoved: boolean;
1198 readonly asContractSponsorRemoved: H160;
1199 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1200}
11901201
1191/** @name PalletEvmContractHelpersSponsoringModeT */1202/** @name PalletEvmContractHelpersSponsoringModeT */
1192export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1203export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
1153 Other: 'Text'1153 Other: 'Text'
1154 }1154 }
1155 },1155 },
1156 /**
1157 * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>
1158 **/
1159 PalletEvmContractHelpersEvent: {
1160 _enum: {
1161 ContractSponsorSet: '(H160,AccountId32)',
1162 ContractSponsorshipConfirmed: '(H160,AccountId32)',
1163 ContractSponsorRemoved: 'H160'
1164 }
1165 },
1156 /**1166 /**
1157 * Lookup117: frame_system::Phase1167 * Lookup118: frame_system::Phase
1158 **/1168 **/
1159 FrameSystemPhase: {1169 FrameSystemPhase: {
1160 _enum: {1170 _enum: {
1161 ApplyExtrinsic: 'u32',1171 ApplyExtrinsic: 'u32',
1162 Finalization: 'Null',1172 Finalization: 'Null',
1163 Initialization: 'Null'1173 Initialization: 'Null'
1164 }1174 }
1165 },1175 },
1166 /**1176 /**
1167 * Lookup119: frame_system::LastRuntimeUpgradeInfo1177 * Lookup120: frame_system::LastRuntimeUpgradeInfo
1168 **/1178 **/
1169 FrameSystemLastRuntimeUpgradeInfo: {1179 FrameSystemLastRuntimeUpgradeInfo: {
1170 specVersion: 'Compact<u32>',1180 specVersion: 'Compact<u32>',
1171 specName: 'Text'1181 specName: 'Text'
1172 },1182 },
1173 /**1183 /**
1174 * Lookup120: frame_system::pallet::Call<T>1184 * Lookup121: frame_system::pallet::Call<T>
1175 **/1185 **/
1176 FrameSystemCall: {1186 FrameSystemCall: {
1177 _enum: {1187 _enum: {
1178 fill_block: {1188 fill_block: {
1208 }1218 }
1209 }1219 }
1210 },1220 },
1211 /**1221 /**
1212 * Lookup125: frame_system::limits::BlockWeights1222 * Lookup126: frame_system::limits::BlockWeights
1213 **/1223 **/
1214 FrameSystemLimitsBlockWeights: {1224 FrameSystemLimitsBlockWeights: {
1215 baseBlock: 'u64',1225 baseBlock: 'u64',
1216 maxBlock: 'u64',1226 maxBlock: 'u64',
1217 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1227 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
1218 },1228 },
1219 /**1229 /**
1220 * Lookup126: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1230 * Lookup127: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
1221 **/1231 **/
1222 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1232 FrameSupportWeightsPerDispatchClassWeightsPerClass: {
1223 normal: 'FrameSystemLimitsWeightsPerClass',1233 normal: 'FrameSystemLimitsWeightsPerClass',
1224 operational: 'FrameSystemLimitsWeightsPerClass',1234 operational: 'FrameSystemLimitsWeightsPerClass',
1225 mandatory: 'FrameSystemLimitsWeightsPerClass'1235 mandatory: 'FrameSystemLimitsWeightsPerClass'
1226 },1236 },
1227 /**1237 /**
1228 * Lookup127: frame_system::limits::WeightsPerClass1238 * Lookup128: frame_system::limits::WeightsPerClass
1229 **/1239 **/
1230 FrameSystemLimitsWeightsPerClass: {1240 FrameSystemLimitsWeightsPerClass: {
1231 baseExtrinsic: 'u64',1241 baseExtrinsic: 'u64',
1232 maxExtrinsic: 'Option<u64>',1242 maxExtrinsic: 'Option<u64>',
1233 maxTotal: 'Option<u64>',1243 maxTotal: 'Option<u64>',
1234 reserved: 'Option<u64>'1244 reserved: 'Option<u64>'
1235 },1245 },
1236 /**1246 /**
1237 * Lookup129: frame_system::limits::BlockLength1247 * Lookup130: frame_system::limits::BlockLength
1238 **/1248 **/
1239 FrameSystemLimitsBlockLength: {1249 FrameSystemLimitsBlockLength: {
1240 max: 'FrameSupportWeightsPerDispatchClassU32'1250 max: 'FrameSupportWeightsPerDispatchClassU32'
1241 },1251 },
1242 /**1252 /**
1243 * Lookup130: frame_support::weights::PerDispatchClass<T>1253 * Lookup131: frame_support::weights::PerDispatchClass<T>
1244 **/1254 **/
1245 FrameSupportWeightsPerDispatchClassU32: {1255 FrameSupportWeightsPerDispatchClassU32: {
1246 normal: 'u32',1256 normal: 'u32',
1247 operational: 'u32',1257 operational: 'u32',
1248 mandatory: 'u32'1258 mandatory: 'u32'
1249 },1259 },
1250 /**1260 /**
1251 * Lookup131: frame_support::weights::RuntimeDbWeight1261 * Lookup132: frame_support::weights::RuntimeDbWeight
1252 **/1262 **/
1253 FrameSupportWeightsRuntimeDbWeight: {1263 FrameSupportWeightsRuntimeDbWeight: {
1254 read: 'u64',1264 read: 'u64',
1255 write: 'u64'1265 write: 'u64'
1256 },1266 },
1257 /**1267 /**
1258 * Lookup132: sp_version::RuntimeVersion1268 * Lookup133: sp_version::RuntimeVersion
1259 **/1269 **/
1260 SpVersionRuntimeVersion: {1270 SpVersionRuntimeVersion: {
1261 specName: 'Text',1271 specName: 'Text',
1262 implName: 'Text',1272 implName: 'Text',
1267 transactionVersion: 'u32',1277 transactionVersion: 'u32',
1268 stateVersion: 'u8'1278 stateVersion: 'u8'
1269 },1279 },
1270 /**1280 /**
1271 * Lookup137: frame_system::pallet::Error<T>1281 * Lookup138: frame_system::pallet::Error<T>
1272 **/1282 **/
1273 FrameSystemError: {1283 FrameSystemError: {
1274 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1284 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1275 },1285 },
1276 /**1286 /**
1277 * Lookup138: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1287 * Lookup139: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
1278 **/1288 **/
1279 PolkadotPrimitivesV2PersistedValidationData: {1289 PolkadotPrimitivesV2PersistedValidationData: {
1280 parentHead: 'Bytes',1290 parentHead: 'Bytes',
1281 relayParentNumber: 'u32',1291 relayParentNumber: 'u32',
1282 relayParentStorageRoot: 'H256',1292 relayParentStorageRoot: 'H256',
1283 maxPovSize: 'u32'1293 maxPovSize: 'u32'
1284 },1294 },
1285 /**1295 /**
1286 * Lookup141: polkadot_primitives::v2::UpgradeRestriction1296 * Lookup142: polkadot_primitives::v2::UpgradeRestriction
1287 **/1297 **/
1288 PolkadotPrimitivesV2UpgradeRestriction: {1298 PolkadotPrimitivesV2UpgradeRestriction: {
1289 _enum: ['Present']1299 _enum: ['Present']
1290 },1300 },
1291 /**1301 /**
1292 * Lookup142: sp_trie::storage_proof::StorageProof1302 * Lookup143: sp_trie::storage_proof::StorageProof
1293 **/1303 **/
1294 SpTrieStorageProof: {1304 SpTrieStorageProof: {
1295 trieNodes: 'BTreeSet<Bytes>'1305 trieNodes: 'BTreeSet<Bytes>'
1296 },1306 },
1297 /**1307 /**
1298 * Lookup144: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1308 * Lookup145: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1299 **/1309 **/
1300 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1310 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1301 dmqMqcHead: 'H256',1311 dmqMqcHead: 'H256',
1302 relayDispatchQueueSize: '(u32,u32)',1312 relayDispatchQueueSize: '(u32,u32)',
1303 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1313 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
1304 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1314 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
1305 },1315 },
1306 /**1316 /**
1307 * Lookup147: polkadot_primitives::v2::AbridgedHrmpChannel1317 * Lookup148: polkadot_primitives::v2::AbridgedHrmpChannel
1308 **/1318 **/
1309 PolkadotPrimitivesV2AbridgedHrmpChannel: {1319 PolkadotPrimitivesV2AbridgedHrmpChannel: {
1310 maxCapacity: 'u32',1320 maxCapacity: 'u32',
1311 maxTotalSize: 'u32',1321 maxTotalSize: 'u32',
1314 totalSize: 'u32',1324 totalSize: 'u32',
1315 mqcHead: 'Option<H256>'1325 mqcHead: 'Option<H256>'
1316 },1326 },
1317 /**1327 /**
1318 * Lookup148: polkadot_primitives::v2::AbridgedHostConfiguration1328 * Lookup149: polkadot_primitives::v2::AbridgedHostConfiguration
1319 **/1329 **/
1320 PolkadotPrimitivesV2AbridgedHostConfiguration: {1330 PolkadotPrimitivesV2AbridgedHostConfiguration: {
1321 maxCodeSize: 'u32',1331 maxCodeSize: 'u32',
1322 maxHeadDataSize: 'u32',1332 maxHeadDataSize: 'u32',
1328 validationUpgradeCooldown: 'u32',1338 validationUpgradeCooldown: 'u32',
1329 validationUpgradeDelay: 'u32'1339 validationUpgradeDelay: 'u32'
1330 },1340 },
1331 /**1341 /**
1332 * Lookup154: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1342 * Lookup155: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1333 **/1343 **/
1334 PolkadotCorePrimitivesOutboundHrmpMessage: {1344 PolkadotCorePrimitivesOutboundHrmpMessage: {
1335 recipient: 'u32',1345 recipient: 'u32',
1336 data: 'Bytes'1346 data: 'Bytes'
1337 },1347 },
1338 /**1348 /**
1339 * Lookup155: cumulus_pallet_parachain_system::pallet::Call<T>1349 * Lookup156: cumulus_pallet_parachain_system::pallet::Call<T>
1340 **/1350 **/
1341 CumulusPalletParachainSystemCall: {1351 CumulusPalletParachainSystemCall: {
1342 _enum: {1352 _enum: {
1343 set_validation_data: {1353 set_validation_data: {
1354 }1364 }
1355 }1365 }
1356 },1366 },
1357 /**1367 /**
1358 * Lookup156: cumulus_primitives_parachain_inherent::ParachainInherentData1368 * Lookup157: cumulus_primitives_parachain_inherent::ParachainInherentData
1359 **/1369 **/
1360 CumulusPrimitivesParachainInherentParachainInherentData: {1370 CumulusPrimitivesParachainInherentParachainInherentData: {
1361 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1371 validationData: 'PolkadotPrimitivesV2PersistedValidationData',
1362 relayChainState: 'SpTrieStorageProof',1372 relayChainState: 'SpTrieStorageProof',
1363 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1373 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
1364 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1374 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1365 },1375 },
1366 /**1376 /**
1367 * Lookup158: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1377 * Lookup159: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1368 **/1378 **/
1369 PolkadotCorePrimitivesInboundDownwardMessage: {1379 PolkadotCorePrimitivesInboundDownwardMessage: {
1370 sentAt: 'u32',1380 sentAt: 'u32',
1371 msg: 'Bytes'1381 msg: 'Bytes'
1372 },1382 },
1373 /**1383 /**
1374 * Lookup161: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1384 * Lookup162: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1375 **/1385 **/
1376 PolkadotCorePrimitivesInboundHrmpMessage: {1386 PolkadotCorePrimitivesInboundHrmpMessage: {
1377 sentAt: 'u32',1387 sentAt: 'u32',
1378 data: 'Bytes'1388 data: 'Bytes'
1379 },1389 },
1380 /**1390 /**
1381 * Lookup164: cumulus_pallet_parachain_system::pallet::Error<T>1391 * Lookup165: cumulus_pallet_parachain_system::pallet::Error<T>
1382 **/1392 **/
1383 CumulusPalletParachainSystemError: {1393 CumulusPalletParachainSystemError: {
1384 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1394 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1385 },1395 },
1386 /**1396 /**
1387 * Lookup166: pallet_balances::BalanceLock<Balance>1397 * Lookup167: pallet_balances::BalanceLock<Balance>
1388 **/1398 **/
1389 PalletBalancesBalanceLock: {1399 PalletBalancesBalanceLock: {
1390 id: '[u8;8]',1400 id: '[u8;8]',
1391 amount: 'u128',1401 amount: 'u128',
1392 reasons: 'PalletBalancesReasons'1402 reasons: 'PalletBalancesReasons'
1393 },1403 },
1394 /**1404 /**
1395 * Lookup167: pallet_balances::Reasons1405 * Lookup168: pallet_balances::Reasons
1396 **/1406 **/
1397 PalletBalancesReasons: {1407 PalletBalancesReasons: {
1398 _enum: ['Fee', 'Misc', 'All']1408 _enum: ['Fee', 'Misc', 'All']
1399 },1409 },
1400 /**1410 /**
1401 * Lookup170: pallet_balances::ReserveData<ReserveIdentifier, Balance>1411 * Lookup171: pallet_balances::ReserveData<ReserveIdentifier, Balance>
1402 **/1412 **/
1403 PalletBalancesReserveData: {1413 PalletBalancesReserveData: {
1404 id: '[u8;16]',1414 id: '[u8;16]',
1405 amount: 'u128'1415 amount: 'u128'
1406 },1416 },
1407 /**1417 /**
1408 * Lookup172: pallet_balances::Releases1418 * Lookup173: pallet_balances::Releases
1409 **/1419 **/
1410 PalletBalancesReleases: {1420 PalletBalancesReleases: {
1411 _enum: ['V1_0_0', 'V2_0_0']1421 _enum: ['V1_0_0', 'V2_0_0']
1412 },1422 },
1413 /**1423 /**
1414 * Lookup173: pallet_balances::pallet::Call<T, I>1424 * Lookup174: pallet_balances::pallet::Call<T, I>
1415 **/1425 **/
1416 PalletBalancesCall: {1426 PalletBalancesCall: {
1417 _enum: {1427 _enum: {
1418 transfer: {1428 transfer: {
1443 }1453 }
1444 }1454 }
1445 },1455 },
1446 /**1456 /**
1447 * Lookup176: pallet_balances::pallet::Error<T, I>1457 * Lookup177: pallet_balances::pallet::Error<T, I>
1448 **/1458 **/
1449 PalletBalancesError: {1459 PalletBalancesError: {
1450 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1460 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
1451 },1461 },
1452 /**1462 /**
1453 * Lookup178: pallet_timestamp::pallet::Call<T>1463 * Lookup179: pallet_timestamp::pallet::Call<T>
1454 **/1464 **/
1455 PalletTimestampCall: {1465 PalletTimestampCall: {
1456 _enum: {1466 _enum: {
1457 set: {1467 set: {
1458 now: 'Compact<u64>'1468 now: 'Compact<u64>'
1459 }1469 }
1460 }1470 }
1461 },1471 },
1462 /**1472 /**
1463 * Lookup180: pallet_transaction_payment::Releases1473 * Lookup181: pallet_transaction_payment::Releases
1464 **/1474 **/
1465 PalletTransactionPaymentReleases: {1475 PalletTransactionPaymentReleases: {
1466 _enum: ['V1Ancient', 'V2']1476 _enum: ['V1Ancient', 'V2']
1467 },1477 },
1468 /**1478 /**
1469 * Lookup181: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1479 * Lookup182: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1470 **/1480 **/
1471 PalletTreasuryProposal: {1481 PalletTreasuryProposal: {
1472 proposer: 'AccountId32',1482 proposer: 'AccountId32',
1473 value: 'u128',1483 value: 'u128',
1474 beneficiary: 'AccountId32',1484 beneficiary: 'AccountId32',
1475 bond: 'u128'1485 bond: 'u128'
1476 },1486 },
1477 /**1487 /**
1478 * Lookup184: pallet_treasury::pallet::Call<T, I>1488 * Lookup185: pallet_treasury::pallet::Call<T, I>
1479 **/1489 **/
1480 PalletTreasuryCall: {1490 PalletTreasuryCall: {
1481 _enum: {1491 _enum: {
1482 propose_spend: {1492 propose_spend: {
1498 }1508 }
1499 }1509 }
1500 },1510 },
1501 /**1511 /**
1502 * Lookup187: frame_support::PalletId1512 * Lookup188: frame_support::PalletId
1503 **/1513 **/
1504 FrameSupportPalletId: '[u8;8]',1514 FrameSupportPalletId: '[u8;8]',
1505 /**1515 /**
1506 * Lookup188: pallet_treasury::pallet::Error<T, I>1516 * Lookup189: pallet_treasury::pallet::Error<T, I>
1507 **/1517 **/
1508 PalletTreasuryError: {1518 PalletTreasuryError: {
1509 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1519 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
1510 },1520 },
1511 /**1521 /**
1512 * Lookup189: pallet_sudo::pallet::Call<T>1522 * Lookup190: pallet_sudo::pallet::Call<T>
1513 **/1523 **/
1514 PalletSudoCall: {1524 PalletSudoCall: {
1515 _enum: {1525 _enum: {
1516 sudo: {1526 sudo: {
1532 }1542 }
1533 }1543 }
1534 },1544 },
1535 /**1545 /**
1536 * Lookup191: orml_vesting::module::Call<T>1546 * Lookup192: orml_vesting::module::Call<T>
1537 **/1547 **/
1538 OrmlVestingModuleCall: {1548 OrmlVestingModuleCall: {
1539 _enum: {1549 _enum: {
1540 claim: 'Null',1550 claim: 'Null',
1551 }1561 }
1552 }1562 }
1553 },1563 },
1554 /**1564 /**
1555 * Lookup193: cumulus_pallet_xcmp_queue::pallet::Call<T>1565 * Lookup194: cumulus_pallet_xcmp_queue::pallet::Call<T>
1556 **/1566 **/
1557 CumulusPalletXcmpQueueCall: {1567 CumulusPalletXcmpQueueCall: {
1558 _enum: {1568 _enum: {
1559 service_overweight: {1569 service_overweight: {
1600 }1610 }
1601 }1611 }
1602 },1612 },
1603 /**1613 /**
1604 * Lookup194: pallet_xcm::pallet::Call<T>1614 * Lookup195: pallet_xcm::pallet::Call<T>
1605 **/1615 **/
1606 PalletXcmCall: {1616 PalletXcmCall: {
1607 _enum: {1617 _enum: {
1608 send: {1618 send: {
1654 }1664 }
1655 }1665 }
1656 },1666 },
1657 /**1667 /**
1658 * Lookup195: xcm::VersionedXcm<Call>1668 * Lookup196: xcm::VersionedXcm<Call>
1659 **/1669 **/
1660 XcmVersionedXcm: {1670 XcmVersionedXcm: {
1661 _enum: {1671 _enum: {
1662 V0: 'XcmV0Xcm',1672 V0: 'XcmV0Xcm',
1663 V1: 'XcmV1Xcm',1673 V1: 'XcmV1Xcm',
1664 V2: 'XcmV2Xcm'1674 V2: 'XcmV2Xcm'
1665 }1675 }
1666 },1676 },
1667 /**1677 /**
1668 * Lookup196: xcm::v0::Xcm<Call>1678 * Lookup197: xcm::v0::Xcm<Call>
1669 **/1679 **/
1670 XcmV0Xcm: {1680 XcmV0Xcm: {
1671 _enum: {1681 _enum: {
1672 WithdrawAsset: {1682 WithdrawAsset: {
1718 }1728 }
1719 }1729 }
1720 },1730 },
1721 /**1731 /**
1722 * Lookup198: xcm::v0::order::Order<Call>1732 * Lookup199: xcm::v0::order::Order<Call>
1723 **/1733 **/
1724 XcmV0Order: {1734 XcmV0Order: {
1725 _enum: {1735 _enum: {
1726 Null: 'Null',1736 Null: 'Null',
1761 }1771 }
1762 }1772 }
1763 },1773 },
1764 /**1774 /**
1765 * Lookup200: xcm::v0::Response1775 * Lookup201: xcm::v0::Response
1766 **/1776 **/
1767 XcmV0Response: {1777 XcmV0Response: {
1768 _enum: {1778 _enum: {
1769 Assets: 'Vec<XcmV0MultiAsset>'1779 Assets: 'Vec<XcmV0MultiAsset>'
1770 }1780 }
1771 },1781 },
1772 /**1782 /**
1773 * Lookup201: xcm::v1::Xcm<Call>1783 * Lookup202: xcm::v1::Xcm<Call>
1774 **/1784 **/
1775 XcmV1Xcm: {1785 XcmV1Xcm: {
1776 _enum: {1786 _enum: {
1777 WithdrawAsset: {1787 WithdrawAsset: {
1828 UnsubscribeVersion: 'Null'1838 UnsubscribeVersion: 'Null'
1829 }1839 }
1830 },1840 },
1831 /**1841 /**
1832 * Lookup203: xcm::v1::order::Order<Call>1842 * Lookup204: xcm::v1::order::Order<Call>
1833 **/1843 **/
1834 XcmV1Order: {1844 XcmV1Order: {
1835 _enum: {1845 _enum: {
1836 Noop: 'Null',1846 Noop: 'Null',
1873 }1883 }
1874 }1884 }
1875 },1885 },
1876 /**1886 /**
1877 * Lookup205: xcm::v1::Response1887 * Lookup206: xcm::v1::Response
1878 **/1888 **/
1879 XcmV1Response: {1889 XcmV1Response: {
1880 _enum: {1890 _enum: {
1881 Assets: 'XcmV1MultiassetMultiAssets',1891 Assets: 'XcmV1MultiassetMultiAssets',
1882 Version: 'u32'1892 Version: 'u32'
1883 }1893 }
1884 },1894 },
1885 /**1895 /**
1886 * Lookup219: cumulus_pallet_xcm::pallet::Call<T>1896 * Lookup220: cumulus_pallet_xcm::pallet::Call<T>
1887 **/1897 **/
1888 CumulusPalletXcmCall: 'Null',1898 CumulusPalletXcmCall: 'Null',
1889 /**1899 /**
1890 * Lookup220: cumulus_pallet_dmp_queue::pallet::Call<T>1900 * Lookup221: cumulus_pallet_dmp_queue::pallet::Call<T>
1891 **/1901 **/
1892 CumulusPalletDmpQueueCall: {1902 CumulusPalletDmpQueueCall: {
1893 _enum: {1903 _enum: {
1894 service_overweight: {1904 service_overweight: {
1897 }1907 }
1898 }1908 }
1899 },1909 },
1900 /**1910 /**
1901 * Lookup221: pallet_inflation::pallet::Call<T>1911 * Lookup222: pallet_inflation::pallet::Call<T>
1902 **/1912 **/
1903 PalletInflationCall: {1913 PalletInflationCall: {
1904 _enum: {1914 _enum: {
1905 start_inflation: {1915 start_inflation: {
1906 inflationStartRelayBlock: 'u32'1916 inflationStartRelayBlock: 'u32'
1907 }1917 }
1908 }1918 }
1909 },1919 },
1910 /**1920 /**
1911 * Lookup222: pallet_unique::Call<T>1921 * Lookup223: pallet_unique::Call<T>
1912 **/1922 **/
1913 PalletUniqueCall: {1923 PalletUniqueCall: {
1914 _enum: {1924 _enum: {
1915 create_collection: {1925 create_collection: {
2039 }2049 }
2040 }2050 }
2041 },2051 },
2042 /**2052 /**
2043 * Lookup227: up_data_structs::CollectionMode2053 * Lookup228: up_data_structs::CollectionMode
2044 **/2054 **/
2045 UpDataStructsCollectionMode: {2055 UpDataStructsCollectionMode: {
2046 _enum: {2056 _enum: {
2047 NFT: 'Null',2057 NFT: 'Null',
2048 Fungible: 'u8',2058 Fungible: 'u8',
2049 ReFungible: 'Null'2059 ReFungible: 'Null'
2050 }2060 }
2051 },2061 },
2052 /**2062 /**
2053 * Lookup228: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2063 * Lookup229: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2054 **/2064 **/
2055 UpDataStructsCreateCollectionData: {2065 UpDataStructsCreateCollectionData: {
2056 mode: 'UpDataStructsCollectionMode',2066 mode: 'UpDataStructsCollectionMode',
2057 access: 'Option<UpDataStructsAccessMode>',2067 access: 'Option<UpDataStructsAccessMode>',
2064 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2074 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2065 properties: 'Vec<UpDataStructsProperty>'2075 properties: 'Vec<UpDataStructsProperty>'
2066 },2076 },
2067 /**2077 /**
2068 * Lookup230: up_data_structs::AccessMode2078 * Lookup231: up_data_structs::AccessMode
2069 **/2079 **/
2070 UpDataStructsAccessMode: {2080 UpDataStructsAccessMode: {
2071 _enum: ['Normal', 'AllowList']2081 _enum: ['Normal', 'AllowList']
2072 },2082 },
2073 /**2083 /**
2074 * Lookup232: up_data_structs::CollectionLimits2084 * Lookup233: up_data_structs::CollectionLimits
2075 **/2085 **/
2076 UpDataStructsCollectionLimits: {2086 UpDataStructsCollectionLimits: {
2077 accountTokenOwnershipLimit: 'Option<u32>',2087 accountTokenOwnershipLimit: 'Option<u32>',
2078 sponsoredDataSize: 'Option<u32>',2088 sponsoredDataSize: 'Option<u32>',
2084 ownerCanDestroy: 'Option<bool>',2094 ownerCanDestroy: 'Option<bool>',
2085 transfersEnabled: 'Option<bool>'2095 transfersEnabled: 'Option<bool>'
2086 },2096 },
2087 /**2097 /**
2088 * Lookup234: up_data_structs::SponsoringRateLimit2098 * Lookup235: up_data_structs::SponsoringRateLimit
2089 **/2099 **/
2090 UpDataStructsSponsoringRateLimit: {2100 UpDataStructsSponsoringRateLimit: {
2091 _enum: {2101 _enum: {
2092 SponsoringDisabled: 'Null',2102 SponsoringDisabled: 'Null',
2093 Blocks: 'u32'2103 Blocks: 'u32'
2094 }2104 }
2095 },2105 },
2096 /**2106 /**
2097 * Lookup237: up_data_structs::CollectionPermissions2107 * Lookup238: up_data_structs::CollectionPermissions
2098 **/2108 **/
2099 UpDataStructsCollectionPermissions: {2109 UpDataStructsCollectionPermissions: {
2100 access: 'Option<UpDataStructsAccessMode>',2110 access: 'Option<UpDataStructsAccessMode>',
2101 mintMode: 'Option<bool>',2111 mintMode: 'Option<bool>',
2102 nesting: 'Option<UpDataStructsNestingPermissions>'2112 nesting: 'Option<UpDataStructsNestingPermissions>'
2103 },2113 },
2104 /**2114 /**
2105 * Lookup239: up_data_structs::NestingPermissions2115 * Lookup240: up_data_structs::NestingPermissions
2106 **/2116 **/
2107 UpDataStructsNestingPermissions: {2117 UpDataStructsNestingPermissions: {
2108 tokenOwner: 'bool',2118 tokenOwner: 'bool',
2109 collectionAdmin: 'bool',2119 collectionAdmin: 'bool',
2110 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2120 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2111 },2121 },
2112 /**2122 /**
2113 * Lookup241: up_data_structs::OwnerRestrictedSet2123 * Lookup242: up_data_structs::OwnerRestrictedSet
2114 **/2124 **/
2115 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2125 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2116 /**2126 /**
2117 * Lookup246: up_data_structs::PropertyKeyPermission2127 * Lookup247: up_data_structs::PropertyKeyPermission
2118 **/2128 **/
2119 UpDataStructsPropertyKeyPermission: {2129 UpDataStructsPropertyKeyPermission: {
2120 key: 'Bytes',2130 key: 'Bytes',
2121 permission: 'UpDataStructsPropertyPermission'2131 permission: 'UpDataStructsPropertyPermission'
2122 },2132 },
2123 /**2133 /**
2124 * Lookup247: up_data_structs::PropertyPermission2134 * Lookup248: up_data_structs::PropertyPermission
2125 **/2135 **/
2126 UpDataStructsPropertyPermission: {2136 UpDataStructsPropertyPermission: {
2127 mutable: 'bool',2137 mutable: 'bool',
2128 collectionAdmin: 'bool',2138 collectionAdmin: 'bool',
2129 tokenOwner: 'bool'2139 tokenOwner: 'bool'
2130 },2140 },
2131 /**2141 /**
2132 * Lookup250: up_data_structs::Property2142 * Lookup251: up_data_structs::Property
2133 **/2143 **/
2134 UpDataStructsProperty: {2144 UpDataStructsProperty: {
2135 key: 'Bytes',2145 key: 'Bytes',
2136 value: 'Bytes'2146 value: 'Bytes'
2137 },2147 },
2138 /**2148 /**
2139 * Lookup253: up_data_structs::CreateItemData2149 * Lookup254: up_data_structs::CreateItemData
2140 **/2150 **/
2141 UpDataStructsCreateItemData: {2151 UpDataStructsCreateItemData: {
2142 _enum: {2152 _enum: {
2143 NFT: 'UpDataStructsCreateNftData',2153 NFT: 'UpDataStructsCreateNftData',
2144 Fungible: 'UpDataStructsCreateFungibleData',2154 Fungible: 'UpDataStructsCreateFungibleData',
2145 ReFungible: 'UpDataStructsCreateReFungibleData'2155 ReFungible: 'UpDataStructsCreateReFungibleData'
2146 }2156 }
2147 },2157 },
2148 /**2158 /**
2149 * Lookup254: up_data_structs::CreateNftData2159 * Lookup255: up_data_structs::CreateNftData
2150 **/2160 **/
2151 UpDataStructsCreateNftData: {2161 UpDataStructsCreateNftData: {
2152 properties: 'Vec<UpDataStructsProperty>'2162 properties: 'Vec<UpDataStructsProperty>'
2153 },2163 },
2154 /**2164 /**
2155 * Lookup255: up_data_structs::CreateFungibleData2165 * Lookup256: up_data_structs::CreateFungibleData
2156 **/2166 **/
2157 UpDataStructsCreateFungibleData: {2167 UpDataStructsCreateFungibleData: {
2158 value: 'u128'2168 value: 'u128'
2159 },2169 },
2160 /**2170 /**
2161 * Lookup256: up_data_structs::CreateReFungibleData2171 * Lookup257: up_data_structs::CreateReFungibleData
2162 **/2172 **/
2163 UpDataStructsCreateReFungibleData: {2173 UpDataStructsCreateReFungibleData: {
2164 pieces: 'u128',2174 pieces: 'u128',
2165 properties: 'Vec<UpDataStructsProperty>'2175 properties: 'Vec<UpDataStructsProperty>'
2166 },2176 },
2167 /**2177 /**
2168 * Lookup259: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2178 * Lookup260: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2169 **/2179 **/
2170 UpDataStructsCreateItemExData: {2180 UpDataStructsCreateItemExData: {
2171 _enum: {2181 _enum: {
2172 NFT: 'Vec<UpDataStructsCreateNftExData>',2182 NFT: 'Vec<UpDataStructsCreateNftExData>',
2175 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2185 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'
2176 }2186 }
2177 },2187 },
2178 /**2188 /**
2179 * Lookup261: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2189 * Lookup262: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2180 **/2190 **/
2181 UpDataStructsCreateNftExData: {2191 UpDataStructsCreateNftExData: {
2182 properties: 'Vec<UpDataStructsProperty>',2192 properties: 'Vec<UpDataStructsProperty>',
2183 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2193 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2184 },2194 },
2185 /**2195 /**
2186 * Lookup268: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2196 * Lookup269: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2187 **/2197 **/
2188 UpDataStructsCreateRefungibleExSingleOwner: {2198 UpDataStructsCreateRefungibleExSingleOwner: {
2189 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2199 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2190 pieces: 'u128',2200 pieces: 'u128',
2191 properties: 'Vec<UpDataStructsProperty>'2201 properties: 'Vec<UpDataStructsProperty>'
2192 },2202 },
2193 /**2203 /**
2194 * Lookup270: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2204 * Lookup271: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2195 **/2205 **/
2196 UpDataStructsCreateRefungibleExMultipleOwners: {2206 UpDataStructsCreateRefungibleExMultipleOwners: {
2197 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2207 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2198 properties: 'Vec<UpDataStructsProperty>'2208 properties: 'Vec<UpDataStructsProperty>'
2199 },2209 },
2200 /**2210 /**
2201 * Lookup271: pallet_unique_scheduler::pallet::Call<T>2211 * Lookup272: pallet_unique_scheduler::pallet::Call<T>
2202 **/2212 **/
2203 PalletUniqueSchedulerCall: {2213 PalletUniqueSchedulerCall: {
2204 _enum: {2214 _enum: {
2205 schedule_named: {2215 schedule_named: {
2221 }2231 }
2222 }2232 }
2223 },2233 },
2224 /**2234 /**
2225 * Lookup273: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>2235 * Lookup274: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
2226 **/2236 **/
2227 FrameSupportScheduleMaybeHashed: {2237 FrameSupportScheduleMaybeHashed: {
2228 _enum: {2238 _enum: {
2229 Value: 'Call',2239 Value: 'Call',
2230 Hash: 'H256'2240 Hash: 'H256'
2231 }2241 }
2232 },2242 },
2233 /**2243 /**
2234 * Lookup274: pallet_configuration::pallet::Call<T>2244 * Lookup275: pallet_configuration::pallet::Call<T>
2235 **/2245 **/
2236 PalletConfigurationCall: {2246 PalletConfigurationCall: {
2237 _enum: {2247 _enum: {
2238 set_weight_to_fee_coefficient_override: {2248 set_weight_to_fee_coefficient_override: {
2243 }2253 }
2244 }2254 }
2245 },2255 },
2246 /**2256 /**
2247 * Lookup275: pallet_template_transaction_payment::Call<T>2257 * Lookup276: pallet_template_transaction_payment::Call<T>
2248 **/2258 **/
2249 PalletTemplateTransactionPaymentCall: 'Null',2259 PalletTemplateTransactionPaymentCall: 'Null',
2250 /**2260 /**
2251 * Lookup276: pallet_structure::pallet::Call<T>2261 * Lookup277: pallet_structure::pallet::Call<T>
2252 **/2262 **/
2253 PalletStructureCall: 'Null',2263 PalletStructureCall: 'Null',
2254 /**2264 /**
2255 * Lookup277: pallet_rmrk_core::pallet::Call<T>2265 * Lookup278: pallet_rmrk_core::pallet::Call<T>
2256 **/2266 **/
2257 PalletRmrkCoreCall: {2267 PalletRmrkCoreCall: {
2258 _enum: {2268 _enum: {
2259 create_collection: {2269 create_collection: {
2342 }2352 }
2343 }2353 }
2344 },2354 },
2345 /**2355 /**
2346 * Lookup283: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2356 * Lookup284: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2347 **/2357 **/
2348 RmrkTraitsResourceResourceTypes: {2358 RmrkTraitsResourceResourceTypes: {
2349 _enum: {2359 _enum: {
2350 Basic: 'RmrkTraitsResourceBasicResource',2360 Basic: 'RmrkTraitsResourceBasicResource',
2351 Composable: 'RmrkTraitsResourceComposableResource',2361 Composable: 'RmrkTraitsResourceComposableResource',
2352 Slot: 'RmrkTraitsResourceSlotResource'2362 Slot: 'RmrkTraitsResourceSlotResource'
2353 }2363 }
2354 },2364 },
2355 /**2365 /**
2356 * Lookup285: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2366 * Lookup286: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2357 **/2367 **/
2358 RmrkTraitsResourceBasicResource: {2368 RmrkTraitsResourceBasicResource: {
2359 src: 'Option<Bytes>',2369 src: 'Option<Bytes>',
2360 metadata: 'Option<Bytes>',2370 metadata: 'Option<Bytes>',
2361 license: 'Option<Bytes>',2371 license: 'Option<Bytes>',
2362 thumb: 'Option<Bytes>'2372 thumb: 'Option<Bytes>'
2363 },2373 },
2364 /**2374 /**
2365 * Lookup287: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2375 * Lookup288: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2366 **/2376 **/
2367 RmrkTraitsResourceComposableResource: {2377 RmrkTraitsResourceComposableResource: {
2368 parts: 'Vec<u32>',2378 parts: 'Vec<u32>',
2369 base: 'u32',2379 base: 'u32',
2372 license: 'Option<Bytes>',2382 license: 'Option<Bytes>',
2373 thumb: 'Option<Bytes>'2383 thumb: 'Option<Bytes>'
2374 },2384 },
2375 /**2385 /**
2376 * Lookup288: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2386 * Lookup289: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2377 **/2387 **/
2378 RmrkTraitsResourceSlotResource: {2388 RmrkTraitsResourceSlotResource: {
2379 base: 'u32',2389 base: 'u32',
2380 src: 'Option<Bytes>',2390 src: 'Option<Bytes>',
2383 license: 'Option<Bytes>',2393 license: 'Option<Bytes>',
2384 thumb: 'Option<Bytes>'2394 thumb: 'Option<Bytes>'
2385 },2395 },
2386 /**2396 /**
2387 * Lookup291: pallet_rmrk_equip::pallet::Call<T>2397 * Lookup292: pallet_rmrk_equip::pallet::Call<T>
2388 **/2398 **/
2389 PalletRmrkEquipCall: {2399 PalletRmrkEquipCall: {
2390 _enum: {2400 _enum: {
2391 create_base: {2401 create_base: {
2404 }2414 }
2405 }2415 }
2406 },2416 },
2407 /**2417 /**
2408 * Lookup294: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2418 * Lookup295: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2409 **/2419 **/
2410 RmrkTraitsPartPartType: {2420 RmrkTraitsPartPartType: {
2411 _enum: {2421 _enum: {
2412 FixedPart: 'RmrkTraitsPartFixedPart',2422 FixedPart: 'RmrkTraitsPartFixedPart',
2413 SlotPart: 'RmrkTraitsPartSlotPart'2423 SlotPart: 'RmrkTraitsPartSlotPart'
2414 }2424 }
2415 },2425 },
2416 /**2426 /**
2417 * Lookup296: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2427 * Lookup297: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2418 **/2428 **/
2419 RmrkTraitsPartFixedPart: {2429 RmrkTraitsPartFixedPart: {
2420 id: 'u32',2430 id: 'u32',
2421 z: 'u32',2431 z: 'u32',
2422 src: 'Bytes'2432 src: 'Bytes'
2423 },2433 },
2424 /**2434 /**
2425 * Lookup297: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2435 * Lookup298: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2426 **/2436 **/
2427 RmrkTraitsPartSlotPart: {2437 RmrkTraitsPartSlotPart: {
2428 id: 'u32',2438 id: 'u32',
2429 equippable: 'RmrkTraitsPartEquippableList',2439 equippable: 'RmrkTraitsPartEquippableList',
2430 src: 'Bytes',2440 src: 'Bytes',
2431 z: 'u32'2441 z: 'u32'
2432 },2442 },
2433 /**2443 /**
2434 * Lookup298: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2444 * Lookup299: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2435 **/2445 **/
2436 RmrkTraitsPartEquippableList: {2446 RmrkTraitsPartEquippableList: {
2437 _enum: {2447 _enum: {
2438 All: 'Null',2448 All: 'Null',
2439 Empty: 'Null',2449 Empty: 'Null',
2440 Custom: 'Vec<u32>'2450 Custom: 'Vec<u32>'
2441 }2451 }
2442 },2452 },
2443 /**2453 /**
2444 * 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>>2454 * 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>>
2445 **/2455 **/
2446 RmrkTraitsTheme: {2456 RmrkTraitsTheme: {
2447 name: 'Bytes',2457 name: 'Bytes',
2448 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2458 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
2449 inherit: 'bool'2459 inherit: 'bool'
2450 },2460 },
2451 /**2461 /**
2452 * Lookup302: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2462 * Lookup303: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2453 **/2463 **/
2454 RmrkTraitsThemeThemeProperty: {2464 RmrkTraitsThemeThemeProperty: {
2455 key: 'Bytes',2465 key: 'Bytes',
2456 value: 'Bytes'2466 value: 'Bytes'
2457 },2467 },
2458 /**2468 /**
2459 * Lookup304: pallet_app_promotion::pallet::Call<T>2469 * Lookup305: pallet_app_promotion::pallet::Call<T>
2460 **/2470 **/
2461 PalletAppPromotionCall: {2471 PalletAppPromotionCall: {
2462 _enum: {2472 _enum: {
2463 set_admin_address: {2473 set_admin_address: {
2484 }2494 }
2485 }2495 }
2486 },2496 },
2487 /**2497 /**
2488 * Lookup306: pallet_evm::pallet::Call<T>2498 * Lookup307: pallet_evm::pallet::Call<T>
2489 **/2499 **/
2490 PalletEvmCall: {2500 PalletEvmCall: {
2491 _enum: {2501 _enum: {
2492 withdraw: {2502 withdraw: {
2527 }2537 }
2528 }2538 }
2529 },2539 },
2530 /**2540 /**
2531 * Lookup310: pallet_ethereum::pallet::Call<T>2541 * Lookup311: pallet_ethereum::pallet::Call<T>
2532 **/2542 **/
2533 PalletEthereumCall: {2543 PalletEthereumCall: {
2534 _enum: {2544 _enum: {
2535 transact: {2545 transact: {
2536 transaction: 'EthereumTransactionTransactionV2'2546 transaction: 'EthereumTransactionTransactionV2'
2537 }2547 }
2538 }2548 }
2539 },2549 },
2540 /**2550 /**
2541 * Lookup311: ethereum::transaction::TransactionV22551 * Lookup312: ethereum::transaction::TransactionV2
2542 **/2552 **/
2543 EthereumTransactionTransactionV2: {2553 EthereumTransactionTransactionV2: {
2544 _enum: {2554 _enum: {
2545 Legacy: 'EthereumTransactionLegacyTransaction',2555 Legacy: 'EthereumTransactionLegacyTransaction',
2546 EIP2930: 'EthereumTransactionEip2930Transaction',2556 EIP2930: 'EthereumTransactionEip2930Transaction',
2547 EIP1559: 'EthereumTransactionEip1559Transaction'2557 EIP1559: 'EthereumTransactionEip1559Transaction'
2548 }2558 }
2549 },2559 },
2550 /**2560 /**
2551 * Lookup312: ethereum::transaction::LegacyTransaction2561 * Lookup313: ethereum::transaction::LegacyTransaction
2552 **/2562 **/
2553 EthereumTransactionLegacyTransaction: {2563 EthereumTransactionLegacyTransaction: {
2554 nonce: 'U256',2564 nonce: 'U256',
2555 gasPrice: 'U256',2565 gasPrice: 'U256',
2559 input: 'Bytes',2569 input: 'Bytes',
2560 signature: 'EthereumTransactionTransactionSignature'2570 signature: 'EthereumTransactionTransactionSignature'
2561 },2571 },
2562 /**2572 /**
2563 * Lookup313: ethereum::transaction::TransactionAction2573 * Lookup314: ethereum::transaction::TransactionAction
2564 **/2574 **/
2565 EthereumTransactionTransactionAction: {2575 EthereumTransactionTransactionAction: {
2566 _enum: {2576 _enum: {
2567 Call: 'H160',2577 Call: 'H160',
2568 Create: 'Null'2578 Create: 'Null'
2569 }2579 }
2570 },2580 },
2571 /**2581 /**
2572 * Lookup314: ethereum::transaction::TransactionSignature2582 * Lookup315: ethereum::transaction::TransactionSignature
2573 **/2583 **/
2574 EthereumTransactionTransactionSignature: {2584 EthereumTransactionTransactionSignature: {
2575 v: 'u64',2585 v: 'u64',
2576 r: 'H256',2586 r: 'H256',
2577 s: 'H256'2587 s: 'H256'
2578 },2588 },
2579 /**2589 /**
2580 * Lookup316: ethereum::transaction::EIP2930Transaction2590 * Lookup317: ethereum::transaction::EIP2930Transaction
2581 **/2591 **/
2582 EthereumTransactionEip2930Transaction: {2592 EthereumTransactionEip2930Transaction: {
2583 chainId: 'u64',2593 chainId: 'u64',
2584 nonce: 'U256',2594 nonce: 'U256',
2592 r: 'H256',2602 r: 'H256',
2593 s: 'H256'2603 s: 'H256'
2594 },2604 },
2595 /**2605 /**
2596 * Lookup318: ethereum::transaction::AccessListItem2606 * Lookup319: ethereum::transaction::AccessListItem
2597 **/2607 **/
2598 EthereumTransactionAccessListItem: {2608 EthereumTransactionAccessListItem: {
2599 address: 'H160',2609 address: 'H160',
2600 storageKeys: 'Vec<H256>'2610 storageKeys: 'Vec<H256>'
2601 },2611 },
2602 /**2612 /**
2603 * Lookup319: ethereum::transaction::EIP1559Transaction2613 * Lookup320: ethereum::transaction::EIP1559Transaction
2604 **/2614 **/
2605 EthereumTransactionEip1559Transaction: {2615 EthereumTransactionEip1559Transaction: {
2606 chainId: 'u64',2616 chainId: 'u64',
2607 nonce: 'U256',2617 nonce: 'U256',
2616 r: 'H256',2626 r: 'H256',
2617 s: 'H256'2627 s: 'H256'
2618 },2628 },
2619 /**2629 /**
2620 * Lookup320: pallet_evm_migration::pallet::Call<T>2630 * Lookup321: pallet_evm_migration::pallet::Call<T>
2621 **/2631 **/
2622 PalletEvmMigrationCall: {2632 PalletEvmMigrationCall: {
2623 _enum: {2633 _enum: {
2624 begin: {2634 begin: {
2634 }2644 }
2635 }2645 }
2636 },2646 },
2637 /**2647 /**
2638 * Lookup323: pallet_sudo::pallet::Error<T>2648 * Lookup324: pallet_sudo::pallet::Error<T>
2639 **/2649 **/
2640 PalletSudoError: {2650 PalletSudoError: {
2641 _enum: ['RequireSudo']2651 _enum: ['RequireSudo']
2642 },2652 },
2643 /**2653 /**
2644 * Lookup325: orml_vesting::module::Error<T>2654 * Lookup326: orml_vesting::module::Error<T>
2645 **/2655 **/
2646 OrmlVestingModuleError: {2656 OrmlVestingModuleError: {
2647 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2657 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2648 },2658 },
2649 /**2659 /**
2650 * Lookup327: cumulus_pallet_xcmp_queue::InboundChannelDetails2660 * Lookup328: cumulus_pallet_xcmp_queue::InboundChannelDetails
2651 **/2661 **/
2652 CumulusPalletXcmpQueueInboundChannelDetails: {2662 CumulusPalletXcmpQueueInboundChannelDetails: {
2653 sender: 'u32',2663 sender: 'u32',
2654 state: 'CumulusPalletXcmpQueueInboundState',2664 state: 'CumulusPalletXcmpQueueInboundState',
2655 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2665 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
2656 },2666 },
2657 /**2667 /**
2658 * Lookup328: cumulus_pallet_xcmp_queue::InboundState2668 * Lookup329: cumulus_pallet_xcmp_queue::InboundState
2659 **/2669 **/
2660 CumulusPalletXcmpQueueInboundState: {2670 CumulusPalletXcmpQueueInboundState: {
2661 _enum: ['Ok', 'Suspended']2671 _enum: ['Ok', 'Suspended']
2662 },2672 },
2663 /**2673 /**
2664 * Lookup331: polkadot_parachain::primitives::XcmpMessageFormat2674 * Lookup332: polkadot_parachain::primitives::XcmpMessageFormat
2665 **/2675 **/
2666 PolkadotParachainPrimitivesXcmpMessageFormat: {2676 PolkadotParachainPrimitivesXcmpMessageFormat: {
2667 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2677 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
2668 },2678 },
2669 /**2679 /**
2670 * Lookup334: cumulus_pallet_xcmp_queue::OutboundChannelDetails2680 * Lookup335: cumulus_pallet_xcmp_queue::OutboundChannelDetails
2671 **/2681 **/
2672 CumulusPalletXcmpQueueOutboundChannelDetails: {2682 CumulusPalletXcmpQueueOutboundChannelDetails: {
2673 recipient: 'u32',2683 recipient: 'u32',
2674 state: 'CumulusPalletXcmpQueueOutboundState',2684 state: 'CumulusPalletXcmpQueueOutboundState',
2675 signalsExist: 'bool',2685 signalsExist: 'bool',
2676 firstIndex: 'u16',2686 firstIndex: 'u16',
2677 lastIndex: 'u16'2687 lastIndex: 'u16'
2678 },2688 },
2679 /**2689 /**
2680 * Lookup335: cumulus_pallet_xcmp_queue::OutboundState2690 * Lookup336: cumulus_pallet_xcmp_queue::OutboundState
2681 **/2691 **/
2682 CumulusPalletXcmpQueueOutboundState: {2692 CumulusPalletXcmpQueueOutboundState: {
2683 _enum: ['Ok', 'Suspended']2693 _enum: ['Ok', 'Suspended']
2684 },2694 },
2685 /**2695 /**
2686 * Lookup337: cumulus_pallet_xcmp_queue::QueueConfigData2696 * Lookup338: cumulus_pallet_xcmp_queue::QueueConfigData
2687 **/2697 **/
2688 CumulusPalletXcmpQueueQueueConfigData: {2698 CumulusPalletXcmpQueueQueueConfigData: {
2689 suspendThreshold: 'u32',2699 suspendThreshold: 'u32',
2690 dropThreshold: 'u32',2700 dropThreshold: 'u32',
2693 weightRestrictDecay: 'u64',2703 weightRestrictDecay: 'u64',
2694 xcmpMaxIndividualWeight: 'u64'2704 xcmpMaxIndividualWeight: 'u64'
2695 },2705 },
2696 /**2706 /**
2697 * Lookup339: cumulus_pallet_xcmp_queue::pallet::Error<T>2707 * Lookup340: cumulus_pallet_xcmp_queue::pallet::Error<T>
2698 **/2708 **/
2699 CumulusPalletXcmpQueueError: {2709 CumulusPalletXcmpQueueError: {
2700 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2710 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
2701 },2711 },
2702 /**2712 /**
2703 * Lookup340: pallet_xcm::pallet::Error<T>2713 * Lookup341: pallet_xcm::pallet::Error<T>
2704 **/2714 **/
2705 PalletXcmError: {2715 PalletXcmError: {
2706 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2716 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
2707 },2717 },
2708 /**2718 /**
2709 * Lookup341: cumulus_pallet_xcm::pallet::Error<T>2719 * Lookup342: cumulus_pallet_xcm::pallet::Error<T>
2710 **/2720 **/
2711 CumulusPalletXcmError: 'Null',2721 CumulusPalletXcmError: 'Null',
2712 /**2722 /**
2713 * Lookup342: cumulus_pallet_dmp_queue::ConfigData2723 * Lookup343: cumulus_pallet_dmp_queue::ConfigData
2714 **/2724 **/
2715 CumulusPalletDmpQueueConfigData: {2725 CumulusPalletDmpQueueConfigData: {
2716 maxIndividual: 'u64'2726 maxIndividual: 'u64'
2717 },2727 },
2718 /**2728 /**
2719 * Lookup343: cumulus_pallet_dmp_queue::PageIndexData2729 * Lookup344: cumulus_pallet_dmp_queue::PageIndexData
2720 **/2730 **/
2721 CumulusPalletDmpQueuePageIndexData: {2731 CumulusPalletDmpQueuePageIndexData: {
2722 beginUsed: 'u32',2732 beginUsed: 'u32',
2723 endUsed: 'u32',2733 endUsed: 'u32',
2724 overweightCount: 'u64'2734 overweightCount: 'u64'
2725 },2735 },
2726 /**2736 /**
2727 * Lookup346: cumulus_pallet_dmp_queue::pallet::Error<T>2737 * Lookup347: cumulus_pallet_dmp_queue::pallet::Error<T>
2728 **/2738 **/
2729 CumulusPalletDmpQueueError: {2739 CumulusPalletDmpQueueError: {
2730 _enum: ['Unknown', 'OverLimit']2740 _enum: ['Unknown', 'OverLimit']
2731 },2741 },
2732 /**2742 /**
2733 * Lookup350: pallet_unique::Error<T>2743 * Lookup351: pallet_unique::Error<T>
2734 **/2744 **/
2735 PalletUniqueError: {2745 PalletUniqueError: {
2736 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']2746 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
2737 },2747 },
2738 /**2748 /**
2739 * Lookup353: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>2749 * Lookup354: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
2740 **/2750 **/
2741 PalletUniqueSchedulerScheduledV3: {2751 PalletUniqueSchedulerScheduledV3: {
2742 maybeId: 'Option<[u8;16]>',2752 maybeId: 'Option<[u8;16]>',
2743 priority: 'u8',2753 priority: 'u8',
2744 call: 'FrameSupportScheduleMaybeHashed',2754 call: 'FrameSupportScheduleMaybeHashed',
2745 maybePeriodic: 'Option<(u32,u32)>',2755 maybePeriodic: 'Option<(u32,u32)>',
2746 origin: 'OpalRuntimeOriginCaller'2756 origin: 'OpalRuntimeOriginCaller'
2747 },2757 },
2748 /**2758 /**
2749 * Lookup354: opal_runtime::OriginCaller2759 * Lookup355: opal_runtime::OriginCaller
2750 **/2760 **/
2751 OpalRuntimeOriginCaller: {2761 OpalRuntimeOriginCaller: {
2752 _enum: {2762 _enum: {
2753 system: 'FrameSupportDispatchRawOrigin',2763 system: 'FrameSupportDispatchRawOrigin',
2854 Ethereum: 'PalletEthereumRawOrigin'2864 Ethereum: 'PalletEthereumRawOrigin'
2855 }2865 }
2856 },2866 },
2857 /**2867 /**
2858 * Lookup355: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>2868 * Lookup356: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
2859 **/2869 **/
2860 FrameSupportDispatchRawOrigin: {2870 FrameSupportDispatchRawOrigin: {
2861 _enum: {2871 _enum: {
2862 Root: 'Null',2872 Root: 'Null',
2863 Signed: 'AccountId32',2873 Signed: 'AccountId32',
2864 None: 'Null'2874 None: 'Null'
2865 }2875 }
2866 },2876 },
2867 /**2877 /**
2868 * Lookup356: pallet_xcm::pallet::Origin2878 * Lookup357: pallet_xcm::pallet::Origin
2869 **/2879 **/
2870 PalletXcmOrigin: {2880 PalletXcmOrigin: {
2871 _enum: {2881 _enum: {
2872 Xcm: 'XcmV1MultiLocation',2882 Xcm: 'XcmV1MultiLocation',
2873 Response: 'XcmV1MultiLocation'2883 Response: 'XcmV1MultiLocation'
2874 }2884 }
2875 },2885 },
2876 /**2886 /**
2877 * Lookup357: cumulus_pallet_xcm::pallet::Origin2887 * Lookup358: cumulus_pallet_xcm::pallet::Origin
2878 **/2888 **/
2879 CumulusPalletXcmOrigin: {2889 CumulusPalletXcmOrigin: {
2880 _enum: {2890 _enum: {
2881 Relay: 'Null',2891 Relay: 'Null',
2882 SiblingParachain: 'u32'2892 SiblingParachain: 'u32'
2883 }2893 }
2884 },2894 },
2885 /**2895 /**
2886 * Lookup358: pallet_ethereum::RawOrigin2896 * Lookup359: pallet_ethereum::RawOrigin
2887 **/2897 **/
2888 PalletEthereumRawOrigin: {2898 PalletEthereumRawOrigin: {
2889 _enum: {2899 _enum: {
2890 EthereumTransaction: 'H160'2900 EthereumTransaction: 'H160'
2891 }2901 }
2892 },2902 },
2893 /**2903 /**
2894 * Lookup359: sp_core::Void2904 * Lookup360: sp_core::Void
2895 **/2905 **/
2896 SpCoreVoid: 'Null',2906 SpCoreVoid: 'Null',
2897 /**2907 /**
2898 * Lookup360: pallet_unique_scheduler::pallet::Error<T>2908 * Lookup361: pallet_unique_scheduler::pallet::Error<T>
2899 **/2909 **/
2900 PalletUniqueSchedulerError: {2910 PalletUniqueSchedulerError: {
2901 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']2911 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
2902 },2912 },
2903 /**2913 /**
2904 * Lookup361: up_data_structs::Collection<sp_core::crypto::AccountId32>2914 * Lookup362: up_data_structs::Collection<sp_core::crypto::AccountId32>
2905 **/2915 **/
2906 UpDataStructsCollection: {2916 UpDataStructsCollection: {
2907 owner: 'AccountId32',2917 owner: 'AccountId32',
2908 mode: 'UpDataStructsCollectionMode',2918 mode: 'UpDataStructsCollectionMode',
2914 permissions: 'UpDataStructsCollectionPermissions',2924 permissions: 'UpDataStructsCollectionPermissions',
2915 externalCollection: 'bool'2925 externalCollection: 'bool'
2916 },2926 },
2917 /**2927 /**
2918 * Lookup362: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2928 * Lookup363: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
2919 **/2929 **/
2920 UpDataStructsSponsorshipStateAccountId32: {2930 UpDataStructsSponsorshipStateAccountId32: {
2921 _enum: {2931 _enum: {
2922 Disabled: 'Null',2932 Disabled: 'Null',
2923 Unconfirmed: 'AccountId32',2933 Unconfirmed: 'AccountId32',
2924 Confirmed: 'AccountId32'2934 Confirmed: 'AccountId32'
2925 }2935 }
2926 },2936 },
2927 /**2937 /**
2928 * Lookup363: up_data_structs::Properties2938 * Lookup364: up_data_structs::Properties
2929 **/2939 **/
2930 UpDataStructsProperties: {2940 UpDataStructsProperties: {
2931 map: 'UpDataStructsPropertiesMapBoundedVec',2941 map: 'UpDataStructsPropertiesMapBoundedVec',
2932 consumedSpace: 'u32',2942 consumedSpace: 'u32',
2933 spaceLimit: 'u32'2943 spaceLimit: 'u32'
2934 },2944 },
2935 /**2945 /**
2936 * Lookup364: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2946 * Lookup365: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2937 **/2947 **/
2938 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',2948 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
2939 /**2949 /**
2940 * Lookup369: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>2950 * Lookup370: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
2941 **/2951 **/
2942 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',2952 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
2943 /**2953 /**
2944 * Lookup376: up_data_structs::CollectionStats2954 * Lookup377: up_data_structs::CollectionStats
2945 **/2955 **/
2946 UpDataStructsCollectionStats: {2956 UpDataStructsCollectionStats: {
2947 created: 'u32',2957 created: 'u32',
2948 destroyed: 'u32',2958 destroyed: 'u32',
2949 alive: 'u32'2959 alive: 'u32'
2950 },2960 },
2951 /**2961 /**
2952 * Lookup377: up_data_structs::TokenChild2962 * Lookup378: up_data_structs::TokenChild
2953 **/2963 **/
2954 UpDataStructsTokenChild: {2964 UpDataStructsTokenChild: {
2955 token: 'u32',2965 token: 'u32',
2956 collection: 'u32'2966 collection: 'u32'
2957 },2967 },
2958 /**2968 /**
2959 * Lookup378: PhantomType::up_data_structs<T>2969 * Lookup379: PhantomType::up_data_structs<T>
2960 **/2970 **/
2961 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',2971 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
2962 /**2972 /**
2963 * Lookup380: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2973 * Lookup381: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2964 **/2974 **/
2965 UpDataStructsTokenData: {2975 UpDataStructsTokenData: {
2966 properties: 'Vec<UpDataStructsProperty>',2976 properties: 'Vec<UpDataStructsProperty>',
2967 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',2977 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
2968 pieces: 'u128'2978 pieces: 'u128'
2969 },2979 },
2970 /**2980 /**
2971 * Lookup382: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2981 * Lookup383: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
2972 **/2982 **/
2973 UpDataStructsRpcCollection: {2983 UpDataStructsRpcCollection: {
2974 owner: 'AccountId32',2984 owner: 'AccountId32',
2975 mode: 'UpDataStructsCollectionMode',2985 mode: 'UpDataStructsCollectionMode',
2983 properties: 'Vec<UpDataStructsProperty>',2993 properties: 'Vec<UpDataStructsProperty>',
2984 readOnly: 'bool'2994 readOnly: 'bool'
2985 },2995 },
2986 /**2996 /**
2987 * 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>2997 * 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>
2988 **/2998 **/
2989 RmrkTraitsCollectionCollectionInfo: {2999 RmrkTraitsCollectionCollectionInfo: {
2990 issuer: 'AccountId32',3000 issuer: 'AccountId32',
2991 metadata: 'Bytes',3001 metadata: 'Bytes',
2992 max: 'Option<u32>',3002 max: 'Option<u32>',
2993 symbol: 'Bytes',3003 symbol: 'Bytes',
2994 nftsCount: 'u32'3004 nftsCount: 'u32'
2995 },3005 },
2996 /**3006 /**
2997 * Lookup384: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3007 * Lookup385: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2998 **/3008 **/
2999 RmrkTraitsNftNftInfo: {3009 RmrkTraitsNftNftInfo: {
3000 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3010 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3001 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3011 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3002 metadata: 'Bytes',3012 metadata: 'Bytes',
3003 equipped: 'bool',3013 equipped: 'bool',
3004 pending: 'bool'3014 pending: 'bool'
3005 },3015 },
3006 /**3016 /**
3007 * Lookup386: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3017 * Lookup387: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3008 **/3018 **/
3009 RmrkTraitsNftRoyaltyInfo: {3019 RmrkTraitsNftRoyaltyInfo: {
3010 recipient: 'AccountId32',3020 recipient: 'AccountId32',
3011 amount: 'Permill'3021 amount: 'Permill'
3012 },3022 },
3013 /**3023 /**
3014 * Lookup387: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3024 * Lookup388: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3015 **/3025 **/
3016 RmrkTraitsResourceResourceInfo: {3026 RmrkTraitsResourceResourceInfo: {
3017 id: 'u32',3027 id: 'u32',
3018 resource: 'RmrkTraitsResourceResourceTypes',3028 resource: 'RmrkTraitsResourceResourceTypes',
3019 pending: 'bool',3029 pending: 'bool',
3020 pendingRemoval: 'bool'3030 pendingRemoval: 'bool'
3021 },3031 },
3022 /**3032 /**
3023 * Lookup388: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3033 * Lookup389: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3024 **/3034 **/
3025 RmrkTraitsPropertyPropertyInfo: {3035 RmrkTraitsPropertyPropertyInfo: {
3026 key: 'Bytes',3036 key: 'Bytes',
3027 value: 'Bytes'3037 value: 'Bytes'
3028 },3038 },
3029 /**3039 /**
3030 * Lookup389: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3040 * Lookup390: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3031 **/3041 **/
3032 RmrkTraitsBaseBaseInfo: {3042 RmrkTraitsBaseBaseInfo: {
3033 issuer: 'AccountId32',3043 issuer: 'AccountId32',
3034 baseType: 'Bytes',3044 baseType: 'Bytes',
3035 symbol: 'Bytes'3045 symbol: 'Bytes'
3036 },3046 },
3037 /**3047 /**
3038 * Lookup390: rmrk_traits::nft::NftChild3048 * Lookup391: rmrk_traits::nft::NftChild
3039 **/3049 **/
3040 RmrkTraitsNftNftChild: {3050 RmrkTraitsNftNftChild: {
3041 collectionId: 'u32',3051 collectionId: 'u32',
3042 nftId: 'u32'3052 nftId: 'u32'
3043 },3053 },
3044 /**3054 /**
3045 * Lookup392: pallet_common::pallet::Error<T>3055 * Lookup393: pallet_common::pallet::Error<T>
3046 **/3056 **/
3047 PalletCommonError: {3057 PalletCommonError: {
3048 _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']3058 _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']
3049 },3059 },
3050 /**3060 /**
3051 * Lookup394: pallet_fungible::pallet::Error<T>3061 * Lookup395: pallet_fungible::pallet::Error<T>
3052 **/3062 **/
3053 PalletFungibleError: {3063 PalletFungibleError: {
3054 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3064 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3055 },3065 },
3056 /**3066 /**
3057 * Lookup395: pallet_refungible::ItemData3067 * Lookup396: pallet_refungible::ItemData
3058 **/3068 **/
3059 PalletRefungibleItemData: {3069 PalletRefungibleItemData: {
3060 constData: 'Bytes'3070 constData: 'Bytes'
3061 },3071 },
3062 /**3072 /**
3063 * Lookup400: pallet_refungible::pallet::Error<T>3073 * Lookup401: pallet_refungible::pallet::Error<T>
3064 **/3074 **/
3065 PalletRefungibleError: {3075 PalletRefungibleError: {
3066 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3076 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3067 },3077 },
3068 /**3078 /**
3069 * Lookup401: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3079 * Lookup402: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3070 **/3080 **/
3071 PalletNonfungibleItemData: {3081 PalletNonfungibleItemData: {
3072 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3082 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3073 },3083 },
3074 /**3084 /**
3075 * Lookup403: up_data_structs::PropertyScope3085 * Lookup404: up_data_structs::PropertyScope
3076 **/3086 **/
3077 UpDataStructsPropertyScope: {3087 UpDataStructsPropertyScope: {
3078 _enum: ['None', 'Rmrk']3088 _enum: ['None', 'Rmrk']
3079 },3089 },
3080 /**3090 /**
3081 * Lookup405: pallet_nonfungible::pallet::Error<T>3091 * Lookup406: pallet_nonfungible::pallet::Error<T>
3082 **/3092 **/
3083 PalletNonfungibleError: {3093 PalletNonfungibleError: {
3084 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3094 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3085 },3095 },
3086 /**3096 /**
3087 * Lookup406: pallet_structure::pallet::Error<T>3097 * Lookup407: pallet_structure::pallet::Error<T>
3088 **/3098 **/
3089 PalletStructureError: {3099 PalletStructureError: {
3090 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3100 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3091 },3101 },
3092 /**3102 /**
3093 * Lookup407: pallet_rmrk_core::pallet::Error<T>3103 * Lookup408: pallet_rmrk_core::pallet::Error<T>
3094 **/3104 **/
3095 PalletRmrkCoreError: {3105 PalletRmrkCoreError: {
3096 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3106 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3097 },3107 },
3098 /**3108 /**
3099 * Lookup409: pallet_rmrk_equip::pallet::Error<T>3109 * Lookup410: pallet_rmrk_equip::pallet::Error<T>
3100 **/3110 **/
3101 PalletRmrkEquipError: {3111 PalletRmrkEquipError: {
3102 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3112 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3103 },3113 },
3104 /**3114 /**
3105 * Lookup415: pallet_app_promotion::pallet::Error<T>3115 * Lookup416: pallet_app_promotion::pallet::Error<T>
3106 **/3116 **/
3107 PalletAppPromotionError: {3117 PalletAppPromotionError: {
3108 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'InvalidArgument']3118 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'InvalidArgument']
3109 },3119 },
3110 /**3120 /**
3111 * Lookup418: pallet_evm::pallet::Error<T>3121 * Lookup419: pallet_evm::pallet::Error<T>
3112 **/3122 **/
3113 PalletEvmError: {3123 PalletEvmError: {
3114 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3124 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
3115 },3125 },
3116 /**3126 /**
3117 * Lookup421: fp_rpc::TransactionStatus3127 * Lookup422: fp_rpc::TransactionStatus
3118 **/3128 **/
3119 FpRpcTransactionStatus: {3129 FpRpcTransactionStatus: {
3120 transactionHash: 'H256',3130 transactionHash: 'H256',
3121 transactionIndex: 'u32',3131 transactionIndex: 'u32',
3125 logs: 'Vec<EthereumLog>',3135 logs: 'Vec<EthereumLog>',
3126 logsBloom: 'EthbloomBloom'3136 logsBloom: 'EthbloomBloom'
3127 },3137 },
3128 /**3138 /**
3129 * Lookup423: ethbloom::Bloom3139 * Lookup424: ethbloom::Bloom
3130 **/3140 **/
3131 EthbloomBloom: '[u8;256]',3141 EthbloomBloom: '[u8;256]',
3132 /**3142 /**
3133 * Lookup425: ethereum::receipt::ReceiptV33143 * Lookup426: ethereum::receipt::ReceiptV3
3134 **/3144 **/
3135 EthereumReceiptReceiptV3: {3145 EthereumReceiptReceiptV3: {
3136 _enum: {3146 _enum: {
3137 Legacy: 'EthereumReceiptEip658ReceiptData',3147 Legacy: 'EthereumReceiptEip658ReceiptData',
3138 EIP2930: 'EthereumReceiptEip658ReceiptData',3148 EIP2930: 'EthereumReceiptEip658ReceiptData',
3139 EIP1559: 'EthereumReceiptEip658ReceiptData'3149 EIP1559: 'EthereumReceiptEip658ReceiptData'
3140 }3150 }
3141 },3151 },
3142 /**3152 /**
3143 * Lookup426: ethereum::receipt::EIP658ReceiptData3153 * Lookup427: ethereum::receipt::EIP658ReceiptData
3144 **/3154 **/
3145 EthereumReceiptEip658ReceiptData: {3155 EthereumReceiptEip658ReceiptData: {
3146 statusCode: 'u8',3156 statusCode: 'u8',
3147 usedGas: 'U256',3157 usedGas: 'U256',
3148 logsBloom: 'EthbloomBloom',3158 logsBloom: 'EthbloomBloom',
3149 logs: 'Vec<EthereumLog>'3159 logs: 'Vec<EthereumLog>'
3150 },3160 },
3151 /**3161 /**
3152 * Lookup427: ethereum::block::Block<ethereum::transaction::TransactionV2>3162 * Lookup428: ethereum::block::Block<ethereum::transaction::TransactionV2>
3153 **/3163 **/
3154 EthereumBlock: {3164 EthereumBlock: {
3155 header: 'EthereumHeader',3165 header: 'EthereumHeader',
3156 transactions: 'Vec<EthereumTransactionTransactionV2>',3166 transactions: 'Vec<EthereumTransactionTransactionV2>',
3157 ommers: 'Vec<EthereumHeader>'3167 ommers: 'Vec<EthereumHeader>'
3158 },3168 },
3159 /**3169 /**
3160 * Lookup428: ethereum::header::Header3170 * Lookup429: ethereum::header::Header
3161 **/3171 **/
3162 EthereumHeader: {3172 EthereumHeader: {
3163 parentHash: 'H256',3173 parentHash: 'H256',
3164 ommersHash: 'H256',3174 ommersHash: 'H256',
3176 mixHash: 'H256',3186 mixHash: 'H256',
3177 nonce: 'EthereumTypesHashH64'3187 nonce: 'EthereumTypesHashH64'
3178 },3188 },
3179 /**3189 /**
3180 * Lookup429: ethereum_types::hash::H643190 * Lookup430: ethereum_types::hash::H64
3181 **/3191 **/
3182 EthereumTypesHashH64: '[u8;8]',3192 EthereumTypesHashH64: '[u8;8]',
3183 /**3193 /**
3184 * Lookup434: pallet_ethereum::pallet::Error<T>3194 * Lookup435: pallet_ethereum::pallet::Error<T>
3185 **/3195 **/
3186 PalletEthereumError: {3196 PalletEthereumError: {
3187 _enum: ['InvalidSignature', 'PreLogExists']3197 _enum: ['InvalidSignature', 'PreLogExists']
3188 },3198 },
3189 /**3199 /**
3190 * Lookup435: pallet_evm_coder_substrate::pallet::Error<T>3200 * Lookup436: pallet_evm_coder_substrate::pallet::Error<T>
3191 **/3201 **/
3192 PalletEvmCoderSubstrateError: {3202 PalletEvmCoderSubstrateError: {
3193 _enum: ['OutOfGas', 'OutOfFund']3203 _enum: ['OutOfGas', 'OutOfFund']
3194 },3204 },
3195 /**3205 /**
3196 * Lookup436: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3206 * Lookup437: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3197 **/3207 **/
3198 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3208 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3199 _enum: {3209 _enum: {
3200 Disabled: 'Null',3210 Disabled: 'Null',
3201 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3211 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3202 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3212 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3203 }3213 }
3204 },3214 },
3205 /**3215 /**
3206 * Lookup437: pallet_evm_contract_helpers::SponsoringModeT3216 * Lookup438: pallet_evm_contract_helpers::SponsoringModeT
3207 **/3217 **/
3208 PalletEvmContractHelpersSponsoringModeT: {3218 PalletEvmContractHelpersSponsoringModeT: {
3209 _enum: ['Disabled', 'Allowlisted', 'Generous']3219 _enum: ['Disabled', 'Allowlisted', 'Generous']
3210 },3220 },
3211 /**3221 /**
3212 * Lookup439: pallet_evm_contract_helpers::pallet::Error<T>3222 * Lookup440: pallet_evm_contract_helpers::pallet::Error<T>
3213 **/3223 **/
3214 PalletEvmContractHelpersError: {3224 PalletEvmContractHelpersError: {
3215 _enum: ['NoPermission', 'NoPendingSponsor']3225 _enum: ['NoPermission', 'NoPendingSponsor']
3216 },3226 },
3217 /**3227 /**
3218 * Lookup440: pallet_evm_migration::pallet::Error<T>3228 * Lookup441: pallet_evm_migration::pallet::Error<T>
3219 **/3229 **/
3220 PalletEvmMigrationError: {3230 PalletEvmMigrationError: {
3221 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3231 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
3222 },3232 },
3223 /**3233 /**
3224 * Lookup442: sp_runtime::MultiSignature3234 * Lookup443: sp_runtime::MultiSignature
3225 **/3235 **/
3226 SpRuntimeMultiSignature: {3236 SpRuntimeMultiSignature: {
3227 _enum: {3237 _enum: {
3228 Ed25519: 'SpCoreEd25519Signature',3238 Ed25519: 'SpCoreEd25519Signature',
3229 Sr25519: 'SpCoreSr25519Signature',3239 Sr25519: 'SpCoreSr25519Signature',
3230 Ecdsa: 'SpCoreEcdsaSignature'3240 Ecdsa: 'SpCoreEcdsaSignature'
3231 }3241 }
3232 },3242 },
3233 /**3243 /**
3234 * Lookup443: sp_core::ed25519::Signature3244 * Lookup444: sp_core::ed25519::Signature
3235 **/3245 **/
3236 SpCoreEd25519Signature: '[u8;64]',3246 SpCoreEd25519Signature: '[u8;64]',
3237 /**3247 /**
3238 * Lookup445: sp_core::sr25519::Signature3248 * Lookup446: sp_core::sr25519::Signature
3239 **/3249 **/
3240 SpCoreSr25519Signature: '[u8;64]',3250 SpCoreSr25519Signature: '[u8;64]',
3241 /**3251 /**
3242 * Lookup446: sp_core::ecdsa::Signature3252 * Lookup447: sp_core::ecdsa::Signature
3243 **/3253 **/
3244 SpCoreEcdsaSignature: '[u8;65]',3254 SpCoreEcdsaSignature: '[u8;65]',
3245 /**3255 /**
3246 * Lookup449: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3256 * Lookup450: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3247 **/3257 **/
3248 FrameSystemExtensionsCheckSpecVersion: 'Null',3258 FrameSystemExtensionsCheckSpecVersion: 'Null',
3249 /**3259 /**
3250 * Lookup450: frame_system::extensions::check_genesis::CheckGenesis<T>3260 * Lookup451: frame_system::extensions::check_genesis::CheckGenesis<T>
3251 **/3261 **/
3252 FrameSystemExtensionsCheckGenesis: 'Null',3262 FrameSystemExtensionsCheckGenesis: 'Null',
3253 /**3263 /**
3254 * Lookup453: frame_system::extensions::check_nonce::CheckNonce<T>3264 * Lookup454: frame_system::extensions::check_nonce::CheckNonce<T>
3255 **/3265 **/
3256 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3266 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3257 /**3267 /**
3258 * Lookup454: frame_system::extensions::check_weight::CheckWeight<T>3268 * Lookup455: frame_system::extensions::check_weight::CheckWeight<T>
3259 **/3269 **/
3260 FrameSystemExtensionsCheckWeight: 'Null',3270 FrameSystemExtensionsCheckWeight: 'Null',
3261 /**3271 /**
3262 * Lookup455: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3272 * Lookup456: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3263 **/3273 **/
3264 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3274 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3265 /**3275 /**
3266 * Lookup456: opal_runtime::Runtime3276 * Lookup457: opal_runtime::Runtime
3267 **/3277 **/
3268 OpalRuntimeRuntime: 'Null',3278 OpalRuntimeRuntime: 'Null',
3269 /**3279 /**
3270 * Lookup457: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3280 * Lookup458: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3271 **/3281 **/
3272 PalletEthereumFakeTransactionFinalizer: 'Null'3282 PalletEthereumFakeTransactionFinalizer: 'Null'
3273};3283};
32743284
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import 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';8import 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';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
106 PalletEvmCall: PalletEvmCall;106 PalletEvmCall: PalletEvmCall;
107 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;107 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
108 PalletEvmContractHelpersError: PalletEvmContractHelpersError;108 PalletEvmContractHelpersError: PalletEvmContractHelpersError;
109 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
109 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;110 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
110 PalletEvmError: PalletEvmError;111 PalletEvmError: PalletEvmError;
111 PalletEvmEvent: PalletEvmEvent;112 PalletEvmEvent: PalletEvmEvent;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1303 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1303 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1304 }1304 }
1305
1306 /** @name PalletEvmContractHelpersEvent (117) */
1307 interface PalletEvmContractHelpersEvent extends Enum {
1308 readonly isContractSponsorSet: boolean;
1309 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1310 readonly isContractSponsorshipConfirmed: boolean;
1311 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;
1312 readonly isContractSponsorRemoved: boolean;
1313 readonly asContractSponsorRemoved: H160;
1314 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1315 }
13051316
1306 /** @name FrameSystemPhase (117) */1317 /** @name FrameSystemPhase (118) */
1307 interface FrameSystemPhase extends Enum {1318 interface FrameSystemPhase extends Enum {
1308 readonly isApplyExtrinsic: boolean;1319 readonly isApplyExtrinsic: boolean;
1309 readonly asApplyExtrinsic: u32;1320 readonly asApplyExtrinsic: u32;
1312 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1323 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1313 }1324 }
13141325
1315 /** @name FrameSystemLastRuntimeUpgradeInfo (119) */1326 /** @name FrameSystemLastRuntimeUpgradeInfo (120) */
1316 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1327 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1317 readonly specVersion: Compact<u32>;1328 readonly specVersion: Compact<u32>;
1318 readonly specName: Text;1329 readonly specName: Text;
1319 }1330 }
13201331
1321 /** @name FrameSystemCall (120) */1332 /** @name FrameSystemCall (121) */
1322 interface FrameSystemCall extends Enum {1333 interface FrameSystemCall extends Enum {
1323 readonly isFillBlock: boolean;1334 readonly isFillBlock: boolean;
1324 readonly asFillBlock: {1335 readonly asFillBlock: {
1360 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1371 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1361 }1372 }
13621373
1363 /** @name FrameSystemLimitsBlockWeights (125) */1374 /** @name FrameSystemLimitsBlockWeights (126) */
1364 interface FrameSystemLimitsBlockWeights extends Struct {1375 interface FrameSystemLimitsBlockWeights extends Struct {
1365 readonly baseBlock: u64;1376 readonly baseBlock: u64;
1366 readonly maxBlock: u64;1377 readonly maxBlock: u64;
1367 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1378 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
1368 }1379 }
13691380
1370 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (126) */1381 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (127) */
1371 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1382 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
1372 readonly normal: FrameSystemLimitsWeightsPerClass;1383 readonly normal: FrameSystemLimitsWeightsPerClass;
1373 readonly operational: FrameSystemLimitsWeightsPerClass;1384 readonly operational: FrameSystemLimitsWeightsPerClass;
1374 readonly mandatory: FrameSystemLimitsWeightsPerClass;1385 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1375 }1386 }
13761387
1377 /** @name FrameSystemLimitsWeightsPerClass (127) */1388 /** @name FrameSystemLimitsWeightsPerClass (128) */
1378 interface FrameSystemLimitsWeightsPerClass extends Struct {1389 interface FrameSystemLimitsWeightsPerClass extends Struct {
1379 readonly baseExtrinsic: u64;1390 readonly baseExtrinsic: u64;
1380 readonly maxExtrinsic: Option<u64>;1391 readonly maxExtrinsic: Option<u64>;
1381 readonly maxTotal: Option<u64>;1392 readonly maxTotal: Option<u64>;
1382 readonly reserved: Option<u64>;1393 readonly reserved: Option<u64>;
1383 }1394 }
13841395
1385 /** @name FrameSystemLimitsBlockLength (129) */1396 /** @name FrameSystemLimitsBlockLength (130) */
1386 interface FrameSystemLimitsBlockLength extends Struct {1397 interface FrameSystemLimitsBlockLength extends Struct {
1387 readonly max: FrameSupportWeightsPerDispatchClassU32;1398 readonly max: FrameSupportWeightsPerDispatchClassU32;
1388 }1399 }
13891400
1390 /** @name FrameSupportWeightsPerDispatchClassU32 (130) */1401 /** @name FrameSupportWeightsPerDispatchClassU32 (131) */
1391 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1402 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
1392 readonly normal: u32;1403 readonly normal: u32;
1393 readonly operational: u32;1404 readonly operational: u32;
1394 readonly mandatory: u32;1405 readonly mandatory: u32;
1395 }1406 }
13961407
1397 /** @name FrameSupportWeightsRuntimeDbWeight (131) */1408 /** @name FrameSupportWeightsRuntimeDbWeight (132) */
1398 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1409 interface FrameSupportWeightsRuntimeDbWeight extends Struct {
1399 readonly read: u64;1410 readonly read: u64;
1400 readonly write: u64;1411 readonly write: u64;
1401 }1412 }
14021413
1403 /** @name SpVersionRuntimeVersion (132) */1414 /** @name SpVersionRuntimeVersion (133) */
1404 interface SpVersionRuntimeVersion extends Struct {1415 interface SpVersionRuntimeVersion extends Struct {
1405 readonly specName: Text;1416 readonly specName: Text;
1406 readonly implName: Text;1417 readonly implName: Text;
1412 readonly stateVersion: u8;1423 readonly stateVersion: u8;
1413 }1424 }
14141425
1415 /** @name FrameSystemError (137) */1426 /** @name FrameSystemError (138) */
1416 interface FrameSystemError extends Enum {1427 interface FrameSystemError extends Enum {
1417 readonly isInvalidSpecName: boolean;1428 readonly isInvalidSpecName: boolean;
1418 readonly isSpecVersionNeedsToIncrease: boolean;1429 readonly isSpecVersionNeedsToIncrease: boolean;
1423 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1434 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1424 }1435 }
14251436
1426 /** @name PolkadotPrimitivesV2PersistedValidationData (138) */1437 /** @name PolkadotPrimitivesV2PersistedValidationData (139) */
1427 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1438 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1428 readonly parentHead: Bytes;1439 readonly parentHead: Bytes;
1429 readonly relayParentNumber: u32;1440 readonly relayParentNumber: u32;
1430 readonly relayParentStorageRoot: H256;1441 readonly relayParentStorageRoot: H256;
1431 readonly maxPovSize: u32;1442 readonly maxPovSize: u32;
1432 }1443 }
14331444
1434 /** @name PolkadotPrimitivesV2UpgradeRestriction (141) */1445 /** @name PolkadotPrimitivesV2UpgradeRestriction (142) */
1435 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1446 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1436 readonly isPresent: boolean;1447 readonly isPresent: boolean;
1437 readonly type: 'Present';1448 readonly type: 'Present';
1438 }1449 }
14391450
1440 /** @name SpTrieStorageProof (142) */1451 /** @name SpTrieStorageProof (143) */
1441 interface SpTrieStorageProof extends Struct {1452 interface SpTrieStorageProof extends Struct {
1442 readonly trieNodes: BTreeSet<Bytes>;1453 readonly trieNodes: BTreeSet<Bytes>;
1443 }1454 }
14441455
1445 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (144) */1456 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (145) */
1446 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1457 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1447 readonly dmqMqcHead: H256;1458 readonly dmqMqcHead: H256;
1448 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1459 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1449 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1460 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1450 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1461 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1451 }1462 }
14521463
1453 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (147) */1464 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (148) */
1454 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1465 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1455 readonly maxCapacity: u32;1466 readonly maxCapacity: u32;
1456 readonly maxTotalSize: u32;1467 readonly maxTotalSize: u32;
1460 readonly mqcHead: Option<H256>;1471 readonly mqcHead: Option<H256>;
1461 }1472 }
14621473
1463 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (148) */1474 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (149) */
1464 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1475 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1465 readonly maxCodeSize: u32;1476 readonly maxCodeSize: u32;
1466 readonly maxHeadDataSize: u32;1477 readonly maxHeadDataSize: u32;
1473 readonly validationUpgradeDelay: u32;1484 readonly validationUpgradeDelay: u32;
1474 }1485 }
14751486
1476 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (154) */1487 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (155) */
1477 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1488 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1478 readonly recipient: u32;1489 readonly recipient: u32;
1479 readonly data: Bytes;1490 readonly data: Bytes;
1480 }1491 }
14811492
1482 /** @name CumulusPalletParachainSystemCall (155) */1493 /** @name CumulusPalletParachainSystemCall (156) */
1483 interface CumulusPalletParachainSystemCall extends Enum {1494 interface CumulusPalletParachainSystemCall extends Enum {
1484 readonly isSetValidationData: boolean;1495 readonly isSetValidationData: boolean;
1485 readonly asSetValidationData: {1496 readonly asSetValidationData: {
1500 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1511 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1501 }1512 }
15021513
1503 /** @name CumulusPrimitivesParachainInherentParachainInherentData (156) */1514 /** @name CumulusPrimitivesParachainInherentParachainInherentData (157) */
1504 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1515 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1505 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1516 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1506 readonly relayChainState: SpTrieStorageProof;1517 readonly relayChainState: SpTrieStorageProof;
1507 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1518 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1508 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1519 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1509 }1520 }
15101521
1511 /** @name PolkadotCorePrimitivesInboundDownwardMessage (158) */1522 /** @name PolkadotCorePrimitivesInboundDownwardMessage (159) */
1512 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1523 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1513 readonly sentAt: u32;1524 readonly sentAt: u32;
1514 readonly msg: Bytes;1525 readonly msg: Bytes;
1515 }1526 }
15161527
1517 /** @name PolkadotCorePrimitivesInboundHrmpMessage (161) */1528 /** @name PolkadotCorePrimitivesInboundHrmpMessage (162) */
1518 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1529 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1519 readonly sentAt: u32;1530 readonly sentAt: u32;
1520 readonly data: Bytes;1531 readonly data: Bytes;
1521 }1532 }
15221533
1523 /** @name CumulusPalletParachainSystemError (164) */1534 /** @name CumulusPalletParachainSystemError (165) */
1524 interface CumulusPalletParachainSystemError extends Enum {1535 interface CumulusPalletParachainSystemError extends Enum {
1525 readonly isOverlappingUpgrades: boolean;1536 readonly isOverlappingUpgrades: boolean;
1526 readonly isProhibitedByPolkadot: boolean;1537 readonly isProhibitedByPolkadot: boolean;
1533 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1544 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1534 }1545 }
15351546
1536 /** @name PalletBalancesBalanceLock (166) */1547 /** @name PalletBalancesBalanceLock (167) */
1537 interface PalletBalancesBalanceLock extends Struct {1548 interface PalletBalancesBalanceLock extends Struct {
1538 readonly id: U8aFixed;1549 readonly id: U8aFixed;
1539 readonly amount: u128;1550 readonly amount: u128;
1540 readonly reasons: PalletBalancesReasons;1551 readonly reasons: PalletBalancesReasons;
1541 }1552 }
15421553
1543 /** @name PalletBalancesReasons (167) */1554 /** @name PalletBalancesReasons (168) */
1544 interface PalletBalancesReasons extends Enum {1555 interface PalletBalancesReasons extends Enum {
1545 readonly isFee: boolean;1556 readonly isFee: boolean;
1546 readonly isMisc: boolean;1557 readonly isMisc: boolean;
1547 readonly isAll: boolean;1558 readonly isAll: boolean;
1548 readonly type: 'Fee' | 'Misc' | 'All';1559 readonly type: 'Fee' | 'Misc' | 'All';
1549 }1560 }
15501561
1551 /** @name PalletBalancesReserveData (170) */1562 /** @name PalletBalancesReserveData (171) */
1552 interface PalletBalancesReserveData extends Struct {1563 interface PalletBalancesReserveData extends Struct {
1553 readonly id: U8aFixed;1564 readonly id: U8aFixed;
1554 readonly amount: u128;1565 readonly amount: u128;
1555 }1566 }
15561567
1557 /** @name PalletBalancesReleases (172) */1568 /** @name PalletBalancesReleases (173) */
1558 interface PalletBalancesReleases extends Enum {1569 interface PalletBalancesReleases extends Enum {
1559 readonly isV100: boolean;1570 readonly isV100: boolean;
1560 readonly isV200: boolean;1571 readonly isV200: boolean;
1561 readonly type: 'V100' | 'V200';1572 readonly type: 'V100' | 'V200';
1562 }1573 }
15631574
1564 /** @name PalletBalancesCall (173) */1575 /** @name PalletBalancesCall (174) */
1565 interface PalletBalancesCall extends Enum {1576 interface PalletBalancesCall extends Enum {
1566 readonly isTransfer: boolean;1577 readonly isTransfer: boolean;
1567 readonly asTransfer: {1578 readonly asTransfer: {
1598 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1609 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
1599 }1610 }
16001611
1601 /** @name PalletBalancesError (176) */1612 /** @name PalletBalancesError (177) */
1602 interface PalletBalancesError extends Enum {1613 interface PalletBalancesError extends Enum {
1603 readonly isVestingBalance: boolean;1614 readonly isVestingBalance: boolean;
1604 readonly isLiquidityRestrictions: boolean;1615 readonly isLiquidityRestrictions: boolean;
1611 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1622 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
1612 }1623 }
16131624
1614 /** @name PalletTimestampCall (178) */1625 /** @name PalletTimestampCall (179) */
1615 interface PalletTimestampCall extends Enum {1626 interface PalletTimestampCall extends Enum {
1616 readonly isSet: boolean;1627 readonly isSet: boolean;
1617 readonly asSet: {1628 readonly asSet: {
1620 readonly type: 'Set';1631 readonly type: 'Set';
1621 }1632 }
16221633
1623 /** @name PalletTransactionPaymentReleases (180) */1634 /** @name PalletTransactionPaymentReleases (181) */
1624 interface PalletTransactionPaymentReleases extends Enum {1635 interface PalletTransactionPaymentReleases extends Enum {
1625 readonly isV1Ancient: boolean;1636 readonly isV1Ancient: boolean;
1626 readonly isV2: boolean;1637 readonly isV2: boolean;
1627 readonly type: 'V1Ancient' | 'V2';1638 readonly type: 'V1Ancient' | 'V2';
1628 }1639 }
16291640
1630 /** @name PalletTreasuryProposal (181) */1641 /** @name PalletTreasuryProposal (182) */
1631 interface PalletTreasuryProposal extends Struct {1642 interface PalletTreasuryProposal extends Struct {
1632 readonly proposer: AccountId32;1643 readonly proposer: AccountId32;
1633 readonly value: u128;1644 readonly value: u128;
1634 readonly beneficiary: AccountId32;1645 readonly beneficiary: AccountId32;
1635 readonly bond: u128;1646 readonly bond: u128;
1636 }1647 }
16371648
1638 /** @name PalletTreasuryCall (184) */1649 /** @name PalletTreasuryCall (185) */
1639 interface PalletTreasuryCall extends Enum {1650 interface PalletTreasuryCall extends Enum {
1640 readonly isProposeSpend: boolean;1651 readonly isProposeSpend: boolean;
1641 readonly asProposeSpend: {1652 readonly asProposeSpend: {
1662 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1673 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
1663 }1674 }
16641675
1665 /** @name FrameSupportPalletId (187) */1676 /** @name FrameSupportPalletId (188) */
1666 interface FrameSupportPalletId extends U8aFixed {}1677 interface FrameSupportPalletId extends U8aFixed {}
16671678
1668 /** @name PalletTreasuryError (188) */1679 /** @name PalletTreasuryError (189) */
1669 interface PalletTreasuryError extends Enum {1680 interface PalletTreasuryError extends Enum {
1670 readonly isInsufficientProposersBalance: boolean;1681 readonly isInsufficientProposersBalance: boolean;
1671 readonly isInvalidIndex: boolean;1682 readonly isInvalidIndex: boolean;
1675 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1686 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
1676 }1687 }
16771688
1678 /** @name PalletSudoCall (189) */1689 /** @name PalletSudoCall (190) */
1679 interface PalletSudoCall extends Enum {1690 interface PalletSudoCall extends Enum {
1680 readonly isSudo: boolean;1691 readonly isSudo: boolean;
1681 readonly asSudo: {1692 readonly asSudo: {
1698 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1709 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
1699 }1710 }
17001711
1701 /** @name OrmlVestingModuleCall (191) */1712 /** @name OrmlVestingModuleCall (192) */
1702 interface OrmlVestingModuleCall extends Enum {1713 interface OrmlVestingModuleCall extends Enum {
1703 readonly isClaim: boolean;1714 readonly isClaim: boolean;
1704 readonly isVestedTransfer: boolean;1715 readonly isVestedTransfer: boolean;
1718 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1729 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
1719 }1730 }
17201731
1721 /** @name CumulusPalletXcmpQueueCall (193) */1732 /** @name CumulusPalletXcmpQueueCall (194) */
1722 interface CumulusPalletXcmpQueueCall extends Enum {1733 interface CumulusPalletXcmpQueueCall extends Enum {
1723 readonly isServiceOverweight: boolean;1734 readonly isServiceOverweight: boolean;
1724 readonly asServiceOverweight: {1735 readonly asServiceOverweight: {
1754 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';1765 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
1755 }1766 }
17561767
1757 /** @name PalletXcmCall (194) */1768 /** @name PalletXcmCall (195) */
1758 interface PalletXcmCall extends Enum {1769 interface PalletXcmCall extends Enum {
1759 readonly isSend: boolean;1770 readonly isSend: boolean;
1760 readonly asSend: {1771 readonly asSend: {
1816 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1827 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
1817 }1828 }
18181829
1819 /** @name XcmVersionedXcm (195) */1830 /** @name XcmVersionedXcm (196) */
1820 interface XcmVersionedXcm extends Enum {1831 interface XcmVersionedXcm extends Enum {
1821 readonly isV0: boolean;1832 readonly isV0: boolean;
1822 readonly asV0: XcmV0Xcm;1833 readonly asV0: XcmV0Xcm;
1827 readonly type: 'V0' | 'V1' | 'V2';1838 readonly type: 'V0' | 'V1' | 'V2';
1828 }1839 }
18291840
1830 /** @name XcmV0Xcm (196) */1841 /** @name XcmV0Xcm (197) */
1831 interface XcmV0Xcm extends Enum {1842 interface XcmV0Xcm extends Enum {
1832 readonly isWithdrawAsset: boolean;1843 readonly isWithdrawAsset: boolean;
1833 readonly asWithdrawAsset: {1844 readonly asWithdrawAsset: {
1890 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';1901 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
1891 }1902 }
18921903
1893 /** @name XcmV0Order (198) */1904 /** @name XcmV0Order (199) */
1894 interface XcmV0Order extends Enum {1905 interface XcmV0Order extends Enum {
1895 readonly isNull: boolean;1906 readonly isNull: boolean;
1896 readonly isDepositAsset: boolean;1907 readonly isDepositAsset: boolean;
1938 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1949 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
1939 }1950 }
19401951
1941 /** @name XcmV0Response (200) */1952 /** @name XcmV0Response (201) */
1942 interface XcmV0Response extends Enum {1953 interface XcmV0Response extends Enum {
1943 readonly isAssets: boolean;1954 readonly isAssets: boolean;
1944 readonly asAssets: Vec<XcmV0MultiAsset>;1955 readonly asAssets: Vec<XcmV0MultiAsset>;
1945 readonly type: 'Assets';1956 readonly type: 'Assets';
1946 }1957 }
19471958
1948 /** @name XcmV1Xcm (201) */1959 /** @name XcmV1Xcm (202) */
1949 interface XcmV1Xcm extends Enum {1960 interface XcmV1Xcm extends Enum {
1950 readonly isWithdrawAsset: boolean;1961 readonly isWithdrawAsset: boolean;
1951 readonly asWithdrawAsset: {1962 readonly asWithdrawAsset: {
2014 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2025 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
2015 }2026 }
20162027
2017 /** @name XcmV1Order (203) */2028 /** @name XcmV1Order (204) */
2018 interface XcmV1Order extends Enum {2029 interface XcmV1Order extends Enum {
2019 readonly isNoop: boolean;2030 readonly isNoop: boolean;
2020 readonly isDepositAsset: boolean;2031 readonly isDepositAsset: boolean;
2064 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2075 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2065 }2076 }
20662077
2067 /** @name XcmV1Response (205) */2078 /** @name XcmV1Response (206) */
2068 interface XcmV1Response extends Enum {2079 interface XcmV1Response extends Enum {
2069 readonly isAssets: boolean;2080 readonly isAssets: boolean;
2070 readonly asAssets: XcmV1MultiassetMultiAssets;2081 readonly asAssets: XcmV1MultiassetMultiAssets;
2073 readonly type: 'Assets' | 'Version';2084 readonly type: 'Assets' | 'Version';
2074 }2085 }
20752086
2076 /** @name CumulusPalletXcmCall (219) */2087 /** @name CumulusPalletXcmCall (220) */
2077 type CumulusPalletXcmCall = Null;2088 type CumulusPalletXcmCall = Null;
20782089
2079 /** @name CumulusPalletDmpQueueCall (220) */2090 /** @name CumulusPalletDmpQueueCall (221) */
2080 interface CumulusPalletDmpQueueCall extends Enum {2091 interface CumulusPalletDmpQueueCall extends Enum {
2081 readonly isServiceOverweight: boolean;2092 readonly isServiceOverweight: boolean;
2082 readonly asServiceOverweight: {2093 readonly asServiceOverweight: {
2086 readonly type: 'ServiceOverweight';2097 readonly type: 'ServiceOverweight';
2087 }2098 }
20882099
2089 /** @name PalletInflationCall (221) */2100 /** @name PalletInflationCall (222) */
2090 interface PalletInflationCall extends Enum {2101 interface PalletInflationCall extends Enum {
2091 readonly isStartInflation: boolean;2102 readonly isStartInflation: boolean;
2092 readonly asStartInflation: {2103 readonly asStartInflation: {
2095 readonly type: 'StartInflation';2106 readonly type: 'StartInflation';
2096 }2107 }
20972108
2098 /** @name PalletUniqueCall (222) */2109 /** @name PalletUniqueCall (223) */
2099 interface PalletUniqueCall extends Enum {2110 interface PalletUniqueCall extends Enum {
2100 readonly isCreateCollection: boolean;2111 readonly isCreateCollection: boolean;
2101 readonly asCreateCollection: {2112 readonly asCreateCollection: {
2253 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2264 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';
2254 }2265 }
22552266
2256 /** @name UpDataStructsCollectionMode (227) */2267 /** @name UpDataStructsCollectionMode (228) */
2257 interface UpDataStructsCollectionMode extends Enum {2268 interface UpDataStructsCollectionMode extends Enum {
2258 readonly isNft: boolean;2269 readonly isNft: boolean;
2259 readonly isFungible: boolean;2270 readonly isFungible: boolean;
2262 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2273 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2263 }2274 }
22642275
2265 /** @name UpDataStructsCreateCollectionData (228) */2276 /** @name UpDataStructsCreateCollectionData (229) */
2266 interface UpDataStructsCreateCollectionData extends Struct {2277 interface UpDataStructsCreateCollectionData extends Struct {
2267 readonly mode: UpDataStructsCollectionMode;2278 readonly mode: UpDataStructsCollectionMode;
2268 readonly access: Option<UpDataStructsAccessMode>;2279 readonly access: Option<UpDataStructsAccessMode>;
2276 readonly properties: Vec<UpDataStructsProperty>;2287 readonly properties: Vec<UpDataStructsProperty>;
2277 }2288 }
22782289
2279 /** @name UpDataStructsAccessMode (230) */2290 /** @name UpDataStructsAccessMode (231) */
2280 interface UpDataStructsAccessMode extends Enum {2291 interface UpDataStructsAccessMode extends Enum {
2281 readonly isNormal: boolean;2292 readonly isNormal: boolean;
2282 readonly isAllowList: boolean;2293 readonly isAllowList: boolean;
2283 readonly type: 'Normal' | 'AllowList';2294 readonly type: 'Normal' | 'AllowList';
2284 }2295 }
22852296
2286 /** @name UpDataStructsCollectionLimits (232) */2297 /** @name UpDataStructsCollectionLimits (233) */
2287 interface UpDataStructsCollectionLimits extends Struct {2298 interface UpDataStructsCollectionLimits extends Struct {
2288 readonly accountTokenOwnershipLimit: Option<u32>;2299 readonly accountTokenOwnershipLimit: Option<u32>;
2289 readonly sponsoredDataSize: Option<u32>;2300 readonly sponsoredDataSize: Option<u32>;
2296 readonly transfersEnabled: Option<bool>;2307 readonly transfersEnabled: Option<bool>;
2297 }2308 }
22982309
2299 /** @name UpDataStructsSponsoringRateLimit (234) */2310 /** @name UpDataStructsSponsoringRateLimit (235) */
2300 interface UpDataStructsSponsoringRateLimit extends Enum {2311 interface UpDataStructsSponsoringRateLimit extends Enum {
2301 readonly isSponsoringDisabled: boolean;2312 readonly isSponsoringDisabled: boolean;
2302 readonly isBlocks: boolean;2313 readonly isBlocks: boolean;
2303 readonly asBlocks: u32;2314 readonly asBlocks: u32;
2304 readonly type: 'SponsoringDisabled' | 'Blocks';2315 readonly type: 'SponsoringDisabled' | 'Blocks';
2305 }2316 }
23062317
2307 /** @name UpDataStructsCollectionPermissions (237) */2318 /** @name UpDataStructsCollectionPermissions (238) */
2308 interface UpDataStructsCollectionPermissions extends Struct {2319 interface UpDataStructsCollectionPermissions extends Struct {
2309 readonly access: Option<UpDataStructsAccessMode>;2320 readonly access: Option<UpDataStructsAccessMode>;
2310 readonly mintMode: Option<bool>;2321 readonly mintMode: Option<bool>;
2311 readonly nesting: Option<UpDataStructsNestingPermissions>;2322 readonly nesting: Option<UpDataStructsNestingPermissions>;
2312 }2323 }
23132324
2314 /** @name UpDataStructsNestingPermissions (239) */2325 /** @name UpDataStructsNestingPermissions (240) */
2315 interface UpDataStructsNestingPermissions extends Struct {2326 interface UpDataStructsNestingPermissions extends Struct {
2316 readonly tokenOwner: bool;2327 readonly tokenOwner: bool;
2317 readonly collectionAdmin: bool;2328 readonly collectionAdmin: bool;
2318 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2329 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2319 }2330 }
23202331
2321 /** @name UpDataStructsOwnerRestrictedSet (241) */2332 /** @name UpDataStructsOwnerRestrictedSet (242) */
2322 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2333 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
23232334
2324 /** @name UpDataStructsPropertyKeyPermission (246) */2335 /** @name UpDataStructsPropertyKeyPermission (247) */
2325 interface UpDataStructsPropertyKeyPermission extends Struct {2336 interface UpDataStructsPropertyKeyPermission extends Struct {
2326 readonly key: Bytes;2337 readonly key: Bytes;
2327 readonly permission: UpDataStructsPropertyPermission;2338 readonly permission: UpDataStructsPropertyPermission;
2328 }2339 }
23292340
2330 /** @name UpDataStructsPropertyPermission (247) */2341 /** @name UpDataStructsPropertyPermission (248) */
2331 interface UpDataStructsPropertyPermission extends Struct {2342 interface UpDataStructsPropertyPermission extends Struct {
2332 readonly mutable: bool;2343 readonly mutable: bool;
2333 readonly collectionAdmin: bool;2344 readonly collectionAdmin: bool;
2334 readonly tokenOwner: bool;2345 readonly tokenOwner: bool;
2335 }2346 }
23362347
2337 /** @name UpDataStructsProperty (250) */2348 /** @name UpDataStructsProperty (251) */
2338 interface UpDataStructsProperty extends Struct {2349 interface UpDataStructsProperty extends Struct {
2339 readonly key: Bytes;2350 readonly key: Bytes;
2340 readonly value: Bytes;2351 readonly value: Bytes;
2341 }2352 }
23422353
2343 /** @name UpDataStructsCreateItemData (253) */2354 /** @name UpDataStructsCreateItemData (254) */
2344 interface UpDataStructsCreateItemData extends Enum {2355 interface UpDataStructsCreateItemData extends Enum {
2345 readonly isNft: boolean;2356 readonly isNft: boolean;
2346 readonly asNft: UpDataStructsCreateNftData;2357 readonly asNft: UpDataStructsCreateNftData;
2351 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2362 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2352 }2363 }
23532364
2354 /** @name UpDataStructsCreateNftData (254) */2365 /** @name UpDataStructsCreateNftData (255) */
2355 interface UpDataStructsCreateNftData extends Struct {2366 interface UpDataStructsCreateNftData extends Struct {
2356 readonly properties: Vec<UpDataStructsProperty>;2367 readonly properties: Vec<UpDataStructsProperty>;
2357 }2368 }
23582369
2359 /** @name UpDataStructsCreateFungibleData (255) */2370 /** @name UpDataStructsCreateFungibleData (256) */
2360 interface UpDataStructsCreateFungibleData extends Struct {2371 interface UpDataStructsCreateFungibleData extends Struct {
2361 readonly value: u128;2372 readonly value: u128;
2362 }2373 }
23632374
2364 /** @name UpDataStructsCreateReFungibleData (256) */2375 /** @name UpDataStructsCreateReFungibleData (257) */
2365 interface UpDataStructsCreateReFungibleData extends Struct {2376 interface UpDataStructsCreateReFungibleData extends Struct {
2366 readonly pieces: u128;2377 readonly pieces: u128;
2367 readonly properties: Vec<UpDataStructsProperty>;2378 readonly properties: Vec<UpDataStructsProperty>;
2368 }2379 }
23692380
2370 /** @name UpDataStructsCreateItemExData (259) */2381 /** @name UpDataStructsCreateItemExData (260) */
2371 interface UpDataStructsCreateItemExData extends Enum {2382 interface UpDataStructsCreateItemExData extends Enum {
2372 readonly isNft: boolean;2383 readonly isNft: boolean;
2373 readonly asNft: Vec<UpDataStructsCreateNftExData>;2384 readonly asNft: Vec<UpDataStructsCreateNftExData>;
2380 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2391 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
2381 }2392 }
23822393
2383 /** @name UpDataStructsCreateNftExData (261) */2394 /** @name UpDataStructsCreateNftExData (262) */
2384 interface UpDataStructsCreateNftExData extends Struct {2395 interface UpDataStructsCreateNftExData extends Struct {
2385 readonly properties: Vec<UpDataStructsProperty>;2396 readonly properties: Vec<UpDataStructsProperty>;
2386 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2397 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2387 }2398 }
23882399
2389 /** @name UpDataStructsCreateRefungibleExSingleOwner (268) */2400 /** @name UpDataStructsCreateRefungibleExSingleOwner (269) */
2390 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2401 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
2391 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2402 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
2392 readonly pieces: u128;2403 readonly pieces: u128;
2393 readonly properties: Vec<UpDataStructsProperty>;2404 readonly properties: Vec<UpDataStructsProperty>;
2394 }2405 }
23952406
2396 /** @name UpDataStructsCreateRefungibleExMultipleOwners (270) */2407 /** @name UpDataStructsCreateRefungibleExMultipleOwners (271) */
2397 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2408 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
2398 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2409 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
2399 readonly properties: Vec<UpDataStructsProperty>;2410 readonly properties: Vec<UpDataStructsProperty>;
2400 }2411 }
24012412
2402 /** @name PalletUniqueSchedulerCall (271) */2413 /** @name PalletUniqueSchedulerCall (272) */
2403 interface PalletUniqueSchedulerCall extends Enum {2414 interface PalletUniqueSchedulerCall extends Enum {
2404 readonly isScheduleNamed: boolean;2415 readonly isScheduleNamed: boolean;
2405 readonly asScheduleNamed: {2416 readonly asScheduleNamed: {
2424 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2435 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
2425 }2436 }
24262437
2427 /** @name FrameSupportScheduleMaybeHashed (273) */2438 /** @name FrameSupportScheduleMaybeHashed (274) */
2428 interface FrameSupportScheduleMaybeHashed extends Enum {2439 interface FrameSupportScheduleMaybeHashed extends Enum {
2429 readonly isValue: boolean;2440 readonly isValue: boolean;
2430 readonly asValue: Call;2441 readonly asValue: Call;
2433 readonly type: 'Value' | 'Hash';2444 readonly type: 'Value' | 'Hash';
2434 }2445 }
24352446
2436 /** @name PalletConfigurationCall (274) */2447 /** @name PalletConfigurationCall (275) */
2437 interface PalletConfigurationCall extends Enum {2448 interface PalletConfigurationCall extends Enum {
2438 readonly isSetWeightToFeeCoefficientOverride: boolean;2449 readonly isSetWeightToFeeCoefficientOverride: boolean;
2439 readonly asSetWeightToFeeCoefficientOverride: {2450 readonly asSetWeightToFeeCoefficientOverride: {
2446 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2457 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
2447 }2458 }
24482459
2449 /** @name PalletTemplateTransactionPaymentCall (275) */2460 /** @name PalletTemplateTransactionPaymentCall (276) */
2450 type PalletTemplateTransactionPaymentCall = Null;2461 type PalletTemplateTransactionPaymentCall = Null;
24512462
2452 /** @name PalletStructureCall (276) */2463 /** @name PalletStructureCall (277) */
2453 type PalletStructureCall = Null;2464 type PalletStructureCall = Null;
24542465
2455 /** @name PalletRmrkCoreCall (277) */2466 /** @name PalletRmrkCoreCall (278) */
2456 interface PalletRmrkCoreCall extends Enum {2467 interface PalletRmrkCoreCall extends Enum {
2457 readonly isCreateCollection: boolean;2468 readonly isCreateCollection: boolean;
2458 readonly asCreateCollection: {2469 readonly asCreateCollection: {
2558 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2569 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
2559 }2570 }
25602571
2561 /** @name RmrkTraitsResourceResourceTypes (283) */2572 /** @name RmrkTraitsResourceResourceTypes (284) */
2562 interface RmrkTraitsResourceResourceTypes extends Enum {2573 interface RmrkTraitsResourceResourceTypes extends Enum {
2563 readonly isBasic: boolean;2574 readonly isBasic: boolean;
2564 readonly asBasic: RmrkTraitsResourceBasicResource;2575 readonly asBasic: RmrkTraitsResourceBasicResource;
2569 readonly type: 'Basic' | 'Composable' | 'Slot';2580 readonly type: 'Basic' | 'Composable' | 'Slot';
2570 }2581 }
25712582
2572 /** @name RmrkTraitsResourceBasicResource (285) */2583 /** @name RmrkTraitsResourceBasicResource (286) */
2573 interface RmrkTraitsResourceBasicResource extends Struct {2584 interface RmrkTraitsResourceBasicResource extends Struct {
2574 readonly src: Option<Bytes>;2585 readonly src: Option<Bytes>;
2575 readonly metadata: Option<Bytes>;2586 readonly metadata: Option<Bytes>;
2576 readonly license: Option<Bytes>;2587 readonly license: Option<Bytes>;
2577 readonly thumb: Option<Bytes>;2588 readonly thumb: Option<Bytes>;
2578 }2589 }
25792590
2580 /** @name RmrkTraitsResourceComposableResource (287) */2591 /** @name RmrkTraitsResourceComposableResource (288) */
2581 interface RmrkTraitsResourceComposableResource extends Struct {2592 interface RmrkTraitsResourceComposableResource extends Struct {
2582 readonly parts: Vec<u32>;2593 readonly parts: Vec<u32>;
2583 readonly base: u32;2594 readonly base: u32;
2587 readonly thumb: Option<Bytes>;2598 readonly thumb: Option<Bytes>;
2588 }2599 }
25892600
2590 /** @name RmrkTraitsResourceSlotResource (288) */2601 /** @name RmrkTraitsResourceSlotResource (289) */
2591 interface RmrkTraitsResourceSlotResource extends Struct {2602 interface RmrkTraitsResourceSlotResource extends Struct {
2592 readonly base: u32;2603 readonly base: u32;
2593 readonly src: Option<Bytes>;2604 readonly src: Option<Bytes>;
2597 readonly thumb: Option<Bytes>;2608 readonly thumb: Option<Bytes>;
2598 }2609 }
25992610
2600 /** @name PalletRmrkEquipCall (291) */2611 /** @name PalletRmrkEquipCall (292) */
2601 interface PalletRmrkEquipCall extends Enum {2612 interface PalletRmrkEquipCall extends Enum {
2602 readonly isCreateBase: boolean;2613 readonly isCreateBase: boolean;
2603 readonly asCreateBase: {2614 readonly asCreateBase: {
2619 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2630 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
2620 }2631 }
26212632
2622 /** @name RmrkTraitsPartPartType (294) */2633 /** @name RmrkTraitsPartPartType (295) */
2623 interface RmrkTraitsPartPartType extends Enum {2634 interface RmrkTraitsPartPartType extends Enum {
2624 readonly isFixedPart: boolean;2635 readonly isFixedPart: boolean;
2625 readonly asFixedPart: RmrkTraitsPartFixedPart;2636 readonly asFixedPart: RmrkTraitsPartFixedPart;
2628 readonly type: 'FixedPart' | 'SlotPart';2639 readonly type: 'FixedPart' | 'SlotPart';
2629 }2640 }
26302641
2631 /** @name RmrkTraitsPartFixedPart (296) */2642 /** @name RmrkTraitsPartFixedPart (297) */
2632 interface RmrkTraitsPartFixedPart extends Struct {2643 interface RmrkTraitsPartFixedPart extends Struct {
2633 readonly id: u32;2644 readonly id: u32;
2634 readonly z: u32;2645 readonly z: u32;
2635 readonly src: Bytes;2646 readonly src: Bytes;
2636 }2647 }
26372648
2638 /** @name RmrkTraitsPartSlotPart (297) */2649 /** @name RmrkTraitsPartSlotPart (298) */
2639 interface RmrkTraitsPartSlotPart extends Struct {2650 interface RmrkTraitsPartSlotPart extends Struct {
2640 readonly id: u32;2651 readonly id: u32;
2641 readonly equippable: RmrkTraitsPartEquippableList;2652 readonly equippable: RmrkTraitsPartEquippableList;
2642 readonly src: Bytes;2653 readonly src: Bytes;
2643 readonly z: u32;2654 readonly z: u32;
2644 }2655 }
26452656
2646 /** @name RmrkTraitsPartEquippableList (298) */2657 /** @name RmrkTraitsPartEquippableList (299) */
2647 interface RmrkTraitsPartEquippableList extends Enum {2658 interface RmrkTraitsPartEquippableList extends Enum {
2648 readonly isAll: boolean;2659 readonly isAll: boolean;
2649 readonly isEmpty: boolean;2660 readonly isEmpty: boolean;
2652 readonly type: 'All' | 'Empty' | 'Custom';2663 readonly type: 'All' | 'Empty' | 'Custom';
2653 }2664 }
26542665
2655 /** @name RmrkTraitsTheme (300) */2666 /** @name RmrkTraitsTheme (301) */
2656 interface RmrkTraitsTheme extends Struct {2667 interface RmrkTraitsTheme extends Struct {
2657 readonly name: Bytes;2668 readonly name: Bytes;
2658 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2669 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2659 readonly inherit: bool;2670 readonly inherit: bool;
2660 }2671 }
26612672
2662 /** @name RmrkTraitsThemeThemeProperty (302) */2673 /** @name RmrkTraitsThemeThemeProperty (303) */
2663 interface RmrkTraitsThemeThemeProperty extends Struct {2674 interface RmrkTraitsThemeThemeProperty extends Struct {
2664 readonly key: Bytes;2675 readonly key: Bytes;
2665 readonly value: Bytes;2676 readonly value: Bytes;
2666 }2677 }
26672678
2668 /** @name PalletAppPromotionCall (304) */2679 /** @name PalletAppPromotionCall (305) */
2669 interface PalletAppPromotionCall extends Enum {2680 interface PalletAppPromotionCall extends Enum {
2670 readonly isSetAdminAddress: boolean;2681 readonly isSetAdminAddress: boolean;
2671 readonly asSetAdminAddress: {2682 readonly asSetAdminAddress: {
2699 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorConract' | 'StopSponsoringContract' | 'PayoutStakers';2710 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorConract' | 'StopSponsoringContract' | 'PayoutStakers';
2700 }2711 }
27012712
2702 /** @name PalletEvmCall (306) */2713 /** @name PalletEvmCall (307) */
2703 interface PalletEvmCall extends Enum {2714 interface PalletEvmCall extends Enum {
2704 readonly isWithdraw: boolean;2715 readonly isWithdraw: boolean;
2705 readonly asWithdraw: {2716 readonly asWithdraw: {
2744 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2755 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
2745 }2756 }
27462757
2747 /** @name PalletEthereumCall (310) */2758 /** @name PalletEthereumCall (311) */
2748 interface PalletEthereumCall extends Enum {2759 interface PalletEthereumCall extends Enum {
2749 readonly isTransact: boolean;2760 readonly isTransact: boolean;
2750 readonly asTransact: {2761 readonly asTransact: {
2753 readonly type: 'Transact';2764 readonly type: 'Transact';
2754 }2765 }
27552766
2756 /** @name EthereumTransactionTransactionV2 (311) */2767 /** @name EthereumTransactionTransactionV2 (312) */
2757 interface EthereumTransactionTransactionV2 extends Enum {2768 interface EthereumTransactionTransactionV2 extends Enum {
2758 readonly isLegacy: boolean;2769 readonly isLegacy: boolean;
2759 readonly asLegacy: EthereumTransactionLegacyTransaction;2770 readonly asLegacy: EthereumTransactionLegacyTransaction;
2764 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2775 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
2765 }2776 }
27662777
2767 /** @name EthereumTransactionLegacyTransaction (312) */2778 /** @name EthereumTransactionLegacyTransaction (313) */
2768 interface EthereumTransactionLegacyTransaction extends Struct {2779 interface EthereumTransactionLegacyTransaction extends Struct {
2769 readonly nonce: U256;2780 readonly nonce: U256;
2770 readonly gasPrice: U256;2781 readonly gasPrice: U256;
2775 readonly signature: EthereumTransactionTransactionSignature;2786 readonly signature: EthereumTransactionTransactionSignature;
2776 }2787 }
27772788
2778 /** @name EthereumTransactionTransactionAction (313) */2789 /** @name EthereumTransactionTransactionAction (314) */
2779 interface EthereumTransactionTransactionAction extends Enum {2790 interface EthereumTransactionTransactionAction extends Enum {
2780 readonly isCall: boolean;2791 readonly isCall: boolean;
2781 readonly asCall: H160;2792 readonly asCall: H160;
2782 readonly isCreate: boolean;2793 readonly isCreate: boolean;
2783 readonly type: 'Call' | 'Create';2794 readonly type: 'Call' | 'Create';
2784 }2795 }
27852796
2786 /** @name EthereumTransactionTransactionSignature (314) */2797 /** @name EthereumTransactionTransactionSignature (315) */
2787 interface EthereumTransactionTransactionSignature extends Struct {2798 interface EthereumTransactionTransactionSignature extends Struct {
2788 readonly v: u64;2799 readonly v: u64;
2789 readonly r: H256;2800 readonly r: H256;
2790 readonly s: H256;2801 readonly s: H256;
2791 }2802 }
27922803
2793 /** @name EthereumTransactionEip2930Transaction (316) */2804 /** @name EthereumTransactionEip2930Transaction (317) */
2794 interface EthereumTransactionEip2930Transaction extends Struct {2805 interface EthereumTransactionEip2930Transaction extends Struct {
2795 readonly chainId: u64;2806 readonly chainId: u64;
2796 readonly nonce: U256;2807 readonly nonce: U256;
2805 readonly s: H256;2816 readonly s: H256;
2806 }2817 }
28072818
2808 /** @name EthereumTransactionAccessListItem (318) */2819 /** @name EthereumTransactionAccessListItem (319) */
2809 interface EthereumTransactionAccessListItem extends Struct {2820 interface EthereumTransactionAccessListItem extends Struct {
2810 readonly address: H160;2821 readonly address: H160;
2811 readonly storageKeys: Vec<H256>;2822 readonly storageKeys: Vec<H256>;
2812 }2823 }
28132824
2814 /** @name EthereumTransactionEip1559Transaction (319) */2825 /** @name EthereumTransactionEip1559Transaction (320) */
2815 interface EthereumTransactionEip1559Transaction extends Struct {2826 interface EthereumTransactionEip1559Transaction extends Struct {
2816 readonly chainId: u64;2827 readonly chainId: u64;
2817 readonly nonce: U256;2828 readonly nonce: U256;
2827 readonly s: H256;2838 readonly s: H256;
2828 }2839 }
28292840
2830 /** @name PalletEvmMigrationCall (320) */2841 /** @name PalletEvmMigrationCall (321) */
2831 interface PalletEvmMigrationCall extends Enum {2842 interface PalletEvmMigrationCall extends Enum {
2832 readonly isBegin: boolean;2843 readonly isBegin: boolean;
2833 readonly asBegin: {2844 readonly asBegin: {
2846 readonly type: 'Begin' | 'SetData' | 'Finish';2857 readonly type: 'Begin' | 'SetData' | 'Finish';
2847 }2858 }
28482859
2849 /** @name PalletSudoError (323) */2860 /** @name PalletSudoError (324) */
2850 interface PalletSudoError extends Enum {2861 interface PalletSudoError extends Enum {
2851 readonly isRequireSudo: boolean;2862 readonly isRequireSudo: boolean;
2852 readonly type: 'RequireSudo';2863 readonly type: 'RequireSudo';
2853 }2864 }
28542865
2855 /** @name OrmlVestingModuleError (325) */2866 /** @name OrmlVestingModuleError (326) */
2856 interface OrmlVestingModuleError extends Enum {2867 interface OrmlVestingModuleError extends Enum {
2857 readonly isZeroVestingPeriod: boolean;2868 readonly isZeroVestingPeriod: boolean;
2858 readonly isZeroVestingPeriodCount: boolean;2869 readonly isZeroVestingPeriodCount: boolean;
2863 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2874 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
2864 }2875 }
28652876
2866 /** @name CumulusPalletXcmpQueueInboundChannelDetails (327) */2877 /** @name CumulusPalletXcmpQueueInboundChannelDetails (328) */
2867 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2878 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
2868 readonly sender: u32;2879 readonly sender: u32;
2869 readonly state: CumulusPalletXcmpQueueInboundState;2880 readonly state: CumulusPalletXcmpQueueInboundState;
2870 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2881 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
2871 }2882 }
28722883
2873 /** @name CumulusPalletXcmpQueueInboundState (328) */2884 /** @name CumulusPalletXcmpQueueInboundState (329) */
2874 interface CumulusPalletXcmpQueueInboundState extends Enum {2885 interface CumulusPalletXcmpQueueInboundState extends Enum {
2875 readonly isOk: boolean;2886 readonly isOk: boolean;
2876 readonly isSuspended: boolean;2887 readonly isSuspended: boolean;
2877 readonly type: 'Ok' | 'Suspended';2888 readonly type: 'Ok' | 'Suspended';
2878 }2889 }
28792890
2880 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (331) */2891 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (332) */
2881 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2892 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
2882 readonly isConcatenatedVersionedXcm: boolean;2893 readonly isConcatenatedVersionedXcm: boolean;
2883 readonly isConcatenatedEncodedBlob: boolean;2894 readonly isConcatenatedEncodedBlob: boolean;
2884 readonly isSignals: boolean;2895 readonly isSignals: boolean;
2885 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2896 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
2886 }2897 }
28872898
2888 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (334) */2899 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (335) */
2889 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2900 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
2890 readonly recipient: u32;2901 readonly recipient: u32;
2891 readonly state: CumulusPalletXcmpQueueOutboundState;2902 readonly state: CumulusPalletXcmpQueueOutboundState;
2894 readonly lastIndex: u16;2905 readonly lastIndex: u16;
2895 }2906 }
28962907
2897 /** @name CumulusPalletXcmpQueueOutboundState (335) */2908 /** @name CumulusPalletXcmpQueueOutboundState (336) */
2898 interface CumulusPalletXcmpQueueOutboundState extends Enum {2909 interface CumulusPalletXcmpQueueOutboundState extends Enum {
2899 readonly isOk: boolean;2910 readonly isOk: boolean;
2900 readonly isSuspended: boolean;2911 readonly isSuspended: boolean;
2901 readonly type: 'Ok' | 'Suspended';2912 readonly type: 'Ok' | 'Suspended';
2902 }2913 }
29032914
2904 /** @name CumulusPalletXcmpQueueQueueConfigData (337) */2915 /** @name CumulusPalletXcmpQueueQueueConfigData (338) */
2905 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2916 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
2906 readonly suspendThreshold: u32;2917 readonly suspendThreshold: u32;
2907 readonly dropThreshold: u32;2918 readonly dropThreshold: u32;
2911 readonly xcmpMaxIndividualWeight: u64;2922 readonly xcmpMaxIndividualWeight: u64;
2912 }2923 }
29132924
2914 /** @name CumulusPalletXcmpQueueError (339) */2925 /** @name CumulusPalletXcmpQueueError (340) */
2915 interface CumulusPalletXcmpQueueError extends Enum {2926 interface CumulusPalletXcmpQueueError extends Enum {
2916 readonly isFailedToSend: boolean;2927 readonly isFailedToSend: boolean;
2917 readonly isBadXcmOrigin: boolean;2928 readonly isBadXcmOrigin: boolean;
2921 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2932 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
2922 }2933 }
29232934
2924 /** @name PalletXcmError (340) */2935 /** @name PalletXcmError (341) */
2925 interface PalletXcmError extends Enum {2936 interface PalletXcmError extends Enum {
2926 readonly isUnreachable: boolean;2937 readonly isUnreachable: boolean;
2927 readonly isSendFailure: boolean;2938 readonly isSendFailure: boolean;
2939 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2950 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
2940 }2951 }
29412952
2942 /** @name CumulusPalletXcmError (341) */2953 /** @name CumulusPalletXcmError (342) */
2943 type CumulusPalletXcmError = Null;2954 type CumulusPalletXcmError = Null;
29442955
2945 /** @name CumulusPalletDmpQueueConfigData (342) */2956 /** @name CumulusPalletDmpQueueConfigData (343) */
2946 interface CumulusPalletDmpQueueConfigData extends Struct {2957 interface CumulusPalletDmpQueueConfigData extends Struct {
2947 readonly maxIndividual: u64;2958 readonly maxIndividual: u64;
2948 }2959 }
29492960
2950 /** @name CumulusPalletDmpQueuePageIndexData (343) */2961 /** @name CumulusPalletDmpQueuePageIndexData (344) */
2951 interface CumulusPalletDmpQueuePageIndexData extends Struct {2962 interface CumulusPalletDmpQueuePageIndexData extends Struct {
2952 readonly beginUsed: u32;2963 readonly beginUsed: u32;
2953 readonly endUsed: u32;2964 readonly endUsed: u32;
2954 readonly overweightCount: u64;2965 readonly overweightCount: u64;
2955 }2966 }
29562967
2957 /** @name CumulusPalletDmpQueueError (346) */2968 /** @name CumulusPalletDmpQueueError (347) */
2958 interface CumulusPalletDmpQueueError extends Enum {2969 interface CumulusPalletDmpQueueError extends Enum {
2959 readonly isUnknown: boolean;2970 readonly isUnknown: boolean;
2960 readonly isOverLimit: boolean;2971 readonly isOverLimit: boolean;
2961 readonly type: 'Unknown' | 'OverLimit';2972 readonly type: 'Unknown' | 'OverLimit';
2962 }2973 }
29632974
2964 /** @name PalletUniqueError (350) */2975 /** @name PalletUniqueError (351) */
2965 interface PalletUniqueError extends Enum {2976 interface PalletUniqueError extends Enum {
2966 readonly isCollectionDecimalPointLimitExceeded: boolean;2977 readonly isCollectionDecimalPointLimitExceeded: boolean;
2967 readonly isConfirmUnsetSponsorFail: boolean;2978 readonly isConfirmUnsetSponsorFail: boolean;
2970 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2981 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
2971 }2982 }
29722983
2973 /** @name PalletUniqueSchedulerScheduledV3 (353) */2984 /** @name PalletUniqueSchedulerScheduledV3 (354) */
2974 interface PalletUniqueSchedulerScheduledV3 extends Struct {2985 interface PalletUniqueSchedulerScheduledV3 extends Struct {
2975 readonly maybeId: Option<U8aFixed>;2986 readonly maybeId: Option<U8aFixed>;
2976 readonly priority: u8;2987 readonly priority: u8;
2979 readonly origin: OpalRuntimeOriginCaller;2990 readonly origin: OpalRuntimeOriginCaller;
2980 }2991 }
29812992
2982 /** @name OpalRuntimeOriginCaller (354) */2993 /** @name OpalRuntimeOriginCaller (355) */
2983 interface OpalRuntimeOriginCaller extends Enum {2994 interface OpalRuntimeOriginCaller extends Enum {
2984 readonly isSystem: boolean;2995 readonly isSystem: boolean;
2985 readonly asSystem: FrameSupportDispatchRawOrigin;2996 readonly asSystem: FrameSupportDispatchRawOrigin;
2993 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3004 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
2994 }3005 }
29953006
2996 /** @name FrameSupportDispatchRawOrigin (355) */3007 /** @name FrameSupportDispatchRawOrigin (356) */
2997 interface FrameSupportDispatchRawOrigin extends Enum {3008 interface FrameSupportDispatchRawOrigin extends Enum {
2998 readonly isRoot: boolean;3009 readonly isRoot: boolean;
2999 readonly isSigned: boolean;3010 readonly isSigned: boolean;
3002 readonly type: 'Root' | 'Signed' | 'None';3013 readonly type: 'Root' | 'Signed' | 'None';
3003 }3014 }
30043015
3005 /** @name PalletXcmOrigin (356) */3016 /** @name PalletXcmOrigin (357) */
3006 interface PalletXcmOrigin extends Enum {3017 interface PalletXcmOrigin extends Enum {
3007 readonly isXcm: boolean;3018 readonly isXcm: boolean;
3008 readonly asXcm: XcmV1MultiLocation;3019 readonly asXcm: XcmV1MultiLocation;
3011 readonly type: 'Xcm' | 'Response';3022 readonly type: 'Xcm' | 'Response';
3012 }3023 }
30133024
3014 /** @name CumulusPalletXcmOrigin (357) */3025 /** @name CumulusPalletXcmOrigin (358) */
3015 interface CumulusPalletXcmOrigin extends Enum {3026 interface CumulusPalletXcmOrigin extends Enum {
3016 readonly isRelay: boolean;3027 readonly isRelay: boolean;
3017 readonly isSiblingParachain: boolean;3028 readonly isSiblingParachain: boolean;
3018 readonly asSiblingParachain: u32;3029 readonly asSiblingParachain: u32;
3019 readonly type: 'Relay' | 'SiblingParachain';3030 readonly type: 'Relay' | 'SiblingParachain';
3020 }3031 }
30213032
3022 /** @name PalletEthereumRawOrigin (358) */3033 /** @name PalletEthereumRawOrigin (359) */
3023 interface PalletEthereumRawOrigin extends Enum {3034 interface PalletEthereumRawOrigin extends Enum {
3024 readonly isEthereumTransaction: boolean;3035 readonly isEthereumTransaction: boolean;
3025 readonly asEthereumTransaction: H160;3036 readonly asEthereumTransaction: H160;
3026 readonly type: 'EthereumTransaction';3037 readonly type: 'EthereumTransaction';
3027 }3038 }
30283039
3029 /** @name SpCoreVoid (359) */3040 /** @name SpCoreVoid (360) */
3030 type SpCoreVoid = Null;3041 type SpCoreVoid = Null;
30313042
3032 /** @name PalletUniqueSchedulerError (360) */3043 /** @name PalletUniqueSchedulerError (361) */
3033 interface PalletUniqueSchedulerError extends Enum {3044 interface PalletUniqueSchedulerError extends Enum {
3034 readonly isFailedToSchedule: boolean;3045 readonly isFailedToSchedule: boolean;
3035 readonly isNotFound: boolean;3046 readonly isNotFound: boolean;
3038 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3049 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
3039 }3050 }
30403051
3041 /** @name UpDataStructsCollection (361) */3052 /** @name UpDataStructsCollection (362) */
3042 interface UpDataStructsCollection extends Struct {3053 interface UpDataStructsCollection extends Struct {
3043 readonly owner: AccountId32;3054 readonly owner: AccountId32;
3044 readonly mode: UpDataStructsCollectionMode;3055 readonly mode: UpDataStructsCollectionMode;
3051 readonly externalCollection: bool;3062 readonly externalCollection: bool;
3052 }3063 }
30533064
3054 /** @name UpDataStructsSponsorshipStateAccountId32 (362) */3065 /** @name UpDataStructsSponsorshipStateAccountId32 (363) */
3055 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3066 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3056 readonly isDisabled: boolean;3067 readonly isDisabled: boolean;
3057 readonly isUnconfirmed: boolean;3068 readonly isUnconfirmed: boolean;
3061 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3072 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3062 }3073 }
30633074
3064 /** @name UpDataStructsProperties (363) */3075 /** @name UpDataStructsProperties (364) */
3065 interface UpDataStructsProperties extends Struct {3076 interface UpDataStructsProperties extends Struct {
3066 readonly map: UpDataStructsPropertiesMapBoundedVec;3077 readonly map: UpDataStructsPropertiesMapBoundedVec;
3067 readonly consumedSpace: u32;3078 readonly consumedSpace: u32;
3068 readonly spaceLimit: u32;3079 readonly spaceLimit: u32;
3069 }3080 }
30703081
3071 /** @name UpDataStructsPropertiesMapBoundedVec (364) */3082 /** @name UpDataStructsPropertiesMapBoundedVec (365) */
3072 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3083 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
30733084
3074 /** @name UpDataStructsPropertiesMapPropertyPermission (369) */3085 /** @name UpDataStructsPropertiesMapPropertyPermission (370) */
3075 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3086 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
30763087
3077 /** @name UpDataStructsCollectionStats (376) */3088 /** @name UpDataStructsCollectionStats (377) */
3078 interface UpDataStructsCollectionStats extends Struct {3089 interface UpDataStructsCollectionStats extends Struct {
3079 readonly created: u32;3090 readonly created: u32;
3080 readonly destroyed: u32;3091 readonly destroyed: u32;
3081 readonly alive: u32;3092 readonly alive: u32;
3082 }3093 }
30833094
3084 /** @name UpDataStructsTokenChild (377) */3095 /** @name UpDataStructsTokenChild (378) */
3085 interface UpDataStructsTokenChild extends Struct {3096 interface UpDataStructsTokenChild extends Struct {
3086 readonly token: u32;3097 readonly token: u32;
3087 readonly collection: u32;3098 readonly collection: u32;
3088 }3099 }
30893100
3090 /** @name PhantomTypeUpDataStructs (378) */3101 /** @name PhantomTypeUpDataStructs (379) */
3091 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3102 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
30923103
3093 /** @name UpDataStructsTokenData (380) */3104 /** @name UpDataStructsTokenData (381) */
3094 interface UpDataStructsTokenData extends Struct {3105 interface UpDataStructsTokenData extends Struct {
3095 readonly properties: Vec<UpDataStructsProperty>;3106 readonly properties: Vec<UpDataStructsProperty>;
3096 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3107 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3097 readonly pieces: u128;3108 readonly pieces: u128;
3098 }3109 }
30993110
3100 /** @name UpDataStructsRpcCollection (382) */3111 /** @name UpDataStructsRpcCollection (383) */
3101 interface UpDataStructsRpcCollection extends Struct {3112 interface UpDataStructsRpcCollection extends Struct {
3102 readonly owner: AccountId32;3113 readonly owner: AccountId32;
3103 readonly mode: UpDataStructsCollectionMode;3114 readonly mode: UpDataStructsCollectionMode;
3112 readonly readOnly: bool;3123 readonly readOnly: bool;
3113 }3124 }
31143125
3115 /** @name RmrkTraitsCollectionCollectionInfo (383) */3126 /** @name RmrkTraitsCollectionCollectionInfo (384) */
3116 interface RmrkTraitsCollectionCollectionInfo extends Struct {3127 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3117 readonly issuer: AccountId32;3128 readonly issuer: AccountId32;
3118 readonly metadata: Bytes;3129 readonly metadata: Bytes;
3121 readonly nftsCount: u32;3132 readonly nftsCount: u32;
3122 }3133 }
31233134
3124 /** @name RmrkTraitsNftNftInfo (384) */3135 /** @name RmrkTraitsNftNftInfo (385) */
3125 interface RmrkTraitsNftNftInfo extends Struct {3136 interface RmrkTraitsNftNftInfo extends Struct {
3126 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3137 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3127 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3138 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3130 readonly pending: bool;3141 readonly pending: bool;
3131 }3142 }
31323143
3133 /** @name RmrkTraitsNftRoyaltyInfo (386) */3144 /** @name RmrkTraitsNftRoyaltyInfo (387) */
3134 interface RmrkTraitsNftRoyaltyInfo extends Struct {3145 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3135 readonly recipient: AccountId32;3146 readonly recipient: AccountId32;
3136 readonly amount: Permill;3147 readonly amount: Permill;
3137 }3148 }
31383149
3139 /** @name RmrkTraitsResourceResourceInfo (387) */3150 /** @name RmrkTraitsResourceResourceInfo (388) */
3140 interface RmrkTraitsResourceResourceInfo extends Struct {3151 interface RmrkTraitsResourceResourceInfo extends Struct {
3141 readonly id: u32;3152 readonly id: u32;
3142 readonly resource: RmrkTraitsResourceResourceTypes;3153 readonly resource: RmrkTraitsResourceResourceTypes;
3143 readonly pending: bool;3154 readonly pending: bool;
3144 readonly pendingRemoval: bool;3155 readonly pendingRemoval: bool;
3145 }3156 }
31463157
3147 /** @name RmrkTraitsPropertyPropertyInfo (388) */3158 /** @name RmrkTraitsPropertyPropertyInfo (389) */
3148 interface RmrkTraitsPropertyPropertyInfo extends Struct {3159 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3149 readonly key: Bytes;3160 readonly key: Bytes;
3150 readonly value: Bytes;3161 readonly value: Bytes;
3151 }3162 }
31523163
3153 /** @name RmrkTraitsBaseBaseInfo (389) */3164 /** @name RmrkTraitsBaseBaseInfo (390) */
3154 interface RmrkTraitsBaseBaseInfo extends Struct {3165 interface RmrkTraitsBaseBaseInfo extends Struct {
3155 readonly issuer: AccountId32;3166 readonly issuer: AccountId32;
3156 readonly baseType: Bytes;3167 readonly baseType: Bytes;
3157 readonly symbol: Bytes;3168 readonly symbol: Bytes;
3158 }3169 }
31593170
3160 /** @name RmrkTraitsNftNftChild (390) */3171 /** @name RmrkTraitsNftNftChild (391) */
3161 interface RmrkTraitsNftNftChild extends Struct {3172 interface RmrkTraitsNftNftChild extends Struct {
3162 readonly collectionId: u32;3173 readonly collectionId: u32;
3163 readonly nftId: u32;3174 readonly nftId: u32;
3164 }3175 }
31653176
3166 /** @name PalletCommonError (392) */3177 /** @name PalletCommonError (393) */
3167 interface PalletCommonError extends Enum {3178 interface PalletCommonError extends Enum {
3168 readonly isCollectionNotFound: boolean;3179 readonly isCollectionNotFound: boolean;
3169 readonly isMustBeTokenOwner: boolean;3180 readonly isMustBeTokenOwner: boolean;
3202 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3213 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
3203 }3214 }
32043215
3205 /** @name PalletFungibleError (394) */3216 /** @name PalletFungibleError (395) */
3206 interface PalletFungibleError extends Enum {3217 interface PalletFungibleError extends Enum {
3207 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3218 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3208 readonly isFungibleItemsHaveNoId: boolean;3219 readonly isFungibleItemsHaveNoId: boolean;
3212 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3223 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3213 }3224 }
32143225
3215 /** @name PalletRefungibleItemData (395) */3226 /** @name PalletRefungibleItemData (396) */
3216 interface PalletRefungibleItemData extends Struct {3227 interface PalletRefungibleItemData extends Struct {
3217 readonly constData: Bytes;3228 readonly constData: Bytes;
3218 }3229 }
32193230
3220 /** @name PalletRefungibleError (400) */3231 /** @name PalletRefungibleError (401) */
3221 interface PalletRefungibleError extends Enum {3232 interface PalletRefungibleError extends Enum {
3222 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3233 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3223 readonly isWrongRefungiblePieces: boolean;3234 readonly isWrongRefungiblePieces: boolean;
3227 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3238 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3228 }3239 }
32293240
3230 /** @name PalletNonfungibleItemData (401) */3241 /** @name PalletNonfungibleItemData (402) */
3231 interface PalletNonfungibleItemData extends Struct {3242 interface PalletNonfungibleItemData extends Struct {
3232 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3243 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3233 }3244 }
32343245
3235 /** @name UpDataStructsPropertyScope (403) */3246 /** @name UpDataStructsPropertyScope (404) */
3236 interface UpDataStructsPropertyScope extends Enum {3247 interface UpDataStructsPropertyScope extends Enum {
3237 readonly isNone: boolean;3248 readonly isNone: boolean;
3238 readonly isRmrk: boolean;3249 readonly isRmrk: boolean;
3239 readonly type: 'None' | 'Rmrk';3250 readonly type: 'None' | 'Rmrk';
3240 }3251 }
32413252
3242 /** @name PalletNonfungibleError (405) */3253 /** @name PalletNonfungibleError (406) */
3243 interface PalletNonfungibleError extends Enum {3254 interface PalletNonfungibleError extends Enum {
3244 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3255 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3245 readonly isNonfungibleItemsHaveNoAmount: boolean;3256 readonly isNonfungibleItemsHaveNoAmount: boolean;
3246 readonly isCantBurnNftWithChildren: boolean;3257 readonly isCantBurnNftWithChildren: boolean;
3247 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3258 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3248 }3259 }
32493260
3250 /** @name PalletStructureError (406) */3261 /** @name PalletStructureError (407) */
3251 interface PalletStructureError extends Enum {3262 interface PalletStructureError extends Enum {
3252 readonly isOuroborosDetected: boolean;3263 readonly isOuroborosDetected: boolean;
3253 readonly isDepthLimit: boolean;3264 readonly isDepthLimit: boolean;
3256 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3267 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
3257 }3268 }
32583269
3259 /** @name PalletRmrkCoreError (407) */3270 /** @name PalletRmrkCoreError (408) */
3260 interface PalletRmrkCoreError extends Enum {3271 interface PalletRmrkCoreError extends Enum {
3261 readonly isCorruptedCollectionType: boolean;3272 readonly isCorruptedCollectionType: boolean;
3262 readonly isRmrkPropertyKeyIsTooLong: boolean;3273 readonly isRmrkPropertyKeyIsTooLong: boolean;
3280 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3291 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
3281 }3292 }
32823293
3283 /** @name PalletRmrkEquipError (409) */3294 /** @name PalletRmrkEquipError (410) */
3284 interface PalletRmrkEquipError extends Enum {3295 interface PalletRmrkEquipError extends Enum {
3285 readonly isPermissionError: boolean;3296 readonly isPermissionError: boolean;
3286 readonly isNoAvailableBaseId: boolean;3297 readonly isNoAvailableBaseId: boolean;
3292 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3303 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
3293 }3304 }
32943305
3295 /** @name PalletAppPromotionError (415) */3306 /** @name PalletAppPromotionError (416) */
3296 interface PalletAppPromotionError extends Enum {3307 interface PalletAppPromotionError extends Enum {
3297 readonly isAdminNotSet: boolean;3308 readonly isAdminNotSet: boolean;
3298 readonly isNoPermission: boolean;3309 readonly isNoPermission: boolean;
3302 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'InvalidArgument';3313 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'InvalidArgument';
3303 }3314 }
33043315
3305 /** @name PalletEvmError (418) */3316 /** @name PalletEvmError (419) */
3306 interface PalletEvmError extends Enum {3317 interface PalletEvmError extends Enum {
3307 readonly isBalanceLow: boolean;3318 readonly isBalanceLow: boolean;
3308 readonly isFeeOverflow: boolean;3319 readonly isFeeOverflow: boolean;
3313 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3324 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
3314 }3325 }
33153326
3316 /** @name FpRpcTransactionStatus (421) */3327 /** @name FpRpcTransactionStatus (422) */
3317 interface FpRpcTransactionStatus extends Struct {3328 interface FpRpcTransactionStatus extends Struct {
3318 readonly transactionHash: H256;3329 readonly transactionHash: H256;
3319 readonly transactionIndex: u32;3330 readonly transactionIndex: u32;
3324 readonly logsBloom: EthbloomBloom;3335 readonly logsBloom: EthbloomBloom;
3325 }3336 }
33263337
3327 /** @name EthbloomBloom (423) */3338 /** @name EthbloomBloom (424) */
3328 interface EthbloomBloom extends U8aFixed {}3339 interface EthbloomBloom extends U8aFixed {}
33293340
3330 /** @name EthereumReceiptReceiptV3 (425) */3341 /** @name EthereumReceiptReceiptV3 (426) */
3331 interface EthereumReceiptReceiptV3 extends Enum {3342 interface EthereumReceiptReceiptV3 extends Enum {
3332 readonly isLegacy: boolean;3343 readonly isLegacy: boolean;
3333 readonly asLegacy: EthereumReceiptEip658ReceiptData;3344 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3338 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3349 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3339 }3350 }
33403351
3341 /** @name EthereumReceiptEip658ReceiptData (426) */3352 /** @name EthereumReceiptEip658ReceiptData (427) */
3342 interface EthereumReceiptEip658ReceiptData extends Struct {3353 interface EthereumReceiptEip658ReceiptData extends Struct {
3343 readonly statusCode: u8;3354 readonly statusCode: u8;
3344 readonly usedGas: U256;3355 readonly usedGas: U256;
3345 readonly logsBloom: EthbloomBloom;3356 readonly logsBloom: EthbloomBloom;
3346 readonly logs: Vec<EthereumLog>;3357 readonly logs: Vec<EthereumLog>;
3347 }3358 }
33483359
3349 /** @name EthereumBlock (427) */3360 /** @name EthereumBlock (428) */
3350 interface EthereumBlock extends Struct {3361 interface EthereumBlock extends Struct {
3351 readonly header: EthereumHeader;3362 readonly header: EthereumHeader;
3352 readonly transactions: Vec<EthereumTransactionTransactionV2>;3363 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3353 readonly ommers: Vec<EthereumHeader>;3364 readonly ommers: Vec<EthereumHeader>;
3354 }3365 }
33553366
3356 /** @name EthereumHeader (428) */3367 /** @name EthereumHeader (429) */
3357 interface EthereumHeader extends Struct {3368 interface EthereumHeader extends Struct {
3358 readonly parentHash: H256;3369 readonly parentHash: H256;
3359 readonly ommersHash: H256;3370 readonly ommersHash: H256;
3372 readonly nonce: EthereumTypesHashH64;3383 readonly nonce: EthereumTypesHashH64;
3373 }3384 }
33743385
3375 /** @name EthereumTypesHashH64 (429) */3386 /** @name EthereumTypesHashH64 (430) */
3376 interface EthereumTypesHashH64 extends U8aFixed {}3387 interface EthereumTypesHashH64 extends U8aFixed {}
33773388
3378 /** @name PalletEthereumError (434) */3389 /** @name PalletEthereumError (435) */
3379 interface PalletEthereumError extends Enum {3390 interface PalletEthereumError extends Enum {
3380 readonly isInvalidSignature: boolean;3391 readonly isInvalidSignature: boolean;
3381 readonly isPreLogExists: boolean;3392 readonly isPreLogExists: boolean;
3382 readonly type: 'InvalidSignature' | 'PreLogExists';3393 readonly type: 'InvalidSignature' | 'PreLogExists';
3383 }3394 }
33843395
3385 /** @name PalletEvmCoderSubstrateError (435) */3396 /** @name PalletEvmCoderSubstrateError (436) */
3386 interface PalletEvmCoderSubstrateError extends Enum {3397 interface PalletEvmCoderSubstrateError extends Enum {
3387 readonly isOutOfGas: boolean;3398 readonly isOutOfGas: boolean;
3388 readonly isOutOfFund: boolean;3399 readonly isOutOfFund: boolean;
3389 readonly type: 'OutOfGas' | 'OutOfFund';3400 readonly type: 'OutOfGas' | 'OutOfFund';
3390 }3401 }
33913402
3392 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (436) */3403 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (437) */
3393 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3404 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3394 readonly isDisabled: boolean;3405 readonly isDisabled: boolean;
3395 readonly isUnconfirmed: boolean;3406 readonly isUnconfirmed: boolean;
3399 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3410 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3400 }3411 }
34013412
3402 /** @name PalletEvmContractHelpersSponsoringModeT (437) */3413 /** @name PalletEvmContractHelpersSponsoringModeT (438) */
3403 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3414 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3404 readonly isDisabled: boolean;3415 readonly isDisabled: boolean;
3405 readonly isAllowlisted: boolean;3416 readonly isAllowlisted: boolean;
3406 readonly isGenerous: boolean;3417 readonly isGenerous: boolean;
3407 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3418 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3408 }3419 }
34093420
3410 /** @name PalletEvmContractHelpersError (439) */3421 /** @name PalletEvmContractHelpersError (440) */
3411 interface PalletEvmContractHelpersError extends Enum {3422 interface PalletEvmContractHelpersError extends Enum {
3412 readonly isNoPermission: boolean;3423 readonly isNoPermission: boolean;
3413 readonly isNoPendingSponsor: boolean;3424 readonly isNoPendingSponsor: boolean;
3414 readonly type: 'NoPermission' | 'NoPendingSponsor';3425 readonly type: 'NoPermission' | 'NoPendingSponsor';
3415 }3426 }
34163427
3417 /** @name PalletEvmMigrationError (440) */3428 /** @name PalletEvmMigrationError (441) */
3418 interface PalletEvmMigrationError extends Enum {3429 interface PalletEvmMigrationError extends Enum {
3419 readonly isAccountNotEmpty: boolean;3430 readonly isAccountNotEmpty: boolean;
3420 readonly isAccountIsNotMigrating: boolean;3431 readonly isAccountIsNotMigrating: boolean;
3421 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3432 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
3422 }3433 }
34233434
3424 /** @name SpRuntimeMultiSignature (442) */3435 /** @name SpRuntimeMultiSignature (443) */
3425 interface SpRuntimeMultiSignature extends Enum {3436 interface SpRuntimeMultiSignature extends Enum {
3426 readonly isEd25519: boolean;3437 readonly isEd25519: boolean;
3427 readonly asEd25519: SpCoreEd25519Signature;3438 readonly asEd25519: SpCoreEd25519Signature;
3432 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3443 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3433 }3444 }
34343445
3435 /** @name SpCoreEd25519Signature (443) */3446 /** @name SpCoreEd25519Signature (444) */
3436 interface SpCoreEd25519Signature extends U8aFixed {}3447 interface SpCoreEd25519Signature extends U8aFixed {}
34373448
3438 /** @name SpCoreSr25519Signature (445) */3449 /** @name SpCoreSr25519Signature (446) */
3439 interface SpCoreSr25519Signature extends U8aFixed {}3450 interface SpCoreSr25519Signature extends U8aFixed {}
34403451
3441 /** @name SpCoreEcdsaSignature (446) */3452 /** @name SpCoreEcdsaSignature (447) */
3442 interface SpCoreEcdsaSignature extends U8aFixed {}3453 interface SpCoreEcdsaSignature extends U8aFixed {}
34433454
3444 /** @name FrameSystemExtensionsCheckSpecVersion (449) */3455 /** @name FrameSystemExtensionsCheckSpecVersion (450) */
3445 type FrameSystemExtensionsCheckSpecVersion = Null;3456 type FrameSystemExtensionsCheckSpecVersion = Null;
34463457
3447 /** @name FrameSystemExtensionsCheckGenesis (450) */3458 /** @name FrameSystemExtensionsCheckGenesis (451) */
3448 type FrameSystemExtensionsCheckGenesis = Null;3459 type FrameSystemExtensionsCheckGenesis = Null;
34493460
3450 /** @name FrameSystemExtensionsCheckNonce (453) */3461 /** @name FrameSystemExtensionsCheckNonce (454) */
3451 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3462 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
34523463
3453 /** @name FrameSystemExtensionsCheckWeight (454) */3464 /** @name FrameSystemExtensionsCheckWeight (455) */
3454 type FrameSystemExtensionsCheckWeight = Null;3465 type FrameSystemExtensionsCheckWeight = Null;
34553466
3456 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (455) */3467 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (456) */
3457 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3468 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
34583469
3459 /** @name OpalRuntimeRuntime (456) */3470 /** @name OpalRuntimeRuntime (457) */
3460 type OpalRuntimeRuntime = Null;3471 type OpalRuntimeRuntime = Null;
34613472
3462 /** @name PalletEthereumFakeTransactionFinalizer (457) */3473 /** @name PalletEthereumFakeTransactionFinalizer (458) */
3463 type PalletEthereumFakeTransactionFinalizer = Null;3474 type PalletEthereumFakeTransactionFinalizer = Null;
34643475
3465} // declare module3476} // declare module