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

difftreelog

fix after rebase

Trubnikov Sergey2022-12-14parent: #56ba79b.patch.diff
in: master

9 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -81,6 +81,7 @@
     configuration: {
       defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
       defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;
+      maxOverridedAllowedLocations: u32 & AugmentedConst<ApiType>;
       /**
        * Generic const
        **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -162,6 +162,7 @@
     configuration: {
       minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
       weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -16,7 +16,7 @@
 import type { BlockHash } from '@polkadot/types/interfaces/chain';
 import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
 import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
-import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
 import type { BlockStats } from '@polkadot/types/interfaces/dev';
 import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
 import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
@@ -24,7 +24,7 @@
 import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
 import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
-import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
 import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
 import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
@@ -174,7 +174,7 @@
        * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
        * Instantiate a new contract
        **/
-      instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+      instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
       /**
        * @deprecated Not available in newer versions of the contracts interfaces
        * Returns the projected time a given contract will be able to sustain paying its rent
@@ -426,15 +426,13 @@
     };
     payment: {
       /**
-       * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead
        * Query the detailed fee of a given encoded extrinsic
        **/
       queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;
       /**
-       * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead
        * Retrieves the fee information for an encoded extrinsic
        **/
-      queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
+      queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
     };
     rmrk: {
       /**
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -6,7 +6,7 @@
 import '@polkadot/api-base/types/calls';
 
 import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';
-import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, u64 } from '@polkadot/types-codec';
+import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u64 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';
 import type { BlockHash } from '@polkadot/types/interfaces/chain';
@@ -16,7 +16,6 @@
 import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';
 import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
 import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
-import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
 import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';
 import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
 import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
@@ -224,21 +223,6 @@
        * Validate the transaction.
        **/
       validateTransaction: AugmentedCall<ApiType, (source: TransactionSource | 'InBlock' | 'Local' | 'External' | number | Uint8Array, tx: Extrinsic | IExtrinsic | string | Uint8Array, blockHash: BlockHash | string | Uint8Array) => Observable<TransactionValidity>>;
-      /**
-       * Generic call
-       **/
-      [key: string]: DecoratedCallBase<ApiType>;
-    };
-    /** 0x37c8bb1350a9a2a8/2 */
-    transactionPaymentApi: {
-      /**
-       * The transaction fee details
-       **/
-      queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;
-      /**
-       * The transaction info
-       **/
-      queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
       /**
        * Generic call
        **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -217,6 +217,7 @@
     configuration: {
       setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
       setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+      setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
       /**
        * Generic tx
        **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -24,7 +24,7 @@
 import type { StatementKind } from '@polkadot/types/interfaces/claims';
 import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
 import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
-import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
+import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
 import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
 import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
 import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
@@ -47,7 +47,7 @@
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
 import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
-import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
 import type { Approvals } from '@polkadot/types/interfaces/poll';
 import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
 import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
@@ -273,12 +273,10 @@
     ContractExecResultTo255: ContractExecResultTo255;
     ContractExecResultTo260: ContractExecResultTo260;
     ContractExecResultTo267: ContractExecResultTo267;
-    ContractExecResultU64: ContractExecResultU64;
     ContractInfo: ContractInfo;
     ContractInstantiateResult: ContractInstantiateResult;
     ContractInstantiateResultTo267: ContractInstantiateResultTo267;
     ContractInstantiateResultTo299: ContractInstantiateResultTo299;
-    ContractInstantiateResultU64: ContractInstantiateResultU64;
     ContractLayoutArray: ContractLayoutArray;
     ContractLayoutCell: ContractLayoutCell;
     ContractLayoutEnum: ContractLayoutEnum;
@@ -1068,8 +1066,6 @@
     RpcMethods: RpcMethods;
     RuntimeDbWeight: RuntimeDbWeight;
     RuntimeDispatchInfo: RuntimeDispatchInfo;
-    RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
-    RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
     RuntimeVersion: RuntimeVersion;
     RuntimeVersionApi: RuntimeVersionApi;
     RuntimeVersionPartial: RuntimeVersionPartial;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1333,7 +1333,11 @@
   readonly asSetMinGasPriceOverride: {
     readonly coeff: Option<u64>;
   } & Struct;
-  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+  readonly isSetXcmAllowedLocations: boolean;
+  readonly asSetXcmAllowedLocations: {
+    readonly locations: Option<Vec<XcmV1MultiLocation>>;
+  } & Struct;
+  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
 }
 
 /** @name PalletEthereumCall */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
2528 },2528 },
2529 set_min_gas_price_override: {2529 set_min_gas_price_override: {
2530 coeff: 'Option<u64>'2530 coeff: 'Option<u64>',
2531 }2531 },
2532 set_xcm_allowed_locations: {
2533 locations: 'Option<Vec<XcmV1MultiLocation>>'
2534 }
2532 }2535 }
2533 },2536 },
2534 /**2537 /**
2535 * Lookup288: pallet_template_transaction_payment::Call<T>2538 * Lookup291: pallet_template_transaction_payment::Call<T>
2536 **/2539 **/
2537 PalletTemplateTransactionPaymentCall: 'Null',2540 PalletTemplateTransactionPaymentCall: 'Null',
2538 /**2541 /**
2539 * Lookup289: pallet_structure::pallet::Call<T>2542 * Lookup292: pallet_structure::pallet::Call<T>
2540 **/2543 **/
2541 PalletStructureCall: 'Null',2544 PalletStructureCall: 'Null',
2542 /**2545 /**
2543 * Lookup290: pallet_rmrk_core::pallet::Call<T>2546 * Lookup293: pallet_rmrk_core::pallet::Call<T>
2544 **/2547 **/
2545 PalletRmrkCoreCall: {2548 PalletRmrkCoreCall: {
2546 _enum: {2549 _enum: {
2547 create_collection: {2550 create_collection: {
2630 }2633 }
2631 }2634 }
2632 },2635 },
2633 /**2636 /**
2634 * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2637 * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2635 **/2638 **/
2636 RmrkTraitsResourceResourceTypes: {2639 RmrkTraitsResourceResourceTypes: {
2637 _enum: {2640 _enum: {
2638 Basic: 'RmrkTraitsResourceBasicResource',2641 Basic: 'RmrkTraitsResourceBasicResource',
2639 Composable: 'RmrkTraitsResourceComposableResource',2642 Composable: 'RmrkTraitsResourceComposableResource',
2640 Slot: 'RmrkTraitsResourceSlotResource'2643 Slot: 'RmrkTraitsResourceSlotResource'
2641 }2644 }
2642 },2645 },
2643 /**2646 /**
2644 * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2647 * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2645 **/2648 **/
2646 RmrkTraitsResourceBasicResource: {2649 RmrkTraitsResourceBasicResource: {
2647 src: 'Option<Bytes>',2650 src: 'Option<Bytes>',
2648 metadata: 'Option<Bytes>',2651 metadata: 'Option<Bytes>',
2649 license: 'Option<Bytes>',2652 license: 'Option<Bytes>',
2650 thumb: 'Option<Bytes>'2653 thumb: 'Option<Bytes>'
2651 },2654 },
2652 /**2655 /**
2653 * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2656 * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2654 **/2657 **/
2655 RmrkTraitsResourceComposableResource: {2658 RmrkTraitsResourceComposableResource: {
2656 parts: 'Vec<u32>',2659 parts: 'Vec<u32>',
2657 base: 'u32',2660 base: 'u32',
2660 license: 'Option<Bytes>',2663 license: 'Option<Bytes>',
2661 thumb: 'Option<Bytes>'2664 thumb: 'Option<Bytes>'
2662 },2665 },
2663 /**2666 /**
2664 * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2667 * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2665 **/2668 **/
2666 RmrkTraitsResourceSlotResource: {2669 RmrkTraitsResourceSlotResource: {
2667 base: 'u32',2670 base: 'u32',
2668 src: 'Option<Bytes>',2671 src: 'Option<Bytes>',
2671 license: 'Option<Bytes>',2674 license: 'Option<Bytes>',
2672 thumb: 'Option<Bytes>'2675 thumb: 'Option<Bytes>'
2673 },2676 },
2674 /**2677 /**
2675 * Lookup304: pallet_rmrk_equip::pallet::Call<T>2678 * Lookup307: pallet_rmrk_equip::pallet::Call<T>
2676 **/2679 **/
2677 PalletRmrkEquipCall: {2680 PalletRmrkEquipCall: {
2678 _enum: {2681 _enum: {
2679 create_base: {2682 create_base: {
2692 }2695 }
2693 }2696 }
2694 },2697 },
2695 /**2698 /**
2696 * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2699 * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2697 **/2700 **/
2698 RmrkTraitsPartPartType: {2701 RmrkTraitsPartPartType: {
2699 _enum: {2702 _enum: {
2700 FixedPart: 'RmrkTraitsPartFixedPart',2703 FixedPart: 'RmrkTraitsPartFixedPart',
2701 SlotPart: 'RmrkTraitsPartSlotPart'2704 SlotPart: 'RmrkTraitsPartSlotPart'
2702 }2705 }
2703 },2706 },
2704 /**2707 /**
2705 * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2708 * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2706 **/2709 **/
2707 RmrkTraitsPartFixedPart: {2710 RmrkTraitsPartFixedPart: {
2708 id: 'u32',2711 id: 'u32',
2709 z: 'u32',2712 z: 'u32',
2710 src: 'Bytes'2713 src: 'Bytes'
2711 },2714 },
2712 /**2715 /**
2713 * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2716 * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2714 **/2717 **/
2715 RmrkTraitsPartSlotPart: {2718 RmrkTraitsPartSlotPart: {
2716 id: 'u32',2719 id: 'u32',
2717 equippable: 'RmrkTraitsPartEquippableList',2720 equippable: 'RmrkTraitsPartEquippableList',
2718 src: 'Bytes',2721 src: 'Bytes',
2719 z: 'u32'2722 z: 'u32'
2720 },2723 },
2721 /**2724 /**
2722 * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2725 * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2723 **/2726 **/
2724 RmrkTraitsPartEquippableList: {2727 RmrkTraitsPartEquippableList: {
2725 _enum: {2728 _enum: {
2726 All: 'Null',2729 All: 'Null',
2727 Empty: 'Null',2730 Empty: 'Null',
2728 Custom: 'Vec<u32>'2731 Custom: 'Vec<u32>'
2729 }2732 }
2730 },2733 },
2731 /**2734 /**
2732 * Lookup313: 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>>2735 * Lookup316: 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>>
2733 **/2736 **/
2734 RmrkTraitsTheme: {2737 RmrkTraitsTheme: {
2735 name: 'Bytes',2738 name: 'Bytes',
2736 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2739 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
2737 inherit: 'bool'2740 inherit: 'bool'
2738 },2741 },
2739 /**2742 /**
2740 * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2743 * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2741 **/2744 **/
2742 RmrkTraitsThemeThemeProperty: {2745 RmrkTraitsThemeThemeProperty: {
2743 key: 'Bytes',2746 key: 'Bytes',
2744 value: 'Bytes'2747 value: 'Bytes'
2745 },2748 },
2746 /**2749 /**
2747 * Lookup317: pallet_app_promotion::pallet::Call<T>2750 * Lookup320: pallet_app_promotion::pallet::Call<T>
2748 **/2751 **/
2749 PalletAppPromotionCall: {2752 PalletAppPromotionCall: {
2750 _enum: {2753 _enum: {
2751 set_admin_address: {2754 set_admin_address: {
2772 }2775 }
2773 }2776 }
2774 },2777 },
2775 /**2778 /**
2776 * Lookup318: pallet_foreign_assets::module::Call<T>2779 * Lookup321: pallet_foreign_assets::module::Call<T>
2777 **/2780 **/
2778 PalletForeignAssetsModuleCall: {2781 PalletForeignAssetsModuleCall: {
2779 _enum: {2782 _enum: {
2780 register_foreign_asset: {2783 register_foreign_asset: {
2789 }2792 }
2790 }2793 }
2791 },2794 },
2792 /**2795 /**
2793 * Lookup319: pallet_evm::pallet::Call<T>2796 * Lookup322: pallet_evm::pallet::Call<T>
2794 **/2797 **/
2795 PalletEvmCall: {2798 PalletEvmCall: {
2796 _enum: {2799 _enum: {
2797 withdraw: {2800 withdraw: {
2832 }2835 }
2833 }2836 }
2834 },2837 },
2835 /**2838 /**
2836 * Lookup325: pallet_ethereum::pallet::Call<T>2839 * Lookup328: pallet_ethereum::pallet::Call<T>
2837 **/2840 **/
2838 PalletEthereumCall: {2841 PalletEthereumCall: {
2839 _enum: {2842 _enum: {
2840 transact: {2843 transact: {
2841 transaction: 'EthereumTransactionTransactionV2'2844 transaction: 'EthereumTransactionTransactionV2'
2842 }2845 }
2843 }2846 }
2844 },2847 },
2845 /**2848 /**
2846 * Lookup326: ethereum::transaction::TransactionV22849 * Lookup329: ethereum::transaction::TransactionV2
2847 **/2850 **/
2848 EthereumTransactionTransactionV2: {2851 EthereumTransactionTransactionV2: {
2849 _enum: {2852 _enum: {
2850 Legacy: 'EthereumTransactionLegacyTransaction',2853 Legacy: 'EthereumTransactionLegacyTransaction',
2851 EIP2930: 'EthereumTransactionEip2930Transaction',2854 EIP2930: 'EthereumTransactionEip2930Transaction',
2852 EIP1559: 'EthereumTransactionEip1559Transaction'2855 EIP1559: 'EthereumTransactionEip1559Transaction'
2853 }2856 }
2854 },2857 },
2855 /**2858 /**
2856 * Lookup327: ethereum::transaction::LegacyTransaction2859 * Lookup330: ethereum::transaction::LegacyTransaction
2857 **/2860 **/
2858 EthereumTransactionLegacyTransaction: {2861 EthereumTransactionLegacyTransaction: {
2859 nonce: 'U256',2862 nonce: 'U256',
2860 gasPrice: 'U256',2863 gasPrice: 'U256',
2864 input: 'Bytes',2867 input: 'Bytes',
2865 signature: 'EthereumTransactionTransactionSignature'2868 signature: 'EthereumTransactionTransactionSignature'
2866 },2869 },
2867 /**2870 /**
2868 * Lookup328: ethereum::transaction::TransactionAction2871 * Lookup331: ethereum::transaction::TransactionAction
2869 **/2872 **/
2870 EthereumTransactionTransactionAction: {2873 EthereumTransactionTransactionAction: {
2871 _enum: {2874 _enum: {
2872 Call: 'H160',2875 Call: 'H160',
2873 Create: 'Null'2876 Create: 'Null'
2874 }2877 }
2875 },2878 },
2876 /**2879 /**
2877 * Lookup329: ethereum::transaction::TransactionSignature2880 * Lookup332: ethereum::transaction::TransactionSignature
2878 **/2881 **/
2879 EthereumTransactionTransactionSignature: {2882 EthereumTransactionTransactionSignature: {
2880 v: 'u64',2883 v: 'u64',
2881 r: 'H256',2884 r: 'H256',
2882 s: 'H256'2885 s: 'H256'
2883 },2886 },
2884 /**2887 /**
2885 * Lookup331: ethereum::transaction::EIP2930Transaction2888 * Lookup334: ethereum::transaction::EIP2930Transaction
2886 **/2889 **/
2887 EthereumTransactionEip2930Transaction: {2890 EthereumTransactionEip2930Transaction: {
2888 chainId: 'u64',2891 chainId: 'u64',
2889 nonce: 'U256',2892 nonce: 'U256',
2897 r: 'H256',2900 r: 'H256',
2898 s: 'H256'2901 s: 'H256'
2899 },2902 },
2900 /**2903 /**
2901 * Lookup333: ethereum::transaction::AccessListItem2904 * Lookup336: ethereum::transaction::AccessListItem
2902 **/2905 **/
2903 EthereumTransactionAccessListItem: {2906 EthereumTransactionAccessListItem: {
2904 address: 'H160',2907 address: 'H160',
2905 storageKeys: 'Vec<H256>'2908 storageKeys: 'Vec<H256>'
2906 },2909 },
2907 /**2910 /**
2908 * Lookup334: ethereum::transaction::EIP1559Transaction2911 * Lookup337: ethereum::transaction::EIP1559Transaction
2909 **/2912 **/
2910 EthereumTransactionEip1559Transaction: {2913 EthereumTransactionEip1559Transaction: {
2911 chainId: 'u64',2914 chainId: 'u64',
2912 nonce: 'U256',2915 nonce: 'U256',
2921 r: 'H256',2924 r: 'H256',
2922 s: 'H256'2925 s: 'H256'
2923 },2926 },
2924 /**2927 /**
2925 * Lookup335: pallet_evm_migration::pallet::Call<T>2928 * Lookup338: pallet_evm_migration::pallet::Call<T>
2926 **/2929 **/
2927 PalletEvmMigrationCall: {2930 PalletEvmMigrationCall: {
2928 _enum: {2931 _enum: {
2929 begin: {2932 begin: {
2945 }2948 }
2946 }2949 }
2947 },2950 },
2948 /**2951 /**
2949 * Lookup339: pallet_maintenance::pallet::Call<T>2952 * Lookup342: pallet_maintenance::pallet::Call<T>
2950 **/2953 **/
2951 PalletMaintenanceCall: {2954 PalletMaintenanceCall: {
2952 _enum: ['enable', 'disable']2955 _enum: ['enable', 'disable']
2953 },2956 },
2954 /**2957 /**
2955 * Lookup340: pallet_test_utils::pallet::Call<T>2958 * Lookup343: pallet_test_utils::pallet::Call<T>
2956 **/2959 **/
2957 PalletTestUtilsCall: {2960 PalletTestUtilsCall: {
2958 _enum: {2961 _enum: {
2959 enable: 'Null',2962 enable: 'Null',
2974 }2977 }
2975 }2978 }
2976 },2979 },
2977 /**2980 /**
2978 * Lookup342: pallet_sudo::pallet::Error<T>2981 * Lookup345: pallet_sudo::pallet::Error<T>
2979 **/2982 **/
2980 PalletSudoError: {2983 PalletSudoError: {
2981 _enum: ['RequireSudo']2984 _enum: ['RequireSudo']
2982 },2985 },
2983 /**2986 /**
2984 * Lookup344: orml_vesting::module::Error<T>2987 * Lookup347: orml_vesting::module::Error<T>
2985 **/2988 **/
2986 OrmlVestingModuleError: {2989 OrmlVestingModuleError: {
2987 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2990 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2988 },2991 },
2989 /**2992 /**
2990 * Lookup345: orml_xtokens::module::Error<T>2993 * Lookup348: orml_xtokens::module::Error<T>
2991 **/2994 **/
2992 OrmlXtokensModuleError: {2995 OrmlXtokensModuleError: {
2993 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2996 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
2994 },2997 },
2995 /**2998 /**
2996 * Lookup348: orml_tokens::BalanceLock<Balance>2999 * Lookup351: orml_tokens::BalanceLock<Balance>
2997 **/3000 **/
2998 OrmlTokensBalanceLock: {3001 OrmlTokensBalanceLock: {
2999 id: '[u8;8]',3002 id: '[u8;8]',
3000 amount: 'u128'3003 amount: 'u128'
3001 },3004 },
3002 /**3005 /**
3003 * Lookup350: orml_tokens::AccountData<Balance>3006 * Lookup353: orml_tokens::AccountData<Balance>
3004 **/3007 **/
3005 OrmlTokensAccountData: {3008 OrmlTokensAccountData: {
3006 free: 'u128',3009 free: 'u128',
3007 reserved: 'u128',3010 reserved: 'u128',
3008 frozen: 'u128'3011 frozen: 'u128'
3009 },3012 },
3010 /**3013 /**
3011 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>3014 * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
3012 **/3015 **/
3013 OrmlTokensReserveData: {3016 OrmlTokensReserveData: {
3014 id: 'Null',3017 id: 'Null',
3015 amount: 'u128'3018 amount: 'u128'
3016 },3019 },
3017 /**3020 /**
3018 * Lookup354: orml_tokens::module::Error<T>3021 * Lookup357: orml_tokens::module::Error<T>
3019 **/3022 **/
3020 OrmlTokensModuleError: {3023 OrmlTokensModuleError: {
3021 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3024 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
3022 },3025 },
3023 /**3026 /**
3024 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails3027 * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
3025 **/3028 **/
3026 CumulusPalletXcmpQueueInboundChannelDetails: {3029 CumulusPalletXcmpQueueInboundChannelDetails: {
3027 sender: 'u32',3030 sender: 'u32',
3028 state: 'CumulusPalletXcmpQueueInboundState',3031 state: 'CumulusPalletXcmpQueueInboundState',
3029 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3032 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
3030 },3033 },
3031 /**3034 /**
3032 * Lookup357: cumulus_pallet_xcmp_queue::InboundState3035 * Lookup360: cumulus_pallet_xcmp_queue::InboundState
3033 **/3036 **/
3034 CumulusPalletXcmpQueueInboundState: {3037 CumulusPalletXcmpQueueInboundState: {
3035 _enum: ['Ok', 'Suspended']3038 _enum: ['Ok', 'Suspended']
3036 },3039 },
3037 /**3040 /**
3038 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat3041 * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
3039 **/3042 **/
3040 PolkadotParachainPrimitivesXcmpMessageFormat: {3043 PolkadotParachainPrimitivesXcmpMessageFormat: {
3041 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3044 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
3042 },3045 },
3043 /**3046 /**
3044 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails3047 * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3045 **/3048 **/
3046 CumulusPalletXcmpQueueOutboundChannelDetails: {3049 CumulusPalletXcmpQueueOutboundChannelDetails: {
3047 recipient: 'u32',3050 recipient: 'u32',
3048 state: 'CumulusPalletXcmpQueueOutboundState',3051 state: 'CumulusPalletXcmpQueueOutboundState',
3049 signalsExist: 'bool',3052 signalsExist: 'bool',
3050 firstIndex: 'u16',3053 firstIndex: 'u16',
3051 lastIndex: 'u16'3054 lastIndex: 'u16'
3052 },3055 },
3053 /**3056 /**
3054 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState3057 * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
3055 **/3058 **/
3056 CumulusPalletXcmpQueueOutboundState: {3059 CumulusPalletXcmpQueueOutboundState: {
3057 _enum: ['Ok', 'Suspended']3060 _enum: ['Ok', 'Suspended']
3058 },3061 },
3059 /**3062 /**
3060 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData3063 * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
3061 **/3064 **/
3062 CumulusPalletXcmpQueueQueueConfigData: {3065 CumulusPalletXcmpQueueQueueConfigData: {
3063 suspendThreshold: 'u32',3066 suspendThreshold: 'u32',
3064 dropThreshold: 'u32',3067 dropThreshold: 'u32',
3067 weightRestrictDecay: 'SpWeightsWeightV2Weight',3070 weightRestrictDecay: 'SpWeightsWeightV2Weight',
3068 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3071 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
3069 },3072 },
3070 /**3073 /**
3071 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>3074 * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
3072 **/3075 **/
3073 CumulusPalletXcmpQueueError: {3076 CumulusPalletXcmpQueueError: {
3074 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3077 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
3075 },3078 },
3076 /**3079 /**
3077 * Lookup369: pallet_xcm::pallet::Error<T>3080 * Lookup372: pallet_xcm::pallet::Error<T>
3078 **/3081 **/
3079 PalletXcmError: {3082 PalletXcmError: {
3080 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3083 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
3081 },3084 },
3082 /**3085 /**
3083 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>3086 * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
3084 **/3087 **/
3085 CumulusPalletXcmError: 'Null',3088 CumulusPalletXcmError: 'Null',
3086 /**3089 /**
3087 * Lookup371: cumulus_pallet_dmp_queue::ConfigData3090 * Lookup374: cumulus_pallet_dmp_queue::ConfigData
3088 **/3091 **/
3089 CumulusPalletDmpQueueConfigData: {3092 CumulusPalletDmpQueueConfigData: {
3090 maxIndividual: 'SpWeightsWeightV2Weight'3093 maxIndividual: 'SpWeightsWeightV2Weight'
3091 },3094 },
3092 /**3095 /**
3093 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData3096 * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
3094 **/3097 **/
3095 CumulusPalletDmpQueuePageIndexData: {3098 CumulusPalletDmpQueuePageIndexData: {
3096 beginUsed: 'u32',3099 beginUsed: 'u32',
3097 endUsed: 'u32',3100 endUsed: 'u32',
3098 overweightCount: 'u64'3101 overweightCount: 'u64'
3099 },3102 },
3100 /**3103 /**
3101 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>3104 * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
3102 **/3105 **/
3103 CumulusPalletDmpQueueError: {3106 CumulusPalletDmpQueueError: {
3104 _enum: ['Unknown', 'OverLimit']3107 _enum: ['Unknown', 'OverLimit']
3105 },3108 },
3106 /**3109 /**
3107 * Lookup379: pallet_unique::Error<T>3110 * Lookup382: pallet_unique::Error<T>
3108 **/3111 **/
3109 PalletUniqueError: {3112 PalletUniqueError: {
3110 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3113 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3111 },3114 },
3112 /**3115 /**
3113 * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>3116 * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
3114 **/3117 **/
3115 PalletUniqueSchedulerV2BlockAgenda: {3118 PalletUniqueSchedulerV2BlockAgenda: {
3116 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',3119 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
3117 freePlaces: 'u32'3120 freePlaces: 'u32'
3118 },3121 },
3119 /**3122 /**
3120 * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3123 * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
3121 **/3124 **/
3122 PalletUniqueSchedulerV2Scheduled: {3125 PalletUniqueSchedulerV2Scheduled: {
3123 maybeId: 'Option<[u8;32]>',3126 maybeId: 'Option<[u8;32]>',
3124 priority: 'u8',3127 priority: 'u8',
3125 call: 'PalletUniqueSchedulerV2ScheduledCall',3128 call: 'PalletUniqueSchedulerV2ScheduledCall',
3126 maybePeriodic: 'Option<(u32,u32)>',3129 maybePeriodic: 'Option<(u32,u32)>',
3127 origin: 'OpalRuntimeOriginCaller'3130 origin: 'OpalRuntimeOriginCaller'
3128 },3131 },
3129 /**3132 /**
3130 * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>3133 * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
3131 **/3134 **/
3132 PalletUniqueSchedulerV2ScheduledCall: {3135 PalletUniqueSchedulerV2ScheduledCall: {
3133 _enum: {3136 _enum: {
3134 Inline: 'Bytes',3137 Inline: 'Bytes',
3141 }3144 }
3142 }3145 }
3143 },3146 },
3144 /**3147 /**
3145 * Lookup386: opal_runtime::OriginCaller3148 * Lookup389: opal_runtime::OriginCaller
3146 **/3149 **/
3147 OpalRuntimeOriginCaller: {3150 OpalRuntimeOriginCaller: {
3148 _enum: {3151 _enum: {
3149 system: 'FrameSupportDispatchRawOrigin',3152 system: 'FrameSupportDispatchRawOrigin',
3250 Ethereum: 'PalletEthereumRawOrigin'3253 Ethereum: 'PalletEthereumRawOrigin'
3251 }3254 }
3252 },3255 },
3253 /**3256 /**
3254 * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3257 * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
3255 **/3258 **/
3256 FrameSupportDispatchRawOrigin: {3259 FrameSupportDispatchRawOrigin: {
3257 _enum: {3260 _enum: {
3258 Root: 'Null',3261 Root: 'Null',
3259 Signed: 'AccountId32',3262 Signed: 'AccountId32',
3260 None: 'Null'3263 None: 'Null'
3261 }3264 }
3262 },3265 },
3263 /**3266 /**
3264 * Lookup388: pallet_xcm::pallet::Origin3267 * Lookup391: pallet_xcm::pallet::Origin
3265 **/3268 **/
3266 PalletXcmOrigin: {3269 PalletXcmOrigin: {
3267 _enum: {3270 _enum: {
3268 Xcm: 'XcmV1MultiLocation',3271 Xcm: 'XcmV1MultiLocation',
3269 Response: 'XcmV1MultiLocation'3272 Response: 'XcmV1MultiLocation'
3270 }3273 }
3271 },3274 },
3272 /**3275 /**
3273 * Lookup389: cumulus_pallet_xcm::pallet::Origin3276 * Lookup392: cumulus_pallet_xcm::pallet::Origin
3274 **/3277 **/
3275 CumulusPalletXcmOrigin: {3278 CumulusPalletXcmOrigin: {
3276 _enum: {3279 _enum: {
3277 Relay: 'Null',3280 Relay: 'Null',
3278 SiblingParachain: 'u32'3281 SiblingParachain: 'u32'
3279 }3282 }
3280 },3283 },
3281 /**3284 /**
3282 * Lookup390: pallet_ethereum::RawOrigin3285 * Lookup393: pallet_ethereum::RawOrigin
3283 **/3286 **/
3284 PalletEthereumRawOrigin: {3287 PalletEthereumRawOrigin: {
3285 _enum: {3288 _enum: {
3286 EthereumTransaction: 'H160'3289 EthereumTransaction: 'H160'
3287 }3290 }
3288 },3291 },
3289 /**3292 /**
3290 * Lookup391: sp_core::Void3293 * Lookup394: sp_core::Void
3291 **/3294 **/
3292 SpCoreVoid: 'Null',3295 SpCoreVoid: 'Null',
3293 /**3296 /**
3294 * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>3297 * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
3295 **/3298 **/
3296 PalletUniqueSchedulerV2Error: {3299 PalletUniqueSchedulerV2Error: {
3297 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']3300 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
3298 },3301 },
3299 /**3302 /**
3300 * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>3303 * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>
3301 **/3304 **/
3302 UpDataStructsCollection: {3305 UpDataStructsCollection: {
3303 owner: 'AccountId32',3306 owner: 'AccountId32',
3304 mode: 'UpDataStructsCollectionMode',3307 mode: 'UpDataStructsCollectionMode',
3310 permissions: 'UpDataStructsCollectionPermissions',3313 permissions: 'UpDataStructsCollectionPermissions',
3311 flags: '[u8;1]'3314 flags: '[u8;1]'
3312 },3315 },
3313 /**3316 /**
3314 * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3317 * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3315 **/3318 **/
3316 UpDataStructsSponsorshipStateAccountId32: {3319 UpDataStructsSponsorshipStateAccountId32: {
3317 _enum: {3320 _enum: {
3318 Disabled: 'Null',3321 Disabled: 'Null',
3319 Unconfirmed: 'AccountId32',3322 Unconfirmed: 'AccountId32',
3320 Confirmed: 'AccountId32'3323 Confirmed: 'AccountId32'
3321 }3324 }
3322 },3325 },
3323 /**3326 /**
3324 * Lookup397: up_data_structs::Properties3327 * Lookup400: up_data_structs::Properties
3325 **/3328 **/
3326 UpDataStructsProperties: {3329 UpDataStructsProperties: {
3327 map: 'UpDataStructsPropertiesMapBoundedVec',3330 map: 'UpDataStructsPropertiesMapBoundedVec',
3328 consumedSpace: 'u32',3331 consumedSpace: 'u32',
3329 spaceLimit: 'u32'3332 spaceLimit: 'u32'
3330 },3333 },
3331 /**3334 /**
3332 * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3335 * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3333 **/3336 **/
3334 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3337 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3335 /**3338 /**
3336 * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3339 * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3337 **/3340 **/
3338 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3341 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3339 /**3342 /**
3340 * Lookup410: up_data_structs::CollectionStats3343 * Lookup413: up_data_structs::CollectionStats
3341 **/3344 **/
3342 UpDataStructsCollectionStats: {3345 UpDataStructsCollectionStats: {
3343 created: 'u32',3346 created: 'u32',
3344 destroyed: 'u32',3347 destroyed: 'u32',
3345 alive: 'u32'3348 alive: 'u32'
3346 },3349 },
3347 /**3350 /**
3348 * Lookup411: up_data_structs::TokenChild3351 * Lookup414: up_data_structs::TokenChild
3349 **/3352 **/
3350 UpDataStructsTokenChild: {3353 UpDataStructsTokenChild: {
3351 token: 'u32',3354 token: 'u32',
3352 collection: 'u32'3355 collection: 'u32'
3353 },3356 },
3354 /**3357 /**
3355 * Lookup412: PhantomType::up_data_structs<T>3358 * Lookup415: PhantomType::up_data_structs<T>
3356 **/3359 **/
3357 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3360 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
3358 /**3361 /**
3359 * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3362 * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3360 **/3363 **/
3361 UpDataStructsTokenData: {3364 UpDataStructsTokenData: {
3362 properties: 'Vec<UpDataStructsProperty>',3365 properties: 'Vec<UpDataStructsProperty>',
3363 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3366 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3364 pieces: 'u128'3367 pieces: 'u128'
3365 },3368 },
3366 /**3369 /**
3367 * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3370 * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3368 **/3371 **/
3369 UpDataStructsRpcCollection: {3372 UpDataStructsRpcCollection: {
3370 owner: 'AccountId32',3373 owner: 'AccountId32',
3371 mode: 'UpDataStructsCollectionMode',3374 mode: 'UpDataStructsCollectionMode',
3380 readOnly: 'bool',3383 readOnly: 'bool',
3381 flags: 'UpDataStructsRpcCollectionFlags'3384 flags: 'UpDataStructsRpcCollectionFlags'
3382 },3385 },
3383 /**3386 /**
3384 * Lookup417: up_data_structs::RpcCollectionFlags3387 * Lookup420: up_data_structs::RpcCollectionFlags
3385 **/3388 **/
3386 UpDataStructsRpcCollectionFlags: {3389 UpDataStructsRpcCollectionFlags: {
3387 foreign: 'bool',3390 foreign: 'bool',
3388 erc721metadata: 'bool'3391 erc721metadata: 'bool'
3389 },3392 },
3390 /**3393 /**
3391 * Lookup418: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3394 * Lookup421: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
3392 **/3395 **/
3393 RmrkTraitsCollectionCollectionInfo: {3396 RmrkTraitsCollectionCollectionInfo: {
3394 issuer: 'AccountId32',3397 issuer: 'AccountId32',
3395 metadata: 'Bytes',3398 metadata: 'Bytes',
3396 max: 'Option<u32>',3399 max: 'Option<u32>',
3397 symbol: 'Bytes',3400 symbol: 'Bytes',
3398 nftsCount: 'u32'3401 nftsCount: 'u32'
3399 },3402 },
3400 /**3403 /**
3401 * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3404 * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3402 **/3405 **/
3403 RmrkTraitsNftNftInfo: {3406 RmrkTraitsNftNftInfo: {
3404 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3407 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3405 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3408 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3406 metadata: 'Bytes',3409 metadata: 'Bytes',
3407 equipped: 'bool',3410 equipped: 'bool',
3408 pending: 'bool'3411 pending: 'bool'
3409 },3412 },
3410 /**3413 /**
3411 * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3414 * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3412 **/3415 **/
3413 RmrkTraitsNftRoyaltyInfo: {3416 RmrkTraitsNftRoyaltyInfo: {
3414 recipient: 'AccountId32',3417 recipient: 'AccountId32',
3415 amount: 'Permill'3418 amount: 'Permill'
3416 },3419 },
3417 /**3420 /**
3418 * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3421 * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3419 **/3422 **/
3420 RmrkTraitsResourceResourceInfo: {3423 RmrkTraitsResourceResourceInfo: {
3421 id: 'u32',3424 id: 'u32',
3422 resource: 'RmrkTraitsResourceResourceTypes',3425 resource: 'RmrkTraitsResourceResourceTypes',
3423 pending: 'bool',3426 pending: 'bool',
3424 pendingRemoval: 'bool'3427 pendingRemoval: 'bool'
3425 },3428 },
3426 /**3429 /**
3427 * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3430 * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3428 **/3431 **/
3429 RmrkTraitsPropertyPropertyInfo: {3432 RmrkTraitsPropertyPropertyInfo: {
3430 key: 'Bytes',3433 key: 'Bytes',
3431 value: 'Bytes'3434 value: 'Bytes'
3432 },3435 },
3433 /**3436 /**
3434 * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3437 * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3435 **/3438 **/
3436 RmrkTraitsBaseBaseInfo: {3439 RmrkTraitsBaseBaseInfo: {
3437 issuer: 'AccountId32',3440 issuer: 'AccountId32',
3438 baseType: 'Bytes',3441 baseType: 'Bytes',
3439 symbol: 'Bytes'3442 symbol: 'Bytes'
3440 },3443 },
3441 /**3444 /**
3442 * Lookup425: rmrk_traits::nft::NftChild3445 * Lookup428: rmrk_traits::nft::NftChild
3443 **/3446 **/
3444 RmrkTraitsNftNftChild: {3447 RmrkTraitsNftNftChild: {
3445 collectionId: 'u32',3448 collectionId: 'u32',
3446 nftId: 'u32'3449 nftId: 'u32'
3447 },3450 },
3448 /**3451 /**
3449 * Lookup427: pallet_common::pallet::Error<T>3452 * Lookup430: pallet_common::pallet::Error<T>
3450 **/3453 **/
3451 PalletCommonError: {3454 PalletCommonError: {
3452 _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', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3455 _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', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
3453 },3456 },
3454 /**3457 /**
3455 * Lookup429: pallet_fungible::pallet::Error<T>3458 * Lookup432: pallet_fungible::pallet::Error<T>
3456 **/3459 **/
3457 PalletFungibleError: {3460 PalletFungibleError: {
3458 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3461 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
3459 },3462 },
3460 /**3463 /**
3461 * Lookup430: pallet_refungible::ItemData3464 * Lookup433: pallet_refungible::ItemData
3462 **/3465 **/
3463 PalletRefungibleItemData: {3466 PalletRefungibleItemData: {
3464 constData: 'Bytes'3467 constData: 'Bytes'
3465 },3468 },
3466 /**3469 /**
3467 * Lookup435: pallet_refungible::pallet::Error<T>3470 * Lookup438: pallet_refungible::pallet::Error<T>
3468 **/3471 **/
3469 PalletRefungibleError: {3472 PalletRefungibleError: {
3470 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3473 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3471 },3474 },
3472 /**3475 /**
3473 * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3476 * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3474 **/3477 **/
3475 PalletNonfungibleItemData: {3478 PalletNonfungibleItemData: {
3476 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3479 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3477 },3480 },
3478 /**3481 /**
3479 * Lookup438: up_data_structs::PropertyScope3482 * Lookup441: up_data_structs::PropertyScope
3480 **/3483 **/
3481 UpDataStructsPropertyScope: {3484 UpDataStructsPropertyScope: {
3482 _enum: ['None', 'Rmrk']3485 _enum: ['None', 'Rmrk']
3483 },3486 },
3484 /**3487 /**
3485 * Lookup440: pallet_nonfungible::pallet::Error<T>3488 * Lookup443: pallet_nonfungible::pallet::Error<T>
3486 **/3489 **/
3487 PalletNonfungibleError: {3490 PalletNonfungibleError: {
3488 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3491 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3489 },3492 },
3490 /**3493 /**
3491 * Lookup441: pallet_structure::pallet::Error<T>3494 * Lookup444: pallet_structure::pallet::Error<T>
3492 **/3495 **/
3493 PalletStructureError: {3496 PalletStructureError: {
3494 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3497 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3495 },3498 },
3496 /**3499 /**
3497 * Lookup442: pallet_rmrk_core::pallet::Error<T>3500 * Lookup445: pallet_rmrk_core::pallet::Error<T>
3498 **/3501 **/
3499 PalletRmrkCoreError: {3502 PalletRmrkCoreError: {
3500 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3503 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3501 },3504 },
3502 /**3505 /**
3503 * Lookup444: pallet_rmrk_equip::pallet::Error<T>3506 * Lookup447: pallet_rmrk_equip::pallet::Error<T>
3504 **/3507 **/
3505 PalletRmrkEquipError: {3508 PalletRmrkEquipError: {
3506 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3509 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3507 },3510 },
3508 /**3511 /**
3509 * Lookup450: pallet_app_promotion::pallet::Error<T>3512 * Lookup453: pallet_app_promotion::pallet::Error<T>
3510 **/3513 **/
3511 PalletAppPromotionError: {3514 PalletAppPromotionError: {
3512 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3515 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
3513 },3516 },
3514 /**3517 /**
3515 * Lookup451: pallet_foreign_assets::module::Error<T>3518 * Lookup454: pallet_foreign_assets::module::Error<T>
3516 **/3519 **/
3517 PalletForeignAssetsModuleError: {3520 PalletForeignAssetsModuleError: {
3518 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3521 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3519 },3522 },
3520 /**3523 /**
3521 * Lookup453: pallet_evm::pallet::Error<T>3524 * Lookup456: pallet_evm::pallet::Error<T>
3522 **/3525 **/
3523 PalletEvmError: {3526 PalletEvmError: {
3524 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3527 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
3525 },3528 },
3526 /**3529 /**
3527 * Lookup456: fp_rpc::TransactionStatus3530 * Lookup459: fp_rpc::TransactionStatus
3528 **/3531 **/
3529 FpRpcTransactionStatus: {3532 FpRpcTransactionStatus: {
3530 transactionHash: 'H256',3533 transactionHash: 'H256',
3531 transactionIndex: 'u32',3534 transactionIndex: 'u32',
3535 logs: 'Vec<EthereumLog>',3538 logs: 'Vec<EthereumLog>',
3536 logsBloom: 'EthbloomBloom'3539 logsBloom: 'EthbloomBloom'
3537 },3540 },
3538 /**3541 /**
3539 * Lookup458: ethbloom::Bloom3542 * Lookup461: ethbloom::Bloom
3540 **/3543 **/
3541 EthbloomBloom: '[u8;256]',3544 EthbloomBloom: '[u8;256]',
3542 /**3545 /**
3543 * Lookup460: ethereum::receipt::ReceiptV33546 * Lookup463: ethereum::receipt::ReceiptV3
3544 **/3547 **/
3545 EthereumReceiptReceiptV3: {3548 EthereumReceiptReceiptV3: {
3546 _enum: {3549 _enum: {
3547 Legacy: 'EthereumReceiptEip658ReceiptData',3550 Legacy: 'EthereumReceiptEip658ReceiptData',
3548 EIP2930: 'EthereumReceiptEip658ReceiptData',3551 EIP2930: 'EthereumReceiptEip658ReceiptData',
3549 EIP1559: 'EthereumReceiptEip658ReceiptData'3552 EIP1559: 'EthereumReceiptEip658ReceiptData'
3550 }3553 }
3551 },3554 },
3552 /**3555 /**
3553 * Lookup461: ethereum::receipt::EIP658ReceiptData3556 * Lookup464: ethereum::receipt::EIP658ReceiptData
3554 **/3557 **/
3555 EthereumReceiptEip658ReceiptData: {3558 EthereumReceiptEip658ReceiptData: {
3556 statusCode: 'u8',3559 statusCode: 'u8',
3557 usedGas: 'U256',3560 usedGas: 'U256',
3558 logsBloom: 'EthbloomBloom',3561 logsBloom: 'EthbloomBloom',
3559 logs: 'Vec<EthereumLog>'3562 logs: 'Vec<EthereumLog>'
3560 },3563 },
3561 /**3564 /**
3562 * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>3565 * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>
3563 **/3566 **/
3564 EthereumBlock: {3567 EthereumBlock: {
3565 header: 'EthereumHeader',3568 header: 'EthereumHeader',
3566 transactions: 'Vec<EthereumTransactionTransactionV2>',3569 transactions: 'Vec<EthereumTransactionTransactionV2>',
3567 ommers: 'Vec<EthereumHeader>'3570 ommers: 'Vec<EthereumHeader>'
3568 },3571 },
3569 /**3572 /**
3570 * Lookup463: ethereum::header::Header3573 * Lookup466: ethereum::header::Header
3571 **/3574 **/
3572 EthereumHeader: {3575 EthereumHeader: {
3573 parentHash: 'H256',3576 parentHash: 'H256',
3574 ommersHash: 'H256',3577 ommersHash: 'H256',
3586 mixHash: 'H256',3589 mixHash: 'H256',
3587 nonce: 'EthereumTypesHashH64'3590 nonce: 'EthereumTypesHashH64'
3588 },3591 },
3589 /**3592 /**
3590 * Lookup464: ethereum_types::hash::H643593 * Lookup467: ethereum_types::hash::H64
3591 **/3594 **/
3592 EthereumTypesHashH64: '[u8;8]',3595 EthereumTypesHashH64: '[u8;8]',
3593 /**3596 /**
3594 * Lookup469: pallet_ethereum::pallet::Error<T>3597 * Lookup472: pallet_ethereum::pallet::Error<T>
3595 **/3598 **/
3596 PalletEthereumError: {3599 PalletEthereumError: {
3597 _enum: ['InvalidSignature', 'PreLogExists']3600 _enum: ['InvalidSignature', 'PreLogExists']
3598 },3601 },
3599 /**3602 /**
3600 * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>3603 * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>
3601 **/3604 **/
3602 PalletEvmCoderSubstrateError: {3605 PalletEvmCoderSubstrateError: {
3603 _enum: ['OutOfGas', 'OutOfFund']3606 _enum: ['OutOfGas', 'OutOfFund']
3604 },3607 },
3605 /**3608 /**
3606 * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3609 * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3607 **/3610 **/
3608 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3611 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3609 _enum: {3612 _enum: {
3610 Disabled: 'Null',3613 Disabled: 'Null',
3611 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3614 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3612 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3615 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3613 }3616 }
3614 },3617 },
3615 /**3618 /**
3616 * Lookup472: pallet_evm_contract_helpers::SponsoringModeT3619 * Lookup475: pallet_evm_contract_helpers::SponsoringModeT
3617 **/3620 **/
3618 PalletEvmContractHelpersSponsoringModeT: {3621 PalletEvmContractHelpersSponsoringModeT: {
3619 _enum: ['Disabled', 'Allowlisted', 'Generous']3622 _enum: ['Disabled', 'Allowlisted', 'Generous']
3620 },3623 },
3621 /**3624 /**
3622 * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>3625 * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>
3623 **/3626 **/
3624 PalletEvmContractHelpersError: {3627 PalletEvmContractHelpersError: {
3625 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3628 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3626 },3629 },
3627 /**3630 /**
3628 * Lookup479: pallet_evm_migration::pallet::Error<T>3631 * Lookup482: pallet_evm_migration::pallet::Error<T>
3629 **/3632 **/
3630 PalletEvmMigrationError: {3633 PalletEvmMigrationError: {
3631 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3634 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
3632 },3635 },
3633 /**3636 /**
3634 * Lookup480: pallet_maintenance::pallet::Error<T>3637 * Lookup483: pallet_maintenance::pallet::Error<T>
3635 **/3638 **/
3636 PalletMaintenanceError: 'Null',3639 PalletMaintenanceError: 'Null',
3637 /**3640 /**
3638 * Lookup481: pallet_test_utils::pallet::Error<T>3641 * Lookup484: pallet_test_utils::pallet::Error<T>
3639 **/3642 **/
3640 PalletTestUtilsError: {3643 PalletTestUtilsError: {
3641 _enum: ['TestPalletDisabled', 'TriggerRollback']3644 _enum: ['TestPalletDisabled', 'TriggerRollback']
3642 },3645 },
3643 /**3646 /**
3644 * Lookup483: sp_runtime::MultiSignature3647 * Lookup486: sp_runtime::MultiSignature
3645 **/3648 **/
3646 SpRuntimeMultiSignature: {3649 SpRuntimeMultiSignature: {
3647 _enum: {3650 _enum: {
3648 Ed25519: 'SpCoreEd25519Signature',3651 Ed25519: 'SpCoreEd25519Signature',
3649 Sr25519: 'SpCoreSr25519Signature',3652 Sr25519: 'SpCoreSr25519Signature',
3650 Ecdsa: 'SpCoreEcdsaSignature'3653 Ecdsa: 'SpCoreEcdsaSignature'
3651 }3654 }
3652 },3655 },
3653 /**3656 /**
3654 * Lookup484: sp_core::ed25519::Signature3657 * Lookup487: sp_core::ed25519::Signature
3655 **/3658 **/
3656 SpCoreEd25519Signature: '[u8;64]',3659 SpCoreEd25519Signature: '[u8;64]',
3657 /**3660 /**
3658 * Lookup486: sp_core::sr25519::Signature3661 * Lookup489: sp_core::sr25519::Signature
3659 **/3662 **/
3660 SpCoreSr25519Signature: '[u8;64]',3663 SpCoreSr25519Signature: '[u8;64]',
3661 /**3664 /**
3662 * Lookup487: sp_core::ecdsa::Signature3665 * Lookup490: sp_core::ecdsa::Signature
3663 **/3666 **/
3664 SpCoreEcdsaSignature: '[u8;65]',3667 SpCoreEcdsaSignature: '[u8;65]',
3665 /**3668 /**
3666 * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3669 * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3667 **/3670 **/
3668 FrameSystemExtensionsCheckSpecVersion: 'Null',3671 FrameSystemExtensionsCheckSpecVersion: 'Null',
3669 /**3672 /**
3670 * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>3673 * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3671 **/3674 **/
3672 FrameSystemExtensionsCheckTxVersion: 'Null',3675 FrameSystemExtensionsCheckTxVersion: 'Null',
3673 /**3676 /**
3674 * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>3677 * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>
3675 **/3678 **/
3676 FrameSystemExtensionsCheckGenesis: 'Null',3679 FrameSystemExtensionsCheckGenesis: 'Null',
3677 /**3680 /**
3678 * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>3681 * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>
3679 **/3682 **/
3680 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3683 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3681 /**3684 /**
3682 * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>3685 * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>
3683 **/3686 **/
3684 FrameSystemExtensionsCheckWeight: 'Null',3687 FrameSystemExtensionsCheckWeight: 'Null',
3685 /**3688 /**
3686 * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance3689 * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance
3687 **/3690 **/
3688 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3691 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3689 /**3692 /**
3690 * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3693 * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3691 **/3694 **/
3692 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3695 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3693 /**3696 /**
3694 * Lookup499: opal_runtime::Runtime3697 * Lookup502: opal_runtime::Runtime
3695 **/3698 **/
3696 OpalRuntimeRuntime: 'Null',3699 OpalRuntimeRuntime: 'Null',
3697 /**3700 /**
3698 * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3701 * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3699 **/3702 **/
3700 PalletEthereumFakeTransactionFinalizer: 'Null'3703 PalletEthereumFakeTransactionFinalizer: 'Null'
3701};3704};
37023705
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -2761,16 +2761,20 @@
     readonly asSetMinGasPriceOverride: {
       readonly coeff: Option<u64>;
     } & Struct;
-    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+    readonly isSetXcmAllowedLocations: boolean;
+    readonly asSetXcmAllowedLocations: {
+      readonly locations: Option<Vec<XcmV1MultiLocation>>;
+    } & Struct;
+    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
   }
 
-  /** @name PalletTemplateTransactionPaymentCall (288) */
+  /** @name PalletTemplateTransactionPaymentCall (291) */
   type PalletTemplateTransactionPaymentCall = Null;
 
-  /** @name PalletStructureCall (289) */
+  /** @name PalletStructureCall (292) */
   type PalletStructureCall = Null;
 
-  /** @name PalletRmrkCoreCall (290) */
+  /** @name PalletRmrkCoreCall (293) */
   interface PalletRmrkCoreCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2876,7 +2880,7 @@
     readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
   }
 
-  /** @name RmrkTraitsResourceResourceTypes (296) */
+  /** @name RmrkTraitsResourceResourceTypes (299) */
   interface RmrkTraitsResourceResourceTypes extends Enum {
     readonly isBasic: boolean;
     readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2887,7 +2891,7 @@
     readonly type: 'Basic' | 'Composable' | 'Slot';
   }
 
-  /** @name RmrkTraitsResourceBasicResource (298) */
+  /** @name RmrkTraitsResourceBasicResource (301) */
   interface RmrkTraitsResourceBasicResource extends Struct {
     readonly src: Option<Bytes>;
     readonly metadata: Option<Bytes>;
@@ -2895,7 +2899,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceComposableResource (300) */
+  /** @name RmrkTraitsResourceComposableResource (303) */
   interface RmrkTraitsResourceComposableResource extends Struct {
     readonly parts: Vec<u32>;
     readonly base: u32;
@@ -2905,7 +2909,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceSlotResource (301) */
+  /** @name RmrkTraitsResourceSlotResource (304) */
   interface RmrkTraitsResourceSlotResource extends Struct {
     readonly base: u32;
     readonly src: Option<Bytes>;
@@ -2915,7 +2919,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name PalletRmrkEquipCall (304) */
+  /** @name PalletRmrkEquipCall (307) */
   interface PalletRmrkEquipCall extends Enum {
     readonly isCreateBase: boolean;
     readonly asCreateBase: {
@@ -2937,7 +2941,7 @@
     readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
   }
 
-  /** @name RmrkTraitsPartPartType (307) */
+  /** @name RmrkTraitsPartPartType (310) */
   interface RmrkTraitsPartPartType extends Enum {
     readonly isFixedPart: boolean;
     readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2946,14 +2950,14 @@
     readonly type: 'FixedPart' | 'SlotPart';
   }
 
-  /** @name RmrkTraitsPartFixedPart (309) */
+  /** @name RmrkTraitsPartFixedPart (312) */
   interface RmrkTraitsPartFixedPart extends Struct {
     readonly id: u32;
     readonly z: u32;
     readonly src: Bytes;
   }
 
-  /** @name RmrkTraitsPartSlotPart (310) */
+  /** @name RmrkTraitsPartSlotPart (313) */
   interface RmrkTraitsPartSlotPart extends Struct {
     readonly id: u32;
     readonly equippable: RmrkTraitsPartEquippableList;
@@ -2961,7 +2965,7 @@
     readonly z: u32;
   }
 
-  /** @name RmrkTraitsPartEquippableList (311) */
+  /** @name RmrkTraitsPartEquippableList (314) */
   interface RmrkTraitsPartEquippableList extends Enum {
     readonly isAll: boolean;
     readonly isEmpty: boolean;
@@ -2970,20 +2974,20 @@
     readonly type: 'All' | 'Empty' | 'Custom';
   }
 
-  /** @name RmrkTraitsTheme (313) */
+  /** @name RmrkTraitsTheme (316) */
   interface RmrkTraitsTheme extends Struct {
     readonly name: Bytes;
     readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
     readonly inherit: bool;
   }
 
-  /** @name RmrkTraitsThemeThemeProperty (315) */
+  /** @name RmrkTraitsThemeThemeProperty (318) */
   interface RmrkTraitsThemeThemeProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PalletAppPromotionCall (317) */
+  /** @name PalletAppPromotionCall (320) */
   interface PalletAppPromotionCall extends Enum {
     readonly isSetAdminAddress: boolean;
     readonly asSetAdminAddress: {
@@ -3017,7 +3021,7 @@
     readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
   }
 
-  /** @name PalletForeignAssetsModuleCall (318) */
+  /** @name PalletForeignAssetsModuleCall (321) */
   interface PalletForeignAssetsModuleCall extends Enum {
     readonly isRegisterForeignAsset: boolean;
     readonly asRegisterForeignAsset: {
@@ -3034,7 +3038,7 @@
     readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
   }
 
-  /** @name PalletEvmCall (319) */
+  /** @name PalletEvmCall (322) */
   interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -3079,7 +3083,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (325) */
+  /** @name PalletEthereumCall (328) */
   interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -3088,7 +3092,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (326) */
+  /** @name EthereumTransactionTransactionV2 (329) */
   interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3099,7 +3103,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (327) */
+  /** @name EthereumTransactionLegacyTransaction (330) */
   interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -3110,7 +3114,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (328) */
+  /** @name EthereumTransactionTransactionAction (331) */
   interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -3118,14 +3122,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (329) */
+  /** @name EthereumTransactionTransactionSignature (332) */
   interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (331) */
+  /** @name EthereumTransactionEip2930Transaction (334) */
   interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3140,13 +3144,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (333) */
+  /** @name EthereumTransactionAccessListItem (336) */
   interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (334) */
+  /** @name EthereumTransactionEip1559Transaction (337) */
   interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3162,7 +3166,7 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (335) */
+  /** @name PalletEvmMigrationCall (338) */
   interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -3189,14 +3193,14 @@
     readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
   }
 
-  /** @name PalletMaintenanceCall (339) */
+  /** @name PalletMaintenanceCall (342) */
   interface PalletMaintenanceCall extends Enum {
     readonly isEnable: boolean;
     readonly isDisable: boolean;
     readonly type: 'Enable' | 'Disable';
   }
 
-  /** @name PalletTestUtilsCall (340) */
+  /** @name PalletTestUtilsCall (343) */
   interface PalletTestUtilsCall extends Enum {
     readonly isEnable: boolean;
     readonly isSetTestValue: boolean;
@@ -3221,13 +3225,13 @@
     readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
   }
 
-  /** @name PalletSudoError (342) */
+  /** @name PalletSudoError (345) */
   interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name OrmlVestingModuleError (344) */
+  /** @name OrmlVestingModuleError (347) */
   interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -3238,7 +3242,7 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name OrmlXtokensModuleError (345) */
+  /** @name OrmlXtokensModuleError (348) */
   interface OrmlXtokensModuleError extends Enum {
     readonly isAssetHasNoReserve: boolean;
     readonly isNotCrossChainTransfer: boolean;
@@ -3262,26 +3266,26 @@
     readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
   }
 
-  /** @name OrmlTokensBalanceLock (348) */
+  /** @name OrmlTokensBalanceLock (351) */
   interface OrmlTokensBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensAccountData (350) */
+  /** @name OrmlTokensAccountData (353) */
   interface OrmlTokensAccountData extends Struct {
     readonly free: u128;
     readonly reserved: u128;
     readonly frozen: u128;
   }
 
-  /** @name OrmlTokensReserveData (352) */
+  /** @name OrmlTokensReserveData (355) */
   interface OrmlTokensReserveData extends Struct {
     readonly id: Null;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensModuleError (354) */
+  /** @name OrmlTokensModuleError (357) */
   interface OrmlTokensModuleError extends Enum {
     readonly isBalanceTooLow: boolean;
     readonly isAmountIntoBalanceFailed: boolean;
@@ -3294,21 +3298,21 @@
     readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */
   interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (357) */
+  /** @name CumulusPalletXcmpQueueInboundState (360) */
   interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */
   interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -3316,7 +3320,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */
   interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3325,14 +3329,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (364) */
+  /** @name CumulusPalletXcmpQueueOutboundState (367) */
   interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (366) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (369) */
   interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -3342,7 +3346,7 @@
     readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletXcmpQueueError (368) */
+  /** @name CumulusPalletXcmpQueueError (371) */
   interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -3352,7 +3356,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (369) */
+  /** @name PalletXcmError (372) */
   interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -3370,29 +3374,29 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
   }
 
-  /** @name CumulusPalletXcmError (370) */
+  /** @name CumulusPalletXcmError (373) */
   type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (371) */
+  /** @name CumulusPalletDmpQueueConfigData (374) */
   interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (372) */
+  /** @name CumulusPalletDmpQueuePageIndexData (375) */
   interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (375) */
+  /** @name CumulusPalletDmpQueueError (378) */
   interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (379) */
+  /** @name PalletUniqueError (382) */
   interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isEmptyArgument: boolean;
@@ -3400,13 +3404,13 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
   }
 
-  /** @name PalletUniqueSchedulerV2BlockAgenda (380) */
+  /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
   interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
     readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
     readonly freePlaces: u32;
   }
 
-  /** @name PalletUniqueSchedulerV2Scheduled (383) */
+  /** @name PalletUniqueSchedulerV2Scheduled (386) */
   interface PalletUniqueSchedulerV2Scheduled extends Struct {
     readonly maybeId: Option<U8aFixed>;
     readonly priority: u8;
@@ -3415,7 +3419,7 @@
     readonly origin: OpalRuntimeOriginCaller;
   }
 
-  /** @name PalletUniqueSchedulerV2ScheduledCall (384) */
+  /** @name PalletUniqueSchedulerV2ScheduledCall (387) */
   interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
     readonly isInline: boolean;
     readonly asInline: Bytes;
@@ -3427,7 +3431,7 @@
     readonly type: 'Inline' | 'PreimageLookup';
   }
 
-  /** @name OpalRuntimeOriginCaller (386) */
+  /** @name OpalRuntimeOriginCaller (389) */
   interface OpalRuntimeOriginCaller extends Enum {
     readonly isSystem: boolean;
     readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -3441,7 +3445,7 @@
     readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
   }
 
-  /** @name FrameSupportDispatchRawOrigin (387) */
+  /** @name FrameSupportDispatchRawOrigin (390) */
   interface FrameSupportDispatchRawOrigin extends Enum {
     readonly isRoot: boolean;
     readonly isSigned: boolean;
@@ -3450,7 +3454,7 @@
     readonly type: 'Root' | 'Signed' | 'None';
   }
 
-  /** @name PalletXcmOrigin (388) */
+  /** @name PalletXcmOrigin (391) */
   interface PalletXcmOrigin extends Enum {
     readonly isXcm: boolean;
     readonly asXcm: XcmV1MultiLocation;
@@ -3459,7 +3463,7 @@
     readonly type: 'Xcm' | 'Response';
   }
 
-  /** @name CumulusPalletXcmOrigin (389) */
+  /** @name CumulusPalletXcmOrigin (392) */
   interface CumulusPalletXcmOrigin extends Enum {
     readonly isRelay: boolean;
     readonly isSiblingParachain: boolean;
@@ -3467,17 +3471,17 @@
     readonly type: 'Relay' | 'SiblingParachain';
   }
 
-  /** @name PalletEthereumRawOrigin (390) */
+  /** @name PalletEthereumRawOrigin (393) */
   interface PalletEthereumRawOrigin extends Enum {
     readonly isEthereumTransaction: boolean;
     readonly asEthereumTransaction: H160;
     readonly type: 'EthereumTransaction';
   }
 
-  /** @name SpCoreVoid (391) */
+  /** @name SpCoreVoid (394) */
   type SpCoreVoid = Null;
 
-  /** @name PalletUniqueSchedulerV2Error (393) */
+  /** @name PalletUniqueSchedulerV2Error (396) */
   interface PalletUniqueSchedulerV2Error extends Enum {
     readonly isFailedToSchedule: boolean;
     readonly isAgendaIsExhausted: boolean;
@@ -3490,7 +3494,7 @@
     readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
   }
 
-  /** @name UpDataStructsCollection (394) */
+  /** @name UpDataStructsCollection (397) */
   interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3503,7 +3507,7 @@
     readonly flags: U8aFixed;
   }
 
-  /** @name UpDataStructsSponsorshipStateAccountId32 (395) */
+  /** @name UpDataStructsSponsorshipStateAccountId32 (398) */
   interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3513,43 +3517,43 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (397) */
+  /** @name UpDataStructsProperties (400) */
   interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (398) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (401) */
   interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (403) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (406) */
   interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (410) */
+  /** @name UpDataStructsCollectionStats (413) */
   interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name UpDataStructsTokenChild (411) */
+  /** @name UpDataStructsTokenChild (414) */
   interface UpDataStructsTokenChild extends Struct {
     readonly token: u32;
     readonly collection: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (412) */
+  /** @name PhantomTypeUpDataStructs (415) */
   interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
 
-  /** @name UpDataStructsTokenData (414) */
+  /** @name UpDataStructsTokenData (417) */
   interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
     readonly pieces: u128;
   }
 
-  /** @name UpDataStructsRpcCollection (416) */
+  /** @name UpDataStructsRpcCollection (419) */
   interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3565,13 +3569,13 @@
     readonly flags: UpDataStructsRpcCollectionFlags;
   }
 
-  /** @name UpDataStructsRpcCollectionFlags (417) */
+  /** @name UpDataStructsRpcCollectionFlags (420) */
   interface UpDataStructsRpcCollectionFlags extends Struct {
     readonly foreign: bool;
     readonly erc721metadata: bool;
   }
 
-  /** @name RmrkTraitsCollectionCollectionInfo (418) */
+  /** @name RmrkTraitsCollectionCollectionInfo (421) */
   interface RmrkTraitsCollectionCollectionInfo extends Struct {
     readonly issuer: AccountId32;
     readonly metadata: Bytes;
@@ -3580,7 +3584,7 @@
     readonly nftsCount: u32;
   }
 
-  /** @name RmrkTraitsNftNftInfo (419) */
+  /** @name RmrkTraitsNftNftInfo (422) */
   interface RmrkTraitsNftNftInfo extends Struct {
     readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
     readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3589,13 +3593,13 @@
     readonly pending: bool;
   }
 
-  /** @name RmrkTraitsNftRoyaltyInfo (421) */
+  /** @name RmrkTraitsNftRoyaltyInfo (424) */
   interface RmrkTraitsNftRoyaltyInfo extends Struct {
     readonly recipient: AccountId32;
     readonly amount: Permill;
   }
 
-  /** @name RmrkTraitsResourceResourceInfo (422) */
+  /** @name RmrkTraitsResourceResourceInfo (425) */
   interface RmrkTraitsResourceResourceInfo extends Struct {
     readonly id: u32;
     readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3603,26 +3607,26 @@
     readonly pendingRemoval: bool;
   }
 
-  /** @name RmrkTraitsPropertyPropertyInfo (423) */
+  /** @name RmrkTraitsPropertyPropertyInfo (426) */
   interface RmrkTraitsPropertyPropertyInfo extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name RmrkTraitsBaseBaseInfo (424) */
+  /** @name RmrkTraitsBaseBaseInfo (427) */
   interface RmrkTraitsBaseBaseInfo extends Struct {
     readonly issuer: AccountId32;
     readonly baseType: Bytes;
     readonly symbol: Bytes;
   }
 
-  /** @name RmrkTraitsNftNftChild (425) */
+  /** @name RmrkTraitsNftNftChild (428) */
   interface RmrkTraitsNftNftChild extends Struct {
     readonly collectionId: u32;
     readonly nftId: u32;
   }
 
-  /** @name PalletCommonError (427) */
+  /** @name PalletCommonError (430) */
   interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -3663,7 +3667,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
   }
 
-  /** @name PalletFungibleError (429) */
+  /** @name PalletFungibleError (432) */
   interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -3674,12 +3678,12 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
   }
 
-  /** @name PalletRefungibleItemData (430) */
+  /** @name PalletRefungibleItemData (433) */
   interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
   }
 
-  /** @name PalletRefungibleError (435) */
+  /** @name PalletRefungibleError (438) */
   interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -3689,19 +3693,19 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (436) */
+  /** @name PalletNonfungibleItemData (439) */
   interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsPropertyScope (438) */
+  /** @name UpDataStructsPropertyScope (441) */
   interface UpDataStructsPropertyScope extends Enum {
     readonly isNone: boolean;
     readonly isRmrk: boolean;
     readonly type: 'None' | 'Rmrk';
   }
 
-  /** @name PalletNonfungibleError (440) */
+  /** @name PalletNonfungibleError (443) */
   interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3709,7 +3713,7 @@
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (441) */
+  /** @name PalletStructureError (444) */
   interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -3718,7 +3722,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletRmrkCoreError (442) */
+  /** @name PalletRmrkCoreError (445) */
   interface PalletRmrkCoreError extends Enum {
     readonly isCorruptedCollectionType: boolean;
     readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3742,7 +3746,7 @@
     readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
   }
 
-  /** @name PalletRmrkEquipError (444) */
+  /** @name PalletRmrkEquipError (447) */
   interface PalletRmrkEquipError extends Enum {
     readonly isPermissionError: boolean;
     readonly isNoAvailableBaseId: boolean;
@@ -3754,7 +3758,7 @@
     readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
   }
 
-  /** @name PalletAppPromotionError (450) */
+  /** @name PalletAppPromotionError (453) */
   interface PalletAppPromotionError extends Enum {
     readonly isAdminNotSet: boolean;
     readonly isNoPermission: boolean;
@@ -3765,7 +3769,7 @@
     readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
   }
 
-  /** @name PalletForeignAssetsModuleError (451) */
+  /** @name PalletForeignAssetsModuleError (454) */
   interface PalletForeignAssetsModuleError extends Enum {
     readonly isBadLocation: boolean;
     readonly isMultiLocationExisted: boolean;
@@ -3774,7 +3778,7 @@
     readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
   }
 
-  /** @name PalletEvmError (453) */
+  /** @name PalletEvmError (456) */
   interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -3789,7 +3793,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
   }
 
-  /** @name FpRpcTransactionStatus (456) */
+  /** @name FpRpcTransactionStatus (459) */
   interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -3800,10 +3804,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (458) */
+  /** @name EthbloomBloom (461) */
   interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (460) */
+  /** @name EthereumReceiptReceiptV3 (463) */
   interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3814,7 +3818,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (461) */
+  /** @name EthereumReceiptEip658ReceiptData (464) */
   interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -3822,14 +3826,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (462) */
+  /** @name EthereumBlock (465) */
   interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (463) */
+  /** @name EthereumHeader (466) */
   interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -3848,24 +3852,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (464) */
+  /** @name EthereumTypesHashH64 (467) */
   interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (469) */
+  /** @name PalletEthereumError (472) */
   interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (470) */
+  /** @name PalletEvmCoderSubstrateError (473) */
   interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */
+  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */
   interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3875,7 +3879,7 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (472) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (475) */
   interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -3883,7 +3887,7 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (478) */
+  /** @name PalletEvmContractHelpersError (481) */
   interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly isNoPendingSponsor: boolean;
@@ -3891,7 +3895,7 @@
     readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
   }
 
-  /** @name PalletEvmMigrationError (479) */
+  /** @name PalletEvmMigrationError (482) */
   interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
@@ -3899,17 +3903,17 @@
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
   }
 
-  /** @name PalletMaintenanceError (480) */
+  /** @name PalletMaintenanceError (483) */
   type PalletMaintenanceError = Null;
 
-  /** @name PalletTestUtilsError (481) */
+  /** @name PalletTestUtilsError (484) */
   interface PalletTestUtilsError extends Enum {
     readonly isTestPalletDisabled: boolean;
     readonly isTriggerRollback: boolean;
     readonly type: 'TestPalletDisabled' | 'TriggerRollback';
   }
 
-  /** @name SpRuntimeMultiSignature (483) */
+  /** @name SpRuntimeMultiSignature (486) */
   interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -3920,40 +3924,40 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (484) */
+  /** @name SpCoreEd25519Signature (487) */
   interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (486) */
+  /** @name SpCoreSr25519Signature (489) */
   interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (487) */
+  /** @name SpCoreEcdsaSignature (490) */
   interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (490) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (493) */
   type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckTxVersion (491) */
+  /** @name FrameSystemExtensionsCheckTxVersion (494) */
   type FrameSystemExtensionsCheckTxVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (492) */
+  /** @name FrameSystemExtensionsCheckGenesis (495) */
   type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (495) */
+  /** @name FrameSystemExtensionsCheckNonce (498) */
   interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (496) */
+  /** @name FrameSystemExtensionsCheckWeight (499) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */
+  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */
   type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (499) */
+  /** @name OpalRuntimeRuntime (502) */
   type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (500) */
+  /** @name PalletEthereumFakeTransactionFinalizer (503) */
   type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module