git.delta.rocks / unique-network / refs/commits / c0afeb64e729

difftreelog

Merge pull request #705 from UniqueNetwork/feature/maintenance-mode

Yaroslav Bolyukin2022-11-08parents: #71a39d0 #6954756.patch.diff
in: master

28 files changed

modifiedCargo.lockdiffbeforeafterboth
5374 "pallet-foreign-assets",5374 "pallet-foreign-assets",
5375 "pallet-fungible",5375 "pallet-fungible",
5376 "pallet-inflation",5376 "pallet-inflation",
5377 "pallet-maintenance",
5377 "pallet-nonfungible",5378 "pallet-nonfungible",
5378 "pallet-randomness-collective-flip",5379 "pallet-randomness-collective-flip",
5379 "pallet-refungible",5380 "pallet-refungible",
6249 "sp-std",6250 "sp-std",
6250]6251]
6252
6253[[package]]
6254name = "pallet-maintenance"
6255version = "0.1.0"
6256dependencies = [
6257 "frame-benchmarking",
6258 "frame-support",
6259 "frame-system",
6260 "parity-scale-codec 3.2.1",
6261 "scale-info",
6262 "sp-std",
6263]
62516264
6252[[package]]6265[[package]]
6253name = "pallet-membership"6266name = "pallet-membership"
8834 "pallet-foreign-assets",8847 "pallet-foreign-assets",
8835 "pallet-fungible",8848 "pallet-fungible",
8836 "pallet-inflation",8849 "pallet-inflation",
8850 "pallet-maintenance",
8837 "pallet-nonfungible",8851 "pallet-nonfungible",
8838 "pallet-randomness-collective-flip",8852 "pallet-randomness-collective-flip",
8839 "pallet-refungible",8853 "pallet-refungible",
12964 "pallet-foreign-assets",12978 "pallet-foreign-assets",
12965 "pallet-fungible",12979 "pallet-fungible",
12966 "pallet-inflation",12980 "pallet-inflation",
12981 "pallet-maintenance",
12967 "pallet-nonfungible",12982 "pallet-nonfungible",
12968 "pallet-randomness-collective-flip",12983 "pallet-randomness-collective-flip",
12969 "pallet-refungible",12984 "pallet-refungible",
addedpallets/maintenance/Cargo.tomldiffbeforeafterboth

no changes

addedpallets/maintenance/src/benchmarking.rsdiffbeforeafterboth

no changes

addedpallets/maintenance/src/lib.rsdiffbeforeafterboth

no changes

addedpallets/maintenance/src/weights.rsdiffbeforeafterboth

no changes

modifiedruntime/common/config/pallets/mod.rsdiffbeforeafterboth
104 type DefaultMinGasPrice = ConstU64<{ up_common::constants::MIN_GAS_PRICE }>;104 type DefaultMinGasPrice = ConstU64<{ up_common::constants::MIN_GAS_PRICE }>;
105}105}
106
107impl pallet_maintenance::Config for Runtime {
108 type RuntimeEvent = RuntimeEvent;
109 type WeightInfo = pallet_maintenance::weights::SubstrateWeight<Self>;
110}
106111
modifiedruntime/common/construct_runtime/mod.rsdiffbeforeafterboth
94 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,94 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,
95 EvmMigration: pallet_evm_migration::{Pallet, Call, Storage} = 153,95 EvmMigration: pallet_evm_migration::{Pallet, Call, Storage} = 153,
96
97 Maintenance: pallet_maintenance::{Pallet, Call, Storage, Event<T>} = 154,
9698
97 #[runtimes(opal)]99 #[runtimes(opal)]
98 TestUtils: pallet_test_utils = 255,100 TestUtils: pallet_test_utils = 255,
modifiedruntime/common/ethereum/self_contained_call.rsdiffbeforeafterboth
17use sp_core::H160;17use sp_core::H160;
18use sp_runtime::{18use sp_runtime::{
19 traits::{Dispatchable, DispatchInfoOf, PostDispatchInfoOf},19 traits::{Dispatchable, DispatchInfoOf, PostDispatchInfoOf},
20 transaction_validity::{TransactionValidityError, TransactionValidity},20 transaction_validity::{TransactionValidityError, TransactionValidity, InvalidTransaction},
21};21};
22use crate::{RuntimeOrigin, RuntimeCall};22use crate::{RuntimeOrigin, RuntimeCall, Maintenance};
2323
24impl fp_self_contained::SelfContainedCall for RuntimeCall {24impl fp_self_contained::SelfContainedCall for RuntimeCall {
25 type SignedInfo = H160;25 type SignedInfo = H160;
3333
34 fn check_self_contained(&self) -> Option<Result<Self::SignedInfo, TransactionValidityError>> {34 fn check_self_contained(&self) -> Option<Result<Self::SignedInfo, TransactionValidityError>> {
35 match self {35 match self {
36 RuntimeCall::Ethereum(call) => call.check_self_contained(),36 RuntimeCall::Ethereum(call) => {
37 if Maintenance::is_enabled() {
38 Some(Err(TransactionValidityError::Invalid(
39 InvalidTransaction::Call,
40 )))
41 } else {
42 call.check_self_contained()
43 }
44 }
37 _ => None,45 _ => None,
38 }46 }
39 }47 }
45 len: usize,53 len: usize,
46 ) -> Option<TransactionValidity> {54 ) -> Option<TransactionValidity> {
47 match self {55 match self {
48 RuntimeCall::Ethereum(call) => call.validate_self_contained(info, dispatch_info, len),56 RuntimeCall::Ethereum(call) => {
57 if Maintenance::is_enabled() {
58 Some(Err(TransactionValidityError::Invalid(
59 InvalidTransaction::Call,
60 )))
61 } else {
62 call.validate_self_contained(info, dispatch_info, len)
63 }
64 }
49 _ => None,65 _ => None,
50 }66 }
51 }67 }
addedruntime/common/maintenance.rsdiffbeforeafterboth

no changes

modifiedruntime/common/mod.rsdiffbeforeafterboth
19pub mod dispatch;19pub mod dispatch;
20pub mod ethereum;20pub mod ethereum;
21pub mod instance;21pub mod instance;
22pub mod maintenance;
22pub mod runtime_apis;23pub mod runtime_apis;
2324
24#[cfg(feature = "scheduler")]25#[cfg(feature = "scheduler")]
90 frame_system::CheckEra<Runtime>,91 frame_system::CheckEra<Runtime>,
91 frame_system::CheckNonce<Runtime>,92 frame_system::CheckNonce<Runtime>,
92 frame_system::CheckWeight<Runtime>,93 frame_system::CheckWeight<Runtime>,
94 maintenance::CheckMaintenance,
93 ChargeTransactionPayment,95 ChargeTransactionPayment,
94 //pallet_contract_helpers::ContractHelpersExtension<Runtime>,96 //pallet_contract_helpers::ContractHelpersExtension<Runtime>,
95 pallet_ethereum::FakeTransactionFinalizer<Runtime>,97 pallet_ethereum::FakeTransactionFinalizer<Runtime>,
modifiedruntime/common/scheduler.rsdiffbeforeafterboth
25 DispatchErrorWithPostInfo, DispatchError,25 DispatchErrorWithPostInfo, DispatchError,
26};26};
27use codec::Encode;27use codec::Encode;
28use crate::{Runtime, RuntimeCall, RuntimeOrigin, Balances};28use crate::{Runtime, RuntimeCall, RuntimeOrigin, Balances, maintenance};
29use up_common::types::{AccountId, Balance};29use up_common::types::{AccountId, Balance};
30use fp_self_contained::SelfContainedCall;30use fp_self_contained::SelfContainedCall;
31use pallet_unique_scheduler::DispatchCall;31use pallet_unique_scheduler::DispatchCall;
41 frame_system::CheckEra<Runtime>,41 frame_system::CheckEra<Runtime>,
42 frame_system::CheckNonce<Runtime>,42 frame_system::CheckNonce<Runtime>,
43 frame_system::CheckWeight<Runtime>,43 frame_system::CheckWeight<Runtime>,
44 maintenance::CheckMaintenance,
44 ChargeTransactionPayment<Runtime>,45 ChargeTransactionPayment<Runtime>,
45);46);
4647
53 from,54 from,
54 )),55 )),
55 frame_system::CheckWeight::<Runtime>::new(),56 frame_system::CheckWeight::<Runtime>::new(),
57 maintenance::CheckMaintenance,
56 ChargeTransactionPayment::<Runtime>::from(0),58 ChargeTransactionPayment::<Runtime>::from(0),
57 )59 )
58}60}
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
45 'pallet-xcm/runtime-benchmarks',45 'pallet-xcm/runtime-benchmarks',
46 'sp-runtime/runtime-benchmarks',46 'sp-runtime/runtime-benchmarks',
47 'xcm-builder/runtime-benchmarks',47 'xcm-builder/runtime-benchmarks',
48 'pallet-maintenance/runtime-benchmarks',
48]49]
49try-runtime = [50try-runtime = [
50 'frame-try-runtime',51 'frame-try-runtime',
88 'pallet-evm-contract-helpers/try-runtime',89 'pallet-evm-contract-helpers/try-runtime',
89 'pallet-evm-transaction-payment/try-runtime',90 'pallet-evm-transaction-payment/try-runtime',
90 'pallet-evm-migration/try-runtime',91 'pallet-evm-migration/try-runtime',
92 'pallet-maintenance/try-runtime',
91 'pallet-test-utils?/try-runtime',93 'pallet-test-utils?/try-runtime',
92]94]
93std = [95std = [
169 "orml-traits/std",171 "orml-traits/std",
170 "pallet-foreign-assets/std",172 "pallet-foreign-assets/std",
171173
174 'pallet-maintenance/std',
172 'pallet-test-utils?/std',175 'pallet-test-utils?/std',
173]176]
174limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']177limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
485evm-coder = { default-features = false, path = '../../crates/evm-coder' }488evm-coder = { default-features = false, path = '../../crates/evm-coder' }
486up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }489up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }
487pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }490pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }
491pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }
488492
489################################################################################493################################################################################
490# Test dependencies494# Test dependencies
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
44 'pallet-xcm/runtime-benchmarks',44 'pallet-xcm/runtime-benchmarks',
45 'sp-runtime/runtime-benchmarks',45 'sp-runtime/runtime-benchmarks',
46 'xcm-builder/runtime-benchmarks',46 'xcm-builder/runtime-benchmarks',
47 'pallet-maintenance/runtime-benchmarks',
47]48]
48try-runtime = [49try-runtime = [
49 'frame-try-runtime',50 'frame-try-runtime',
87 'pallet-evm-contract-helpers/try-runtime',88 'pallet-evm-contract-helpers/try-runtime',
88 'pallet-evm-transaction-payment/try-runtime',89 'pallet-evm-transaction-payment/try-runtime',
89 'pallet-evm-migration/try-runtime',90 'pallet-evm-migration/try-runtime',
91 'pallet-maintenance/try-runtime',
90]92]
91std = [93std = [
92 'codec/std',94 'codec/std',
165 "orml-xtokens/std",167 "orml-xtokens/std",
166 "orml-traits/std",168 "orml-traits/std",
167 "pallet-foreign-assets/std",169 "pallet-foreign-assets/std",
170 "pallet-maintenance/std",
168]171]
169limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']172limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
170quartz-runtime = ['refungible']173quartz-runtime = ['refungible']
487evm-coder = { default-features = false, path = '../../crates/evm-coder' }490evm-coder = { default-features = false, path = '../../crates/evm-coder' }
488up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }491up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }
489pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }492pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }
493pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }
490494
491################################################################################495################################################################################
492# Other Dependencies496# Other Dependencies
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
45 'sp-runtime/runtime-benchmarks',45 'sp-runtime/runtime-benchmarks',
46 'xcm-builder/runtime-benchmarks',46 'xcm-builder/runtime-benchmarks',
47 'up-data-structs/runtime-benchmarks',47 'up-data-structs/runtime-benchmarks',
48 'pallet-maintenance/runtime-benchmarks',
48]49]
49try-runtime = [50try-runtime = [
50 'frame-try-runtime',51 'frame-try-runtime',
88 'pallet-evm-contract-helpers/try-runtime',89 'pallet-evm-contract-helpers/try-runtime',
89 'pallet-evm-transaction-payment/try-runtime',90 'pallet-evm-transaction-payment/try-runtime',
90 'pallet-evm-migration/try-runtime',91 'pallet-evm-migration/try-runtime',
92 'pallet-maintenance/try-runtime',
91]93]
92std = [94std = [
93 'codec/std',95 'codec/std',
166 "orml-xtokens/std",168 "orml-xtokens/std",
167 "orml-traits/std",169 "orml-traits/std",
168 "pallet-foreign-assets/std",170 "pallet-foreign-assets/std",
171 "pallet-maintenance/std",
169]172]
170limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']173limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
171unique-runtime = []174unique-runtime = []
482evm-coder = { default-features = false, path = '../../crates/evm-coder' }485evm-coder = { default-features = false, path = '../../crates/evm-coder' }
483up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }486up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.30' }
484pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }487pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }
488pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }
485489
486################################################################################490################################################################################
487# Other Dependencies491# Other Dependencies
modifiedtests/package.jsondiffbeforeafterboth
70 "testBurnItem": "mocha --timeout 9999999 -r ts-node/register ./**/burnItem.test.ts",70 "testBurnItem": "mocha --timeout 9999999 -r ts-node/register ./**/burnItem.test.ts",
71 "testAdminTransferAndBurn": "mocha --timeout 9999999 -r ts-node/register ./**/adminTransferAndBurn.test.ts",71 "testAdminTransferAndBurn": "mocha --timeout 9999999 -r ts-node/register ./**/adminTransferAndBurn.test.ts",
72 "testSetPermissions": "mocha --timeout 9999999 -r ts-node/register ./**/setPermissions.test.ts",72 "testSetPermissions": "mocha --timeout 9999999 -r ts-node/register ./**/setPermissions.test.ts",
73 "testCreditFeesToTreasury": "mocha --timeout 9999999 -r ts-node/register ./**/creditFeesToTreasury.test.ts",73 "testCreditFeesToTreasury": "mocha --timeout 9999999 -r ts-node/register ./**/creditFeesToTreasury.seqtest.ts",
74 "testContractSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/eth/contractSponsoring.test.ts",74 "testContractSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/eth/contractSponsoring.test.ts",
75 "testEnableContractSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/enableContractSponsoring.test.ts",75 "testEnableContractSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/enableContractSponsoring.test.ts",
76 "testRemoveFromContractAllowList": "mocha --timeout 9999999 -r ts-node/register ./**/removeFromContractAllowList.test.ts",76 "testRemoveFromContractAllowList": "mocha --timeout 9999999 -r ts-node/register ./**/removeFromContractAllowList.test.ts",
77 "testSetContractSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setContractSponsoringRateLimit.test.ts",77 "testSetContractSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setContractSponsoringRateLimit.test.ts",
78 "testSetOffchainSchema": "mocha --timeout 9999999 -r ts-node/register ./**/setOffchainSchema.test.ts",78 "testSetOffchainSchema": "mocha --timeout 9999999 -r ts-node/register ./**/setOffchainSchema.test.ts",
79 "testNextSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/nextSponsoring.test.ts",79 "testNextSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/nextSponsoring.test.ts",
80 "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",80 "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",
81 "testMaintenance": "mocha --timeout 9999999 -r ts-node/register ./**/maintenanceMode.seqtest.ts",
81 "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts",82 "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.seqtest.ts",
82 "testScheduler": "mocha --timeout 9999999 -r ts-node/register ./**/scheduler.test.ts",83 "testScheduler": "mocha --timeout 9999999 -r ts-node/register ./**/scheduler.seqtest.ts",
83 "testSchedulingEVM": "mocha --timeout 9999999 -r ts-node/register ./**/eth/scheduling.test.ts",84 "testSchedulingEVM": "mocha --timeout 9999999 -r ts-node/register ./**/eth/scheduling.test.ts",
84 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts",85 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts",
85 "testBlockProduction": "mocha --timeout 9999999 -r ts-node/register ./**/block-production.test.ts",86 "testBlockProduction": "mocha --timeout 9999999 -r ts-node/register ./**/block-production.test.ts",
93 "testFT": "mocha --timeout 9999999 -r ts-node/register ./**/fungible.test.ts",94 "testFT": "mocha --timeout 9999999 -r ts-node/register ./**/fungible.test.ts",
94 "testEthFT": "mocha --timeout 9999999 -r ts-node/register ./**/eth/fungible.test.ts",95 "testEthFT": "mocha --timeout 9999999 -r ts-node/register ./**/eth/fungible.test.ts",
95 "testRPC": "mocha --timeout 9999999 -r ts-node/register ./**/rpc.test.ts",96 "testRPC": "mocha --timeout 9999999 -r ts-node/register ./**/rpc.test.ts",
96 "testPromotion": "yarn setup && mocha --timeout 9999999 -r ts-node/register ./**/app-promotion.test.ts",97 "testPromotion": "yarn setup && mocha --timeout 9999999 -r ts-node/register ./**/app-promotion.*test.ts",
97 "testXcmUnique": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmUnique.test.ts",98 "testXcmUnique": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmUnique.test.ts",
98 "testXcmQuartz": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmQuartz.test.ts",99 "testXcmQuartz": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmQuartz.test.ts",
99 "testXcmOpal": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmOpal.test.ts",100 "testXcmOpal": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmOpal.test.ts",
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { Codec } from '@polkadot/types-codec/types';10import type { Codec } from '@polkadot/types-codec/types';
11import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, XcmV1MultiLocation } from '@polkadot/types/lookup';
1313
14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
92 **/92 **/
93 [key: string]: Codec;93 [key: string]: Codec;
94 };94 };
95 scheduler: {
96 /**
97 * The maximum weight that may be scheduled per block for any dispatchables of less
98 * priority than `schedule::HARD_DEADLINE`.
99 **/
100 maximumWeight: Weight & AugmentedConst<ApiType>;
101 /**
102 * The maximum number of scheduled calls in the queue for a single block.
103 * Not strictly enforced, but used for weight estimation.
104 **/
105 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
106 /**
107 * Generic const
108 **/
109 [key: string]: Codec;
110 };
95 system: {111 system: {
96 /**112 /**
97 * Maximum number of block number to block hash mappings to keep (oldest pruned first).113 * Maximum number of block number to block hash mappings to keep (oldest pruned first).
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
374 **/374 **/
375 [key: string]: AugmentedError<ApiType>;375 [key: string]: AugmentedError<ApiType>;
376 };376 };
377 maintenance: {
378 /**
379 * Generic error
380 **/
381 [key: string]: AugmentedError<ApiType>;
382 };
377 nonfungible: {383 nonfungible: {
378 /**384 /**
379 * Unable to burn NFT with children385 * Unable to burn NFT with children
636 **/642 **/
637 [key: string]: AugmentedError<ApiType>;643 [key: string]: AugmentedError<ApiType>;
638 };644 };
645 scheduler: {
646 /**
647 * Failed to schedule a call
648 **/
649 FailedToSchedule: AugmentedError<ApiType>;
650 /**
651 * Cannot find the scheduled call.
652 **/
653 NotFound: AugmentedError<ApiType>;
654 /**
655 * Reschedule failed because it does not change scheduled time.
656 **/
657 RescheduleNoChange: AugmentedError<ApiType>;
658 /**
659 * Given target block number is in the past.
660 **/
661 TargetBlockNumberInPast: AugmentedError<ApiType>;
662 /**
663 * Generic error
664 **/
665 [key: string]: AugmentedError<ApiType>;
666 };
639 structure: {667 structure: {
640 /**668 /**
641 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.669 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.
702 **/730 **/
703 [key: string]: AugmentedError<ApiType>;731 [key: string]: AugmentedError<ApiType>;
704 };732 };
733 testUtils: {
734 TestPalletDisabled: AugmentedError<ApiType>;
735 TriggerRollback: AugmentedError<ApiType>;
736 /**
737 * Generic error
738 **/
739 [key: string]: AugmentedError<ApiType>;
740 };
705 tokens: {741 tokens: {
706 /**742 /**
707 * Cannot convert Amount into Balance type743 * Cannot convert Amount into Balance type
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
77
8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
9import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
10import type { ITuple } from '@polkadot/types-codec/types';
10import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
1213
13export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;14export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
1415
285 **/286 **/
286 [key: string]: AugmentedEvent<ApiType>;287 [key: string]: AugmentedEvent<ApiType>;
287 };288 };
289 maintenance: {
290 MaintenanceDisabled: AugmentedEvent<ApiType, []>;
291 MaintenanceEnabled: AugmentedEvent<ApiType, []>;
292 /**
293 * Generic event
294 **/
295 [key: string]: AugmentedEvent<ApiType>;
296 };
288 parachainSystem: {297 parachainSystem: {
289 /**298 /**
290 * Downward messages were processed using the given weight.299 * Downward messages were processed using the given weight.
466 **/475 **/
467 [key: string]: AugmentedEvent<ApiType>;476 [key: string]: AugmentedEvent<ApiType>;
468 };477 };
478 scheduler: {
479 /**
480 * The call for the provided hash was not found so the task has been aborted.
481 **/
482 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;
483 /**
484 * Canceled some task.
485 **/
486 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
487 /**
488 * Dispatched some task.
489 **/
490 Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
491 /**
492 * Scheduled task's priority has changed
493 **/
494 PriorityChanged: AugmentedEvent<ApiType, [when: u32, index: u32, priority: u8], { when: u32, index: u32, priority: u8 }>;
495 /**
496 * Scheduled some task.
497 **/
498 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
499 /**
500 * Generic event
501 **/
502 [key: string]: AugmentedEvent<ApiType>;
503 };
469 structure: {504 structure: {
470 /**505 /**
471 * Executed call on behalf of the token.506 * Executed call on behalf of the token.
524 **/559 **/
525 [key: string]: AugmentedEvent<ApiType>;560 [key: string]: AugmentedEvent<ApiType>;
526 };561 };
562 testUtils: {
563 ShouldRollback: AugmentedEvent<ApiType, []>;
564 ValueIsSet: AugmentedEvent<ApiType, []>;
565 /**
566 * Generic event
567 **/
568 [key: string]: AugmentedEvent<ApiType>;
569 };
527 tokens: {570 tokens: {
528 /**571 /**
529 * A balance was set by root.572 * A balance was set by root.
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/storage';6import '@polkadot/api-base/types/storage';
77
8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
9import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
12import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
13import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';
1414
15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
389 **/389 **/
390 [key: string]: QueryableStorageEntry<ApiType>;390 [key: string]: QueryableStorageEntry<ApiType>;
391 };391 };
392 maintenance: {
393 enabled: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
394 /**
395 * Generic query
396 **/
397 [key: string]: QueryableStorageEntry<ApiType>;
398 };
392 nonfungible: {399 nonfungible: {
393 /**400 /**
394 * Amount of tokens owned by an account in a collection.401 * Amount of tokens owned by an account in a collection.
670 **/677 **/
671 [key: string]: QueryableStorageEntry<ApiType>;678 [key: string]: QueryableStorageEntry<ApiType>;
672 };679 };
680 scheduler: {
681 /**
682 * Items to be executed, indexed by the block number that they should be executed on.
683 **/
684 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUniqueSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
685 /**
686 * Lookup from identity to the block number and index of the task.
687 **/
688 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
689 /**
690 * Generic query
691 **/
692 [key: string]: QueryableStorageEntry<ApiType>;
693 };
673 structure: {694 structure: {
674 /**695 /**
675 * Generic query696 * Generic query
772 **/793 **/
773 [key: string]: QueryableStorageEntry<ApiType>;794 [key: string]: QueryableStorageEntry<ApiType>;
774 };795 };
796 testUtils: {
797 enabled: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
798 testValue: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
799 /**
800 * Generic query
801 **/
802 [key: string]: QueryableStorageEntry<ApiType>;
803 };
775 timestamp: {804 timestamp: {
776 /**805 /**
777 * Did the timestamp get updated in this block?806 * Did the timestamp get updated in this block?
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/submittable';6import '@polkadot/api-base/types/submittable';
77
8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
9import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
12import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';12import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
1313
14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
332 **/332 **/
333 [key: string]: SubmittableExtrinsicFunction<ApiType>;333 [key: string]: SubmittableExtrinsicFunction<ApiType>;
334 };334 };
335 maintenance: {
336 disable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
337 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
338 /**
339 * Generic tx
340 **/
341 [key: string]: SubmittableExtrinsicFunction<ApiType>;
342 };
335 parachainSystem: {343 parachainSystem: {
336 authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;344 authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
337 enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;345 enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
821 **/829 **/
822 [key: string]: SubmittableExtrinsicFunction<ApiType>;830 [key: string]: SubmittableExtrinsicFunction<ApiType>;
823 };831 };
832 scheduler: {
833 /**
834 * Cancel a named scheduled task.
835 **/
836 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
837 changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;
838 /**
839 * Schedule a named task.
840 **/
841 scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, FrameSupportScheduleMaybeHashed]>;
842 /**
843 * Schedule a named task after a delay.
844 *
845 * # <weight>
846 * Same as [`schedule_named`](Self::schedule_named).
847 * # </weight>
848 **/
849 scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, FrameSupportScheduleMaybeHashed]>;
850 /**
851 * Generic tx
852 **/
853 [key: string]: SubmittableExtrinsicFunction<ApiType>;
854 };
824 structure: {855 structure: {
825 /**856 /**
826 * Generic tx857 * Generic tx
954 **/985 **/
955 [key: string]: SubmittableExtrinsicFunction<ApiType>;986 [key: string]: SubmittableExtrinsicFunction<ApiType>;
956 };987 };
988 testUtils: {
989 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
990 incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
991 justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
992 selfCancelingInc: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, maxTestValue: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32]>;
993 setTestValue: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
994 setTestValueAndRollback: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
995 /**
996 * Generic tx
997 **/
998 [key: string]: SubmittableExtrinsicFunction<ApiType>;
999 };
957 timestamp: {1000 timestamp: {
958 /**1001 /**
959 * Set the current time.1002 * Set the current time.
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, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, 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, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, 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, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, 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, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
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';
328 CumulusPalletXcmCall: CumulusPalletXcmCall;328 CumulusPalletXcmCall: CumulusPalletXcmCall;
329 CumulusPalletXcmError: CumulusPalletXcmError;329 CumulusPalletXcmError: CumulusPalletXcmError;
330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
331 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
332 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
333 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
523 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;524 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
524 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;525 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
525 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
526 FrameSupportPalletId: FrameSupportPalletId;528 FrameSupportPalletId: FrameSupportPalletId;
529 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
530 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
527 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;531 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
528 FrameSystemAccountInfo: FrameSystemAccountInfo;532 FrameSystemAccountInfo: FrameSystemAccountInfo;
529 FrameSystemCall: FrameSystemCall;533 FrameSystemCall: FrameSystemCall;
769 OffenceDetails: OffenceDetails;773 OffenceDetails: OffenceDetails;
770 Offender: Offender;774 Offender: Offender;
771 OldV1SessionInfo: OldV1SessionInfo;775 OldV1SessionInfo: OldV1SessionInfo;
776 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
772 OpalRuntimeRuntime: OpalRuntimeRuntime;777 OpalRuntimeRuntime: OpalRuntimeRuntime;
778 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
773 OpaqueCall: OpaqueCall;779 OpaqueCall: OpaqueCall;
774 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;780 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
775 OpaqueMetadata: OpaqueMetadata;781 OpaqueMetadata: OpaqueMetadata;
835 PalletEthereumError: PalletEthereumError;841 PalletEthereumError: PalletEthereumError;
836 PalletEthereumEvent: PalletEthereumEvent;842 PalletEthereumEvent: PalletEthereumEvent;
837 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;843 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
844 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
838 PalletEventMetadataLatest: PalletEventMetadataLatest;845 PalletEventMetadataLatest: PalletEventMetadataLatest;
839 PalletEventMetadataV14: PalletEventMetadataV14;846 PalletEventMetadataV14: PalletEventMetadataV14;
840 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;847 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
856 PalletFungibleError: PalletFungibleError;863 PalletFungibleError: PalletFungibleError;
857 PalletId: PalletId;864 PalletId: PalletId;
858 PalletInflationCall: PalletInflationCall;865 PalletInflationCall: PalletInflationCall;
866 PalletMaintenanceCall: PalletMaintenanceCall;
867 PalletMaintenanceError: PalletMaintenanceError;
868 PalletMaintenanceEvent: PalletMaintenanceEvent;
859 PalletMetadataLatest: PalletMetadataLatest;869 PalletMetadataLatest: PalletMetadataLatest;
860 PalletMetadataV14: PalletMetadataV14;870 PalletMetadataV14: PalletMetadataV14;
861 PalletNonfungibleError: PalletNonfungibleError;871 PalletNonfungibleError: PalletNonfungibleError;
879 PalletSudoEvent: PalletSudoEvent;889 PalletSudoEvent: PalletSudoEvent;
880 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;890 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
881 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;891 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
892 PalletTestUtilsCall: PalletTestUtilsCall;
893 PalletTestUtilsError: PalletTestUtilsError;
894 PalletTestUtilsEvent: PalletTestUtilsEvent;
882 PalletTimestampCall: PalletTimestampCall;895 PalletTimestampCall: PalletTimestampCall;
883 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;896 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
884 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;897 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
889 PalletUniqueCall: PalletUniqueCall;902 PalletUniqueCall: PalletUniqueCall;
890 PalletUniqueError: PalletUniqueError;903 PalletUniqueError: PalletUniqueError;
891 PalletUniqueRawEvent: PalletUniqueRawEvent;904 PalletUniqueRawEvent: PalletUniqueRawEvent;
905 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
906 PalletUniqueSchedulerError: PalletUniqueSchedulerError;
907 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
908 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
892 PalletVersion: PalletVersion;909 PalletVersion: PalletVersion;
893 PalletXcmCall: PalletXcmCall;910 PalletXcmCall: PalletXcmCall;
894 PalletXcmError: PalletXcmError;911 PalletXcmError: PalletXcmError;
895 PalletXcmEvent: PalletXcmEvent;912 PalletXcmEvent: PalletXcmEvent;
913 PalletXcmOrigin: PalletXcmOrigin;
896 ParachainDispatchOrigin: ParachainDispatchOrigin;914 ParachainDispatchOrigin: ParachainDispatchOrigin;
897 ParachainInherentData: ParachainInherentData;915 ParachainInherentData: ParachainInherentData;
898 ParachainProposal: ParachainProposal;916 ParachainProposal: ParachainProposal;
1166 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1184 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
1167 SpCoreEd25519Signature: SpCoreEd25519Signature;1185 SpCoreEd25519Signature: SpCoreEd25519Signature;
1168 SpCoreSr25519Signature: SpCoreSr25519Signature;1186 SpCoreSr25519Signature: SpCoreSr25519Signature;
1187 SpCoreVoid: SpCoreVoid;
1169 SpecVersion: SpecVersion;1188 SpecVersion: SpecVersion;
1170 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1189 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
1171 SpRuntimeDigest: SpRuntimeDigest;1190 SpRuntimeDigest: SpRuntimeDigest;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
154}154}
155
156/** @name CumulusPalletXcmOrigin */
157export interface CumulusPalletXcmOrigin extends Enum {
158 readonly isRelay: boolean;
159 readonly isSiblingParachain: boolean;
160 readonly asSiblingParachain: u32;
161 readonly type: 'Relay' | 'SiblingParachain';
162}
155163
156/** @name CumulusPalletXcmpQueueCall */164/** @name CumulusPalletXcmpQueueCall */
157export interface CumulusPalletXcmpQueueCall extends Enum {165export interface CumulusPalletXcmpQueueCall extends Enum {
536 readonly mandatory: FrameSystemLimitsWeightsPerClass;544 readonly mandatory: FrameSystemLimitsWeightsPerClass;
537}545}
546
547/** @name FrameSupportDispatchRawOrigin */
548export interface FrameSupportDispatchRawOrigin extends Enum {
549 readonly isRoot: boolean;
550 readonly isSigned: boolean;
551 readonly asSigned: AccountId32;
552 readonly isNone: boolean;
553 readonly type: 'Root' | 'Signed' | 'None';
554}
538555
539/** @name FrameSupportPalletId */556/** @name FrameSupportPalletId */
540export interface FrameSupportPalletId extends U8aFixed {}557export interface FrameSupportPalletId extends U8aFixed {}
558
559/** @name FrameSupportScheduleLookupError */
560export interface FrameSupportScheduleLookupError extends Enum {
561 readonly isUnknown: boolean;
562 readonly isBadFormat: boolean;
563 readonly type: 'Unknown' | 'BadFormat';
564}
565
566/** @name FrameSupportScheduleMaybeHashed */
567export interface FrameSupportScheduleMaybeHashed extends Enum {
568 readonly isValue: boolean;
569 readonly asValue: Call;
570 readonly isHash: boolean;
571 readonly asHash: H256;
572 readonly type: 'Value' | 'Hash';
573}
541574
542/** @name FrameSupportTokensMiscBalanceStatus */575/** @name FrameSupportTokensMiscBalanceStatus */
543export interface FrameSupportTokensMiscBalanceStatus extends Enum {576export interface FrameSupportTokensMiscBalanceStatus extends Enum {
693 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';726 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
694}727}
728
729/** @name OpalRuntimeOriginCaller */
730export interface OpalRuntimeOriginCaller extends Enum {
731 readonly isSystem: boolean;
732 readonly asSystem: FrameSupportDispatchRawOrigin;
733 readonly isVoid: boolean;
734 readonly asVoid: SpCoreVoid;
735 readonly isPolkadotXcm: boolean;
736 readonly asPolkadotXcm: PalletXcmOrigin;
737 readonly isCumulusXcm: boolean;
738 readonly asCumulusXcm: CumulusPalletXcmOrigin;
739 readonly isEthereum: boolean;
740 readonly asEthereum: PalletEthereumRawOrigin;
741 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
742}
695743
696/** @name OpalRuntimeRuntime */744/** @name OpalRuntimeRuntime */
697export interface OpalRuntimeRuntime extends Null {}745export interface OpalRuntimeRuntime extends Null {}
746
747/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
748export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
698749
699/** @name OrmlTokensAccountData */750/** @name OrmlTokensAccountData */
700export interface OrmlTokensAccountData extends Struct {751export interface OrmlTokensAccountData extends Struct {
1303/** @name PalletEthereumFakeTransactionFinalizer */1354/** @name PalletEthereumFakeTransactionFinalizer */
1304export interface PalletEthereumFakeTransactionFinalizer extends Null {}1355export interface PalletEthereumFakeTransactionFinalizer extends Null {}
1356
1357/** @name PalletEthereumRawOrigin */
1358export interface PalletEthereumRawOrigin extends Enum {
1359 readonly isEthereumTransaction: boolean;
1360 readonly asEthereumTransaction: H160;
1361 readonly type: 'EthereumTransaction';
1362}
13051363
1306/** @name PalletEvmAccountBasicCrossAccountIdRepr */1364/** @name PalletEvmAccountBasicCrossAccountIdRepr */
1307export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1365export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1543 readonly type: 'StartInflation';1601 readonly type: 'StartInflation';
1544}1602}
1603
1604/** @name PalletMaintenanceCall */
1605export interface PalletMaintenanceCall extends Enum {
1606 readonly isEnable: boolean;
1607 readonly isDisable: boolean;
1608 readonly type: 'Enable' | 'Disable';
1609}
1610
1611/** @name PalletMaintenanceError */
1612export interface PalletMaintenanceError extends Null {}
1613
1614/** @name PalletMaintenanceEvent */
1615export interface PalletMaintenanceEvent extends Enum {
1616 readonly isMaintenanceEnabled: boolean;
1617 readonly isMaintenanceDisabled: boolean;
1618 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
1619}
15451620
1546/** @name PalletNonfungibleError */1621/** @name PalletNonfungibleError */
1547export interface PalletNonfungibleError extends Enum {1622export interface PalletNonfungibleError extends Enum {
1911/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1986/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */
1912export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}1987export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
1988
1989/** @name PalletTestUtilsCall */
1990export interface PalletTestUtilsCall extends Enum {
1991 readonly isEnable: boolean;
1992 readonly isSetTestValue: boolean;
1993 readonly asSetTestValue: {
1994 readonly value: u32;
1995 } & Struct;
1996 readonly isSetTestValueAndRollback: boolean;
1997 readonly asSetTestValueAndRollback: {
1998 readonly value: u32;
1999 } & Struct;
2000 readonly isIncTestValue: boolean;
2001 readonly isSelfCancelingInc: boolean;
2002 readonly asSelfCancelingInc: {
2003 readonly id: U8aFixed;
2004 readonly maxTestValue: u32;
2005 } & Struct;
2006 readonly isJustTakeFee: boolean;
2007 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee';
2008}
2009
2010/** @name PalletTestUtilsError */
2011export interface PalletTestUtilsError extends Enum {
2012 readonly isTestPalletDisabled: boolean;
2013 readonly isTriggerRollback: boolean;
2014 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
2015}
2016
2017/** @name PalletTestUtilsEvent */
2018export interface PalletTestUtilsEvent extends Enum {
2019 readonly isValueIsSet: boolean;
2020 readonly isShouldRollback: boolean;
2021 readonly type: 'ValueIsSet' | 'ShouldRollback';
2022}
19132023
1914/** @name PalletTimestampCall */2024/** @name PalletTimestampCall */
1915export interface PalletTimestampCall extends Enum {2025export interface PalletTimestampCall extends Enum {
2217 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2327 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
2218}2328}
2329
2330/** @name PalletUniqueSchedulerCall */
2331export interface PalletUniqueSchedulerCall extends Enum {
2332 readonly isScheduleNamed: boolean;
2333 readonly asScheduleNamed: {
2334 readonly id: U8aFixed;
2335 readonly when: u32;
2336 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2337 readonly priority: Option<u8>;
2338 readonly call: FrameSupportScheduleMaybeHashed;
2339 } & Struct;
2340 readonly isCancelNamed: boolean;
2341 readonly asCancelNamed: {
2342 readonly id: U8aFixed;
2343 } & Struct;
2344 readonly isScheduleNamedAfter: boolean;
2345 readonly asScheduleNamedAfter: {
2346 readonly id: U8aFixed;
2347 readonly after: u32;
2348 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2349 readonly priority: Option<u8>;
2350 readonly call: FrameSupportScheduleMaybeHashed;
2351 } & Struct;
2352 readonly isChangeNamedPriority: boolean;
2353 readonly asChangeNamedPriority: {
2354 readonly id: U8aFixed;
2355 readonly priority: u8;
2356 } & Struct;
2357 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
2358}
2359
2360/** @name PalletUniqueSchedulerError */
2361export interface PalletUniqueSchedulerError extends Enum {
2362 readonly isFailedToSchedule: boolean;
2363 readonly isNotFound: boolean;
2364 readonly isTargetBlockNumberInPast: boolean;
2365 readonly isRescheduleNoChange: boolean;
2366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
2367}
2368
2369/** @name PalletUniqueSchedulerEvent */
2370export interface PalletUniqueSchedulerEvent extends Enum {
2371 readonly isScheduled: boolean;
2372 readonly asScheduled: {
2373 readonly when: u32;
2374 readonly index: u32;
2375 } & Struct;
2376 readonly isCanceled: boolean;
2377 readonly asCanceled: {
2378 readonly when: u32;
2379 readonly index: u32;
2380 } & Struct;
2381 readonly isPriorityChanged: boolean;
2382 readonly asPriorityChanged: {
2383 readonly when: u32;
2384 readonly index: u32;
2385 readonly priority: u8;
2386 } & Struct;
2387 readonly isDispatched: boolean;
2388 readonly asDispatched: {
2389 readonly task: ITuple<[u32, u32]>;
2390 readonly id: Option<U8aFixed>;
2391 readonly result: Result<Null, SpRuntimeDispatchError>;
2392 } & Struct;
2393 readonly isCallLookupFailed: boolean;
2394 readonly asCallLookupFailed: {
2395 readonly task: ITuple<[u32, u32]>;
2396 readonly id: Option<U8aFixed>;
2397 readonly error: FrameSupportScheduleLookupError;
2398 } & Struct;
2399 readonly type: 'Scheduled' | 'Canceled' | 'PriorityChanged' | 'Dispatched' | 'CallLookupFailed';
2400}
2401
2402/** @name PalletUniqueSchedulerScheduledV3 */
2403export interface PalletUniqueSchedulerScheduledV3 extends Struct {
2404 readonly maybeId: Option<U8aFixed>;
2405 readonly priority: u8;
2406 readonly call: FrameSupportScheduleMaybeHashed;
2407 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2408 readonly origin: OpalRuntimeOriginCaller;
2409}
22192410
2220/** @name PalletXcmCall */2411/** @name PalletXcmCall */
2221export interface PalletXcmCall extends Enum {2412export interface PalletXcmCall extends Enum {
2334 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2525 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
2335}2526}
2527
2528/** @name PalletXcmOrigin */
2529export interface PalletXcmOrigin extends Enum {
2530 readonly isXcm: boolean;
2531 readonly asXcm: XcmV1MultiLocation;
2532 readonly isResponse: boolean;
2533 readonly asResponse: XcmV1MultiLocation;
2534 readonly type: 'Xcm' | 'Response';
2535}
23362536
2337/** @name PhantomTypeUpDataStructs */2537/** @name PhantomTypeUpDataStructs */
2338export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}2538export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
2554/** @name SpCoreSr25519Signature */2754/** @name SpCoreSr25519Signature */
2555export interface SpCoreSr25519Signature extends U8aFixed {}2755export interface SpCoreSr25519Signature extends U8aFixed {}
2756
2757/** @name SpCoreVoid */
2758export interface SpCoreVoid extends Null {}
25562759
2557/** @name SpRuntimeArithmeticError */2760/** @name SpRuntimeArithmeticError */
2558export interface SpRuntimeArithmeticError extends Enum {2761export interface SpRuntimeArithmeticError extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
1003 Ethereum: 'H160'1003 Ethereum: 'H160'
1004 }1004 }
1005 },1005 },
1006 /**
1007 * Lookup93: pallet_unique_scheduler::pallet::Event<T>
1008 **/
1009 PalletUniqueSchedulerEvent: {
1010 _enum: {
1011 Scheduled: {
1012 when: 'u32',
1013 index: 'u32',
1014 },
1015 Canceled: {
1016 when: 'u32',
1017 index: 'u32',
1018 },
1019 PriorityChanged: {
1020 when: 'u32',
1021 index: 'u32',
1022 priority: 'u8',
1023 },
1024 Dispatched: {
1025 task: '(u32,u32)',
1026 id: 'Option<[u8;16]>',
1027 result: 'Result<Null, SpRuntimeDispatchError>',
1028 },
1029 CallLookupFailed: {
1030 task: '(u32,u32)',
1031 id: 'Option<[u8;16]>',
1032 error: 'FrameSupportScheduleLookupError'
1033 }
1034 }
1035 },
1036 /**
1037 * Lookup96: frame_support::traits::schedule::LookupError
1038 **/
1039 FrameSupportScheduleLookupError: {
1040 _enum: ['Unknown', 'BadFormat']
1041 },
1006 /**1042 /**
1007 * Lookup93: pallet_common::pallet::Event<T>1043 * Lookup97: pallet_common::pallet::Event<T>
1008 **/1044 **/
1009 PalletCommonEvent: {1045 PalletCommonEvent: {
1010 _enum: {1046 _enum: {
1011 CollectionCreated: '(u32,u8,AccountId32)',1047 CollectionCreated: '(u32,u8,AccountId32)',
1021 PropertyPermissionSet: '(u32,Bytes)'1057 PropertyPermissionSet: '(u32,Bytes)'
1022 }1058 }
1023 },1059 },
1024 /**1060 /**
1025 * Lookup96: pallet_structure::pallet::Event<T>1061 * Lookup100: pallet_structure::pallet::Event<T>
1026 **/1062 **/
1027 PalletStructureEvent: {1063 PalletStructureEvent: {
1028 _enum: {1064 _enum: {
1029 Executed: 'Result<Null, SpRuntimeDispatchError>'1065 Executed: 'Result<Null, SpRuntimeDispatchError>'
1030 }1066 }
1031 },1067 },
1032 /**1068 /**
1033 * Lookup97: pallet_rmrk_core::pallet::Event<T>1069 * Lookup101: pallet_rmrk_core::pallet::Event<T>
1034 **/1070 **/
1035 PalletRmrkCoreEvent: {1071 PalletRmrkCoreEvent: {
1036 _enum: {1072 _enum: {
1037 CollectionCreated: {1073 CollectionCreated: {
1106 }1142 }
1107 }1143 }
1108 },1144 },
1109 /**1145 /**
1110 * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1146 * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
1111 **/1147 **/
1112 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1148 RmrkTraitsNftAccountIdOrCollectionNftTuple: {
1113 _enum: {1149 _enum: {
1114 AccountId: 'AccountId32',1150 AccountId: 'AccountId32',
1115 CollectionAndNftTuple: '(u32,u32)'1151 CollectionAndNftTuple: '(u32,u32)'
1116 }1152 }
1117 },1153 },
1118 /**1154 /**
1119 * Lookup103: pallet_rmrk_equip::pallet::Event<T>1155 * Lookup107: pallet_rmrk_equip::pallet::Event<T>
1120 **/1156 **/
1121 PalletRmrkEquipEvent: {1157 PalletRmrkEquipEvent: {
1122 _enum: {1158 _enum: {
1123 BaseCreated: {1159 BaseCreated: {
1130 }1166 }
1131 }1167 }
1132 },1168 },
1133 /**1169 /**
1134 * Lookup104: pallet_app_promotion::pallet::Event<T>1170 * Lookup108: pallet_app_promotion::pallet::Event<T>
1135 **/1171 **/
1136 PalletAppPromotionEvent: {1172 PalletAppPromotionEvent: {
1137 _enum: {1173 _enum: {
1138 StakingRecalculation: '(AccountId32,u128,u128)',1174 StakingRecalculation: '(AccountId32,u128,u128)',
1141 SetAdmin: 'AccountId32'1177 SetAdmin: 'AccountId32'
1142 }1178 }
1143 },1179 },
1144 /**1180 /**
1145 * Lookup105: pallet_foreign_assets::module::Event<T>1181 * Lookup109: pallet_foreign_assets::module::Event<T>
1146 **/1182 **/
1147 PalletForeignAssetsModuleEvent: {1183 PalletForeignAssetsModuleEvent: {
1148 _enum: {1184 _enum: {
1149 ForeignAssetRegistered: {1185 ForeignAssetRegistered: {
1166 }1202 }
1167 }1203 }
1168 },1204 },
1169 /**1205 /**
1170 * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>1206 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>
1171 **/1207 **/
1172 PalletForeignAssetsModuleAssetMetadata: {1208 PalletForeignAssetsModuleAssetMetadata: {
1173 name: 'Bytes',1209 name: 'Bytes',
1174 symbol: 'Bytes',1210 symbol: 'Bytes',
1175 decimals: 'u8',1211 decimals: 'u8',
1176 minimalBalance: 'u128'1212 minimalBalance: 'u128'
1177 },1213 },
1178 /**1214 /**
1179 * Lookup107: pallet_evm::pallet::Event<T>1215 * Lookup111: pallet_evm::pallet::Event<T>
1180 **/1216 **/
1181 PalletEvmEvent: {1217 PalletEvmEvent: {
1182 _enum: {1218 _enum: {
1183 Log: 'EthereumLog',1219 Log: 'EthereumLog',
1189 BalanceWithdraw: '(AccountId32,H160,U256)'1225 BalanceWithdraw: '(AccountId32,H160,U256)'
1190 }1226 }
1191 },1227 },
1192 /**1228 /**
1193 * Lookup108: ethereum::log::Log1229 * Lookup112: ethereum::log::Log
1194 **/1230 **/
1195 EthereumLog: {1231 EthereumLog: {
1196 address: 'H160',1232 address: 'H160',
1197 topics: 'Vec<H256>',1233 topics: 'Vec<H256>',
1198 data: 'Bytes'1234 data: 'Bytes'
1199 },1235 },
1200 /**1236 /**
1201 * Lookup112: pallet_ethereum::pallet::Event1237 * Lookup116: pallet_ethereum::pallet::Event
1202 **/1238 **/
1203 PalletEthereumEvent: {1239 PalletEthereumEvent: {
1204 _enum: {1240 _enum: {
1205 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1241 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'
1206 }1242 }
1207 },1243 },
1208 /**1244 /**
1209 * Lookup113: evm_core::error::ExitReason1245 * Lookup117: evm_core::error::ExitReason
1210 **/1246 **/
1211 EvmCoreErrorExitReason: {1247 EvmCoreErrorExitReason: {
1212 _enum: {1248 _enum: {
1213 Succeed: 'EvmCoreErrorExitSucceed',1249 Succeed: 'EvmCoreErrorExitSucceed',
1216 Fatal: 'EvmCoreErrorExitFatal'1252 Fatal: 'EvmCoreErrorExitFatal'
1217 }1253 }
1218 },1254 },
1219 /**1255 /**
1220 * Lookup114: evm_core::error::ExitSucceed1256 * Lookup118: evm_core::error::ExitSucceed
1221 **/1257 **/
1222 EvmCoreErrorExitSucceed: {1258 EvmCoreErrorExitSucceed: {
1223 _enum: ['Stopped', 'Returned', 'Suicided']1259 _enum: ['Stopped', 'Returned', 'Suicided']
1224 },1260 },
1225 /**1261 /**
1226 * Lookup115: evm_core::error::ExitError1262 * Lookup119: evm_core::error::ExitError
1227 **/1263 **/
1228 EvmCoreErrorExitError: {1264 EvmCoreErrorExitError: {
1229 _enum: {1265 _enum: {
1230 StackUnderflow: 'Null',1266 StackUnderflow: 'Null',
1244 InvalidCode: 'Null'1280 InvalidCode: 'Null'
1245 }1281 }
1246 },1282 },
1247 /**1283 /**
1248 * Lookup118: evm_core::error::ExitRevert1284 * Lookup122: evm_core::error::ExitRevert
1249 **/1285 **/
1250 EvmCoreErrorExitRevert: {1286 EvmCoreErrorExitRevert: {
1251 _enum: ['Reverted']1287 _enum: ['Reverted']
1252 },1288 },
1253 /**1289 /**
1254 * Lookup119: evm_core::error::ExitFatal1290 * Lookup123: evm_core::error::ExitFatal
1255 **/1291 **/
1256 EvmCoreErrorExitFatal: {1292 EvmCoreErrorExitFatal: {
1257 _enum: {1293 _enum: {
1258 NotSupported: 'Null',1294 NotSupported: 'Null',
1261 Other: 'Text'1297 Other: 'Text'
1262 }1298 }
1263 },1299 },
1264 /**1300 /**
1265 * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>1301 * Lookup124: pallet_evm_contract_helpers::pallet::Event<T>
1266 **/1302 **/
1267 PalletEvmContractHelpersEvent: {1303 PalletEvmContractHelpersEvent: {
1268 _enum: {1304 _enum: {
1269 ContractSponsorSet: '(H160,AccountId32)',1305 ContractSponsorSet: '(H160,AccountId32)',
1270 ContractSponsorshipConfirmed: '(H160,AccountId32)',1306 ContractSponsorshipConfirmed: '(H160,AccountId32)',
1271 ContractSponsorRemoved: 'H160'1307 ContractSponsorRemoved: 'H160'
1272 }1308 }
1273 },1309 },
1310 /**
1311 * Lookup125: pallet_maintenance::pallet::Event<T>
1312 **/
1313 PalletMaintenanceEvent: {
1314 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
1315 },
1316 /**
1317 * Lookup126: pallet_test_utils::pallet::Event<T>
1318 **/
1319 PalletTestUtilsEvent: {
1320 _enum: ['ValueIsSet', 'ShouldRollback']
1321 },
1274 /**1322 /**
1275 * Lookup121: frame_system::Phase1323 * Lookup127: frame_system::Phase
1276 **/1324 **/
1277 FrameSystemPhase: {1325 FrameSystemPhase: {
1278 _enum: {1326 _enum: {
1279 ApplyExtrinsic: 'u32',1327 ApplyExtrinsic: 'u32',
1280 Finalization: 'Null',1328 Finalization: 'Null',
1281 Initialization: 'Null'1329 Initialization: 'Null'
1282 }1330 }
1283 },1331 },
1284 /**1332 /**
1285 * Lookup124: frame_system::LastRuntimeUpgradeInfo1333 * Lookup129: frame_system::LastRuntimeUpgradeInfo
1286 **/1334 **/
1287 FrameSystemLastRuntimeUpgradeInfo: {1335 FrameSystemLastRuntimeUpgradeInfo: {
1288 specVersion: 'Compact<u32>',1336 specVersion: 'Compact<u32>',
1289 specName: 'Text'1337 specName: 'Text'
1290 },1338 },
1291 /**1339 /**
1292 * Lookup125: frame_system::pallet::Call<T>1340 * Lookup130: frame_system::pallet::Call<T>
1293 **/1341 **/
1294 FrameSystemCall: {1342 FrameSystemCall: {
1295 _enum: {1343 _enum: {
1296 fill_block: {1344 fill_block: {
1326 }1374 }
1327 }1375 }
1328 },1376 },
1329 /**1377 /**
1330 * Lookup130: frame_system::limits::BlockWeights1378 * Lookup135: frame_system::limits::BlockWeights
1331 **/1379 **/
1332 FrameSystemLimitsBlockWeights: {1380 FrameSystemLimitsBlockWeights: {
1333 baseBlock: 'Weight',1381 baseBlock: 'Weight',
1334 maxBlock: 'Weight',1382 maxBlock: 'Weight',
1335 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1383 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
1336 },1384 },
1337 /**1385 /**
1338 * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1386 * Lookup136: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1339 **/1387 **/
1340 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1388 FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1341 normal: 'FrameSystemLimitsWeightsPerClass',1389 normal: 'FrameSystemLimitsWeightsPerClass',
1342 operational: 'FrameSystemLimitsWeightsPerClass',1390 operational: 'FrameSystemLimitsWeightsPerClass',
1343 mandatory: 'FrameSystemLimitsWeightsPerClass'1391 mandatory: 'FrameSystemLimitsWeightsPerClass'
1344 },1392 },
1345 /**1393 /**
1346 * Lookup132: frame_system::limits::WeightsPerClass1394 * Lookup137: frame_system::limits::WeightsPerClass
1347 **/1395 **/
1348 FrameSystemLimitsWeightsPerClass: {1396 FrameSystemLimitsWeightsPerClass: {
1349 baseExtrinsic: 'Weight',1397 baseExtrinsic: 'Weight',
1350 maxExtrinsic: 'Option<Weight>',1398 maxExtrinsic: 'Option<Weight>',
1351 maxTotal: 'Option<Weight>',1399 maxTotal: 'Option<Weight>',
1352 reserved: 'Option<Weight>'1400 reserved: 'Option<Weight>'
1353 },1401 },
1354 /**1402 /**
1355 * Lookup134: frame_system::limits::BlockLength1403 * Lookup139: frame_system::limits::BlockLength
1356 **/1404 **/
1357 FrameSystemLimitsBlockLength: {1405 FrameSystemLimitsBlockLength: {
1358 max: 'FrameSupportDispatchPerDispatchClassU32'1406 max: 'FrameSupportDispatchPerDispatchClassU32'
1359 },1407 },
1360 /**1408 /**
1361 * Lookup135: frame_support::dispatch::PerDispatchClass<T>1409 * Lookup140: frame_support::dispatch::PerDispatchClass<T>
1362 **/1410 **/
1363 FrameSupportDispatchPerDispatchClassU32: {1411 FrameSupportDispatchPerDispatchClassU32: {
1364 normal: 'u32',1412 normal: 'u32',
1365 operational: 'u32',1413 operational: 'u32',
1366 mandatory: 'u32'1414 mandatory: 'u32'
1367 },1415 },
1368 /**1416 /**
1369 * Lookup136: sp_weights::RuntimeDbWeight1417 * Lookup141: sp_weights::RuntimeDbWeight
1370 **/1418 **/
1371 SpWeightsRuntimeDbWeight: {1419 SpWeightsRuntimeDbWeight: {
1372 read: 'u64',1420 read: 'u64',
1373 write: 'u64'1421 write: 'u64'
1374 },1422 },
1375 /**1423 /**
1376 * Lookup137: sp_version::RuntimeVersion1424 * Lookup142: sp_version::RuntimeVersion
1377 **/1425 **/
1378 SpVersionRuntimeVersion: {1426 SpVersionRuntimeVersion: {
1379 specName: 'Text',1427 specName: 'Text',
1380 implName: 'Text',1428 implName: 'Text',
1385 transactionVersion: 'u32',1433 transactionVersion: 'u32',
1386 stateVersion: 'u8'1434 stateVersion: 'u8'
1387 },1435 },
1388 /**1436 /**
1389 * Lookup142: frame_system::pallet::Error<T>1437 * Lookup147: frame_system::pallet::Error<T>
1390 **/1438 **/
1391 FrameSystemError: {1439 FrameSystemError: {
1392 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1440 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1393 },1441 },
1394 /**1442 /**
1395 * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1443 * Lookup148: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
1396 **/1444 **/
1397 PolkadotPrimitivesV2PersistedValidationData: {1445 PolkadotPrimitivesV2PersistedValidationData: {
1398 parentHead: 'Bytes',1446 parentHead: 'Bytes',
1399 relayParentNumber: 'u32',1447 relayParentNumber: 'u32',
1400 relayParentStorageRoot: 'H256',1448 relayParentStorageRoot: 'H256',
1401 maxPovSize: 'u32'1449 maxPovSize: 'u32'
1402 },1450 },
1403 /**1451 /**
1404 * Lookup146: polkadot_primitives::v2::UpgradeRestriction1452 * Lookup151: polkadot_primitives::v2::UpgradeRestriction
1405 **/1453 **/
1406 PolkadotPrimitivesV2UpgradeRestriction: {1454 PolkadotPrimitivesV2UpgradeRestriction: {
1407 _enum: ['Present']1455 _enum: ['Present']
1408 },1456 },
1409 /**1457 /**
1410 * Lookup147: sp_trie::storage_proof::StorageProof1458 * Lookup152: sp_trie::storage_proof::StorageProof
1411 **/1459 **/
1412 SpTrieStorageProof: {1460 SpTrieStorageProof: {
1413 trieNodes: 'BTreeSet<Bytes>'1461 trieNodes: 'BTreeSet<Bytes>'
1414 },1462 },
1415 /**1463 /**
1416 * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1464 * Lookup154: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1417 **/1465 **/
1418 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1466 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1419 dmqMqcHead: 'H256',1467 dmqMqcHead: 'H256',
1420 relayDispatchQueueSize: '(u32,u32)',1468 relayDispatchQueueSize: '(u32,u32)',
1421 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1469 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
1422 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1470 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
1423 },1471 },
1424 /**1472 /**
1425 * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel1473 * Lookup157: polkadot_primitives::v2::AbridgedHrmpChannel
1426 **/1474 **/
1427 PolkadotPrimitivesV2AbridgedHrmpChannel: {1475 PolkadotPrimitivesV2AbridgedHrmpChannel: {
1428 maxCapacity: 'u32',1476 maxCapacity: 'u32',
1429 maxTotalSize: 'u32',1477 maxTotalSize: 'u32',
1432 totalSize: 'u32',1480 totalSize: 'u32',
1433 mqcHead: 'Option<H256>'1481 mqcHead: 'Option<H256>'
1434 },1482 },
1435 /**1483 /**
1436 * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration1484 * Lookup158: polkadot_primitives::v2::AbridgedHostConfiguration
1437 **/1485 **/
1438 PolkadotPrimitivesV2AbridgedHostConfiguration: {1486 PolkadotPrimitivesV2AbridgedHostConfiguration: {
1439 maxCodeSize: 'u32',1487 maxCodeSize: 'u32',
1440 maxHeadDataSize: 'u32',1488 maxHeadDataSize: 'u32',
1446 validationUpgradeCooldown: 'u32',1494 validationUpgradeCooldown: 'u32',
1447 validationUpgradeDelay: 'u32'1495 validationUpgradeDelay: 'u32'
1448 },1496 },
1449 /**1497 /**
1450 * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1498 * Lookup164: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1451 **/1499 **/
1452 PolkadotCorePrimitivesOutboundHrmpMessage: {1500 PolkadotCorePrimitivesOutboundHrmpMessage: {
1453 recipient: 'u32',1501 recipient: 'u32',
1454 data: 'Bytes'1502 data: 'Bytes'
1455 },1503 },
1456 /**1504 /**
1457 * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>1505 * Lookup165: cumulus_pallet_parachain_system::pallet::Call<T>
1458 **/1506 **/
1459 CumulusPalletParachainSystemCall: {1507 CumulusPalletParachainSystemCall: {
1460 _enum: {1508 _enum: {
1461 set_validation_data: {1509 set_validation_data: {
1472 }1520 }
1473 }1521 }
1474 },1522 },
1475 /**1523 /**
1476 * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData1524 * Lookup166: cumulus_primitives_parachain_inherent::ParachainInherentData
1477 **/1525 **/
1478 CumulusPrimitivesParachainInherentParachainInherentData: {1526 CumulusPrimitivesParachainInherentParachainInherentData: {
1479 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1527 validationData: 'PolkadotPrimitivesV2PersistedValidationData',
1480 relayChainState: 'SpTrieStorageProof',1528 relayChainState: 'SpTrieStorageProof',
1481 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1529 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
1482 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1530 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1483 },1531 },
1484 /**1532 /**
1485 * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1533 * Lookup168: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1486 **/1534 **/
1487 PolkadotCorePrimitivesInboundDownwardMessage: {1535 PolkadotCorePrimitivesInboundDownwardMessage: {
1488 sentAt: 'u32',1536 sentAt: 'u32',
1489 msg: 'Bytes'1537 msg: 'Bytes'
1490 },1538 },
1491 /**1539 /**
1492 * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1540 * Lookup171: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1493 **/1541 **/
1494 PolkadotCorePrimitivesInboundHrmpMessage: {1542 PolkadotCorePrimitivesInboundHrmpMessage: {
1495 sentAt: 'u32',1543 sentAt: 'u32',
1496 data: 'Bytes'1544 data: 'Bytes'
1497 },1545 },
1498 /**1546 /**
1499 * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>1547 * Lookup174: cumulus_pallet_parachain_system::pallet::Error<T>
1500 **/1548 **/
1501 CumulusPalletParachainSystemError: {1549 CumulusPalletParachainSystemError: {
1502 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1550 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1503 },1551 },
1504 /**1552 /**
1505 * Lookup171: pallet_balances::BalanceLock<Balance>1553 * Lookup176: pallet_balances::BalanceLock<Balance>
1506 **/1554 **/
1507 PalletBalancesBalanceLock: {1555 PalletBalancesBalanceLock: {
1508 id: '[u8;8]',1556 id: '[u8;8]',
1509 amount: 'u128',1557 amount: 'u128',
1510 reasons: 'PalletBalancesReasons'1558 reasons: 'PalletBalancesReasons'
1511 },1559 },
1512 /**1560 /**
1513 * Lookup172: pallet_balances::Reasons1561 * Lookup177: pallet_balances::Reasons
1514 **/1562 **/
1515 PalletBalancesReasons: {1563 PalletBalancesReasons: {
1516 _enum: ['Fee', 'Misc', 'All']1564 _enum: ['Fee', 'Misc', 'All']
1517 },1565 },
1518 /**1566 /**
1519 * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>1567 * Lookup180: pallet_balances::ReserveData<ReserveIdentifier, Balance>
1520 **/1568 **/
1521 PalletBalancesReserveData: {1569 PalletBalancesReserveData: {
1522 id: '[u8;16]',1570 id: '[u8;16]',
1523 amount: 'u128'1571 amount: 'u128'
1524 },1572 },
1525 /**1573 /**
1526 * Lookup177: pallet_balances::Releases1574 * Lookup182: pallet_balances::Releases
1527 **/1575 **/
1528 PalletBalancesReleases: {1576 PalletBalancesReleases: {
1529 _enum: ['V1_0_0', 'V2_0_0']1577 _enum: ['V1_0_0', 'V2_0_0']
1530 },1578 },
1531 /**1579 /**
1532 * Lookup178: pallet_balances::pallet::Call<T, I>1580 * Lookup183: pallet_balances::pallet::Call<T, I>
1533 **/1581 **/
1534 PalletBalancesCall: {1582 PalletBalancesCall: {
1535 _enum: {1583 _enum: {
1536 transfer: {1584 transfer: {
1561 }1609 }
1562 }1610 }
1563 },1611 },
1564 /**1612 /**
1565 * Lookup181: pallet_balances::pallet::Error<T, I>1613 * Lookup186: pallet_balances::pallet::Error<T, I>
1566 **/1614 **/
1567 PalletBalancesError: {1615 PalletBalancesError: {
1568 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1616 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
1569 },1617 },
1570 /**1618 /**
1571 * Lookup183: pallet_timestamp::pallet::Call<T>1619 * Lookup188: pallet_timestamp::pallet::Call<T>
1572 **/1620 **/
1573 PalletTimestampCall: {1621 PalletTimestampCall: {
1574 _enum: {1622 _enum: {
1575 set: {1623 set: {
1576 now: 'Compact<u64>'1624 now: 'Compact<u64>'
1577 }1625 }
1578 }1626 }
1579 },1627 },
1580 /**1628 /**
1581 * Lookup185: pallet_transaction_payment::Releases1629 * Lookup190: pallet_transaction_payment::Releases
1582 **/1630 **/
1583 PalletTransactionPaymentReleases: {1631 PalletTransactionPaymentReleases: {
1584 _enum: ['V1Ancient', 'V2']1632 _enum: ['V1Ancient', 'V2']
1585 },1633 },
1586 /**1634 /**
1587 * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1635 * Lookup191: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1588 **/1636 **/
1589 PalletTreasuryProposal: {1637 PalletTreasuryProposal: {
1590 proposer: 'AccountId32',1638 proposer: 'AccountId32',
1591 value: 'u128',1639 value: 'u128',
1592 beneficiary: 'AccountId32',1640 beneficiary: 'AccountId32',
1593 bond: 'u128'1641 bond: 'u128'
1594 },1642 },
1595 /**1643 /**
1596 * Lookup189: pallet_treasury::pallet::Call<T, I>1644 * Lookup194: pallet_treasury::pallet::Call<T, I>
1597 **/1645 **/
1598 PalletTreasuryCall: {1646 PalletTreasuryCall: {
1599 _enum: {1647 _enum: {
1600 propose_spend: {1648 propose_spend: {
1616 }1664 }
1617 }1665 }
1618 },1666 },
1619 /**1667 /**
1620 * Lookup192: frame_support::PalletId1668 * Lookup197: frame_support::PalletId
1621 **/1669 **/
1622 FrameSupportPalletId: '[u8;8]',1670 FrameSupportPalletId: '[u8;8]',
1623 /**1671 /**
1624 * Lookup193: pallet_treasury::pallet::Error<T, I>1672 * Lookup198: pallet_treasury::pallet::Error<T, I>
1625 **/1673 **/
1626 PalletTreasuryError: {1674 PalletTreasuryError: {
1627 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1675 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
1628 },1676 },
1629 /**1677 /**
1630 * Lookup194: pallet_sudo::pallet::Call<T>1678 * Lookup199: pallet_sudo::pallet::Call<T>
1631 **/1679 **/
1632 PalletSudoCall: {1680 PalletSudoCall: {
1633 _enum: {1681 _enum: {
1634 sudo: {1682 sudo: {
1650 }1698 }
1651 }1699 }
1652 },1700 },
1653 /**1701 /**
1654 * Lookup196: orml_vesting::module::Call<T>1702 * Lookup201: orml_vesting::module::Call<T>
1655 **/1703 **/
1656 OrmlVestingModuleCall: {1704 OrmlVestingModuleCall: {
1657 _enum: {1705 _enum: {
1658 claim: 'Null',1706 claim: 'Null',
1669 }1717 }
1670 }1718 }
1671 },1719 },
1672 /**1720 /**
1673 * Lookup198: orml_xtokens::module::Call<T>1721 * Lookup203: orml_xtokens::module::Call<T>
1674 **/1722 **/
1675 OrmlXtokensModuleCall: {1723 OrmlXtokensModuleCall: {
1676 _enum: {1724 _enum: {
1677 transfer: {1725 transfer: {
1712 }1760 }
1713 }1761 }
1714 },1762 },
1715 /**1763 /**
1716 * Lookup199: xcm::VersionedMultiAsset1764 * Lookup204: xcm::VersionedMultiAsset
1717 **/1765 **/
1718 XcmVersionedMultiAsset: {1766 XcmVersionedMultiAsset: {
1719 _enum: {1767 _enum: {
1720 V0: 'XcmV0MultiAsset',1768 V0: 'XcmV0MultiAsset',
1721 V1: 'XcmV1MultiAsset'1769 V1: 'XcmV1MultiAsset'
1722 }1770 }
1723 },1771 },
1724 /**1772 /**
1725 * Lookup202: orml_tokens::module::Call<T>1773 * Lookup207: orml_tokens::module::Call<T>
1726 **/1774 **/
1727 OrmlTokensModuleCall: {1775 OrmlTokensModuleCall: {
1728 _enum: {1776 _enum: {
1729 transfer: {1777 transfer: {
1755 }1803 }
1756 }1804 }
1757 },1805 },
1758 /**1806 /**
1759 * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>1807 * Lookup208: cumulus_pallet_xcmp_queue::pallet::Call<T>
1760 **/1808 **/
1761 CumulusPalletXcmpQueueCall: {1809 CumulusPalletXcmpQueueCall: {
1762 _enum: {1810 _enum: {
1763 service_overweight: {1811 service_overweight: {
1804 }1852 }
1805 }1853 }
1806 },1854 },
1807 /**1855 /**
1808 * Lookup204: pallet_xcm::pallet::Call<T>1856 * Lookup209: pallet_xcm::pallet::Call<T>
1809 **/1857 **/
1810 PalletXcmCall: {1858 PalletXcmCall: {
1811 _enum: {1859 _enum: {
1812 send: {1860 send: {
1858 }1906 }
1859 }1907 }
1860 },1908 },
1861 /**1909 /**
1862 * Lookup205: xcm::VersionedXcm<RuntimeCall>1910 * Lookup210: xcm::VersionedXcm<RuntimeCall>
1863 **/1911 **/
1864 XcmVersionedXcm: {1912 XcmVersionedXcm: {
1865 _enum: {1913 _enum: {
1866 V0: 'XcmV0Xcm',1914 V0: 'XcmV0Xcm',
1867 V1: 'XcmV1Xcm',1915 V1: 'XcmV1Xcm',
1868 V2: 'XcmV2Xcm'1916 V2: 'XcmV2Xcm'
1869 }1917 }
1870 },1918 },
1871 /**1919 /**
1872 * Lookup206: xcm::v0::Xcm<RuntimeCall>1920 * Lookup211: xcm::v0::Xcm<RuntimeCall>
1873 **/1921 **/
1874 XcmV0Xcm: {1922 XcmV0Xcm: {
1875 _enum: {1923 _enum: {
1876 WithdrawAsset: {1924 WithdrawAsset: {
1922 }1970 }
1923 }1971 }
1924 },1972 },
1925 /**1973 /**
1926 * Lookup208: xcm::v0::order::Order<RuntimeCall>1974 * Lookup213: xcm::v0::order::Order<RuntimeCall>
1927 **/1975 **/
1928 XcmV0Order: {1976 XcmV0Order: {
1929 _enum: {1977 _enum: {
1930 Null: 'Null',1978 Null: 'Null',
1965 }2013 }
1966 }2014 }
1967 },2015 },
1968 /**2016 /**
1969 * Lookup210: xcm::v0::Response2017 * Lookup215: xcm::v0::Response
1970 **/2018 **/
1971 XcmV0Response: {2019 XcmV0Response: {
1972 _enum: {2020 _enum: {
1973 Assets: 'Vec<XcmV0MultiAsset>'2021 Assets: 'Vec<XcmV0MultiAsset>'
1974 }2022 }
1975 },2023 },
1976 /**2024 /**
1977 * Lookup211: xcm::v1::Xcm<RuntimeCall>2025 * Lookup216: xcm::v1::Xcm<RuntimeCall>
1978 **/2026 **/
1979 XcmV1Xcm: {2027 XcmV1Xcm: {
1980 _enum: {2028 _enum: {
1981 WithdrawAsset: {2029 WithdrawAsset: {
2032 UnsubscribeVersion: 'Null'2080 UnsubscribeVersion: 'Null'
2033 }2081 }
2034 },2082 },
2035 /**2083 /**
2036 * Lookup213: xcm::v1::order::Order<RuntimeCall>2084 * Lookup218: xcm::v1::order::Order<RuntimeCall>
2037 **/2085 **/
2038 XcmV1Order: {2086 XcmV1Order: {
2039 _enum: {2087 _enum: {
2040 Noop: 'Null',2088 Noop: 'Null',
2077 }2125 }
2078 }2126 }
2079 },2127 },
2080 /**2128 /**
2081 * Lookup215: xcm::v1::Response2129 * Lookup220: xcm::v1::Response
2082 **/2130 **/
2083 XcmV1Response: {2131 XcmV1Response: {
2084 _enum: {2132 _enum: {
2085 Assets: 'XcmV1MultiassetMultiAssets',2133 Assets: 'XcmV1MultiassetMultiAssets',
2086 Version: 'u32'2134 Version: 'u32'
2087 }2135 }
2088 },2136 },
2089 /**2137 /**
2090 * Lookup229: cumulus_pallet_xcm::pallet::Call<T>2138 * Lookup234: cumulus_pallet_xcm::pallet::Call<T>
2091 **/2139 **/
2092 CumulusPalletXcmCall: 'Null',2140 CumulusPalletXcmCall: 'Null',
2093 /**2141 /**
2094 * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>2142 * Lookup235: cumulus_pallet_dmp_queue::pallet::Call<T>
2095 **/2143 **/
2096 CumulusPalletDmpQueueCall: {2144 CumulusPalletDmpQueueCall: {
2097 _enum: {2145 _enum: {
2098 service_overweight: {2146 service_overweight: {
2101 }2149 }
2102 }2150 }
2103 },2151 },
2104 /**2152 /**
2105 * Lookup231: pallet_inflation::pallet::Call<T>2153 * Lookup236: pallet_inflation::pallet::Call<T>
2106 **/2154 **/
2107 PalletInflationCall: {2155 PalletInflationCall: {
2108 _enum: {2156 _enum: {
2109 start_inflation: {2157 start_inflation: {
2110 inflationStartRelayBlock: 'u32'2158 inflationStartRelayBlock: 'u32'
2111 }2159 }
2112 }2160 }
2113 },2161 },
2114 /**2162 /**
2115 * Lookup232: pallet_unique::Call<T>2163 * Lookup237: pallet_unique::Call<T>
2116 **/2164 **/
2117 PalletUniqueCall: {2165 PalletUniqueCall: {
2118 _enum: {2166 _enum: {
2119 create_collection: {2167 create_collection: {
2243 }2291 }
2244 }2292 }
2245 },2293 },
2246 /**2294 /**
2247 * Lookup237: up_data_structs::CollectionMode2295 * Lookup242: up_data_structs::CollectionMode
2248 **/2296 **/
2249 UpDataStructsCollectionMode: {2297 UpDataStructsCollectionMode: {
2250 _enum: {2298 _enum: {
2251 NFT: 'Null',2299 NFT: 'Null',
2252 Fungible: 'u8',2300 Fungible: 'u8',
2253 ReFungible: 'Null'2301 ReFungible: 'Null'
2254 }2302 }
2255 },2303 },
2256 /**2304 /**
2257 * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2305 * Lookup243: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2258 **/2306 **/
2259 UpDataStructsCreateCollectionData: {2307 UpDataStructsCreateCollectionData: {
2260 mode: 'UpDataStructsCollectionMode',2308 mode: 'UpDataStructsCollectionMode',
2261 access: 'Option<UpDataStructsAccessMode>',2309 access: 'Option<UpDataStructsAccessMode>',
2268 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2316 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2269 properties: 'Vec<UpDataStructsProperty>'2317 properties: 'Vec<UpDataStructsProperty>'
2270 },2318 },
2271 /**2319 /**
2272 * Lookup240: up_data_structs::AccessMode2320 * Lookup245: up_data_structs::AccessMode
2273 **/2321 **/
2274 UpDataStructsAccessMode: {2322 UpDataStructsAccessMode: {
2275 _enum: ['Normal', 'AllowList']2323 _enum: ['Normal', 'AllowList']
2276 },2324 },
2277 /**2325 /**
2278 * Lookup242: up_data_structs::CollectionLimits2326 * Lookup247: up_data_structs::CollectionLimits
2279 **/2327 **/
2280 UpDataStructsCollectionLimits: {2328 UpDataStructsCollectionLimits: {
2281 accountTokenOwnershipLimit: 'Option<u32>',2329 accountTokenOwnershipLimit: 'Option<u32>',
2282 sponsoredDataSize: 'Option<u32>',2330 sponsoredDataSize: 'Option<u32>',
2288 ownerCanDestroy: 'Option<bool>',2336 ownerCanDestroy: 'Option<bool>',
2289 transfersEnabled: 'Option<bool>'2337 transfersEnabled: 'Option<bool>'
2290 },2338 },
2291 /**2339 /**
2292 * Lookup244: up_data_structs::SponsoringRateLimit2340 * Lookup249: up_data_structs::SponsoringRateLimit
2293 **/2341 **/
2294 UpDataStructsSponsoringRateLimit: {2342 UpDataStructsSponsoringRateLimit: {
2295 _enum: {2343 _enum: {
2296 SponsoringDisabled: 'Null',2344 SponsoringDisabled: 'Null',
2297 Blocks: 'u32'2345 Blocks: 'u32'
2298 }2346 }
2299 },2347 },
2300 /**2348 /**
2301 * Lookup247: up_data_structs::CollectionPermissions2349 * Lookup252: up_data_structs::CollectionPermissions
2302 **/2350 **/
2303 UpDataStructsCollectionPermissions: {2351 UpDataStructsCollectionPermissions: {
2304 access: 'Option<UpDataStructsAccessMode>',2352 access: 'Option<UpDataStructsAccessMode>',
2305 mintMode: 'Option<bool>',2353 mintMode: 'Option<bool>',
2306 nesting: 'Option<UpDataStructsNestingPermissions>'2354 nesting: 'Option<UpDataStructsNestingPermissions>'
2307 },2355 },
2308 /**2356 /**
2309 * Lookup249: up_data_structs::NestingPermissions2357 * Lookup254: up_data_structs::NestingPermissions
2310 **/2358 **/
2311 UpDataStructsNestingPermissions: {2359 UpDataStructsNestingPermissions: {
2312 tokenOwner: 'bool',2360 tokenOwner: 'bool',
2313 collectionAdmin: 'bool',2361 collectionAdmin: 'bool',
2314 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2362 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2315 },2363 },
2316 /**2364 /**
2317 * Lookup251: up_data_structs::OwnerRestrictedSet2365 * Lookup256: up_data_structs::OwnerRestrictedSet
2318 **/2366 **/
2319 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2367 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2320 /**2368 /**
2321 * Lookup256: up_data_structs::PropertyKeyPermission2369 * Lookup261: up_data_structs::PropertyKeyPermission
2322 **/2370 **/
2323 UpDataStructsPropertyKeyPermission: {2371 UpDataStructsPropertyKeyPermission: {
2324 key: 'Bytes',2372 key: 'Bytes',
2325 permission: 'UpDataStructsPropertyPermission'2373 permission: 'UpDataStructsPropertyPermission'
2326 },2374 },
2327 /**2375 /**
2328 * Lookup257: up_data_structs::PropertyPermission2376 * Lookup262: up_data_structs::PropertyPermission
2329 **/2377 **/
2330 UpDataStructsPropertyPermission: {2378 UpDataStructsPropertyPermission: {
2331 mutable: 'bool',2379 mutable: 'bool',
2332 collectionAdmin: 'bool',2380 collectionAdmin: 'bool',
2333 tokenOwner: 'bool'2381 tokenOwner: 'bool'
2334 },2382 },
2335 /**2383 /**
2336 * Lookup260: up_data_structs::Property2384 * Lookup265: up_data_structs::Property
2337 **/2385 **/
2338 UpDataStructsProperty: {2386 UpDataStructsProperty: {
2339 key: 'Bytes',2387 key: 'Bytes',
2340 value: 'Bytes'2388 value: 'Bytes'
2341 },2389 },
2342 /**2390 /**
2343 * Lookup263: up_data_structs::CreateItemData2391 * Lookup268: up_data_structs::CreateItemData
2344 **/2392 **/
2345 UpDataStructsCreateItemData: {2393 UpDataStructsCreateItemData: {
2346 _enum: {2394 _enum: {
2347 NFT: 'UpDataStructsCreateNftData',2395 NFT: 'UpDataStructsCreateNftData',
2348 Fungible: 'UpDataStructsCreateFungibleData',2396 Fungible: 'UpDataStructsCreateFungibleData',
2349 ReFungible: 'UpDataStructsCreateReFungibleData'2397 ReFungible: 'UpDataStructsCreateReFungibleData'
2350 }2398 }
2351 },2399 },
2352 /**2400 /**
2353 * Lookup264: up_data_structs::CreateNftData2401 * Lookup269: up_data_structs::CreateNftData
2354 **/2402 **/
2355 UpDataStructsCreateNftData: {2403 UpDataStructsCreateNftData: {
2356 properties: 'Vec<UpDataStructsProperty>'2404 properties: 'Vec<UpDataStructsProperty>'
2357 },2405 },
2358 /**2406 /**
2359 * Lookup265: up_data_structs::CreateFungibleData2407 * Lookup270: up_data_structs::CreateFungibleData
2360 **/2408 **/
2361 UpDataStructsCreateFungibleData: {2409 UpDataStructsCreateFungibleData: {
2362 value: 'u128'2410 value: 'u128'
2363 },2411 },
2364 /**2412 /**
2365 * Lookup266: up_data_structs::CreateReFungibleData2413 * Lookup271: up_data_structs::CreateReFungibleData
2366 **/2414 **/
2367 UpDataStructsCreateReFungibleData: {2415 UpDataStructsCreateReFungibleData: {
2368 pieces: 'u128',2416 pieces: 'u128',
2369 properties: 'Vec<UpDataStructsProperty>'2417 properties: 'Vec<UpDataStructsProperty>'
2370 },2418 },
2371 /**2419 /**
2372 * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2420 * Lookup274: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2373 **/2421 **/
2374 UpDataStructsCreateItemExData: {2422 UpDataStructsCreateItemExData: {
2375 _enum: {2423 _enum: {
2376 NFT: 'Vec<UpDataStructsCreateNftExData>',2424 NFT: 'Vec<UpDataStructsCreateNftExData>',
2379 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2427 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'
2380 }2428 }
2381 },2429 },
2382 /**2430 /**
2383 * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2431 * Lookup276: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2384 **/2432 **/
2385 UpDataStructsCreateNftExData: {2433 UpDataStructsCreateNftExData: {
2386 properties: 'Vec<UpDataStructsProperty>',2434 properties: 'Vec<UpDataStructsProperty>',
2387 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2435 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2388 },2436 },
2389 /**2437 /**
2390 * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2438 * Lookup283: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2391 **/2439 **/
2392 UpDataStructsCreateRefungibleExSingleOwner: {2440 UpDataStructsCreateRefungibleExSingleOwner: {
2393 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2441 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2394 pieces: 'u128',2442 pieces: 'u128',
2395 properties: 'Vec<UpDataStructsProperty>'2443 properties: 'Vec<UpDataStructsProperty>'
2396 },2444 },
2397 /**2445 /**
2398 * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2446 * Lookup285: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2399 **/2447 **/
2400 UpDataStructsCreateRefungibleExMultipleOwners: {2448 UpDataStructsCreateRefungibleExMultipleOwners: {
2401 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2449 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2402 properties: 'Vec<UpDataStructsProperty>'2450 properties: 'Vec<UpDataStructsProperty>'
2403 },2451 },
2452 /**
2453 * Lookup286: pallet_unique_scheduler::pallet::Call<T>
2454 **/
2455 PalletUniqueSchedulerCall: {
2456 _enum: {
2457 schedule_named: {
2458 id: '[u8;16]',
2459 when: 'u32',
2460 maybePeriodic: 'Option<(u32,u32)>',
2461 priority: 'Option<u8>',
2462 call: 'FrameSupportScheduleMaybeHashed',
2463 },
2464 cancel_named: {
2465 id: '[u8;16]',
2466 },
2467 schedule_named_after: {
2468 id: '[u8;16]',
2469 after: 'u32',
2470 maybePeriodic: 'Option<(u32,u32)>',
2471 priority: 'Option<u8>',
2472 call: 'FrameSupportScheduleMaybeHashed',
2473 },
2474 change_named_priority: {
2475 id: '[u8;16]',
2476 priority: 'u8'
2477 }
2478 }
2479 },
2480 /**
2481 * Lookup289: frame_support::traits::schedule::MaybeHashed<opal_runtime::RuntimeCall, primitive_types::H256>
2482 **/
2483 FrameSupportScheduleMaybeHashed: {
2484 _enum: {
2485 Value: 'Call',
2486 Hash: 'H256'
2487 }
2488 },
2404 /**2489 /**
2405 * Lookup281: pallet_configuration::pallet::Call<T>2490 * Lookup290: pallet_configuration::pallet::Call<T>
2406 **/2491 **/
2407 PalletConfigurationCall: {2492 PalletConfigurationCall: {
2408 _enum: {2493 _enum: {
2409 set_weight_to_fee_coefficient_override: {2494 set_weight_to_fee_coefficient_override: {
2414 }2499 }
2415 }2500 }
2416 },2501 },
2417 /**2502 /**
2418 * Lookup283: pallet_template_transaction_payment::Call<T>2503 * Lookup292: pallet_template_transaction_payment::Call<T>
2419 **/2504 **/
2420 PalletTemplateTransactionPaymentCall: 'Null',2505 PalletTemplateTransactionPaymentCall: 'Null',
2421 /**2506 /**
2422 * Lookup284: pallet_structure::pallet::Call<T>2507 * Lookup293: pallet_structure::pallet::Call<T>
2423 **/2508 **/
2424 PalletStructureCall: 'Null',2509 PalletStructureCall: 'Null',
2425 /**2510 /**
2426 * Lookup285: pallet_rmrk_core::pallet::Call<T>2511 * Lookup294: pallet_rmrk_core::pallet::Call<T>
2427 **/2512 **/
2428 PalletRmrkCoreCall: {2513 PalletRmrkCoreCall: {
2429 _enum: {2514 _enum: {
2430 create_collection: {2515 create_collection: {
2513 }2598 }
2514 }2599 }
2515 },2600 },
2516 /**2601 /**
2517 * Lookup291: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2602 * Lookup300: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2518 **/2603 **/
2519 RmrkTraitsResourceResourceTypes: {2604 RmrkTraitsResourceResourceTypes: {
2520 _enum: {2605 _enum: {
2521 Basic: 'RmrkTraitsResourceBasicResource',2606 Basic: 'RmrkTraitsResourceBasicResource',
2522 Composable: 'RmrkTraitsResourceComposableResource',2607 Composable: 'RmrkTraitsResourceComposableResource',
2523 Slot: 'RmrkTraitsResourceSlotResource'2608 Slot: 'RmrkTraitsResourceSlotResource'
2524 }2609 }
2525 },2610 },
2526 /**2611 /**
2527 * Lookup293: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2612 * Lookup302: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2528 **/2613 **/
2529 RmrkTraitsResourceBasicResource: {2614 RmrkTraitsResourceBasicResource: {
2530 src: 'Option<Bytes>',2615 src: 'Option<Bytes>',
2531 metadata: 'Option<Bytes>',2616 metadata: 'Option<Bytes>',
2532 license: 'Option<Bytes>',2617 license: 'Option<Bytes>',
2533 thumb: 'Option<Bytes>'2618 thumb: 'Option<Bytes>'
2534 },2619 },
2535 /**2620 /**
2536 * Lookup295: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2621 * Lookup304: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2537 **/2622 **/
2538 RmrkTraitsResourceComposableResource: {2623 RmrkTraitsResourceComposableResource: {
2539 parts: 'Vec<u32>',2624 parts: 'Vec<u32>',
2540 base: 'u32',2625 base: 'u32',
2543 license: 'Option<Bytes>',2628 license: 'Option<Bytes>',
2544 thumb: 'Option<Bytes>'2629 thumb: 'Option<Bytes>'
2545 },2630 },
2546 /**2631 /**
2547 * Lookup296: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2632 * Lookup305: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2548 **/2633 **/
2549 RmrkTraitsResourceSlotResource: {2634 RmrkTraitsResourceSlotResource: {
2550 base: 'u32',2635 base: 'u32',
2551 src: 'Option<Bytes>',2636 src: 'Option<Bytes>',
2554 license: 'Option<Bytes>',2639 license: 'Option<Bytes>',
2555 thumb: 'Option<Bytes>'2640 thumb: 'Option<Bytes>'
2556 },2641 },
2557 /**2642 /**
2558 * Lookup299: pallet_rmrk_equip::pallet::Call<T>2643 * Lookup308: pallet_rmrk_equip::pallet::Call<T>
2559 **/2644 **/
2560 PalletRmrkEquipCall: {2645 PalletRmrkEquipCall: {
2561 _enum: {2646 _enum: {
2562 create_base: {2647 create_base: {
2575 }2660 }
2576 }2661 }
2577 },2662 },
2578 /**2663 /**
2579 * Lookup302: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2664 * Lookup311: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2580 **/2665 **/
2581 RmrkTraitsPartPartType: {2666 RmrkTraitsPartPartType: {
2582 _enum: {2667 _enum: {
2583 FixedPart: 'RmrkTraitsPartFixedPart',2668 FixedPart: 'RmrkTraitsPartFixedPart',
2584 SlotPart: 'RmrkTraitsPartSlotPart'2669 SlotPart: 'RmrkTraitsPartSlotPart'
2585 }2670 }
2586 },2671 },
2587 /**2672 /**
2588 * Lookup304: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2673 * Lookup313: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2589 **/2674 **/
2590 RmrkTraitsPartFixedPart: {2675 RmrkTraitsPartFixedPart: {
2591 id: 'u32',2676 id: 'u32',
2592 z: 'u32',2677 z: 'u32',
2593 src: 'Bytes'2678 src: 'Bytes'
2594 },2679 },
2595 /**2680 /**
2596 * Lookup305: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2681 * Lookup314: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2597 **/2682 **/
2598 RmrkTraitsPartSlotPart: {2683 RmrkTraitsPartSlotPart: {
2599 id: 'u32',2684 id: 'u32',
2600 equippable: 'RmrkTraitsPartEquippableList',2685 equippable: 'RmrkTraitsPartEquippableList',
2601 src: 'Bytes',2686 src: 'Bytes',
2602 z: 'u32'2687 z: 'u32'
2603 },2688 },
2604 /**2689 /**
2605 * Lookup306: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2690 * Lookup315: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2606 **/2691 **/
2607 RmrkTraitsPartEquippableList: {2692 RmrkTraitsPartEquippableList: {
2608 _enum: {2693 _enum: {
2609 All: 'Null',2694 All: 'Null',
2610 Empty: 'Null',2695 Empty: 'Null',
2611 Custom: 'Vec<u32>'2696 Custom: 'Vec<u32>'
2612 }2697 }
2613 },2698 },
2614 /**2699 /**
2615 * Lookup308: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2700 * Lookup317: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
2616 **/2701 **/
2617 RmrkTraitsTheme: {2702 RmrkTraitsTheme: {
2618 name: 'Bytes',2703 name: 'Bytes',
2619 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2704 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
2620 inherit: 'bool'2705 inherit: 'bool'
2621 },2706 },
2622 /**2707 /**
2623 * Lookup310: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2708 * Lookup319: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2624 **/2709 **/
2625 RmrkTraitsThemeThemeProperty: {2710 RmrkTraitsThemeThemeProperty: {
2626 key: 'Bytes',2711 key: 'Bytes',
2627 value: 'Bytes'2712 value: 'Bytes'
2628 },2713 },
2629 /**2714 /**
2630 * Lookup312: pallet_app_promotion::pallet::Call<T>2715 * Lookup321: pallet_app_promotion::pallet::Call<T>
2631 **/2716 **/
2632 PalletAppPromotionCall: {2717 PalletAppPromotionCall: {
2633 _enum: {2718 _enum: {
2634 set_admin_address: {2719 set_admin_address: {
2655 }2740 }
2656 }2741 }
2657 },2742 },
2658 /**2743 /**
2659 * Lookup314: pallet_foreign_assets::module::Call<T>2744 * Lookup322: pallet_foreign_assets::module::Call<T>
2660 **/2745 **/
2661 PalletForeignAssetsModuleCall: {2746 PalletForeignAssetsModuleCall: {
2662 _enum: {2747 _enum: {
2663 register_foreign_asset: {2748 register_foreign_asset: {
2672 }2757 }
2673 }2758 }
2674 },2759 },
2675 /**2760 /**
2676 * Lookup315: pallet_evm::pallet::Call<T>2761 * Lookup323: pallet_evm::pallet::Call<T>
2677 **/2762 **/
2678 PalletEvmCall: {2763 PalletEvmCall: {
2679 _enum: {2764 _enum: {
2680 withdraw: {2765 withdraw: {
2715 }2800 }
2716 }2801 }
2717 },2802 },
2718 /**2803 /**
2719 * Lookup319: pallet_ethereum::pallet::Call<T>2804 * Lookup327: pallet_ethereum::pallet::Call<T>
2720 **/2805 **/
2721 PalletEthereumCall: {2806 PalletEthereumCall: {
2722 _enum: {2807 _enum: {
2723 transact: {2808 transact: {
2724 transaction: 'EthereumTransactionTransactionV2'2809 transaction: 'EthereumTransactionTransactionV2'
2725 }2810 }
2726 }2811 }
2727 },2812 },
2728 /**2813 /**
2729 * Lookup320: ethereum::transaction::TransactionV22814 * Lookup328: ethereum::transaction::TransactionV2
2730 **/2815 **/
2731 EthereumTransactionTransactionV2: {2816 EthereumTransactionTransactionV2: {
2732 _enum: {2817 _enum: {
2733 Legacy: 'EthereumTransactionLegacyTransaction',2818 Legacy: 'EthereumTransactionLegacyTransaction',
2734 EIP2930: 'EthereumTransactionEip2930Transaction',2819 EIP2930: 'EthereumTransactionEip2930Transaction',
2735 EIP1559: 'EthereumTransactionEip1559Transaction'2820 EIP1559: 'EthereumTransactionEip1559Transaction'
2736 }2821 }
2737 },2822 },
2738 /**2823 /**
2739 * Lookup321: ethereum::transaction::LegacyTransaction2824 * Lookup329: ethereum::transaction::LegacyTransaction
2740 **/2825 **/
2741 EthereumTransactionLegacyTransaction: {2826 EthereumTransactionLegacyTransaction: {
2742 nonce: 'U256',2827 nonce: 'U256',
2743 gasPrice: 'U256',2828 gasPrice: 'U256',
2747 input: 'Bytes',2832 input: 'Bytes',
2748 signature: 'EthereumTransactionTransactionSignature'2833 signature: 'EthereumTransactionTransactionSignature'
2749 },2834 },
2750 /**2835 /**
2751 * Lookup322: ethereum::transaction::TransactionAction2836 * Lookup330: ethereum::transaction::TransactionAction
2752 **/2837 **/
2753 EthereumTransactionTransactionAction: {2838 EthereumTransactionTransactionAction: {
2754 _enum: {2839 _enum: {
2755 Call: 'H160',2840 Call: 'H160',
2756 Create: 'Null'2841 Create: 'Null'
2757 }2842 }
2758 },2843 },
2759 /**2844 /**
2760 * Lookup323: ethereum::transaction::TransactionSignature2845 * Lookup331: ethereum::transaction::TransactionSignature
2761 **/2846 **/
2762 EthereumTransactionTransactionSignature: {2847 EthereumTransactionTransactionSignature: {
2763 v: 'u64',2848 v: 'u64',
2764 r: 'H256',2849 r: 'H256',
2765 s: 'H256'2850 s: 'H256'
2766 },2851 },
2767 /**2852 /**
2768 * Lookup325: ethereum::transaction::EIP2930Transaction2853 * Lookup333: ethereum::transaction::EIP2930Transaction
2769 **/2854 **/
2770 EthereumTransactionEip2930Transaction: {2855 EthereumTransactionEip2930Transaction: {
2771 chainId: 'u64',2856 chainId: 'u64',
2772 nonce: 'U256',2857 nonce: 'U256',
2780 r: 'H256',2865 r: 'H256',
2781 s: 'H256'2866 s: 'H256'
2782 },2867 },
2783 /**2868 /**
2784 * Lookup327: ethereum::transaction::AccessListItem2869 * Lookup335: ethereum::transaction::AccessListItem
2785 **/2870 **/
2786 EthereumTransactionAccessListItem: {2871 EthereumTransactionAccessListItem: {
2787 address: 'H160',2872 address: 'H160',
2788 storageKeys: 'Vec<H256>'2873 storageKeys: 'Vec<H256>'
2789 },2874 },
2790 /**2875 /**
2791 * Lookup328: ethereum::transaction::EIP1559Transaction2876 * Lookup336: ethereum::transaction::EIP1559Transaction
2792 **/2877 **/
2793 EthereumTransactionEip1559Transaction: {2878 EthereumTransactionEip1559Transaction: {
2794 chainId: 'u64',2879 chainId: 'u64',
2795 nonce: 'U256',2880 nonce: 'U256',
2804 r: 'H256',2889 r: 'H256',
2805 s: 'H256'2890 s: 'H256'
2806 },2891 },
2807 /**2892 /**
2808 * Lookup329: pallet_evm_migration::pallet::Call<T>2893 * Lookup337: pallet_evm_migration::pallet::Call<T>
2809 **/2894 **/
2810 PalletEvmMigrationCall: {2895 PalletEvmMigrationCall: {
2811 _enum: {2896 _enum: {
2812 begin: {2897 begin: {
2822 }2907 }
2823 }2908 }
2824 },2909 },
2910 /**
2911 * Lookup340: pallet_maintenance::pallet::Call<T>
2912 **/
2913 PalletMaintenanceCall: {
2914 _enum: ['enable', 'disable']
2915 },
2916 /**
2917 * Lookup341: pallet_test_utils::pallet::Call<T>
2918 **/
2919 PalletTestUtilsCall: {
2920 _enum: {
2921 enable: 'Null',
2922 set_test_value: {
2923 value: 'u32',
2924 },
2925 set_test_value_and_rollback: {
2926 value: 'u32',
2927 },
2928 inc_test_value: 'Null',
2929 self_canceling_inc: {
2930 id: '[u8;16]',
2931 maxTestValue: 'u32',
2932 },
2933 just_take_fee: 'Null'
2934 }
2935 },
2825 /**2936 /**
2826 * Lookup332: pallet_sudo::pallet::Error<T>2937 * Lookup342: pallet_sudo::pallet::Error<T>
2827 **/2938 **/
2828 PalletSudoError: {2939 PalletSudoError: {
2829 _enum: ['RequireSudo']2940 _enum: ['RequireSudo']
2830 },2941 },
2831 /**2942 /**
2832 * Lookup334: orml_vesting::module::Error<T>2943 * Lookup344: orml_vesting::module::Error<T>
2833 **/2944 **/
2834 OrmlVestingModuleError: {2945 OrmlVestingModuleError: {
2835 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2946 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2836 },2947 },
2837 /**2948 /**
2838 * Lookup335: orml_xtokens::module::Error<T>2949 * Lookup345: orml_xtokens::module::Error<T>
2839 **/2950 **/
2840 OrmlXtokensModuleError: {2951 OrmlXtokensModuleError: {
2841 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2952 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
2842 },2953 },
2843 /**2954 /**
2844 * Lookup338: orml_tokens::BalanceLock<Balance>2955 * Lookup348: orml_tokens::BalanceLock<Balance>
2845 **/2956 **/
2846 OrmlTokensBalanceLock: {2957 OrmlTokensBalanceLock: {
2847 id: '[u8;8]',2958 id: '[u8;8]',
2848 amount: 'u128'2959 amount: 'u128'
2849 },2960 },
2850 /**2961 /**
2851 * Lookup340: orml_tokens::AccountData<Balance>2962 * Lookup350: orml_tokens::AccountData<Balance>
2852 **/2963 **/
2853 OrmlTokensAccountData: {2964 OrmlTokensAccountData: {
2854 free: 'u128',2965 free: 'u128',
2855 reserved: 'u128',2966 reserved: 'u128',
2856 frozen: 'u128'2967 frozen: 'u128'
2857 },2968 },
2858 /**2969 /**
2859 * Lookup342: orml_tokens::ReserveData<ReserveIdentifier, Balance>2970 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>
2860 **/2971 **/
2861 OrmlTokensReserveData: {2972 OrmlTokensReserveData: {
2862 id: 'Null',2973 id: 'Null',
2863 amount: 'u128'2974 amount: 'u128'
2864 },2975 },
2865 /**2976 /**
2866 * Lookup344: orml_tokens::module::Error<T>2977 * Lookup354: orml_tokens::module::Error<T>
2867 **/2978 **/
2868 OrmlTokensModuleError: {2979 OrmlTokensModuleError: {
2869 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2980 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
2870 },2981 },
2871 /**2982 /**
2872 * Lookup346: cumulus_pallet_xcmp_queue::InboundChannelDetails2983 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails
2873 **/2984 **/
2874 CumulusPalletXcmpQueueInboundChannelDetails: {2985 CumulusPalletXcmpQueueInboundChannelDetails: {
2875 sender: 'u32',2986 sender: 'u32',
2876 state: 'CumulusPalletXcmpQueueInboundState',2987 state: 'CumulusPalletXcmpQueueInboundState',
2877 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2988 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
2878 },2989 },
2879 /**2990 /**
2880 * Lookup347: cumulus_pallet_xcmp_queue::InboundState2991 * Lookup357: cumulus_pallet_xcmp_queue::InboundState
2881 **/2992 **/
2882 CumulusPalletXcmpQueueInboundState: {2993 CumulusPalletXcmpQueueInboundState: {
2883 _enum: ['Ok', 'Suspended']2994 _enum: ['Ok', 'Suspended']
2884 },2995 },
2885 /**2996 /**
2886 * Lookup350: polkadot_parachain::primitives::XcmpMessageFormat2997 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat
2887 **/2998 **/
2888 PolkadotParachainPrimitivesXcmpMessageFormat: {2999 PolkadotParachainPrimitivesXcmpMessageFormat: {
2889 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3000 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
2890 },3001 },
2891 /**3002 /**
2892 * Lookup353: cumulus_pallet_xcmp_queue::OutboundChannelDetails3003 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails
2893 **/3004 **/
2894 CumulusPalletXcmpQueueOutboundChannelDetails: {3005 CumulusPalletXcmpQueueOutboundChannelDetails: {
2895 recipient: 'u32',3006 recipient: 'u32',
2896 state: 'CumulusPalletXcmpQueueOutboundState',3007 state: 'CumulusPalletXcmpQueueOutboundState',
2897 signalsExist: 'bool',3008 signalsExist: 'bool',
2898 firstIndex: 'u16',3009 firstIndex: 'u16',
2899 lastIndex: 'u16'3010 lastIndex: 'u16'
2900 },3011 },
2901 /**3012 /**
2902 * Lookup354: cumulus_pallet_xcmp_queue::OutboundState3013 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState
2903 **/3014 **/
2904 CumulusPalletXcmpQueueOutboundState: {3015 CumulusPalletXcmpQueueOutboundState: {
2905 _enum: ['Ok', 'Suspended']3016 _enum: ['Ok', 'Suspended']
2906 },3017 },
2907 /**3018 /**
2908 * Lookup356: cumulus_pallet_xcmp_queue::QueueConfigData3019 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData
2909 **/3020 **/
2910 CumulusPalletXcmpQueueQueueConfigData: {3021 CumulusPalletXcmpQueueQueueConfigData: {
2911 suspendThreshold: 'u32',3022 suspendThreshold: 'u32',
2912 dropThreshold: 'u32',3023 dropThreshold: 'u32',
2915 weightRestrictDecay: 'Weight',3026 weightRestrictDecay: 'Weight',
2916 xcmpMaxIndividualWeight: 'Weight'3027 xcmpMaxIndividualWeight: 'Weight'
2917 },3028 },
2918 /**3029 /**
2919 * Lookup358: cumulus_pallet_xcmp_queue::pallet::Error<T>3030 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>
2920 **/3031 **/
2921 CumulusPalletXcmpQueueError: {3032 CumulusPalletXcmpQueueError: {
2922 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3033 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
2923 },3034 },
2924 /**3035 /**
2925 * Lookup359: pallet_xcm::pallet::Error<T>3036 * Lookup369: pallet_xcm::pallet::Error<T>
2926 **/3037 **/
2927 PalletXcmError: {3038 PalletXcmError: {
2928 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3039 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
2929 },3040 },
2930 /**3041 /**
2931 * Lookup360: cumulus_pallet_xcm::pallet::Error<T>3042 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>
2932 **/3043 **/
2933 CumulusPalletXcmError: 'Null',3044 CumulusPalletXcmError: 'Null',
2934 /**3045 /**
2935 * Lookup361: cumulus_pallet_dmp_queue::ConfigData3046 * Lookup371: cumulus_pallet_dmp_queue::ConfigData
2936 **/3047 **/
2937 CumulusPalletDmpQueueConfigData: {3048 CumulusPalletDmpQueueConfigData: {
2938 maxIndividual: 'Weight'3049 maxIndividual: 'Weight'
2939 },3050 },
2940 /**3051 /**
2941 * Lookup362: cumulus_pallet_dmp_queue::PageIndexData3052 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData
2942 **/3053 **/
2943 CumulusPalletDmpQueuePageIndexData: {3054 CumulusPalletDmpQueuePageIndexData: {
2944 beginUsed: 'u32',3055 beginUsed: 'u32',
2945 endUsed: 'u32',3056 endUsed: 'u32',
2946 overweightCount: 'u64'3057 overweightCount: 'u64'
2947 },3058 },
2948 /**3059 /**
2949 * Lookup365: cumulus_pallet_dmp_queue::pallet::Error<T>3060 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>
2950 **/3061 **/
2951 CumulusPalletDmpQueueError: {3062 CumulusPalletDmpQueueError: {
2952 _enum: ['Unknown', 'OverLimit']3063 _enum: ['Unknown', 'OverLimit']
2953 },3064 },
2954 /**3065 /**
2955 * Lookup369: pallet_unique::Error<T>3066 * Lookup379: pallet_unique::Error<T>
2956 **/3067 **/
2957 PalletUniqueError: {3068 PalletUniqueError: {
2958 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3069 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
2959 },3070 },
3071 /**
3072 * Lookup382: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
3073 **/
3074 PalletUniqueSchedulerScheduledV3: {
3075 maybeId: 'Option<[u8;16]>',
3076 priority: 'u8',
3077 call: 'FrameSupportScheduleMaybeHashed',
3078 maybePeriodic: 'Option<(u32,u32)>',
3079 origin: 'OpalRuntimeOriginCaller'
3080 },
3081 /**
3082 * Lookup383: opal_runtime::OriginCaller
3083 **/
3084 OpalRuntimeOriginCaller: {
3085 _enum: {
3086 system: 'FrameSupportDispatchRawOrigin',
3087 __Unused1: 'Null',
3088 __Unused2: 'Null',
3089 __Unused3: 'Null',
3090 Void: 'SpCoreVoid',
3091 __Unused5: 'Null',
3092 __Unused6: 'Null',
3093 __Unused7: 'Null',
3094 __Unused8: 'Null',
3095 __Unused9: 'Null',
3096 __Unused10: 'Null',
3097 __Unused11: 'Null',
3098 __Unused12: 'Null',
3099 __Unused13: 'Null',
3100 __Unused14: 'Null',
3101 __Unused15: 'Null',
3102 __Unused16: 'Null',
3103 __Unused17: 'Null',
3104 __Unused18: 'Null',
3105 __Unused19: 'Null',
3106 __Unused20: 'Null',
3107 __Unused21: 'Null',
3108 __Unused22: 'Null',
3109 __Unused23: 'Null',
3110 __Unused24: 'Null',
3111 __Unused25: 'Null',
3112 __Unused26: 'Null',
3113 __Unused27: 'Null',
3114 __Unused28: 'Null',
3115 __Unused29: 'Null',
3116 __Unused30: 'Null',
3117 __Unused31: 'Null',
3118 __Unused32: 'Null',
3119 __Unused33: 'Null',
3120 __Unused34: 'Null',
3121 __Unused35: 'Null',
3122 __Unused36: 'Null',
3123 __Unused37: 'Null',
3124 __Unused38: 'Null',
3125 __Unused39: 'Null',
3126 __Unused40: 'Null',
3127 __Unused41: 'Null',
3128 __Unused42: 'Null',
3129 __Unused43: 'Null',
3130 __Unused44: 'Null',
3131 __Unused45: 'Null',
3132 __Unused46: 'Null',
3133 __Unused47: 'Null',
3134 __Unused48: 'Null',
3135 __Unused49: 'Null',
3136 __Unused50: 'Null',
3137 PolkadotXcm: 'PalletXcmOrigin',
3138 CumulusXcm: 'CumulusPalletXcmOrigin',
3139 __Unused53: 'Null',
3140 __Unused54: 'Null',
3141 __Unused55: 'Null',
3142 __Unused56: 'Null',
3143 __Unused57: 'Null',
3144 __Unused58: 'Null',
3145 __Unused59: 'Null',
3146 __Unused60: 'Null',
3147 __Unused61: 'Null',
3148 __Unused62: 'Null',
3149 __Unused63: 'Null',
3150 __Unused64: 'Null',
3151 __Unused65: 'Null',
3152 __Unused66: 'Null',
3153 __Unused67: 'Null',
3154 __Unused68: 'Null',
3155 __Unused69: 'Null',
3156 __Unused70: 'Null',
3157 __Unused71: 'Null',
3158 __Unused72: 'Null',
3159 __Unused73: 'Null',
3160 __Unused74: 'Null',
3161 __Unused75: 'Null',
3162 __Unused76: 'Null',
3163 __Unused77: 'Null',
3164 __Unused78: 'Null',
3165 __Unused79: 'Null',
3166 __Unused80: 'Null',
3167 __Unused81: 'Null',
3168 __Unused82: 'Null',
3169 __Unused83: 'Null',
3170 __Unused84: 'Null',
3171 __Unused85: 'Null',
3172 __Unused86: 'Null',
3173 __Unused87: 'Null',
3174 __Unused88: 'Null',
3175 __Unused89: 'Null',
3176 __Unused90: 'Null',
3177 __Unused91: 'Null',
3178 __Unused92: 'Null',
3179 __Unused93: 'Null',
3180 __Unused94: 'Null',
3181 __Unused95: 'Null',
3182 __Unused96: 'Null',
3183 __Unused97: 'Null',
3184 __Unused98: 'Null',
3185 __Unused99: 'Null',
3186 __Unused100: 'Null',
3187 Ethereum: 'PalletEthereumRawOrigin'
3188 }
3189 },
3190 /**
3191 * Lookup384: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
3192 **/
3193 FrameSupportDispatchRawOrigin: {
3194 _enum: {
3195 Root: 'Null',
3196 Signed: 'AccountId32',
3197 None: 'Null'
3198 }
3199 },
3200 /**
3201 * Lookup385: pallet_xcm::pallet::Origin
3202 **/
3203 PalletXcmOrigin: {
3204 _enum: {
3205 Xcm: 'XcmV1MultiLocation',
3206 Response: 'XcmV1MultiLocation'
3207 }
3208 },
3209 /**
3210 * Lookup386: cumulus_pallet_xcm::pallet::Origin
3211 **/
3212 CumulusPalletXcmOrigin: {
3213 _enum: {
3214 Relay: 'Null',
3215 SiblingParachain: 'u32'
3216 }
3217 },
3218 /**
3219 * Lookup387: pallet_ethereum::RawOrigin
3220 **/
3221 PalletEthereumRawOrigin: {
3222 _enum: {
3223 EthereumTransaction: 'H160'
3224 }
3225 },
3226 /**
3227 * Lookup388: sp_core::Void
3228 **/
3229 SpCoreVoid: 'Null',
3230 /**
3231 * Lookup389: pallet_unique_scheduler::pallet::Error<T>
3232 **/
3233 PalletUniqueSchedulerError: {
3234 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
3235 },
2960 /**3236 /**
2961 * Lookup370: up_data_structs::Collection<sp_core::crypto::AccountId32>3237 * Lookup390: up_data_structs::Collection<sp_core::crypto::AccountId32>
2962 **/3238 **/
2963 UpDataStructsCollection: {3239 UpDataStructsCollection: {
2964 owner: 'AccountId32',3240 owner: 'AccountId32',
2965 mode: 'UpDataStructsCollectionMode',3241 mode: 'UpDataStructsCollectionMode',
2971 permissions: 'UpDataStructsCollectionPermissions',3247 permissions: 'UpDataStructsCollectionPermissions',
2972 flags: '[u8;1]'3248 flags: '[u8;1]'
2973 },3249 },
2974 /**3250 /**
2975 * Lookup371: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3251 * Lookup391: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
2976 **/3252 **/
2977 UpDataStructsSponsorshipStateAccountId32: {3253 UpDataStructsSponsorshipStateAccountId32: {
2978 _enum: {3254 _enum: {
2979 Disabled: 'Null',3255 Disabled: 'Null',
2980 Unconfirmed: 'AccountId32',3256 Unconfirmed: 'AccountId32',
2981 Confirmed: 'AccountId32'3257 Confirmed: 'AccountId32'
2982 }3258 }
2983 },3259 },
2984 /**3260 /**
2985 * Lookup373: up_data_structs::Properties3261 * Lookup393: up_data_structs::Properties
2986 **/3262 **/
2987 UpDataStructsProperties: {3263 UpDataStructsProperties: {
2988 map: 'UpDataStructsPropertiesMapBoundedVec',3264 map: 'UpDataStructsPropertiesMapBoundedVec',
2989 consumedSpace: 'u32',3265 consumedSpace: 'u32',
2990 spaceLimit: 'u32'3266 spaceLimit: 'u32'
2991 },3267 },
2992 /**3268 /**
2993 * Lookup374: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3269 * Lookup394: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2994 **/3270 **/
2995 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3271 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
2996 /**3272 /**
2997 * Lookup379: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3273 * Lookup399: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
2998 **/3274 **/
2999 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3275 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3000 /**3276 /**
3001 * Lookup386: up_data_structs::CollectionStats3277 * Lookup406: up_data_structs::CollectionStats
3002 **/3278 **/
3003 UpDataStructsCollectionStats: {3279 UpDataStructsCollectionStats: {
3004 created: 'u32',3280 created: 'u32',
3005 destroyed: 'u32',3281 destroyed: 'u32',
3006 alive: 'u32'3282 alive: 'u32'
3007 },3283 },
3008 /**3284 /**
3009 * Lookup387: up_data_structs::TokenChild3285 * Lookup407: up_data_structs::TokenChild
3010 **/3286 **/
3011 UpDataStructsTokenChild: {3287 UpDataStructsTokenChild: {
3012 token: 'u32',3288 token: 'u32',
3013 collection: 'u32'3289 collection: 'u32'
3014 },3290 },
3015 /**3291 /**
3016 * Lookup388: PhantomType::up_data_structs<T>3292 * Lookup408: PhantomType::up_data_structs<T>
3017 **/3293 **/
3018 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3294 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
3019 /**3295 /**
3020 * Lookup390: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3296 * Lookup410: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3021 **/3297 **/
3022 UpDataStructsTokenData: {3298 UpDataStructsTokenData: {
3023 properties: 'Vec<UpDataStructsProperty>',3299 properties: 'Vec<UpDataStructsProperty>',
3024 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3300 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3025 pieces: 'u128'3301 pieces: 'u128'
3026 },3302 },
3027 /**3303 /**
3028 * Lookup392: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3304 * Lookup412: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3029 **/3305 **/
3030 UpDataStructsRpcCollection: {3306 UpDataStructsRpcCollection: {
3031 owner: 'AccountId32',3307 owner: 'AccountId32',
3032 mode: 'UpDataStructsCollectionMode',3308 mode: 'UpDataStructsCollectionMode',
3041 readOnly: 'bool',3317 readOnly: 'bool',
3042 flags: 'UpDataStructsRpcCollectionFlags'3318 flags: 'UpDataStructsRpcCollectionFlags'
3043 },3319 },
3044 /**3320 /**
3045 * Lookup393: up_data_structs::RpcCollectionFlags3321 * Lookup413: up_data_structs::RpcCollectionFlags
3046 **/3322 **/
3047 UpDataStructsRpcCollectionFlags: {3323 UpDataStructsRpcCollectionFlags: {
3048 foreign: 'bool',3324 foreign: 'bool',
3049 erc721metadata: 'bool'3325 erc721metadata: 'bool'
3050 },3326 },
3051 /**3327 /**
3052 * Lookup394: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3328 * Lookup414: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
3053 **/3329 **/
3054 RmrkTraitsCollectionCollectionInfo: {3330 RmrkTraitsCollectionCollectionInfo: {
3055 issuer: 'AccountId32',3331 issuer: 'AccountId32',
3056 metadata: 'Bytes',3332 metadata: 'Bytes',
3057 max: 'Option<u32>',3333 max: 'Option<u32>',
3058 symbol: 'Bytes',3334 symbol: 'Bytes',
3059 nftsCount: 'u32'3335 nftsCount: 'u32'
3060 },3336 },
3061 /**3337 /**
3062 * Lookup395: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3338 * Lookup415: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3063 **/3339 **/
3064 RmrkTraitsNftNftInfo: {3340 RmrkTraitsNftNftInfo: {
3065 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3341 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3066 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3342 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3067 metadata: 'Bytes',3343 metadata: 'Bytes',
3068 equipped: 'bool',3344 equipped: 'bool',
3069 pending: 'bool'3345 pending: 'bool'
3070 },3346 },
3071 /**3347 /**
3072 * Lookup397: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3348 * Lookup417: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3073 **/3349 **/
3074 RmrkTraitsNftRoyaltyInfo: {3350 RmrkTraitsNftRoyaltyInfo: {
3075 recipient: 'AccountId32',3351 recipient: 'AccountId32',
3076 amount: 'Permill'3352 amount: 'Permill'
3077 },3353 },
3078 /**3354 /**
3079 * Lookup398: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3355 * Lookup418: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3080 **/3356 **/
3081 RmrkTraitsResourceResourceInfo: {3357 RmrkTraitsResourceResourceInfo: {
3082 id: 'u32',3358 id: 'u32',
3083 resource: 'RmrkTraitsResourceResourceTypes',3359 resource: 'RmrkTraitsResourceResourceTypes',
3084 pending: 'bool',3360 pending: 'bool',
3085 pendingRemoval: 'bool'3361 pendingRemoval: 'bool'
3086 },3362 },
3087 /**3363 /**
3088 * Lookup399: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3364 * Lookup419: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3089 **/3365 **/
3090 RmrkTraitsPropertyPropertyInfo: {3366 RmrkTraitsPropertyPropertyInfo: {
3091 key: 'Bytes',3367 key: 'Bytes',
3092 value: 'Bytes'3368 value: 'Bytes'
3093 },3369 },
3094 /**3370 /**
3095 * Lookup400: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3371 * Lookup420: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3096 **/3372 **/
3097 RmrkTraitsBaseBaseInfo: {3373 RmrkTraitsBaseBaseInfo: {
3098 issuer: 'AccountId32',3374 issuer: 'AccountId32',
3099 baseType: 'Bytes',3375 baseType: 'Bytes',
3100 symbol: 'Bytes'3376 symbol: 'Bytes'
3101 },3377 },
3102 /**3378 /**
3103 * Lookup401: rmrk_traits::nft::NftChild3379 * Lookup421: rmrk_traits::nft::NftChild
3104 **/3380 **/
3105 RmrkTraitsNftNftChild: {3381 RmrkTraitsNftNftChild: {
3106 collectionId: 'u32',3382 collectionId: 'u32',
3107 nftId: 'u32'3383 nftId: 'u32'
3108 },3384 },
3109 /**3385 /**
3110 * Lookup403: pallet_common::pallet::Error<T>3386 * Lookup423: pallet_common::pallet::Error<T>
3111 **/3387 **/
3112 PalletCommonError: {3388 PalletCommonError: {
3113 _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']3389 _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']
3114 },3390 },
3115 /**3391 /**
3116 * Lookup405: pallet_fungible::pallet::Error<T>3392 * Lookup425: pallet_fungible::pallet::Error<T>
3117 **/3393 **/
3118 PalletFungibleError: {3394 PalletFungibleError: {
3119 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3395 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3120 },3396 },
3121 /**3397 /**
3122 * Lookup406: pallet_refungible::ItemData3398 * Lookup426: pallet_refungible::ItemData
3123 **/3399 **/
3124 PalletRefungibleItemData: {3400 PalletRefungibleItemData: {
3125 constData: 'Bytes'3401 constData: 'Bytes'
3126 },3402 },
3127 /**3403 /**
3128 * Lookup411: pallet_refungible::pallet::Error<T>3404 * Lookup431: pallet_refungible::pallet::Error<T>
3129 **/3405 **/
3130 PalletRefungibleError: {3406 PalletRefungibleError: {
3131 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3407 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3132 },3408 },
3133 /**3409 /**
3134 * Lookup412: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3410 * Lookup432: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3135 **/3411 **/
3136 PalletNonfungibleItemData: {3412 PalletNonfungibleItemData: {
3137 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3413 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3138 },3414 },
3139 /**3415 /**
3140 * Lookup414: up_data_structs::PropertyScope3416 * Lookup434: up_data_structs::PropertyScope
3141 **/3417 **/
3142 UpDataStructsPropertyScope: {3418 UpDataStructsPropertyScope: {
3143 _enum: ['None', 'Rmrk']3419 _enum: ['None', 'Rmrk']
3144 },3420 },
3145 /**3421 /**
3146 * Lookup416: pallet_nonfungible::pallet::Error<T>3422 * Lookup436: pallet_nonfungible::pallet::Error<T>
3147 **/3423 **/
3148 PalletNonfungibleError: {3424 PalletNonfungibleError: {
3149 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3425 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3150 },3426 },
3151 /**3427 /**
3152 * Lookup417: pallet_structure::pallet::Error<T>3428 * Lookup437: pallet_structure::pallet::Error<T>
3153 **/3429 **/
3154 PalletStructureError: {3430 PalletStructureError: {
3155 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3431 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3156 },3432 },
3157 /**3433 /**
3158 * Lookup418: pallet_rmrk_core::pallet::Error<T>3434 * Lookup438: pallet_rmrk_core::pallet::Error<T>
3159 **/3435 **/
3160 PalletRmrkCoreError: {3436 PalletRmrkCoreError: {
3161 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3437 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3162 },3438 },
3163 /**3439 /**
3164 * Lookup420: pallet_rmrk_equip::pallet::Error<T>3440 * Lookup440: pallet_rmrk_equip::pallet::Error<T>
3165 **/3441 **/
3166 PalletRmrkEquipError: {3442 PalletRmrkEquipError: {
3167 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3443 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3168 },3444 },
3169 /**3445 /**
3170 * Lookup426: pallet_app_promotion::pallet::Error<T>3446 * Lookup446: pallet_app_promotion::pallet::Error<T>
3171 **/3447 **/
3172 PalletAppPromotionError: {3448 PalletAppPromotionError: {
3173 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3449 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
3174 },3450 },
3175 /**3451 /**
3176 * Lookup427: pallet_foreign_assets::module::Error<T>3452 * Lookup447: pallet_foreign_assets::module::Error<T>
3177 **/3453 **/
3178 PalletForeignAssetsModuleError: {3454 PalletForeignAssetsModuleError: {
3179 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3455 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3180 },3456 },
3181 /**3457 /**
3182 * Lookup430: pallet_evm::pallet::Error<T>3458 * Lookup450: pallet_evm::pallet::Error<T>
3183 **/3459 **/
3184 PalletEvmError: {3460 PalletEvmError: {
3185 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3461 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
3186 },3462 },
3187 /**3463 /**
3188 * Lookup433: fp_rpc::TransactionStatus3464 * Lookup453: fp_rpc::TransactionStatus
3189 **/3465 **/
3190 FpRpcTransactionStatus: {3466 FpRpcTransactionStatus: {
3191 transactionHash: 'H256',3467 transactionHash: 'H256',
3192 transactionIndex: 'u32',3468 transactionIndex: 'u32',
3196 logs: 'Vec<EthereumLog>',3472 logs: 'Vec<EthereumLog>',
3197 logsBloom: 'EthbloomBloom'3473 logsBloom: 'EthbloomBloom'
3198 },3474 },
3199 /**3475 /**
3200 * Lookup435: ethbloom::Bloom3476 * Lookup455: ethbloom::Bloom
3201 **/3477 **/
3202 EthbloomBloom: '[u8;256]',3478 EthbloomBloom: '[u8;256]',
3203 /**3479 /**
3204 * Lookup437: ethereum::receipt::ReceiptV33480 * Lookup457: ethereum::receipt::ReceiptV3
3205 **/3481 **/
3206 EthereumReceiptReceiptV3: {3482 EthereumReceiptReceiptV3: {
3207 _enum: {3483 _enum: {
3208 Legacy: 'EthereumReceiptEip658ReceiptData',3484 Legacy: 'EthereumReceiptEip658ReceiptData',
3209 EIP2930: 'EthereumReceiptEip658ReceiptData',3485 EIP2930: 'EthereumReceiptEip658ReceiptData',
3210 EIP1559: 'EthereumReceiptEip658ReceiptData'3486 EIP1559: 'EthereumReceiptEip658ReceiptData'
3211 }3487 }
3212 },3488 },
3213 /**3489 /**
3214 * Lookup438: ethereum::receipt::EIP658ReceiptData3490 * Lookup458: ethereum::receipt::EIP658ReceiptData
3215 **/3491 **/
3216 EthereumReceiptEip658ReceiptData: {3492 EthereumReceiptEip658ReceiptData: {
3217 statusCode: 'u8',3493 statusCode: 'u8',
3218 usedGas: 'U256',3494 usedGas: 'U256',
3219 logsBloom: 'EthbloomBloom',3495 logsBloom: 'EthbloomBloom',
3220 logs: 'Vec<EthereumLog>'3496 logs: 'Vec<EthereumLog>'
3221 },3497 },
3222 /**3498 /**
3223 * Lookup439: ethereum::block::Block<ethereum::transaction::TransactionV2>3499 * Lookup459: ethereum::block::Block<ethereum::transaction::TransactionV2>
3224 **/3500 **/
3225 EthereumBlock: {3501 EthereumBlock: {
3226 header: 'EthereumHeader',3502 header: 'EthereumHeader',
3227 transactions: 'Vec<EthereumTransactionTransactionV2>',3503 transactions: 'Vec<EthereumTransactionTransactionV2>',
3228 ommers: 'Vec<EthereumHeader>'3504 ommers: 'Vec<EthereumHeader>'
3229 },3505 },
3230 /**3506 /**
3231 * Lookup440: ethereum::header::Header3507 * Lookup460: ethereum::header::Header
3232 **/3508 **/
3233 EthereumHeader: {3509 EthereumHeader: {
3234 parentHash: 'H256',3510 parentHash: 'H256',
3235 ommersHash: 'H256',3511 ommersHash: 'H256',
3247 mixHash: 'H256',3523 mixHash: 'H256',
3248 nonce: 'EthereumTypesHashH64'3524 nonce: 'EthereumTypesHashH64'
3249 },3525 },
3250 /**3526 /**
3251 * Lookup441: ethereum_types::hash::H643527 * Lookup461: ethereum_types::hash::H64
3252 **/3528 **/
3253 EthereumTypesHashH64: '[u8;8]',3529 EthereumTypesHashH64: '[u8;8]',
3254 /**3530 /**
3255 * Lookup446: pallet_ethereum::pallet::Error<T>3531 * Lookup466: pallet_ethereum::pallet::Error<T>
3256 **/3532 **/
3257 PalletEthereumError: {3533 PalletEthereumError: {
3258 _enum: ['InvalidSignature', 'PreLogExists']3534 _enum: ['InvalidSignature', 'PreLogExists']
3259 },3535 },
3260 /**3536 /**
3261 * Lookup447: pallet_evm_coder_substrate::pallet::Error<T>3537 * Lookup467: pallet_evm_coder_substrate::pallet::Error<T>
3262 **/3538 **/
3263 PalletEvmCoderSubstrateError: {3539 PalletEvmCoderSubstrateError: {
3264 _enum: ['OutOfGas', 'OutOfFund']3540 _enum: ['OutOfGas', 'OutOfFund']
3265 },3541 },
3266 /**3542 /**
3267 * Lookup448: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3543 * Lookup468: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3268 **/3544 **/
3269 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3545 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3270 _enum: {3546 _enum: {
3271 Disabled: 'Null',3547 Disabled: 'Null',
3272 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3548 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3273 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3549 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3274 }3550 }
3275 },3551 },
3276 /**3552 /**
3277 * Lookup449: pallet_evm_contract_helpers::SponsoringModeT3553 * Lookup469: pallet_evm_contract_helpers::SponsoringModeT
3278 **/3554 **/
3279 PalletEvmContractHelpersSponsoringModeT: {3555 PalletEvmContractHelpersSponsoringModeT: {
3280 _enum: ['Disabled', 'Allowlisted', 'Generous']3556 _enum: ['Disabled', 'Allowlisted', 'Generous']
3281 },3557 },
3282 /**3558 /**
3283 * Lookup455: pallet_evm_contract_helpers::pallet::Error<T>3559 * Lookup475: pallet_evm_contract_helpers::pallet::Error<T>
3284 **/3560 **/
3285 PalletEvmContractHelpersError: {3561 PalletEvmContractHelpersError: {
3286 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3562 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3287 },3563 },
3288 /**3564 /**
3289 * Lookup456: pallet_evm_migration::pallet::Error<T>3565 * Lookup476: pallet_evm_migration::pallet::Error<T>
3290 **/3566 **/
3291 PalletEvmMigrationError: {3567 PalletEvmMigrationError: {
3292 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3568 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
3293 },3569 },
3570 /**
3571 * Lookup477: pallet_maintenance::pallet::Error<T>
3572 **/
3573 PalletMaintenanceError: 'Null',
3574 /**
3575 * Lookup478: pallet_test_utils::pallet::Error<T>
3576 **/
3577 PalletTestUtilsError: {
3578 _enum: ['TestPalletDisabled', 'TriggerRollback']
3579 },
3294 /**3580 /**
3295 * Lookup458: sp_runtime::MultiSignature3581 * Lookup480: sp_runtime::MultiSignature
3296 **/3582 **/
3297 SpRuntimeMultiSignature: {3583 SpRuntimeMultiSignature: {
3298 _enum: {3584 _enum: {
3299 Ed25519: 'SpCoreEd25519Signature',3585 Ed25519: 'SpCoreEd25519Signature',
3300 Sr25519: 'SpCoreSr25519Signature',3586 Sr25519: 'SpCoreSr25519Signature',
3301 Ecdsa: 'SpCoreEcdsaSignature'3587 Ecdsa: 'SpCoreEcdsaSignature'
3302 }3588 }
3303 },3589 },
3304 /**3590 /**
3305 * Lookup459: sp_core::ed25519::Signature3591 * Lookup481: sp_core::ed25519::Signature
3306 **/3592 **/
3307 SpCoreEd25519Signature: '[u8;64]',3593 SpCoreEd25519Signature: '[u8;64]',
3308 /**3594 /**
3309 * Lookup461: sp_core::sr25519::Signature3595 * Lookup483: sp_core::sr25519::Signature
3310 **/3596 **/
3311 SpCoreSr25519Signature: '[u8;64]',3597 SpCoreSr25519Signature: '[u8;64]',
3312 /**3598 /**
3313 * Lookup462: sp_core::ecdsa::Signature3599 * Lookup484: sp_core::ecdsa::Signature
3314 **/3600 **/
3315 SpCoreEcdsaSignature: '[u8;65]',3601 SpCoreEcdsaSignature: '[u8;65]',
3316 /**3602 /**
3317 * Lookup465: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3603 * Lookup487: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3318 **/3604 **/
3319 FrameSystemExtensionsCheckSpecVersion: 'Null',3605 FrameSystemExtensionsCheckSpecVersion: 'Null',
3320 /**3606 /**
3321 * Lookup466: frame_system::extensions::check_tx_version::CheckTxVersion<T>3607 * Lookup488: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3322 **/3608 **/
3323 FrameSystemExtensionsCheckTxVersion: 'Null',3609 FrameSystemExtensionsCheckTxVersion: 'Null',
3324 /**3610 /**
3325 * Lookup467: frame_system::extensions::check_genesis::CheckGenesis<T>3611 * Lookup489: frame_system::extensions::check_genesis::CheckGenesis<T>
3326 **/3612 **/
3327 FrameSystemExtensionsCheckGenesis: 'Null',3613 FrameSystemExtensionsCheckGenesis: 'Null',
3328 /**3614 /**
3329 * Lookup470: frame_system::extensions::check_nonce::CheckNonce<T>3615 * Lookup492: frame_system::extensions::check_nonce::CheckNonce<T>
3330 **/3616 **/
3331 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3617 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3332 /**3618 /**
3333 * Lookup471: frame_system::extensions::check_weight::CheckWeight<T>3619 * Lookup493: frame_system::extensions::check_weight::CheckWeight<T>
3334 **/3620 **/
3335 FrameSystemExtensionsCheckWeight: 'Null',3621 FrameSystemExtensionsCheckWeight: 'Null',
3622 /**
3623 * Lookup494: opal_runtime::runtime_common::maintenance::CheckMaintenance
3624 **/
3625 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3336 /**3626 /**
3337 * Lookup472: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3627 * Lookup495: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3338 **/3628 **/
3339 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3629 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3340 /**3630 /**
3341 * Lookup473: opal_runtime::Runtime3631 * Lookup496: opal_runtime::Runtime
3342 **/3632 **/
3343 OpalRuntimeRuntime: 'Null',3633 OpalRuntimeRuntime: 'Null',
3344 /**3634 /**
3345 * Lookup474: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3635 * Lookup497: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3346 **/3636 **/
3347 PalletEthereumFakeTransactionFinalizer: 'Null'3637 PalletEthereumFakeTransactionFinalizer: 'Null'
3348};3638};
33493639
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, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, 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, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, 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, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, 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, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
21 CumulusPalletXcmCall: CumulusPalletXcmCall;21 CumulusPalletXcmCall: CumulusPalletXcmCall;
22 CumulusPalletXcmError: CumulusPalletXcmError;22 CumulusPalletXcmError: CumulusPalletXcmError;
23 CumulusPalletXcmEvent: CumulusPalletXcmEvent;23 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
24 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
24 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;25 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
25 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;26 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
26 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;27 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
56 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;57 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
57 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;58 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
58 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;59 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
60 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
59 FrameSupportPalletId: FrameSupportPalletId;61 FrameSupportPalletId: FrameSupportPalletId;
62 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
63 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
60 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;64 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
61 FrameSystemAccountInfo: FrameSystemAccountInfo;65 FrameSystemAccountInfo: FrameSystemAccountInfo;
62 FrameSystemCall: FrameSystemCall;66 FrameSystemCall: FrameSystemCall;
73 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;77 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
74 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;78 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
75 FrameSystemPhase: FrameSystemPhase;79 FrameSystemPhase: FrameSystemPhase;
80 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
76 OpalRuntimeRuntime: OpalRuntimeRuntime;81 OpalRuntimeRuntime: OpalRuntimeRuntime;
82 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
77 OrmlTokensAccountData: OrmlTokensAccountData;83 OrmlTokensAccountData: OrmlTokensAccountData;
78 OrmlTokensBalanceLock: OrmlTokensBalanceLock;84 OrmlTokensBalanceLock: OrmlTokensBalanceLock;
79 OrmlTokensModuleCall: OrmlTokensModuleCall;85 OrmlTokensModuleCall: OrmlTokensModuleCall;
105 PalletEthereumError: PalletEthereumError;111 PalletEthereumError: PalletEthereumError;
106 PalletEthereumEvent: PalletEthereumEvent;112 PalletEthereumEvent: PalletEthereumEvent;
107 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;113 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
114 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
108 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;115 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
109 PalletEvmCall: PalletEvmCall;116 PalletEvmCall: PalletEvmCall;
110 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;117 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
123 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;130 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
124 PalletFungibleError: PalletFungibleError;131 PalletFungibleError: PalletFungibleError;
125 PalletInflationCall: PalletInflationCall;132 PalletInflationCall: PalletInflationCall;
133 PalletMaintenanceCall: PalletMaintenanceCall;
134 PalletMaintenanceError: PalletMaintenanceError;
135 PalletMaintenanceEvent: PalletMaintenanceEvent;
126 PalletNonfungibleError: PalletNonfungibleError;136 PalletNonfungibleError: PalletNonfungibleError;
127 PalletNonfungibleItemData: PalletNonfungibleItemData;137 PalletNonfungibleItemData: PalletNonfungibleItemData;
128 PalletRefungibleError: PalletRefungibleError;138 PalletRefungibleError: PalletRefungibleError;
141 PalletSudoEvent: PalletSudoEvent;151 PalletSudoEvent: PalletSudoEvent;
142 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;152 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
143 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;153 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
154 PalletTestUtilsCall: PalletTestUtilsCall;
155 PalletTestUtilsError: PalletTestUtilsError;
156 PalletTestUtilsEvent: PalletTestUtilsEvent;
144 PalletTimestampCall: PalletTimestampCall;157 PalletTimestampCall: PalletTimestampCall;
145 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;158 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
146 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;159 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
151 PalletUniqueCall: PalletUniqueCall;164 PalletUniqueCall: PalletUniqueCall;
152 PalletUniqueError: PalletUniqueError;165 PalletUniqueError: PalletUniqueError;
153 PalletUniqueRawEvent: PalletUniqueRawEvent;166 PalletUniqueRawEvent: PalletUniqueRawEvent;
167 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
168 PalletUniqueSchedulerError: PalletUniqueSchedulerError;
169 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
170 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
154 PalletXcmCall: PalletXcmCall;171 PalletXcmCall: PalletXcmCall;
155 PalletXcmError: PalletXcmError;172 PalletXcmError: PalletXcmError;
156 PalletXcmEvent: PalletXcmEvent;173 PalletXcmEvent: PalletXcmEvent;
174 PalletXcmOrigin: PalletXcmOrigin;
157 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;175 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
158 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;176 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
159 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;177 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
184 SpCoreEcdsaSignature: SpCoreEcdsaSignature;202 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
185 SpCoreEd25519Signature: SpCoreEd25519Signature;203 SpCoreEd25519Signature: SpCoreEd25519Signature;
186 SpCoreSr25519Signature: SpCoreSr25519Signature;204 SpCoreSr25519Signature: SpCoreSr25519Signature;
205 SpCoreVoid: SpCoreVoid;
187 SpRuntimeArithmeticError: SpRuntimeArithmeticError;206 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
188 SpRuntimeDigest: SpRuntimeDigest;207 SpRuntimeDigest: SpRuntimeDigest;
189 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;208 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1132 readonly type: 'Substrate' | 'Ethereum';1132 readonly type: 'Substrate' | 'Ethereum';
1133 }1133 }
1134
1135 /** @name PalletUniqueSchedulerEvent (93) */
1136 interface PalletUniqueSchedulerEvent extends Enum {
1137 readonly isScheduled: boolean;
1138 readonly asScheduled: {
1139 readonly when: u32;
1140 readonly index: u32;
1141 } & Struct;
1142 readonly isCanceled: boolean;
1143 readonly asCanceled: {
1144 readonly when: u32;
1145 readonly index: u32;
1146 } & Struct;
1147 readonly isPriorityChanged: boolean;
1148 readonly asPriorityChanged: {
1149 readonly when: u32;
1150 readonly index: u32;
1151 readonly priority: u8;
1152 } & Struct;
1153 readonly isDispatched: boolean;
1154 readonly asDispatched: {
1155 readonly task: ITuple<[u32, u32]>;
1156 readonly id: Option<U8aFixed>;
1157 readonly result: Result<Null, SpRuntimeDispatchError>;
1158 } & Struct;
1159 readonly isCallLookupFailed: boolean;
1160 readonly asCallLookupFailed: {
1161 readonly task: ITuple<[u32, u32]>;
1162 readonly id: Option<U8aFixed>;
1163 readonly error: FrameSupportScheduleLookupError;
1164 } & Struct;
1165 readonly type: 'Scheduled' | 'Canceled' | 'PriorityChanged' | 'Dispatched' | 'CallLookupFailed';
1166 }
1167
1168 /** @name FrameSupportScheduleLookupError (96) */
1169 interface FrameSupportScheduleLookupError extends Enum {
1170 readonly isUnknown: boolean;
1171 readonly isBadFormat: boolean;
1172 readonly type: 'Unknown' | 'BadFormat';
1173 }
11341174
1135 /** @name PalletCommonEvent (93) */1175 /** @name PalletCommonEvent (97) */
1136 interface PalletCommonEvent extends Enum {1176 interface PalletCommonEvent extends Enum {
1137 readonly isCollectionCreated: boolean;1177 readonly isCollectionCreated: boolean;
1138 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1178 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
1159 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1199 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
1160 }1200 }
11611201
1162 /** @name PalletStructureEvent (96) */1202 /** @name PalletStructureEvent (100) */
1163 interface PalletStructureEvent extends Enum {1203 interface PalletStructureEvent extends Enum {
1164 readonly isExecuted: boolean;1204 readonly isExecuted: boolean;
1165 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1205 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
1166 readonly type: 'Executed';1206 readonly type: 'Executed';
1167 }1207 }
11681208
1169 /** @name PalletRmrkCoreEvent (97) */1209 /** @name PalletRmrkCoreEvent (101) */
1170 interface PalletRmrkCoreEvent extends Enum {1210 interface PalletRmrkCoreEvent extends Enum {
1171 readonly isCollectionCreated: boolean;1211 readonly isCollectionCreated: boolean;
1172 readonly asCollectionCreated: {1212 readonly asCollectionCreated: {
1256 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1296 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
1257 }1297 }
12581298
1259 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1299 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */
1260 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1300 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1261 readonly isAccountId: boolean;1301 readonly isAccountId: boolean;
1262 readonly asAccountId: AccountId32;1302 readonly asAccountId: AccountId32;
1265 readonly type: 'AccountId' | 'CollectionAndNftTuple';1305 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1266 }1306 }
12671307
1268 /** @name PalletRmrkEquipEvent (103) */1308 /** @name PalletRmrkEquipEvent (107) */
1269 interface PalletRmrkEquipEvent extends Enum {1309 interface PalletRmrkEquipEvent extends Enum {
1270 readonly isBaseCreated: boolean;1310 readonly isBaseCreated: boolean;
1271 readonly asBaseCreated: {1311 readonly asBaseCreated: {
1280 readonly type: 'BaseCreated' | 'EquippablesUpdated';1320 readonly type: 'BaseCreated' | 'EquippablesUpdated';
1281 }1321 }
12821322
1283 /** @name PalletAppPromotionEvent (104) */1323 /** @name PalletAppPromotionEvent (108) */
1284 interface PalletAppPromotionEvent extends Enum {1324 interface PalletAppPromotionEvent extends Enum {
1285 readonly isStakingRecalculation: boolean;1325 readonly isStakingRecalculation: boolean;
1286 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1326 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1293 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1333 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1294 }1334 }
12951335
1296 /** @name PalletForeignAssetsModuleEvent (105) */1336 /** @name PalletForeignAssetsModuleEvent (109) */
1297 interface PalletForeignAssetsModuleEvent extends Enum {1337 interface PalletForeignAssetsModuleEvent extends Enum {
1298 readonly isForeignAssetRegistered: boolean;1338 readonly isForeignAssetRegistered: boolean;
1299 readonly asForeignAssetRegistered: {1339 readonly asForeignAssetRegistered: {
1320 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1360 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1321 }1361 }
13221362
1323 /** @name PalletForeignAssetsModuleAssetMetadata (106) */1363 /** @name PalletForeignAssetsModuleAssetMetadata (110) */
1324 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1364 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1325 readonly name: Bytes;1365 readonly name: Bytes;
1326 readonly symbol: Bytes;1366 readonly symbol: Bytes;
1327 readonly decimals: u8;1367 readonly decimals: u8;
1328 readonly minimalBalance: u128;1368 readonly minimalBalance: u128;
1329 }1369 }
13301370
1331 /** @name PalletEvmEvent (107) */1371 /** @name PalletEvmEvent (111) */
1332 interface PalletEvmEvent extends Enum {1372 interface PalletEvmEvent extends Enum {
1333 readonly isLog: boolean;1373 readonly isLog: boolean;
1334 readonly asLog: EthereumLog;1374 readonly asLog: EthereumLog;
1347 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1387 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
1348 }1388 }
13491389
1350 /** @name EthereumLog (108) */1390 /** @name EthereumLog (112) */
1351 interface EthereumLog extends Struct {1391 interface EthereumLog extends Struct {
1352 readonly address: H160;1392 readonly address: H160;
1353 readonly topics: Vec<H256>;1393 readonly topics: Vec<H256>;
1354 readonly data: Bytes;1394 readonly data: Bytes;
1355 }1395 }
13561396
1357 /** @name PalletEthereumEvent (112) */1397 /** @name PalletEthereumEvent (116) */
1358 interface PalletEthereumEvent extends Enum {1398 interface PalletEthereumEvent extends Enum {
1359 readonly isExecuted: boolean;1399 readonly isExecuted: boolean;
1360 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1400 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
1361 readonly type: 'Executed';1401 readonly type: 'Executed';
1362 }1402 }
13631403
1364 /** @name EvmCoreErrorExitReason (113) */1404 /** @name EvmCoreErrorExitReason (117) */
1365 interface EvmCoreErrorExitReason extends Enum {1405 interface EvmCoreErrorExitReason extends Enum {
1366 readonly isSucceed: boolean;1406 readonly isSucceed: boolean;
1367 readonly asSucceed: EvmCoreErrorExitSucceed;1407 readonly asSucceed: EvmCoreErrorExitSucceed;
1374 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1414 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1375 }1415 }
13761416
1377 /** @name EvmCoreErrorExitSucceed (114) */1417 /** @name EvmCoreErrorExitSucceed (118) */
1378 interface EvmCoreErrorExitSucceed extends Enum {1418 interface EvmCoreErrorExitSucceed extends Enum {
1379 readonly isStopped: boolean;1419 readonly isStopped: boolean;
1380 readonly isReturned: boolean;1420 readonly isReturned: boolean;
1381 readonly isSuicided: boolean;1421 readonly isSuicided: boolean;
1382 readonly type: 'Stopped' | 'Returned' | 'Suicided';1422 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1383 }1423 }
13841424
1385 /** @name EvmCoreErrorExitError (115) */1425 /** @name EvmCoreErrorExitError (119) */
1386 interface EvmCoreErrorExitError extends Enum {1426 interface EvmCoreErrorExitError extends Enum {
1387 readonly isStackUnderflow: boolean;1427 readonly isStackUnderflow: boolean;
1388 readonly isStackOverflow: boolean;1428 readonly isStackOverflow: boolean;
1403 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1443 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1404 }1444 }
14051445
1406 /** @name EvmCoreErrorExitRevert (118) */1446 /** @name EvmCoreErrorExitRevert (122) */
1407 interface EvmCoreErrorExitRevert extends Enum {1447 interface EvmCoreErrorExitRevert extends Enum {
1408 readonly isReverted: boolean;1448 readonly isReverted: boolean;
1409 readonly type: 'Reverted';1449 readonly type: 'Reverted';
1410 }1450 }
14111451
1412 /** @name EvmCoreErrorExitFatal (119) */1452 /** @name EvmCoreErrorExitFatal (123) */
1413 interface EvmCoreErrorExitFatal extends Enum {1453 interface EvmCoreErrorExitFatal extends Enum {
1414 readonly isNotSupported: boolean;1454 readonly isNotSupported: boolean;
1415 readonly isUnhandledInterrupt: boolean;1455 readonly isUnhandledInterrupt: boolean;
1420 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1460 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1421 }1461 }
14221462
1423 /** @name PalletEvmContractHelpersEvent (120) */1463 /** @name PalletEvmContractHelpersEvent (124) */
1424 interface PalletEvmContractHelpersEvent extends Enum {1464 interface PalletEvmContractHelpersEvent extends Enum {
1425 readonly isContractSponsorSet: boolean;1465 readonly isContractSponsorSet: boolean;
1426 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1466 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1431 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1471 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1432 }1472 }
1473
1474 /** @name PalletMaintenanceEvent (125) */
1475 interface PalletMaintenanceEvent extends Enum {
1476 readonly isMaintenanceEnabled: boolean;
1477 readonly isMaintenanceDisabled: boolean;
1478 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
1479 }
1480
1481 /** @name PalletTestUtilsEvent (126) */
1482 interface PalletTestUtilsEvent extends Enum {
1483 readonly isValueIsSet: boolean;
1484 readonly isShouldRollback: boolean;
1485 readonly type: 'ValueIsSet' | 'ShouldRollback';
1486 }
14331487
1434 /** @name FrameSystemPhase (121) */1488 /** @name FrameSystemPhase (127) */
1435 interface FrameSystemPhase extends Enum {1489 interface FrameSystemPhase extends Enum {
1436 readonly isApplyExtrinsic: boolean;1490 readonly isApplyExtrinsic: boolean;
1437 readonly asApplyExtrinsic: u32;1491 readonly asApplyExtrinsic: u32;
1440 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1494 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1441 }1495 }
14421496
1443 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1497 /** @name FrameSystemLastRuntimeUpgradeInfo (129) */
1444 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1498 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1445 readonly specVersion: Compact<u32>;1499 readonly specVersion: Compact<u32>;
1446 readonly specName: Text;1500 readonly specName: Text;
1447 }1501 }
14481502
1449 /** @name FrameSystemCall (125) */1503 /** @name FrameSystemCall (130) */
1450 interface FrameSystemCall extends Enum {1504 interface FrameSystemCall extends Enum {
1451 readonly isFillBlock: boolean;1505 readonly isFillBlock: boolean;
1452 readonly asFillBlock: {1506 readonly asFillBlock: {
1488 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1542 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1489 }1543 }
14901544
1491 /** @name FrameSystemLimitsBlockWeights (130) */1545 /** @name FrameSystemLimitsBlockWeights (135) */
1492 interface FrameSystemLimitsBlockWeights extends Struct {1546 interface FrameSystemLimitsBlockWeights extends Struct {
1493 readonly baseBlock: Weight;1547 readonly baseBlock: Weight;
1494 readonly maxBlock: Weight;1548 readonly maxBlock: Weight;
1495 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1549 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1496 }1550 }
14971551
1498 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */1552 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (136) */
1499 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1553 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1500 readonly normal: FrameSystemLimitsWeightsPerClass;1554 readonly normal: FrameSystemLimitsWeightsPerClass;
1501 readonly operational: FrameSystemLimitsWeightsPerClass;1555 readonly operational: FrameSystemLimitsWeightsPerClass;
1502 readonly mandatory: FrameSystemLimitsWeightsPerClass;1556 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1503 }1557 }
15041558
1505 /** @name FrameSystemLimitsWeightsPerClass (132) */1559 /** @name FrameSystemLimitsWeightsPerClass (137) */
1506 interface FrameSystemLimitsWeightsPerClass extends Struct {1560 interface FrameSystemLimitsWeightsPerClass extends Struct {
1507 readonly baseExtrinsic: Weight;1561 readonly baseExtrinsic: Weight;
1508 readonly maxExtrinsic: Option<Weight>;1562 readonly maxExtrinsic: Option<Weight>;
1509 readonly maxTotal: Option<Weight>;1563 readonly maxTotal: Option<Weight>;
1510 readonly reserved: Option<Weight>;1564 readonly reserved: Option<Weight>;
1511 }1565 }
15121566
1513 /** @name FrameSystemLimitsBlockLength (134) */1567 /** @name FrameSystemLimitsBlockLength (139) */
1514 interface FrameSystemLimitsBlockLength extends Struct {1568 interface FrameSystemLimitsBlockLength extends Struct {
1515 readonly max: FrameSupportDispatchPerDispatchClassU32;1569 readonly max: FrameSupportDispatchPerDispatchClassU32;
1516 }1570 }
15171571
1518 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */1572 /** @name FrameSupportDispatchPerDispatchClassU32 (140) */
1519 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1573 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1520 readonly normal: u32;1574 readonly normal: u32;
1521 readonly operational: u32;1575 readonly operational: u32;
1522 readonly mandatory: u32;1576 readonly mandatory: u32;
1523 }1577 }
15241578
1525 /** @name SpWeightsRuntimeDbWeight (136) */1579 /** @name SpWeightsRuntimeDbWeight (141) */
1526 interface SpWeightsRuntimeDbWeight extends Struct {1580 interface SpWeightsRuntimeDbWeight extends Struct {
1527 readonly read: u64;1581 readonly read: u64;
1528 readonly write: u64;1582 readonly write: u64;
1529 }1583 }
15301584
1531 /** @name SpVersionRuntimeVersion (137) */1585 /** @name SpVersionRuntimeVersion (142) */
1532 interface SpVersionRuntimeVersion extends Struct {1586 interface SpVersionRuntimeVersion extends Struct {
1533 readonly specName: Text;1587 readonly specName: Text;
1534 readonly implName: Text;1588 readonly implName: Text;
1540 readonly stateVersion: u8;1594 readonly stateVersion: u8;
1541 }1595 }
15421596
1543 /** @name FrameSystemError (142) */1597 /** @name FrameSystemError (147) */
1544 interface FrameSystemError extends Enum {1598 interface FrameSystemError extends Enum {
1545 readonly isInvalidSpecName: boolean;1599 readonly isInvalidSpecName: boolean;
1546 readonly isSpecVersionNeedsToIncrease: boolean;1600 readonly isSpecVersionNeedsToIncrease: boolean;
1551 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1605 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1552 }1606 }
15531607
1554 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */1608 /** @name PolkadotPrimitivesV2PersistedValidationData (148) */
1555 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1609 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1556 readonly parentHead: Bytes;1610 readonly parentHead: Bytes;
1557 readonly relayParentNumber: u32;1611 readonly relayParentNumber: u32;
1558 readonly relayParentStorageRoot: H256;1612 readonly relayParentStorageRoot: H256;
1559 readonly maxPovSize: u32;1613 readonly maxPovSize: u32;
1560 }1614 }
15611615
1562 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */1616 /** @name PolkadotPrimitivesV2UpgradeRestriction (151) */
1563 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1617 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1564 readonly isPresent: boolean;1618 readonly isPresent: boolean;
1565 readonly type: 'Present';1619 readonly type: 'Present';
1566 }1620 }
15671621
1568 /** @name SpTrieStorageProof (147) */1622 /** @name SpTrieStorageProof (152) */
1569 interface SpTrieStorageProof extends Struct {1623 interface SpTrieStorageProof extends Struct {
1570 readonly trieNodes: BTreeSet<Bytes>;1624 readonly trieNodes: BTreeSet<Bytes>;
1571 }1625 }
15721626
1573 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */1627 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (154) */
1574 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1628 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1575 readonly dmqMqcHead: H256;1629 readonly dmqMqcHead: H256;
1576 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1630 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1577 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1631 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1578 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1632 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1579 }1633 }
15801634
1581 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */1635 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (157) */
1582 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1636 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1583 readonly maxCapacity: u32;1637 readonly maxCapacity: u32;
1584 readonly maxTotalSize: u32;1638 readonly maxTotalSize: u32;
1588 readonly mqcHead: Option<H256>;1642 readonly mqcHead: Option<H256>;
1589 }1643 }
15901644
1591 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */1645 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (158) */
1592 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1646 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1593 readonly maxCodeSize: u32;1647 readonly maxCodeSize: u32;
1594 readonly maxHeadDataSize: u32;1648 readonly maxHeadDataSize: u32;
1601 readonly validationUpgradeDelay: u32;1655 readonly validationUpgradeDelay: u32;
1602 }1656 }
16031657
1604 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */1658 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (164) */
1605 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1659 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1606 readonly recipient: u32;1660 readonly recipient: u32;
1607 readonly data: Bytes;1661 readonly data: Bytes;
1608 }1662 }
16091663
1610 /** @name CumulusPalletParachainSystemCall (160) */1664 /** @name CumulusPalletParachainSystemCall (165) */
1611 interface CumulusPalletParachainSystemCall extends Enum {1665 interface CumulusPalletParachainSystemCall extends Enum {
1612 readonly isSetValidationData: boolean;1666 readonly isSetValidationData: boolean;
1613 readonly asSetValidationData: {1667 readonly asSetValidationData: {
1628 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1682 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1629 }1683 }
16301684
1631 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */1685 /** @name CumulusPrimitivesParachainInherentParachainInherentData (166) */
1632 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1686 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1633 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1687 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1634 readonly relayChainState: SpTrieStorageProof;1688 readonly relayChainState: SpTrieStorageProof;
1635 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1689 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1636 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1690 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1637 }1691 }
16381692
1639 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */1693 /** @name PolkadotCorePrimitivesInboundDownwardMessage (168) */
1640 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1694 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1641 readonly sentAt: u32;1695 readonly sentAt: u32;
1642 readonly msg: Bytes;1696 readonly msg: Bytes;
1643 }1697 }
16441698
1645 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */1699 /** @name PolkadotCorePrimitivesInboundHrmpMessage (171) */
1646 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1700 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1647 readonly sentAt: u32;1701 readonly sentAt: u32;
1648 readonly data: Bytes;1702 readonly data: Bytes;
1649 }1703 }
16501704
1651 /** @name CumulusPalletParachainSystemError (169) */1705 /** @name CumulusPalletParachainSystemError (174) */
1652 interface CumulusPalletParachainSystemError extends Enum {1706 interface CumulusPalletParachainSystemError extends Enum {
1653 readonly isOverlappingUpgrades: boolean;1707 readonly isOverlappingUpgrades: boolean;
1654 readonly isProhibitedByPolkadot: boolean;1708 readonly isProhibitedByPolkadot: boolean;
1661 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1715 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1662 }1716 }
16631717
1664 /** @name PalletBalancesBalanceLock (171) */1718 /** @name PalletBalancesBalanceLock (176) */
1665 interface PalletBalancesBalanceLock extends Struct {1719 interface PalletBalancesBalanceLock extends Struct {
1666 readonly id: U8aFixed;1720 readonly id: U8aFixed;
1667 readonly amount: u128;1721 readonly amount: u128;
1668 readonly reasons: PalletBalancesReasons;1722 readonly reasons: PalletBalancesReasons;
1669 }1723 }
16701724
1671 /** @name PalletBalancesReasons (172) */1725 /** @name PalletBalancesReasons (177) */
1672 interface PalletBalancesReasons extends Enum {1726 interface PalletBalancesReasons extends Enum {
1673 readonly isFee: boolean;1727 readonly isFee: boolean;
1674 readonly isMisc: boolean;1728 readonly isMisc: boolean;
1675 readonly isAll: boolean;1729 readonly isAll: boolean;
1676 readonly type: 'Fee' | 'Misc' | 'All';1730 readonly type: 'Fee' | 'Misc' | 'All';
1677 }1731 }
16781732
1679 /** @name PalletBalancesReserveData (175) */1733 /** @name PalletBalancesReserveData (180) */
1680 interface PalletBalancesReserveData extends Struct {1734 interface PalletBalancesReserveData extends Struct {
1681 readonly id: U8aFixed;1735 readonly id: U8aFixed;
1682 readonly amount: u128;1736 readonly amount: u128;
1683 }1737 }
16841738
1685 /** @name PalletBalancesReleases (177) */1739 /** @name PalletBalancesReleases (182) */
1686 interface PalletBalancesReleases extends Enum {1740 interface PalletBalancesReleases extends Enum {
1687 readonly isV100: boolean;1741 readonly isV100: boolean;
1688 readonly isV200: boolean;1742 readonly isV200: boolean;
1689 readonly type: 'V100' | 'V200';1743 readonly type: 'V100' | 'V200';
1690 }1744 }
16911745
1692 /** @name PalletBalancesCall (178) */1746 /** @name PalletBalancesCall (183) */
1693 interface PalletBalancesCall extends Enum {1747 interface PalletBalancesCall extends Enum {
1694 readonly isTransfer: boolean;1748 readonly isTransfer: boolean;
1695 readonly asTransfer: {1749 readonly asTransfer: {
1726 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1780 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
1727 }1781 }
17281782
1729 /** @name PalletBalancesError (181) */1783 /** @name PalletBalancesError (186) */
1730 interface PalletBalancesError extends Enum {1784 interface PalletBalancesError extends Enum {
1731 readonly isVestingBalance: boolean;1785 readonly isVestingBalance: boolean;
1732 readonly isLiquidityRestrictions: boolean;1786 readonly isLiquidityRestrictions: boolean;
1739 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1793 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
1740 }1794 }
17411795
1742 /** @name PalletTimestampCall (183) */1796 /** @name PalletTimestampCall (188) */
1743 interface PalletTimestampCall extends Enum {1797 interface PalletTimestampCall extends Enum {
1744 readonly isSet: boolean;1798 readonly isSet: boolean;
1745 readonly asSet: {1799 readonly asSet: {
1748 readonly type: 'Set';1802 readonly type: 'Set';
1749 }1803 }
17501804
1751 /** @name PalletTransactionPaymentReleases (185) */1805 /** @name PalletTransactionPaymentReleases (190) */
1752 interface PalletTransactionPaymentReleases extends Enum {1806 interface PalletTransactionPaymentReleases extends Enum {
1753 readonly isV1Ancient: boolean;1807 readonly isV1Ancient: boolean;
1754 readonly isV2: boolean;1808 readonly isV2: boolean;
1755 readonly type: 'V1Ancient' | 'V2';1809 readonly type: 'V1Ancient' | 'V2';
1756 }1810 }
17571811
1758 /** @name PalletTreasuryProposal (186) */1812 /** @name PalletTreasuryProposal (191) */
1759 interface PalletTreasuryProposal extends Struct {1813 interface PalletTreasuryProposal extends Struct {
1760 readonly proposer: AccountId32;1814 readonly proposer: AccountId32;
1761 readonly value: u128;1815 readonly value: u128;
1762 readonly beneficiary: AccountId32;1816 readonly beneficiary: AccountId32;
1763 readonly bond: u128;1817 readonly bond: u128;
1764 }1818 }
17651819
1766 /** @name PalletTreasuryCall (189) */1820 /** @name PalletTreasuryCall (194) */
1767 interface PalletTreasuryCall extends Enum {1821 interface PalletTreasuryCall extends Enum {
1768 readonly isProposeSpend: boolean;1822 readonly isProposeSpend: boolean;
1769 readonly asProposeSpend: {1823 readonly asProposeSpend: {
1790 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1844 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
1791 }1845 }
17921846
1793 /** @name FrameSupportPalletId (192) */1847 /** @name FrameSupportPalletId (197) */
1794 interface FrameSupportPalletId extends U8aFixed {}1848 interface FrameSupportPalletId extends U8aFixed {}
17951849
1796 /** @name PalletTreasuryError (193) */1850 /** @name PalletTreasuryError (198) */
1797 interface PalletTreasuryError extends Enum {1851 interface PalletTreasuryError extends Enum {
1798 readonly isInsufficientProposersBalance: boolean;1852 readonly isInsufficientProposersBalance: boolean;
1799 readonly isInvalidIndex: boolean;1853 readonly isInvalidIndex: boolean;
1803 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1857 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
1804 }1858 }
18051859
1806 /** @name PalletSudoCall (194) */1860 /** @name PalletSudoCall (199) */
1807 interface PalletSudoCall extends Enum {1861 interface PalletSudoCall extends Enum {
1808 readonly isSudo: boolean;1862 readonly isSudo: boolean;
1809 readonly asSudo: {1863 readonly asSudo: {
1826 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1880 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
1827 }1881 }
18281882
1829 /** @name OrmlVestingModuleCall (196) */1883 /** @name OrmlVestingModuleCall (201) */
1830 interface OrmlVestingModuleCall extends Enum {1884 interface OrmlVestingModuleCall extends Enum {
1831 readonly isClaim: boolean;1885 readonly isClaim: boolean;
1832 readonly isVestedTransfer: boolean;1886 readonly isVestedTransfer: boolean;
1846 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1900 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
1847 }1901 }
18481902
1849 /** @name OrmlXtokensModuleCall (198) */1903 /** @name OrmlXtokensModuleCall (203) */
1850 interface OrmlXtokensModuleCall extends Enum {1904 interface OrmlXtokensModuleCall extends Enum {
1851 readonly isTransfer: boolean;1905 readonly isTransfer: boolean;
1852 readonly asTransfer: {1906 readonly asTransfer: {
1893 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1947 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
1894 }1948 }
18951949
1896 /** @name XcmVersionedMultiAsset (199) */1950 /** @name XcmVersionedMultiAsset (204) */
1897 interface XcmVersionedMultiAsset extends Enum {1951 interface XcmVersionedMultiAsset extends Enum {
1898 readonly isV0: boolean;1952 readonly isV0: boolean;
1899 readonly asV0: XcmV0MultiAsset;1953 readonly asV0: XcmV0MultiAsset;
1902 readonly type: 'V0' | 'V1';1956 readonly type: 'V0' | 'V1';
1903 }1957 }
19041958
1905 /** @name OrmlTokensModuleCall (202) */1959 /** @name OrmlTokensModuleCall (207) */
1906 interface OrmlTokensModuleCall extends Enum {1960 interface OrmlTokensModuleCall extends Enum {
1907 readonly isTransfer: boolean;1961 readonly isTransfer: boolean;
1908 readonly asTransfer: {1962 readonly asTransfer: {
1939 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1993 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
1940 }1994 }
19411995
1942 /** @name CumulusPalletXcmpQueueCall (203) */1996 /** @name CumulusPalletXcmpQueueCall (208) */
1943 interface CumulusPalletXcmpQueueCall extends Enum {1997 interface CumulusPalletXcmpQueueCall extends Enum {
1944 readonly isServiceOverweight: boolean;1998 readonly isServiceOverweight: boolean;
1945 readonly asServiceOverweight: {1999 readonly asServiceOverweight: {
1975 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2029 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
1976 }2030 }
19772031
1978 /** @name PalletXcmCall (204) */2032 /** @name PalletXcmCall (209) */
1979 interface PalletXcmCall extends Enum {2033 interface PalletXcmCall extends Enum {
1980 readonly isSend: boolean;2034 readonly isSend: boolean;
1981 readonly asSend: {2035 readonly asSend: {
2037 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2091 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2038 }2092 }
20392093
2040 /** @name XcmVersionedXcm (205) */2094 /** @name XcmVersionedXcm (210) */
2041 interface XcmVersionedXcm extends Enum {2095 interface XcmVersionedXcm extends Enum {
2042 readonly isV0: boolean;2096 readonly isV0: boolean;
2043 readonly asV0: XcmV0Xcm;2097 readonly asV0: XcmV0Xcm;
2048 readonly type: 'V0' | 'V1' | 'V2';2102 readonly type: 'V0' | 'V1' | 'V2';
2049 }2103 }
20502104
2051 /** @name XcmV0Xcm (206) */2105 /** @name XcmV0Xcm (211) */
2052 interface XcmV0Xcm extends Enum {2106 interface XcmV0Xcm extends Enum {
2053 readonly isWithdrawAsset: boolean;2107 readonly isWithdrawAsset: boolean;
2054 readonly asWithdrawAsset: {2108 readonly asWithdrawAsset: {
2111 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2165 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
2112 }2166 }
21132167
2114 /** @name XcmV0Order (208) */2168 /** @name XcmV0Order (213) */
2115 interface XcmV0Order extends Enum {2169 interface XcmV0Order extends Enum {
2116 readonly isNull: boolean;2170 readonly isNull: boolean;
2117 readonly isDepositAsset: boolean;2171 readonly isDepositAsset: boolean;
2159 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2213 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2160 }2214 }
21612215
2162 /** @name XcmV0Response (210) */2216 /** @name XcmV0Response (215) */
2163 interface XcmV0Response extends Enum {2217 interface XcmV0Response extends Enum {
2164 readonly isAssets: boolean;2218 readonly isAssets: boolean;
2165 readonly asAssets: Vec<XcmV0MultiAsset>;2219 readonly asAssets: Vec<XcmV0MultiAsset>;
2166 readonly type: 'Assets';2220 readonly type: 'Assets';
2167 }2221 }
21682222
2169 /** @name XcmV1Xcm (211) */2223 /** @name XcmV1Xcm (216) */
2170 interface XcmV1Xcm extends Enum {2224 interface XcmV1Xcm extends Enum {
2171 readonly isWithdrawAsset: boolean;2225 readonly isWithdrawAsset: boolean;
2172 readonly asWithdrawAsset: {2226 readonly asWithdrawAsset: {
2235 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2289 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
2236 }2290 }
22372291
2238 /** @name XcmV1Order (213) */2292 /** @name XcmV1Order (218) */
2239 interface XcmV1Order extends Enum {2293 interface XcmV1Order extends Enum {
2240 readonly isNoop: boolean;2294 readonly isNoop: boolean;
2241 readonly isDepositAsset: boolean;2295 readonly isDepositAsset: boolean;
2285 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2339 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2286 }2340 }
22872341
2288 /** @name XcmV1Response (215) */2342 /** @name XcmV1Response (220) */
2289 interface XcmV1Response extends Enum {2343 interface XcmV1Response extends Enum {
2290 readonly isAssets: boolean;2344 readonly isAssets: boolean;
2291 readonly asAssets: XcmV1MultiassetMultiAssets;2345 readonly asAssets: XcmV1MultiassetMultiAssets;
2294 readonly type: 'Assets' | 'Version';2348 readonly type: 'Assets' | 'Version';
2295 }2349 }
22962350
2297 /** @name CumulusPalletXcmCall (229) */2351 /** @name CumulusPalletXcmCall (234) */
2298 type CumulusPalletXcmCall = Null;2352 type CumulusPalletXcmCall = Null;
22992353
2300 /** @name CumulusPalletDmpQueueCall (230) */2354 /** @name CumulusPalletDmpQueueCall (235) */
2301 interface CumulusPalletDmpQueueCall extends Enum {2355 interface CumulusPalletDmpQueueCall extends Enum {
2302 readonly isServiceOverweight: boolean;2356 readonly isServiceOverweight: boolean;
2303 readonly asServiceOverweight: {2357 readonly asServiceOverweight: {
2307 readonly type: 'ServiceOverweight';2361 readonly type: 'ServiceOverweight';
2308 }2362 }
23092363
2310 /** @name PalletInflationCall (231) */2364 /** @name PalletInflationCall (236) */
2311 interface PalletInflationCall extends Enum {2365 interface PalletInflationCall extends Enum {
2312 readonly isStartInflation: boolean;2366 readonly isStartInflation: boolean;
2313 readonly asStartInflation: {2367 readonly asStartInflation: {
2316 readonly type: 'StartInflation';2370 readonly type: 'StartInflation';
2317 }2371 }
23182372
2319 /** @name PalletUniqueCall (232) */2373 /** @name PalletUniqueCall (237) */
2320 interface PalletUniqueCall extends Enum {2374 interface PalletUniqueCall extends Enum {
2321 readonly isCreateCollection: boolean;2375 readonly isCreateCollection: boolean;
2322 readonly asCreateCollection: {2376 readonly asCreateCollection: {
2474 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';2528 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';
2475 }2529 }
24762530
2477 /** @name UpDataStructsCollectionMode (237) */2531 /** @name UpDataStructsCollectionMode (242) */
2478 interface UpDataStructsCollectionMode extends Enum {2532 interface UpDataStructsCollectionMode extends Enum {
2479 readonly isNft: boolean;2533 readonly isNft: boolean;
2480 readonly isFungible: boolean;2534 readonly isFungible: boolean;
2483 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2537 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2484 }2538 }
24852539
2486 /** @name UpDataStructsCreateCollectionData (238) */2540 /** @name UpDataStructsCreateCollectionData (243) */
2487 interface UpDataStructsCreateCollectionData extends Struct {2541 interface UpDataStructsCreateCollectionData extends Struct {
2488 readonly mode: UpDataStructsCollectionMode;2542 readonly mode: UpDataStructsCollectionMode;
2489 readonly access: Option<UpDataStructsAccessMode>;2543 readonly access: Option<UpDataStructsAccessMode>;
2497 readonly properties: Vec<UpDataStructsProperty>;2551 readonly properties: Vec<UpDataStructsProperty>;
2498 }2552 }
24992553
2500 /** @name UpDataStructsAccessMode (240) */2554 /** @name UpDataStructsAccessMode (245) */
2501 interface UpDataStructsAccessMode extends Enum {2555 interface UpDataStructsAccessMode extends Enum {
2502 readonly isNormal: boolean;2556 readonly isNormal: boolean;
2503 readonly isAllowList: boolean;2557 readonly isAllowList: boolean;
2504 readonly type: 'Normal' | 'AllowList';2558 readonly type: 'Normal' | 'AllowList';
2505 }2559 }
25062560
2507 /** @name UpDataStructsCollectionLimits (242) */2561 /** @name UpDataStructsCollectionLimits (247) */
2508 interface UpDataStructsCollectionLimits extends Struct {2562 interface UpDataStructsCollectionLimits extends Struct {
2509 readonly accountTokenOwnershipLimit: Option<u32>;2563 readonly accountTokenOwnershipLimit: Option<u32>;
2510 readonly sponsoredDataSize: Option<u32>;2564 readonly sponsoredDataSize: Option<u32>;
2517 readonly transfersEnabled: Option<bool>;2571 readonly transfersEnabled: Option<bool>;
2518 }2572 }
25192573
2520 /** @name UpDataStructsSponsoringRateLimit (244) */2574 /** @name UpDataStructsSponsoringRateLimit (249) */
2521 interface UpDataStructsSponsoringRateLimit extends Enum {2575 interface UpDataStructsSponsoringRateLimit extends Enum {
2522 readonly isSponsoringDisabled: boolean;2576 readonly isSponsoringDisabled: boolean;
2523 readonly isBlocks: boolean;2577 readonly isBlocks: boolean;
2524 readonly asBlocks: u32;2578 readonly asBlocks: u32;
2525 readonly type: 'SponsoringDisabled' | 'Blocks';2579 readonly type: 'SponsoringDisabled' | 'Blocks';
2526 }2580 }
25272581
2528 /** @name UpDataStructsCollectionPermissions (247) */2582 /** @name UpDataStructsCollectionPermissions (252) */
2529 interface UpDataStructsCollectionPermissions extends Struct {2583 interface UpDataStructsCollectionPermissions extends Struct {
2530 readonly access: Option<UpDataStructsAccessMode>;2584 readonly access: Option<UpDataStructsAccessMode>;
2531 readonly mintMode: Option<bool>;2585 readonly mintMode: Option<bool>;
2532 readonly nesting: Option<UpDataStructsNestingPermissions>;2586 readonly nesting: Option<UpDataStructsNestingPermissions>;
2533 }2587 }
25342588
2535 /** @name UpDataStructsNestingPermissions (249) */2589 /** @name UpDataStructsNestingPermissions (254) */
2536 interface UpDataStructsNestingPermissions extends Struct {2590 interface UpDataStructsNestingPermissions extends Struct {
2537 readonly tokenOwner: bool;2591 readonly tokenOwner: bool;
2538 readonly collectionAdmin: bool;2592 readonly collectionAdmin: bool;
2539 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2593 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2540 }2594 }
25412595
2542 /** @name UpDataStructsOwnerRestrictedSet (251) */2596 /** @name UpDataStructsOwnerRestrictedSet (256) */
2543 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2597 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
25442598
2545 /** @name UpDataStructsPropertyKeyPermission (256) */2599 /** @name UpDataStructsPropertyKeyPermission (261) */
2546 interface UpDataStructsPropertyKeyPermission extends Struct {2600 interface UpDataStructsPropertyKeyPermission extends Struct {
2547 readonly key: Bytes;2601 readonly key: Bytes;
2548 readonly permission: UpDataStructsPropertyPermission;2602 readonly permission: UpDataStructsPropertyPermission;
2549 }2603 }
25502604
2551 /** @name UpDataStructsPropertyPermission (257) */2605 /** @name UpDataStructsPropertyPermission (262) */
2552 interface UpDataStructsPropertyPermission extends Struct {2606 interface UpDataStructsPropertyPermission extends Struct {
2553 readonly mutable: bool;2607 readonly mutable: bool;
2554 readonly collectionAdmin: bool;2608 readonly collectionAdmin: bool;
2555 readonly tokenOwner: bool;2609 readonly tokenOwner: bool;
2556 }2610 }
25572611
2558 /** @name UpDataStructsProperty (260) */2612 /** @name UpDataStructsProperty (265) */
2559 interface UpDataStructsProperty extends Struct {2613 interface UpDataStructsProperty extends Struct {
2560 readonly key: Bytes;2614 readonly key: Bytes;
2561 readonly value: Bytes;2615 readonly value: Bytes;
2562 }2616 }
25632617
2564 /** @name UpDataStructsCreateItemData (263) */2618 /** @name UpDataStructsCreateItemData (268) */
2565 interface UpDataStructsCreateItemData extends Enum {2619 interface UpDataStructsCreateItemData extends Enum {
2566 readonly isNft: boolean;2620 readonly isNft: boolean;
2567 readonly asNft: UpDataStructsCreateNftData;2621 readonly asNft: UpDataStructsCreateNftData;
2572 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2626 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2573 }2627 }
25742628
2575 /** @name UpDataStructsCreateNftData (264) */2629 /** @name UpDataStructsCreateNftData (269) */
2576 interface UpDataStructsCreateNftData extends Struct {2630 interface UpDataStructsCreateNftData extends Struct {
2577 readonly properties: Vec<UpDataStructsProperty>;2631 readonly properties: Vec<UpDataStructsProperty>;
2578 }2632 }
25792633
2580 /** @name UpDataStructsCreateFungibleData (265) */2634 /** @name UpDataStructsCreateFungibleData (270) */
2581 interface UpDataStructsCreateFungibleData extends Struct {2635 interface UpDataStructsCreateFungibleData extends Struct {
2582 readonly value: u128;2636 readonly value: u128;
2583 }2637 }
25842638
2585 /** @name UpDataStructsCreateReFungibleData (266) */2639 /** @name UpDataStructsCreateReFungibleData (271) */
2586 interface UpDataStructsCreateReFungibleData extends Struct {2640 interface UpDataStructsCreateReFungibleData extends Struct {
2587 readonly pieces: u128;2641 readonly pieces: u128;
2588 readonly properties: Vec<UpDataStructsProperty>;2642 readonly properties: Vec<UpDataStructsProperty>;
2589 }2643 }
25902644
2591 /** @name UpDataStructsCreateItemExData (269) */2645 /** @name UpDataStructsCreateItemExData (274) */
2592 interface UpDataStructsCreateItemExData extends Enum {2646 interface UpDataStructsCreateItemExData extends Enum {
2593 readonly isNft: boolean;2647 readonly isNft: boolean;
2594 readonly asNft: Vec<UpDataStructsCreateNftExData>;2648 readonly asNft: Vec<UpDataStructsCreateNftExData>;
2601 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2655 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
2602 }2656 }
26032657
2604 /** @name UpDataStructsCreateNftExData (271) */2658 /** @name UpDataStructsCreateNftExData (276) */
2605 interface UpDataStructsCreateNftExData extends Struct {2659 interface UpDataStructsCreateNftExData extends Struct {
2606 readonly properties: Vec<UpDataStructsProperty>;2660 readonly properties: Vec<UpDataStructsProperty>;
2607 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2661 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2608 }2662 }
26092663
2610 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */2664 /** @name UpDataStructsCreateRefungibleExSingleOwner (283) */
2611 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2665 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
2612 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2666 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
2613 readonly pieces: u128;2667 readonly pieces: u128;
2614 readonly properties: Vec<UpDataStructsProperty>;2668 readonly properties: Vec<UpDataStructsProperty>;
2615 }2669 }
26162670
2617 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */2671 /** @name UpDataStructsCreateRefungibleExMultipleOwners (285) */
2618 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2672 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
2619 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2673 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
2620 readonly properties: Vec<UpDataStructsProperty>;2674 readonly properties: Vec<UpDataStructsProperty>;
2621 }2675 }
2676
2677 /** @name PalletUniqueSchedulerCall (286) */
2678 interface PalletUniqueSchedulerCall extends Enum {
2679 readonly isScheduleNamed: boolean;
2680 readonly asScheduleNamed: {
2681 readonly id: U8aFixed;
2682 readonly when: u32;
2683 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2684 readonly priority: Option<u8>;
2685 readonly call: FrameSupportScheduleMaybeHashed;
2686 } & Struct;
2687 readonly isCancelNamed: boolean;
2688 readonly asCancelNamed: {
2689 readonly id: U8aFixed;
2690 } & Struct;
2691 readonly isScheduleNamedAfter: boolean;
2692 readonly asScheduleNamedAfter: {
2693 readonly id: U8aFixed;
2694 readonly after: u32;
2695 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2696 readonly priority: Option<u8>;
2697 readonly call: FrameSupportScheduleMaybeHashed;
2698 } & Struct;
2699 readonly isChangeNamedPriority: boolean;
2700 readonly asChangeNamedPriority: {
2701 readonly id: U8aFixed;
2702 readonly priority: u8;
2703 } & Struct;
2704 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
2705 }
2706
2707 /** @name FrameSupportScheduleMaybeHashed (289) */
2708 interface FrameSupportScheduleMaybeHashed extends Enum {
2709 readonly isValue: boolean;
2710 readonly asValue: Call;
2711 readonly isHash: boolean;
2712 readonly asHash: H256;
2713 readonly type: 'Value' | 'Hash';
2714 }
26222715
2623 /** @name PalletConfigurationCall (281) */2716 /** @name PalletConfigurationCall (290) */
2624 interface PalletConfigurationCall extends Enum {2717 interface PalletConfigurationCall extends Enum {
2625 readonly isSetWeightToFeeCoefficientOverride: boolean;2718 readonly isSetWeightToFeeCoefficientOverride: boolean;
2626 readonly asSetWeightToFeeCoefficientOverride: {2719 readonly asSetWeightToFeeCoefficientOverride: {
2633 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2726 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
2634 }2727 }
26352728
2636 /** @name PalletTemplateTransactionPaymentCall (283) */2729 /** @name PalletTemplateTransactionPaymentCall (292) */
2637 type PalletTemplateTransactionPaymentCall = Null;2730 type PalletTemplateTransactionPaymentCall = Null;
26382731
2639 /** @name PalletStructureCall (284) */2732 /** @name PalletStructureCall (293) */
2640 type PalletStructureCall = Null;2733 type PalletStructureCall = Null;
26412734
2642 /** @name PalletRmrkCoreCall (285) */2735 /** @name PalletRmrkCoreCall (294) */
2643 interface PalletRmrkCoreCall extends Enum {2736 interface PalletRmrkCoreCall extends Enum {
2644 readonly isCreateCollection: boolean;2737 readonly isCreateCollection: boolean;
2645 readonly asCreateCollection: {2738 readonly asCreateCollection: {
2745 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2838 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
2746 }2839 }
27472840
2748 /** @name RmrkTraitsResourceResourceTypes (291) */2841 /** @name RmrkTraitsResourceResourceTypes (300) */
2749 interface RmrkTraitsResourceResourceTypes extends Enum {2842 interface RmrkTraitsResourceResourceTypes extends Enum {
2750 readonly isBasic: boolean;2843 readonly isBasic: boolean;
2751 readonly asBasic: RmrkTraitsResourceBasicResource;2844 readonly asBasic: RmrkTraitsResourceBasicResource;
2756 readonly type: 'Basic' | 'Composable' | 'Slot';2849 readonly type: 'Basic' | 'Composable' | 'Slot';
2757 }2850 }
27582851
2759 /** @name RmrkTraitsResourceBasicResource (293) */2852 /** @name RmrkTraitsResourceBasicResource (302) */
2760 interface RmrkTraitsResourceBasicResource extends Struct {2853 interface RmrkTraitsResourceBasicResource extends Struct {
2761 readonly src: Option<Bytes>;2854 readonly src: Option<Bytes>;
2762 readonly metadata: Option<Bytes>;2855 readonly metadata: Option<Bytes>;
2763 readonly license: Option<Bytes>;2856 readonly license: Option<Bytes>;
2764 readonly thumb: Option<Bytes>;2857 readonly thumb: Option<Bytes>;
2765 }2858 }
27662859
2767 /** @name RmrkTraitsResourceComposableResource (295) */2860 /** @name RmrkTraitsResourceComposableResource (304) */
2768 interface RmrkTraitsResourceComposableResource extends Struct {2861 interface RmrkTraitsResourceComposableResource extends Struct {
2769 readonly parts: Vec<u32>;2862 readonly parts: Vec<u32>;
2770 readonly base: u32;2863 readonly base: u32;
2774 readonly thumb: Option<Bytes>;2867 readonly thumb: Option<Bytes>;
2775 }2868 }
27762869
2777 /** @name RmrkTraitsResourceSlotResource (296) */2870 /** @name RmrkTraitsResourceSlotResource (305) */
2778 interface RmrkTraitsResourceSlotResource extends Struct {2871 interface RmrkTraitsResourceSlotResource extends Struct {
2779 readonly base: u32;2872 readonly base: u32;
2780 readonly src: Option<Bytes>;2873 readonly src: Option<Bytes>;
2784 readonly thumb: Option<Bytes>;2877 readonly thumb: Option<Bytes>;
2785 }2878 }
27862879
2787 /** @name PalletRmrkEquipCall (299) */2880 /** @name PalletRmrkEquipCall (308) */
2788 interface PalletRmrkEquipCall extends Enum {2881 interface PalletRmrkEquipCall extends Enum {
2789 readonly isCreateBase: boolean;2882 readonly isCreateBase: boolean;
2790 readonly asCreateBase: {2883 readonly asCreateBase: {
2806 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2899 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
2807 }2900 }
28082901
2809 /** @name RmrkTraitsPartPartType (302) */2902 /** @name RmrkTraitsPartPartType (311) */
2810 interface RmrkTraitsPartPartType extends Enum {2903 interface RmrkTraitsPartPartType extends Enum {
2811 readonly isFixedPart: boolean;2904 readonly isFixedPart: boolean;
2812 readonly asFixedPart: RmrkTraitsPartFixedPart;2905 readonly asFixedPart: RmrkTraitsPartFixedPart;
2815 readonly type: 'FixedPart' | 'SlotPart';2908 readonly type: 'FixedPart' | 'SlotPart';
2816 }2909 }
28172910
2818 /** @name RmrkTraitsPartFixedPart (304) */2911 /** @name RmrkTraitsPartFixedPart (313) */
2819 interface RmrkTraitsPartFixedPart extends Struct {2912 interface RmrkTraitsPartFixedPart extends Struct {
2820 readonly id: u32;2913 readonly id: u32;
2821 readonly z: u32;2914 readonly z: u32;
2822 readonly src: Bytes;2915 readonly src: Bytes;
2823 }2916 }
28242917
2825 /** @name RmrkTraitsPartSlotPart (305) */2918 /** @name RmrkTraitsPartSlotPart (314) */
2826 interface RmrkTraitsPartSlotPart extends Struct {2919 interface RmrkTraitsPartSlotPart extends Struct {
2827 readonly id: u32;2920 readonly id: u32;
2828 readonly equippable: RmrkTraitsPartEquippableList;2921 readonly equippable: RmrkTraitsPartEquippableList;
2829 readonly src: Bytes;2922 readonly src: Bytes;
2830 readonly z: u32;2923 readonly z: u32;
2831 }2924 }
28322925
2833 /** @name RmrkTraitsPartEquippableList (306) */2926 /** @name RmrkTraitsPartEquippableList (315) */
2834 interface RmrkTraitsPartEquippableList extends Enum {2927 interface RmrkTraitsPartEquippableList extends Enum {
2835 readonly isAll: boolean;2928 readonly isAll: boolean;
2836 readonly isEmpty: boolean;2929 readonly isEmpty: boolean;
2839 readonly type: 'All' | 'Empty' | 'Custom';2932 readonly type: 'All' | 'Empty' | 'Custom';
2840 }2933 }
28412934
2842 /** @name RmrkTraitsTheme (308) */2935 /** @name RmrkTraitsTheme (317) */
2843 interface RmrkTraitsTheme extends Struct {2936 interface RmrkTraitsTheme extends Struct {
2844 readonly name: Bytes;2937 readonly name: Bytes;
2845 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2938 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2846 readonly inherit: bool;2939 readonly inherit: bool;
2847 }2940 }
28482941
2849 /** @name RmrkTraitsThemeThemeProperty (310) */2942 /** @name RmrkTraitsThemeThemeProperty (319) */
2850 interface RmrkTraitsThemeThemeProperty extends Struct {2943 interface RmrkTraitsThemeThemeProperty extends Struct {
2851 readonly key: Bytes;2944 readonly key: Bytes;
2852 readonly value: Bytes;2945 readonly value: Bytes;
2853 }2946 }
28542947
2855 /** @name PalletAppPromotionCall (312) */2948 /** @name PalletAppPromotionCall (321) */
2856 interface PalletAppPromotionCall extends Enum {2949 interface PalletAppPromotionCall extends Enum {
2857 readonly isSetAdminAddress: boolean;2950 readonly isSetAdminAddress: boolean;
2858 readonly asSetAdminAddress: {2951 readonly asSetAdminAddress: {
2886 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2979 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
2887 }2980 }
28882981
2889 /** @name PalletForeignAssetsModuleCall (314) */2982 /** @name PalletForeignAssetsModuleCall (322) */
2890 interface PalletForeignAssetsModuleCall extends Enum {2983 interface PalletForeignAssetsModuleCall extends Enum {
2891 readonly isRegisterForeignAsset: boolean;2984 readonly isRegisterForeignAsset: boolean;
2892 readonly asRegisterForeignAsset: {2985 readonly asRegisterForeignAsset: {
2903 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2996 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
2904 }2997 }
29052998
2906 /** @name PalletEvmCall (315) */2999 /** @name PalletEvmCall (323) */
2907 interface PalletEvmCall extends Enum {3000 interface PalletEvmCall extends Enum {
2908 readonly isWithdraw: boolean;3001 readonly isWithdraw: boolean;
2909 readonly asWithdraw: {3002 readonly asWithdraw: {
2948 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3041 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
2949 }3042 }
29503043
2951 /** @name PalletEthereumCall (319) */3044 /** @name PalletEthereumCall (327) */
2952 interface PalletEthereumCall extends Enum {3045 interface PalletEthereumCall extends Enum {
2953 readonly isTransact: boolean;3046 readonly isTransact: boolean;
2954 readonly asTransact: {3047 readonly asTransact: {
2957 readonly type: 'Transact';3050 readonly type: 'Transact';
2958 }3051 }
29593052
2960 /** @name EthereumTransactionTransactionV2 (320) */3053 /** @name EthereumTransactionTransactionV2 (328) */
2961 interface EthereumTransactionTransactionV2 extends Enum {3054 interface EthereumTransactionTransactionV2 extends Enum {
2962 readonly isLegacy: boolean;3055 readonly isLegacy: boolean;
2963 readonly asLegacy: EthereumTransactionLegacyTransaction;3056 readonly asLegacy: EthereumTransactionLegacyTransaction;
2968 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3061 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
2969 }3062 }
29703063
2971 /** @name EthereumTransactionLegacyTransaction (321) */3064 /** @name EthereumTransactionLegacyTransaction (329) */
2972 interface EthereumTransactionLegacyTransaction extends Struct {3065 interface EthereumTransactionLegacyTransaction extends Struct {
2973 readonly nonce: U256;3066 readonly nonce: U256;
2974 readonly gasPrice: U256;3067 readonly gasPrice: U256;
2979 readonly signature: EthereumTransactionTransactionSignature;3072 readonly signature: EthereumTransactionTransactionSignature;
2980 }3073 }
29813074
2982 /** @name EthereumTransactionTransactionAction (322) */3075 /** @name EthereumTransactionTransactionAction (330) */
2983 interface EthereumTransactionTransactionAction extends Enum {3076 interface EthereumTransactionTransactionAction extends Enum {
2984 readonly isCall: boolean;3077 readonly isCall: boolean;
2985 readonly asCall: H160;3078 readonly asCall: H160;
2986 readonly isCreate: boolean;3079 readonly isCreate: boolean;
2987 readonly type: 'Call' | 'Create';3080 readonly type: 'Call' | 'Create';
2988 }3081 }
29893082
2990 /** @name EthereumTransactionTransactionSignature (323) */3083 /** @name EthereumTransactionTransactionSignature (331) */
2991 interface EthereumTransactionTransactionSignature extends Struct {3084 interface EthereumTransactionTransactionSignature extends Struct {
2992 readonly v: u64;3085 readonly v: u64;
2993 readonly r: H256;3086 readonly r: H256;
2994 readonly s: H256;3087 readonly s: H256;
2995 }3088 }
29963089
2997 /** @name EthereumTransactionEip2930Transaction (325) */3090 /** @name EthereumTransactionEip2930Transaction (333) */
2998 interface EthereumTransactionEip2930Transaction extends Struct {3091 interface EthereumTransactionEip2930Transaction extends Struct {
2999 readonly chainId: u64;3092 readonly chainId: u64;
3000 readonly nonce: U256;3093 readonly nonce: U256;
3009 readonly s: H256;3102 readonly s: H256;
3010 }3103 }
30113104
3012 /** @name EthereumTransactionAccessListItem (327) */3105 /** @name EthereumTransactionAccessListItem (335) */
3013 interface EthereumTransactionAccessListItem extends Struct {3106 interface EthereumTransactionAccessListItem extends Struct {
3014 readonly address: H160;3107 readonly address: H160;
3015 readonly storageKeys: Vec<H256>;3108 readonly storageKeys: Vec<H256>;
3016 }3109 }
30173110
3018 /** @name EthereumTransactionEip1559Transaction (328) */3111 /** @name EthereumTransactionEip1559Transaction (336) */
3019 interface EthereumTransactionEip1559Transaction extends Struct {3112 interface EthereumTransactionEip1559Transaction extends Struct {
3020 readonly chainId: u64;3113 readonly chainId: u64;
3021 readonly nonce: U256;3114 readonly nonce: U256;
3031 readonly s: H256;3124 readonly s: H256;
3032 }3125 }
30333126
3034 /** @name PalletEvmMigrationCall (329) */3127 /** @name PalletEvmMigrationCall (337) */
3035 interface PalletEvmMigrationCall extends Enum {3128 interface PalletEvmMigrationCall extends Enum {
3036 readonly isBegin: boolean;3129 readonly isBegin: boolean;
3037 readonly asBegin: {3130 readonly asBegin: {
3050 readonly type: 'Begin' | 'SetData' | 'Finish';3143 readonly type: 'Begin' | 'SetData' | 'Finish';
3051 }3144 }
3145
3146 /** @name PalletMaintenanceCall (340) */
3147 interface PalletMaintenanceCall extends Enum {
3148 readonly isEnable: boolean;
3149 readonly isDisable: boolean;
3150 readonly type: 'Enable' | 'Disable';
3151 }
3152
3153 /** @name PalletTestUtilsCall (341) */
3154 interface PalletTestUtilsCall extends Enum {
3155 readonly isEnable: boolean;
3156 readonly isSetTestValue: boolean;
3157 readonly asSetTestValue: {
3158 readonly value: u32;
3159 } & Struct;
3160 readonly isSetTestValueAndRollback: boolean;
3161 readonly asSetTestValueAndRollback: {
3162 readonly value: u32;
3163 } & Struct;
3164 readonly isIncTestValue: boolean;
3165 readonly isSelfCancelingInc: boolean;
3166 readonly asSelfCancelingInc: {
3167 readonly id: U8aFixed;
3168 readonly maxTestValue: u32;
3169 } & Struct;
3170 readonly isJustTakeFee: boolean;
3171 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee';
3172 }
30523173
3053 /** @name PalletSudoError (332) */3174 /** @name PalletSudoError (342) */
3054 interface PalletSudoError extends Enum {3175 interface PalletSudoError extends Enum {
3055 readonly isRequireSudo: boolean;3176 readonly isRequireSudo: boolean;
3056 readonly type: 'RequireSudo';3177 readonly type: 'RequireSudo';
3057 }3178 }
30583179
3059 /** @name OrmlVestingModuleError (334) */3180 /** @name OrmlVestingModuleError (344) */
3060 interface OrmlVestingModuleError extends Enum {3181 interface OrmlVestingModuleError extends Enum {
3061 readonly isZeroVestingPeriod: boolean;3182 readonly isZeroVestingPeriod: boolean;
3062 readonly isZeroVestingPeriodCount: boolean;3183 readonly isZeroVestingPeriodCount: boolean;
3067 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3188 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3068 }3189 }
30693190
3070 /** @name OrmlXtokensModuleError (335) */3191 /** @name OrmlXtokensModuleError (345) */
3071 interface OrmlXtokensModuleError extends Enum {3192 interface OrmlXtokensModuleError extends Enum {
3072 readonly isAssetHasNoReserve: boolean;3193 readonly isAssetHasNoReserve: boolean;
3073 readonly isNotCrossChainTransfer: boolean;3194 readonly isNotCrossChainTransfer: boolean;
3091 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3212 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3092 }3213 }
30933214
3094 /** @name OrmlTokensBalanceLock (338) */3215 /** @name OrmlTokensBalanceLock (348) */
3095 interface OrmlTokensBalanceLock extends Struct {3216 interface OrmlTokensBalanceLock extends Struct {
3096 readonly id: U8aFixed;3217 readonly id: U8aFixed;
3097 readonly amount: u128;3218 readonly amount: u128;
3098 }3219 }
30993220
3100 /** @name OrmlTokensAccountData (340) */3221 /** @name OrmlTokensAccountData (350) */
3101 interface OrmlTokensAccountData extends Struct {3222 interface OrmlTokensAccountData extends Struct {
3102 readonly free: u128;3223 readonly free: u128;
3103 readonly reserved: u128;3224 readonly reserved: u128;
3104 readonly frozen: u128;3225 readonly frozen: u128;
3105 }3226 }
31063227
3107 /** @name OrmlTokensReserveData (342) */3228 /** @name OrmlTokensReserveData (352) */
3108 interface OrmlTokensReserveData extends Struct {3229 interface OrmlTokensReserveData extends Struct {
3109 readonly id: Null;3230 readonly id: Null;
3110 readonly amount: u128;3231 readonly amount: u128;
3111 }3232 }
31123233
3113 /** @name OrmlTokensModuleError (344) */3234 /** @name OrmlTokensModuleError (354) */
3114 interface OrmlTokensModuleError extends Enum {3235 interface OrmlTokensModuleError extends Enum {
3115 readonly isBalanceTooLow: boolean;3236 readonly isBalanceTooLow: boolean;
3116 readonly isAmountIntoBalanceFailed: boolean;3237 readonly isAmountIntoBalanceFailed: boolean;
3123 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3244 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3124 }3245 }
31253246
3126 /** @name CumulusPalletXcmpQueueInboundChannelDetails (346) */3247 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */
3127 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3248 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3128 readonly sender: u32;3249 readonly sender: u32;
3129 readonly state: CumulusPalletXcmpQueueInboundState;3250 readonly state: CumulusPalletXcmpQueueInboundState;
3130 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3251 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3131 }3252 }
31323253
3133 /** @name CumulusPalletXcmpQueueInboundState (347) */3254 /** @name CumulusPalletXcmpQueueInboundState (357) */
3134 interface CumulusPalletXcmpQueueInboundState extends Enum {3255 interface CumulusPalletXcmpQueueInboundState extends Enum {
3135 readonly isOk: boolean;3256 readonly isOk: boolean;
3136 readonly isSuspended: boolean;3257 readonly isSuspended: boolean;
3137 readonly type: 'Ok' | 'Suspended';3258 readonly type: 'Ok' | 'Suspended';
3138 }3259 }
31393260
3140 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (350) */3261 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */
3141 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3262 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3142 readonly isConcatenatedVersionedXcm: boolean;3263 readonly isConcatenatedVersionedXcm: boolean;
3143 readonly isConcatenatedEncodedBlob: boolean;3264 readonly isConcatenatedEncodedBlob: boolean;
3144 readonly isSignals: boolean;3265 readonly isSignals: boolean;
3145 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3266 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3146 }3267 }
31473268
3148 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (353) */3269 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */
3149 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3270 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3150 readonly recipient: u32;3271 readonly recipient: u32;
3151 readonly state: CumulusPalletXcmpQueueOutboundState;3272 readonly state: CumulusPalletXcmpQueueOutboundState;
3154 readonly lastIndex: u16;3275 readonly lastIndex: u16;
3155 }3276 }
31563277
3157 /** @name CumulusPalletXcmpQueueOutboundState (354) */3278 /** @name CumulusPalletXcmpQueueOutboundState (364) */
3158 interface CumulusPalletXcmpQueueOutboundState extends Enum {3279 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3159 readonly isOk: boolean;3280 readonly isOk: boolean;
3160 readonly isSuspended: boolean;3281 readonly isSuspended: boolean;
3161 readonly type: 'Ok' | 'Suspended';3282 readonly type: 'Ok' | 'Suspended';
3162 }3283 }
31633284
3164 /** @name CumulusPalletXcmpQueueQueueConfigData (356) */3285 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */
3165 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3286 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3166 readonly suspendThreshold: u32;3287 readonly suspendThreshold: u32;
3167 readonly dropThreshold: u32;3288 readonly dropThreshold: u32;
3171 readonly xcmpMaxIndividualWeight: Weight;3292 readonly xcmpMaxIndividualWeight: Weight;
3172 }3293 }
31733294
3174 /** @name CumulusPalletXcmpQueueError (358) */3295 /** @name CumulusPalletXcmpQueueError (368) */
3175 interface CumulusPalletXcmpQueueError extends Enum {3296 interface CumulusPalletXcmpQueueError extends Enum {
3176 readonly isFailedToSend: boolean;3297 readonly isFailedToSend: boolean;
3177 readonly isBadXcmOrigin: boolean;3298 readonly isBadXcmOrigin: boolean;
3181 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3302 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3182 }3303 }
31833304
3184 /** @name PalletXcmError (359) */3305 /** @name PalletXcmError (369) */
3185 interface PalletXcmError extends Enum {3306 interface PalletXcmError extends Enum {
3186 readonly isUnreachable: boolean;3307 readonly isUnreachable: boolean;
3187 readonly isSendFailure: boolean;3308 readonly isSendFailure: boolean;
3199 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3320 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3200 }3321 }
32013322
3202 /** @name CumulusPalletXcmError (360) */3323 /** @name CumulusPalletXcmError (370) */
3203 type CumulusPalletXcmError = Null;3324 type CumulusPalletXcmError = Null;
32043325
3205 /** @name CumulusPalletDmpQueueConfigData (361) */3326 /** @name CumulusPalletDmpQueueConfigData (371) */
3206 interface CumulusPalletDmpQueueConfigData extends Struct {3327 interface CumulusPalletDmpQueueConfigData extends Struct {
3207 readonly maxIndividual: Weight;3328 readonly maxIndividual: Weight;
3208 }3329 }
32093330
3210 /** @name CumulusPalletDmpQueuePageIndexData (362) */3331 /** @name CumulusPalletDmpQueuePageIndexData (372) */
3211 interface CumulusPalletDmpQueuePageIndexData extends Struct {3332 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3212 readonly beginUsed: u32;3333 readonly beginUsed: u32;
3213 readonly endUsed: u32;3334 readonly endUsed: u32;
3214 readonly overweightCount: u64;3335 readonly overweightCount: u64;
3215 }3336 }
32163337
3217 /** @name CumulusPalletDmpQueueError (365) */3338 /** @name CumulusPalletDmpQueueError (375) */
3218 interface CumulusPalletDmpQueueError extends Enum {3339 interface CumulusPalletDmpQueueError extends Enum {
3219 readonly isUnknown: boolean;3340 readonly isUnknown: boolean;
3220 readonly isOverLimit: boolean;3341 readonly isOverLimit: boolean;
3221 readonly type: 'Unknown' | 'OverLimit';3342 readonly type: 'Unknown' | 'OverLimit';
3222 }3343 }
32233344
3224 /** @name PalletUniqueError (369) */3345 /** @name PalletUniqueError (379) */
3225 interface PalletUniqueError extends Enum {3346 interface PalletUniqueError extends Enum {
3226 readonly isCollectionDecimalPointLimitExceeded: boolean;3347 readonly isCollectionDecimalPointLimitExceeded: boolean;
3227 readonly isConfirmUnsetSponsorFail: boolean;3348 readonly isConfirmUnsetSponsorFail: boolean;
3230 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3351 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3231 }3352 }
3353
3354 /** @name PalletUniqueSchedulerScheduledV3 (382) */
3355 interface PalletUniqueSchedulerScheduledV3 extends Struct {
3356 readonly maybeId: Option<U8aFixed>;
3357 readonly priority: u8;
3358 readonly call: FrameSupportScheduleMaybeHashed;
3359 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
3360 readonly origin: OpalRuntimeOriginCaller;
3361 }
3362
3363 /** @name OpalRuntimeOriginCaller (383) */
3364 interface OpalRuntimeOriginCaller extends Enum {
3365 readonly isSystem: boolean;
3366 readonly asSystem: FrameSupportDispatchRawOrigin;
3367 readonly isVoid: boolean;
3368 readonly isPolkadotXcm: boolean;
3369 readonly asPolkadotXcm: PalletXcmOrigin;
3370 readonly isCumulusXcm: boolean;
3371 readonly asCumulusXcm: CumulusPalletXcmOrigin;
3372 readonly isEthereum: boolean;
3373 readonly asEthereum: PalletEthereumRawOrigin;
3374 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
3375 }
3376
3377 /** @name FrameSupportDispatchRawOrigin (384) */
3378 interface FrameSupportDispatchRawOrigin extends Enum {
3379 readonly isRoot: boolean;
3380 readonly isSigned: boolean;
3381 readonly asSigned: AccountId32;
3382 readonly isNone: boolean;
3383 readonly type: 'Root' | 'Signed' | 'None';
3384 }
3385
3386 /** @name PalletXcmOrigin (385) */
3387 interface PalletXcmOrigin extends Enum {
3388 readonly isXcm: boolean;
3389 readonly asXcm: XcmV1MultiLocation;
3390 readonly isResponse: boolean;
3391 readonly asResponse: XcmV1MultiLocation;
3392 readonly type: 'Xcm' | 'Response';
3393 }
3394
3395 /** @name CumulusPalletXcmOrigin (386) */
3396 interface CumulusPalletXcmOrigin extends Enum {
3397 readonly isRelay: boolean;
3398 readonly isSiblingParachain: boolean;
3399 readonly asSiblingParachain: u32;
3400 readonly type: 'Relay' | 'SiblingParachain';
3401 }
3402
3403 /** @name PalletEthereumRawOrigin (387) */
3404 interface PalletEthereumRawOrigin extends Enum {
3405 readonly isEthereumTransaction: boolean;
3406 readonly asEthereumTransaction: H160;
3407 readonly type: 'EthereumTransaction';
3408 }
3409
3410 /** @name SpCoreVoid (388) */
3411 type SpCoreVoid = Null;
3412
3413 /** @name PalletUniqueSchedulerError (389) */
3414 interface PalletUniqueSchedulerError extends Enum {
3415 readonly isFailedToSchedule: boolean;
3416 readonly isNotFound: boolean;
3417 readonly isTargetBlockNumberInPast: boolean;
3418 readonly isRescheduleNoChange: boolean;
3419 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
3420 }
32323421
3233 /** @name UpDataStructsCollection (370) */3422 /** @name UpDataStructsCollection (390) */
3234 interface UpDataStructsCollection extends Struct {3423 interface UpDataStructsCollection extends Struct {
3235 readonly owner: AccountId32;3424 readonly owner: AccountId32;
3236 readonly mode: UpDataStructsCollectionMode;3425 readonly mode: UpDataStructsCollectionMode;
3243 readonly flags: U8aFixed;3432 readonly flags: U8aFixed;
3244 }3433 }
32453434
3246 /** @name UpDataStructsSponsorshipStateAccountId32 (371) */3435 /** @name UpDataStructsSponsorshipStateAccountId32 (391) */
3247 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3436 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3248 readonly isDisabled: boolean;3437 readonly isDisabled: boolean;
3249 readonly isUnconfirmed: boolean;3438 readonly isUnconfirmed: boolean;
3253 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3442 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3254 }3443 }
32553444
3256 /** @name UpDataStructsProperties (373) */3445 /** @name UpDataStructsProperties (393) */
3257 interface UpDataStructsProperties extends Struct {3446 interface UpDataStructsProperties extends Struct {
3258 readonly map: UpDataStructsPropertiesMapBoundedVec;3447 readonly map: UpDataStructsPropertiesMapBoundedVec;
3259 readonly consumedSpace: u32;3448 readonly consumedSpace: u32;
3260 readonly spaceLimit: u32;3449 readonly spaceLimit: u32;
3261 }3450 }
32623451
3263 /** @name UpDataStructsPropertiesMapBoundedVec (374) */3452 /** @name UpDataStructsPropertiesMapBoundedVec (394) */
3264 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3453 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
32653454
3266 /** @name UpDataStructsPropertiesMapPropertyPermission (379) */3455 /** @name UpDataStructsPropertiesMapPropertyPermission (399) */
3267 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3456 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
32683457
3269 /** @name UpDataStructsCollectionStats (386) */3458 /** @name UpDataStructsCollectionStats (406) */
3270 interface UpDataStructsCollectionStats extends Struct {3459 interface UpDataStructsCollectionStats extends Struct {
3271 readonly created: u32;3460 readonly created: u32;
3272 readonly destroyed: u32;3461 readonly destroyed: u32;
3273 readonly alive: u32;3462 readonly alive: u32;
3274 }3463 }
32753464
3276 /** @name UpDataStructsTokenChild (387) */3465 /** @name UpDataStructsTokenChild (407) */
3277 interface UpDataStructsTokenChild extends Struct {3466 interface UpDataStructsTokenChild extends Struct {
3278 readonly token: u32;3467 readonly token: u32;
3279 readonly collection: u32;3468 readonly collection: u32;
3280 }3469 }
32813470
3282 /** @name PhantomTypeUpDataStructs (388) */3471 /** @name PhantomTypeUpDataStructs (408) */
3283 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3472 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
32843473
3285 /** @name UpDataStructsTokenData (390) */3474 /** @name UpDataStructsTokenData (410) */
3286 interface UpDataStructsTokenData extends Struct {3475 interface UpDataStructsTokenData extends Struct {
3287 readonly properties: Vec<UpDataStructsProperty>;3476 readonly properties: Vec<UpDataStructsProperty>;
3288 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3477 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3289 readonly pieces: u128;3478 readonly pieces: u128;
3290 }3479 }
32913480
3292 /** @name UpDataStructsRpcCollection (392) */3481 /** @name UpDataStructsRpcCollection (412) */
3293 interface UpDataStructsRpcCollection extends Struct {3482 interface UpDataStructsRpcCollection extends Struct {
3294 readonly owner: AccountId32;3483 readonly owner: AccountId32;
3295 readonly mode: UpDataStructsCollectionMode;3484 readonly mode: UpDataStructsCollectionMode;
3305 readonly flags: UpDataStructsRpcCollectionFlags;3494 readonly flags: UpDataStructsRpcCollectionFlags;
3306 }3495 }
33073496
3308 /** @name UpDataStructsRpcCollectionFlags (393) */3497 /** @name UpDataStructsRpcCollectionFlags (413) */
3309 interface UpDataStructsRpcCollectionFlags extends Struct {3498 interface UpDataStructsRpcCollectionFlags extends Struct {
3310 readonly foreign: bool;3499 readonly foreign: bool;
3311 readonly erc721metadata: bool;3500 readonly erc721metadata: bool;
3312 }3501 }
33133502
3314 /** @name RmrkTraitsCollectionCollectionInfo (394) */3503 /** @name RmrkTraitsCollectionCollectionInfo (414) */
3315 interface RmrkTraitsCollectionCollectionInfo extends Struct {3504 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3316 readonly issuer: AccountId32;3505 readonly issuer: AccountId32;
3317 readonly metadata: Bytes;3506 readonly metadata: Bytes;
3320 readonly nftsCount: u32;3509 readonly nftsCount: u32;
3321 }3510 }
33223511
3323 /** @name RmrkTraitsNftNftInfo (395) */3512 /** @name RmrkTraitsNftNftInfo (415) */
3324 interface RmrkTraitsNftNftInfo extends Struct {3513 interface RmrkTraitsNftNftInfo extends Struct {
3325 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3514 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3326 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3515 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3329 readonly pending: bool;3518 readonly pending: bool;
3330 }3519 }
33313520
3332 /** @name RmrkTraitsNftRoyaltyInfo (397) */3521 /** @name RmrkTraitsNftRoyaltyInfo (417) */
3333 interface RmrkTraitsNftRoyaltyInfo extends Struct {3522 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3334 readonly recipient: AccountId32;3523 readonly recipient: AccountId32;
3335 readonly amount: Permill;3524 readonly amount: Permill;
3336 }3525 }
33373526
3338 /** @name RmrkTraitsResourceResourceInfo (398) */3527 /** @name RmrkTraitsResourceResourceInfo (418) */
3339 interface RmrkTraitsResourceResourceInfo extends Struct {3528 interface RmrkTraitsResourceResourceInfo extends Struct {
3340 readonly id: u32;3529 readonly id: u32;
3341 readonly resource: RmrkTraitsResourceResourceTypes;3530 readonly resource: RmrkTraitsResourceResourceTypes;
3342 readonly pending: bool;3531 readonly pending: bool;
3343 readonly pendingRemoval: bool;3532 readonly pendingRemoval: bool;
3344 }3533 }
33453534
3346 /** @name RmrkTraitsPropertyPropertyInfo (399) */3535 /** @name RmrkTraitsPropertyPropertyInfo (419) */
3347 interface RmrkTraitsPropertyPropertyInfo extends Struct {3536 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3348 readonly key: Bytes;3537 readonly key: Bytes;
3349 readonly value: Bytes;3538 readonly value: Bytes;
3350 }3539 }
33513540
3352 /** @name RmrkTraitsBaseBaseInfo (400) */3541 /** @name RmrkTraitsBaseBaseInfo (420) */
3353 interface RmrkTraitsBaseBaseInfo extends Struct {3542 interface RmrkTraitsBaseBaseInfo extends Struct {
3354 readonly issuer: AccountId32;3543 readonly issuer: AccountId32;
3355 readonly baseType: Bytes;3544 readonly baseType: Bytes;
3356 readonly symbol: Bytes;3545 readonly symbol: Bytes;
3357 }3546 }
33583547
3359 /** @name RmrkTraitsNftNftChild (401) */3548 /** @name RmrkTraitsNftNftChild (421) */
3360 interface RmrkTraitsNftNftChild extends Struct {3549 interface RmrkTraitsNftNftChild extends Struct {
3361 readonly collectionId: u32;3550 readonly collectionId: u32;
3362 readonly nftId: u32;3551 readonly nftId: u32;
3363 }3552 }
33643553
3365 /** @name PalletCommonError (403) */3554 /** @name PalletCommonError (423) */
3366 interface PalletCommonError extends Enum {3555 interface PalletCommonError extends Enum {
3367 readonly isCollectionNotFound: boolean;3556 readonly isCollectionNotFound: boolean;
3368 readonly isMustBeTokenOwner: boolean;3557 readonly isMustBeTokenOwner: boolean;
3401 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';3590 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';
3402 }3591 }
34033592
3404 /** @name PalletFungibleError (405) */3593 /** @name PalletFungibleError (425) */
3405 interface PalletFungibleError extends Enum {3594 interface PalletFungibleError extends Enum {
3406 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3595 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3407 readonly isFungibleItemsHaveNoId: boolean;3596 readonly isFungibleItemsHaveNoId: boolean;
3411 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3600 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3412 }3601 }
34133602
3414 /** @name PalletRefungibleItemData (406) */3603 /** @name PalletRefungibleItemData (426) */
3415 interface PalletRefungibleItemData extends Struct {3604 interface PalletRefungibleItemData extends Struct {
3416 readonly constData: Bytes;3605 readonly constData: Bytes;
3417 }3606 }
34183607
3419 /** @name PalletRefungibleError (411) */3608 /** @name PalletRefungibleError (431) */
3420 interface PalletRefungibleError extends Enum {3609 interface PalletRefungibleError extends Enum {
3421 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3610 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3422 readonly isWrongRefungiblePieces: boolean;3611 readonly isWrongRefungiblePieces: boolean;
3426 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3615 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3427 }3616 }
34283617
3429 /** @name PalletNonfungibleItemData (412) */3618 /** @name PalletNonfungibleItemData (432) */
3430 interface PalletNonfungibleItemData extends Struct {3619 interface PalletNonfungibleItemData extends Struct {
3431 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3620 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3432 }3621 }
34333622
3434 /** @name UpDataStructsPropertyScope (414) */3623 /** @name UpDataStructsPropertyScope (434) */
3435 interface UpDataStructsPropertyScope extends Enum {3624 interface UpDataStructsPropertyScope extends Enum {
3436 readonly isNone: boolean;3625 readonly isNone: boolean;
3437 readonly isRmrk: boolean;3626 readonly isRmrk: boolean;
3438 readonly type: 'None' | 'Rmrk';3627 readonly type: 'None' | 'Rmrk';
3439 }3628 }
34403629
3441 /** @name PalletNonfungibleError (416) */3630 /** @name PalletNonfungibleError (436) */
3442 interface PalletNonfungibleError extends Enum {3631 interface PalletNonfungibleError extends Enum {
3443 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3632 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3444 readonly isNonfungibleItemsHaveNoAmount: boolean;3633 readonly isNonfungibleItemsHaveNoAmount: boolean;
3445 readonly isCantBurnNftWithChildren: boolean;3634 readonly isCantBurnNftWithChildren: boolean;
3446 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3635 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3447 }3636 }
34483637
3449 /** @name PalletStructureError (417) */3638 /** @name PalletStructureError (437) */
3450 interface PalletStructureError extends Enum {3639 interface PalletStructureError extends Enum {
3451 readonly isOuroborosDetected: boolean;3640 readonly isOuroborosDetected: boolean;
3452 readonly isDepthLimit: boolean;3641 readonly isDepthLimit: boolean;
3455 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3644 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
3456 }3645 }
34573646
3458 /** @name PalletRmrkCoreError (418) */3647 /** @name PalletRmrkCoreError (438) */
3459 interface PalletRmrkCoreError extends Enum {3648 interface PalletRmrkCoreError extends Enum {
3460 readonly isCorruptedCollectionType: boolean;3649 readonly isCorruptedCollectionType: boolean;
3461 readonly isRmrkPropertyKeyIsTooLong: boolean;3650 readonly isRmrkPropertyKeyIsTooLong: boolean;
3479 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3668 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
3480 }3669 }
34813670
3482 /** @name PalletRmrkEquipError (420) */3671 /** @name PalletRmrkEquipError (440) */
3483 interface PalletRmrkEquipError extends Enum {3672 interface PalletRmrkEquipError extends Enum {
3484 readonly isPermissionError: boolean;3673 readonly isPermissionError: boolean;
3485 readonly isNoAvailableBaseId: boolean;3674 readonly isNoAvailableBaseId: boolean;
3491 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3680 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
3492 }3681 }
34933682
3494 /** @name PalletAppPromotionError (426) */3683 /** @name PalletAppPromotionError (446) */
3495 interface PalletAppPromotionError extends Enum {3684 interface PalletAppPromotionError extends Enum {
3496 readonly isAdminNotSet: boolean;3685 readonly isAdminNotSet: boolean;
3497 readonly isNoPermission: boolean;3686 readonly isNoPermission: boolean;
3502 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3691 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
3503 }3692 }
35043693
3505 /** @name PalletForeignAssetsModuleError (427) */3694 /** @name PalletForeignAssetsModuleError (447) */
3506 interface PalletForeignAssetsModuleError extends Enum {3695 interface PalletForeignAssetsModuleError extends Enum {
3507 readonly isBadLocation: boolean;3696 readonly isBadLocation: boolean;
3508 readonly isMultiLocationExisted: boolean;3697 readonly isMultiLocationExisted: boolean;
3511 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3700 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3512 }3701 }
35133702
3514 /** @name PalletEvmError (430) */3703 /** @name PalletEvmError (450) */
3515 interface PalletEvmError extends Enum {3704 interface PalletEvmError extends Enum {
3516 readonly isBalanceLow: boolean;3705 readonly isBalanceLow: boolean;
3517 readonly isFeeOverflow: boolean;3706 readonly isFeeOverflow: boolean;
3522 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3711 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
3523 }3712 }
35243713
3525 /** @name FpRpcTransactionStatus (433) */3714 /** @name FpRpcTransactionStatus (453) */
3526 interface FpRpcTransactionStatus extends Struct {3715 interface FpRpcTransactionStatus extends Struct {
3527 readonly transactionHash: H256;3716 readonly transactionHash: H256;
3528 readonly transactionIndex: u32;3717 readonly transactionIndex: u32;
3533 readonly logsBloom: EthbloomBloom;3722 readonly logsBloom: EthbloomBloom;
3534 }3723 }
35353724
3536 /** @name EthbloomBloom (435) */3725 /** @name EthbloomBloom (455) */
3537 interface EthbloomBloom extends U8aFixed {}3726 interface EthbloomBloom extends U8aFixed {}
35383727
3539 /** @name EthereumReceiptReceiptV3 (437) */3728 /** @name EthereumReceiptReceiptV3 (457) */
3540 interface EthereumReceiptReceiptV3 extends Enum {3729 interface EthereumReceiptReceiptV3 extends Enum {
3541 readonly isLegacy: boolean;3730 readonly isLegacy: boolean;
3542 readonly asLegacy: EthereumReceiptEip658ReceiptData;3731 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3547 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3736 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3548 }3737 }
35493738
3550 /** @name EthereumReceiptEip658ReceiptData (438) */3739 /** @name EthereumReceiptEip658ReceiptData (458) */
3551 interface EthereumReceiptEip658ReceiptData extends Struct {3740 interface EthereumReceiptEip658ReceiptData extends Struct {
3552 readonly statusCode: u8;3741 readonly statusCode: u8;
3553 readonly usedGas: U256;3742 readonly usedGas: U256;
3554 readonly logsBloom: EthbloomBloom;3743 readonly logsBloom: EthbloomBloom;
3555 readonly logs: Vec<EthereumLog>;3744 readonly logs: Vec<EthereumLog>;
3556 }3745 }
35573746
3558 /** @name EthereumBlock (439) */3747 /** @name EthereumBlock (459) */
3559 interface EthereumBlock extends Struct {3748 interface EthereumBlock extends Struct {
3560 readonly header: EthereumHeader;3749 readonly header: EthereumHeader;
3561 readonly transactions: Vec<EthereumTransactionTransactionV2>;3750 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3562 readonly ommers: Vec<EthereumHeader>;3751 readonly ommers: Vec<EthereumHeader>;
3563 }3752 }
35643753
3565 /** @name EthereumHeader (440) */3754 /** @name EthereumHeader (460) */
3566 interface EthereumHeader extends Struct {3755 interface EthereumHeader extends Struct {
3567 readonly parentHash: H256;3756 readonly parentHash: H256;
3568 readonly ommersHash: H256;3757 readonly ommersHash: H256;
3581 readonly nonce: EthereumTypesHashH64;3770 readonly nonce: EthereumTypesHashH64;
3582 }3771 }
35833772
3584 /** @name EthereumTypesHashH64 (441) */3773 /** @name EthereumTypesHashH64 (461) */
3585 interface EthereumTypesHashH64 extends U8aFixed {}3774 interface EthereumTypesHashH64 extends U8aFixed {}
35863775
3587 /** @name PalletEthereumError (446) */3776 /** @name PalletEthereumError (466) */
3588 interface PalletEthereumError extends Enum {3777 interface PalletEthereumError extends Enum {
3589 readonly isInvalidSignature: boolean;3778 readonly isInvalidSignature: boolean;
3590 readonly isPreLogExists: boolean;3779 readonly isPreLogExists: boolean;
3591 readonly type: 'InvalidSignature' | 'PreLogExists';3780 readonly type: 'InvalidSignature' | 'PreLogExists';
3592 }3781 }
35933782
3594 /** @name PalletEvmCoderSubstrateError (447) */3783 /** @name PalletEvmCoderSubstrateError (467) */
3595 interface PalletEvmCoderSubstrateError extends Enum {3784 interface PalletEvmCoderSubstrateError extends Enum {
3596 readonly isOutOfGas: boolean;3785 readonly isOutOfGas: boolean;
3597 readonly isOutOfFund: boolean;3786 readonly isOutOfFund: boolean;
3598 readonly type: 'OutOfGas' | 'OutOfFund';3787 readonly type: 'OutOfGas' | 'OutOfFund';
3599 }3788 }
36003789
3601 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (448) */3790 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (468) */
3602 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3791 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3603 readonly isDisabled: boolean;3792 readonly isDisabled: boolean;
3604 readonly isUnconfirmed: boolean;3793 readonly isUnconfirmed: boolean;
3608 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3797 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3609 }3798 }
36103799
3611 /** @name PalletEvmContractHelpersSponsoringModeT (449) */3800 /** @name PalletEvmContractHelpersSponsoringModeT (469) */
3612 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3801 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3613 readonly isDisabled: boolean;3802 readonly isDisabled: boolean;
3614 readonly isAllowlisted: boolean;3803 readonly isAllowlisted: boolean;
3615 readonly isGenerous: boolean;3804 readonly isGenerous: boolean;
3616 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3805 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3617 }3806 }
36183807
3619 /** @name PalletEvmContractHelpersError (455) */3808 /** @name PalletEvmContractHelpersError (475) */
3620 interface PalletEvmContractHelpersError extends Enum {3809 interface PalletEvmContractHelpersError extends Enum {
3621 readonly isNoPermission: boolean;3810 readonly isNoPermission: boolean;
3622 readonly isNoPendingSponsor: boolean;3811 readonly isNoPendingSponsor: boolean;
3623 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3812 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
3624 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3813 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
3625 }3814 }
36263815
3627 /** @name PalletEvmMigrationError (456) */3816 /** @name PalletEvmMigrationError (476) */
3628 interface PalletEvmMigrationError extends Enum {3817 interface PalletEvmMigrationError extends Enum {
3629 readonly isAccountNotEmpty: boolean;3818 readonly isAccountNotEmpty: boolean;
3630 readonly isAccountIsNotMigrating: boolean;3819 readonly isAccountIsNotMigrating: boolean;
3631 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3820 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
3632 }3821 }
3822
3823 /** @name PalletMaintenanceError (477) */
3824 type PalletMaintenanceError = Null;
3825
3826 /** @name PalletTestUtilsError (478) */
3827 interface PalletTestUtilsError extends Enum {
3828 readonly isTestPalletDisabled: boolean;
3829 readonly isTriggerRollback: boolean;
3830 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
3831 }
36333832
3634 /** @name SpRuntimeMultiSignature (458) */3833 /** @name SpRuntimeMultiSignature (480) */
3635 interface SpRuntimeMultiSignature extends Enum {3834 interface SpRuntimeMultiSignature extends Enum {
3636 readonly isEd25519: boolean;3835 readonly isEd25519: boolean;
3637 readonly asEd25519: SpCoreEd25519Signature;3836 readonly asEd25519: SpCoreEd25519Signature;
3642 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3841 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3643 }3842 }
36443843
3645 /** @name SpCoreEd25519Signature (459) */3844 /** @name SpCoreEd25519Signature (481) */
3646 interface SpCoreEd25519Signature extends U8aFixed {}3845 interface SpCoreEd25519Signature extends U8aFixed {}
36473846
3648 /** @name SpCoreSr25519Signature (461) */3847 /** @name SpCoreSr25519Signature (483) */
3649 interface SpCoreSr25519Signature extends U8aFixed {}3848 interface SpCoreSr25519Signature extends U8aFixed {}
36503849
3651 /** @name SpCoreEcdsaSignature (462) */3850 /** @name SpCoreEcdsaSignature (484) */
3652 interface SpCoreEcdsaSignature extends U8aFixed {}3851 interface SpCoreEcdsaSignature extends U8aFixed {}
36533852
3654 /** @name FrameSystemExtensionsCheckSpecVersion (465) */3853 /** @name FrameSystemExtensionsCheckSpecVersion (487) */
3655 type FrameSystemExtensionsCheckSpecVersion = Null;3854 type FrameSystemExtensionsCheckSpecVersion = Null;
36563855
3657 /** @name FrameSystemExtensionsCheckTxVersion (466) */3856 /** @name FrameSystemExtensionsCheckTxVersion (488) */
3658 type FrameSystemExtensionsCheckTxVersion = Null;3857 type FrameSystemExtensionsCheckTxVersion = Null;
36593858
3660 /** @name FrameSystemExtensionsCheckGenesis (467) */3859 /** @name FrameSystemExtensionsCheckGenesis (489) */
3661 type FrameSystemExtensionsCheckGenesis = Null;3860 type FrameSystemExtensionsCheckGenesis = Null;
36623861
3663 /** @name FrameSystemExtensionsCheckNonce (470) */3862 /** @name FrameSystemExtensionsCheckNonce (492) */
3664 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3863 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
36653864
3666 /** @name FrameSystemExtensionsCheckWeight (471) */3865 /** @name FrameSystemExtensionsCheckWeight (493) */
3667 type FrameSystemExtensionsCheckWeight = Null;3866 type FrameSystemExtensionsCheckWeight = Null;
3867
3868 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (494) */
3869 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
36683870
3669 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (472) */3871 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (495) */
3670 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3872 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
36713873
3672 /** @name OpalRuntimeRuntime (473) */3874 /** @name OpalRuntimeRuntime (496) */
3673 type OpalRuntimeRuntime = Null;3875 type OpalRuntimeRuntime = Null;
36743876
3675 /** @name PalletEthereumFakeTransactionFinalizer (474) */3877 /** @name PalletEthereumFakeTransactionFinalizer (497) */
3676 type PalletEthereumFakeTransactionFinalizer = Null;3878 type PalletEthereumFakeTransactionFinalizer = Null;
36773879
3678} // declare module3880} // declare module
addedtests/src/maintenanceMode.seqtest.tsdiffbeforeafterboth

no changes

modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
47 'configuration',47 'configuration',
48 'tokens',48 'tokens',
49 'xtokens',49 'xtokens',
50 'maintenance',
50];51];
5152
52// Pallets that depend on consensus and governance configuration53// Pallets that depend on consensus and governance configuration
modifiedtests/src/util/playgrounds/unique.dev.tsdiffbeforeafterboth
86 extrinsic: {},86 extrinsic: {},
87 payload: {},87 payload: {},
88 },88 },
89 CheckMaintenance: {
90 extrinsic: {},
91 payload: {},
92 },
89 FakeTransactionFinalizer: {93 FakeTransactionFinalizer: {
90 extrinsic: {},94 extrinsic: {},
91 payload: {},95 payload: {},