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
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -2527,20 +2527,23 @@
         coeff: 'Option<u32>',
       },
       set_min_gas_price_override: {
-        coeff: 'Option<u64>'
+        coeff: 'Option<u64>',
+      },
+      set_xcm_allowed_locations: {
+        locations: 'Option<Vec<XcmV1MultiLocation>>'
       }
     }
   },
   /**
-   * Lookup288: pallet_template_transaction_payment::Call<T>
+   * Lookup291: pallet_template_transaction_payment::Call<T>
    **/
   PalletTemplateTransactionPaymentCall: 'Null',
   /**
-   * Lookup289: pallet_structure::pallet::Call<T>
+   * Lookup292: pallet_structure::pallet::Call<T>
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup290: pallet_rmrk_core::pallet::Call<T>
+   * Lookup293: pallet_rmrk_core::pallet::Call<T>
    **/
   PalletRmrkCoreCall: {
     _enum: {
@@ -2631,7 +2634,7 @@
     }
   },
   /**
-   * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceResourceTypes: {
     _enum: {
@@ -2641,7 +2644,7 @@
     }
   },
   /**
-   * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceBasicResource: {
     src: 'Option<Bytes>',
@@ -2650,7 +2653,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceComposableResource: {
     parts: 'Vec<u32>',
@@ -2661,7 +2664,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceSlotResource: {
     base: 'u32',
@@ -2672,7 +2675,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup304: pallet_rmrk_equip::pallet::Call<T>
+   * Lookup307: pallet_rmrk_equip::pallet::Call<T>
    **/
   PalletRmrkEquipCall: {
     _enum: {
@@ -2693,7 +2696,7 @@
     }
   },
   /**
-   * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartPartType: {
     _enum: {
@@ -2702,7 +2705,7 @@
     }
   },
   /**
-   * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartFixedPart: {
     id: 'u32',
@@ -2710,7 +2713,7 @@
     src: 'Bytes'
   },
   /**
-   * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartSlotPart: {
     id: 'u32',
@@ -2719,7 +2722,7 @@
     z: 'u32'
   },
   /**
-   * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartEquippableList: {
     _enum: {
@@ -2729,7 +2732,7 @@
     }
   },
   /**
-   * 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>>
+   * 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>>
    **/
   RmrkTraitsTheme: {
     name: 'Bytes',
@@ -2737,14 +2740,14 @@
     inherit: 'bool'
   },
   /**
-   * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsThemeThemeProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup317: pallet_app_promotion::pallet::Call<T>
+   * Lookup320: pallet_app_promotion::pallet::Call<T>
    **/
   PalletAppPromotionCall: {
     _enum: {
@@ -2773,7 +2776,7 @@
     }
   },
   /**
-   * Lookup318: pallet_foreign_assets::module::Call<T>
+   * Lookup321: pallet_foreign_assets::module::Call<T>
    **/
   PalletForeignAssetsModuleCall: {
     _enum: {
@@ -2790,7 +2793,7 @@
     }
   },
   /**
-   * Lookup319: pallet_evm::pallet::Call<T>
+   * Lookup322: pallet_evm::pallet::Call<T>
    **/
   PalletEvmCall: {
     _enum: {
@@ -2833,7 +2836,7 @@
     }
   },
   /**
-   * Lookup325: pallet_ethereum::pallet::Call<T>
+   * Lookup328: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -2843,7 +2846,7 @@
     }
   },
   /**
-   * Lookup326: ethereum::transaction::TransactionV2
+   * Lookup329: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -2853,7 +2856,7 @@
     }
   },
   /**
-   * Lookup327: ethereum::transaction::LegacyTransaction
+   * Lookup330: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -2865,7 +2868,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup328: ethereum::transaction::TransactionAction
+   * Lookup331: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -2874,7 +2877,7 @@
     }
   },
   /**
-   * Lookup329: ethereum::transaction::TransactionSignature
+   * Lookup332: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -2882,7 +2885,7 @@
     s: 'H256'
   },
   /**
-   * Lookup331: ethereum::transaction::EIP2930Transaction
+   * Lookup334: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -2898,14 +2901,14 @@
     s: 'H256'
   },
   /**
-   * Lookup333: ethereum::transaction::AccessListItem
+   * Lookup336: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup334: ethereum::transaction::EIP1559Transaction
+   * Lookup337: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -2922,7 +2925,7 @@
     s: 'H256'
   },
   /**
-   * Lookup335: pallet_evm_migration::pallet::Call<T>
+   * Lookup338: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -2946,13 +2949,13 @@
     }
   },
   /**
-   * Lookup339: pallet_maintenance::pallet::Call<T>
+   * Lookup342: pallet_maintenance::pallet::Call<T>
    **/
   PalletMaintenanceCall: {
     _enum: ['enable', 'disable']
   },
   /**
-   * Lookup340: pallet_test_utils::pallet::Call<T>
+   * Lookup343: pallet_test_utils::pallet::Call<T>
    **/
   PalletTestUtilsCall: {
     _enum: {
@@ -2975,32 +2978,32 @@
     }
   },
   /**
-   * Lookup342: pallet_sudo::pallet::Error<T>
+   * Lookup345: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup344: orml_vesting::module::Error<T>
+   * Lookup347: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup345: orml_xtokens::module::Error<T>
+   * Lookup348: orml_xtokens::module::Error<T>
    **/
   OrmlXtokensModuleError: {
     _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
   },
   /**
-   * Lookup348: orml_tokens::BalanceLock<Balance>
+   * Lookup351: orml_tokens::BalanceLock<Balance>
    **/
   OrmlTokensBalanceLock: {
     id: '[u8;8]',
     amount: 'u128'
   },
   /**
-   * Lookup350: orml_tokens::AccountData<Balance>
+   * Lookup353: orml_tokens::AccountData<Balance>
    **/
   OrmlTokensAccountData: {
     free: 'u128',
@@ -3008,20 +3011,20 @@
     frozen: 'u128'
   },
   /**
-   * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+   * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
    **/
   OrmlTokensReserveData: {
     id: 'Null',
     amount: 'u128'
   },
   /**
-   * Lookup354: orml_tokens::module::Error<T>
+   * Lookup357: orml_tokens::module::Error<T>
    **/
   OrmlTokensModuleError: {
     _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
   },
   /**
-   * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -3029,19 +3032,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup357: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup360: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -3051,13 +3054,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup364: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -3068,29 +3071,29 @@
     xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup369: pallet_xcm::pallet::Error<T>
+   * Lookup372: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup370: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup371: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup374: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup372: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -3098,26 +3101,26 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup379: pallet_unique::Error<T>
+   * Lookup382: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
   },
   /**
-   * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>
+   * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
    **/
   PalletUniqueSchedulerV2BlockAgenda: {
     agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
     freePlaces: 'u32'
   },
   /**
-   * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+   * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
    **/
   PalletUniqueSchedulerV2Scheduled: {
     maybeId: 'Option<[u8;32]>',
@@ -3127,7 +3130,7 @@
     origin: 'OpalRuntimeOriginCaller'
   },
   /**
-   * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>
+   * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
    **/
   PalletUniqueSchedulerV2ScheduledCall: {
     _enum: {
@@ -3142,7 +3145,7 @@
     }
   },
   /**
-   * Lookup386: opal_runtime::OriginCaller
+   * Lookup389: opal_runtime::OriginCaller
    **/
   OpalRuntimeOriginCaller: {
     _enum: {
@@ -3251,7 +3254,7 @@
     }
   },
   /**
-   * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+   * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
    **/
   FrameSupportDispatchRawOrigin: {
     _enum: {
@@ -3261,7 +3264,7 @@
     }
   },
   /**
-   * Lookup388: pallet_xcm::pallet::Origin
+   * Lookup391: pallet_xcm::pallet::Origin
    **/
   PalletXcmOrigin: {
     _enum: {
@@ -3270,7 +3273,7 @@
     }
   },
   /**
-   * Lookup389: cumulus_pallet_xcm::pallet::Origin
+   * Lookup392: cumulus_pallet_xcm::pallet::Origin
    **/
   CumulusPalletXcmOrigin: {
     _enum: {
@@ -3279,7 +3282,7 @@
     }
   },
   /**
-   * Lookup390: pallet_ethereum::RawOrigin
+   * Lookup393: pallet_ethereum::RawOrigin
    **/
   PalletEthereumRawOrigin: {
     _enum: {
@@ -3287,17 +3290,17 @@
     }
   },
   /**
-   * Lookup391: sp_core::Void
+   * Lookup394: sp_core::Void
    **/
   SpCoreVoid: 'Null',
   /**
-   * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>
+   * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
    **/
   PalletUniqueSchedulerV2Error: {
     _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
   },
   /**
-   * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -3311,7 +3314,7 @@
     flags: '[u8;1]'
   },
   /**
-   * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipStateAccountId32: {
     _enum: {
@@ -3321,7 +3324,7 @@
     }
   },
   /**
-   * Lookup397: up_data_structs::Properties
+   * Lookup400: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3329,15 +3332,15 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup410: up_data_structs::CollectionStats
+   * Lookup413: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -3345,18 +3348,18 @@
     alive: 'u32'
   },
   /**
-   * Lookup411: up_data_structs::TokenChild
+   * Lookup414: up_data_structs::TokenChild
    **/
   UpDataStructsTokenChild: {
     token: 'u32',
     collection: 'u32'
   },
   /**
-   * Lookup412: PhantomType::up_data_structs<T>
+   * Lookup415: PhantomType::up_data_structs<T>
    **/
   PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
   /**
-   * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     properties: 'Vec<UpDataStructsProperty>',
@@ -3364,7 +3367,7 @@
     pieces: 'u128'
   },
   /**
-   * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -3381,14 +3384,14 @@
     flags: 'UpDataStructsRpcCollectionFlags'
   },
   /**
-   * Lookup417: up_data_structs::RpcCollectionFlags
+   * Lookup420: up_data_structs::RpcCollectionFlags
    **/
   UpDataStructsRpcCollectionFlags: {
     foreign: 'bool',
     erc721metadata: 'bool'
   },
   /**
-   * 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>
+   * 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>
    **/
   RmrkTraitsCollectionCollectionInfo: {
     issuer: 'AccountId32',
@@ -3398,7 +3401,7 @@
     nftsCount: 'u32'
   },
   /**
-   * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsNftNftInfo: {
     owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3408,14 +3411,14 @@
     pending: 'bool'
   },
   /**
-   * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+   * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
    **/
   RmrkTraitsNftRoyaltyInfo: {
     recipient: 'AccountId32',
     amount: 'Permill'
   },
   /**
-   * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceResourceInfo: {
     id: 'u32',
@@ -3424,14 +3427,14 @@
     pendingRemoval: 'bool'
   },
   /**
-   * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPropertyPropertyInfo: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsBaseBaseInfo: {
     issuer: 'AccountId32',
@@ -3439,92 +3442,92 @@
     symbol: 'Bytes'
   },
   /**
-   * Lookup425: rmrk_traits::nft::NftChild
+   * Lookup428: rmrk_traits::nft::NftChild
    **/
   RmrkTraitsNftNftChild: {
     collectionId: 'u32',
     nftId: 'u32'
   },
   /**
-   * Lookup427: pallet_common::pallet::Error<T>
+   * Lookup430: pallet_common::pallet::Error<T>
    **/
   PalletCommonError: {
     _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
   },
   /**
-   * Lookup429: pallet_fungible::pallet::Error<T>
+   * Lookup432: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
   },
   /**
-   * Lookup430: pallet_refungible::ItemData
+   * Lookup433: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
     constData: 'Bytes'
   },
   /**
-   * Lookup435: pallet_refungible::pallet::Error<T>
+   * Lookup438: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup438: up_data_structs::PropertyScope
+   * Lookup441: up_data_structs::PropertyScope
    **/
   UpDataStructsPropertyScope: {
     _enum: ['None', 'Rmrk']
   },
   /**
-   * Lookup440: pallet_nonfungible::pallet::Error<T>
+   * Lookup443: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
   },
   /**
-   * Lookup441: pallet_structure::pallet::Error<T>
+   * Lookup444: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup442: pallet_rmrk_core::pallet::Error<T>
+   * Lookup445: pallet_rmrk_core::pallet::Error<T>
    **/
   PalletRmrkCoreError: {
     _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
   },
   /**
-   * Lookup444: pallet_rmrk_equip::pallet::Error<T>
+   * Lookup447: pallet_rmrk_equip::pallet::Error<T>
    **/
   PalletRmrkEquipError: {
     _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
   },
   /**
-   * Lookup450: pallet_app_promotion::pallet::Error<T>
+   * Lookup453: pallet_app_promotion::pallet::Error<T>
    **/
   PalletAppPromotionError: {
     _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
   },
   /**
-   * Lookup451: pallet_foreign_assets::module::Error<T>
+   * Lookup454: pallet_foreign_assets::module::Error<T>
    **/
   PalletForeignAssetsModuleError: {
     _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
   },
   /**
-   * Lookup453: pallet_evm::pallet::Error<T>
+   * Lookup456: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
   },
   /**
-   * Lookup456: fp_rpc::TransactionStatus
+   * Lookup459: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -3536,11 +3539,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup458: ethbloom::Bloom
+   * Lookup461: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup460: ethereum::receipt::ReceiptV3
+   * Lookup463: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -3550,7 +3553,7 @@
     }
   },
   /**
-   * Lookup461: ethereum::receipt::EIP658ReceiptData
+   * Lookup464: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -3559,7 +3562,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -3567,7 +3570,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup463: ethereum::header::Header
+   * Lookup466: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -3587,23 +3590,23 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup464: ethereum_types::hash::H64
+   * Lookup467: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup469: pallet_ethereum::pallet::Error<T>
+   * Lookup472: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
     _enum: {
@@ -3613,35 +3616,35 @@
     }
   },
   /**
-   * Lookup472: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup475: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
   },
   /**
-   * Lookup479: pallet_evm_migration::pallet::Error<T>
+   * Lookup482: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
   },
   /**
-   * Lookup480: pallet_maintenance::pallet::Error<T>
+   * Lookup483: pallet_maintenance::pallet::Error<T>
    **/
   PalletMaintenanceError: 'Null',
   /**
-   * Lookup481: pallet_test_utils::pallet::Error<T>
+   * Lookup484: pallet_test_utils::pallet::Error<T>
    **/
   PalletTestUtilsError: {
     _enum: ['TestPalletDisabled', 'TriggerRollback']
   },
   /**
-   * Lookup483: sp_runtime::MultiSignature
+   * Lookup486: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -3651,51 +3654,51 @@
     }
   },
   /**
-   * Lookup484: sp_core::ed25519::Signature
+   * Lookup487: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup486: sp_core::sr25519::Signature
+   * Lookup489: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup487: sp_core::ecdsa::Signature
+   * Lookup490: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+   * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>
    **/
   FrameSystemExtensionsCheckTxVersion: 'Null',
   /**
-   * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance
+   * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance
    **/
   OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
   /**
-   * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup499: opal_runtime::Runtime
+   * Lookup502: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
   PalletEthereumFakeTransactionFinalizer: 'Null'
 };
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
2761 readonly asSetMinGasPriceOverride: {2761 readonly asSetMinGasPriceOverride: {
2762 readonly coeff: Option<u64>;2762 readonly coeff: Option<u64>;
2763 } & Struct;2763 } & Struct;
2764 readonly isSetXcmAllowedLocations: boolean;
2765 readonly asSetXcmAllowedLocations: {
2766 readonly locations: Option<Vec<XcmV1MultiLocation>>;
2767 } & Struct;
2764 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2768 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
2765 }2769 }
27662770
2767 /** @name PalletTemplateTransactionPaymentCall (288) */2771 /** @name PalletTemplateTransactionPaymentCall (291) */
2768 type PalletTemplateTransactionPaymentCall = Null;2772 type PalletTemplateTransactionPaymentCall = Null;
27692773
2770 /** @name PalletStructureCall (289) */2774 /** @name PalletStructureCall (292) */
2771 type PalletStructureCall = Null;2775 type PalletStructureCall = Null;
27722776
2773 /** @name PalletRmrkCoreCall (290) */2777 /** @name PalletRmrkCoreCall (293) */
2774 interface PalletRmrkCoreCall extends Enum {2778 interface PalletRmrkCoreCall extends Enum {
2775 readonly isCreateCollection: boolean;2779 readonly isCreateCollection: boolean;
2776 readonly asCreateCollection: {2780 readonly asCreateCollection: {
2876 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2880 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
2877 }2881 }
28782882
2879 /** @name RmrkTraitsResourceResourceTypes (296) */2883 /** @name RmrkTraitsResourceResourceTypes (299) */
2880 interface RmrkTraitsResourceResourceTypes extends Enum {2884 interface RmrkTraitsResourceResourceTypes extends Enum {
2881 readonly isBasic: boolean;2885 readonly isBasic: boolean;
2882 readonly asBasic: RmrkTraitsResourceBasicResource;2886 readonly asBasic: RmrkTraitsResourceBasicResource;
2887 readonly type: 'Basic' | 'Composable' | 'Slot';2891 readonly type: 'Basic' | 'Composable' | 'Slot';
2888 }2892 }
28892893
2890 /** @name RmrkTraitsResourceBasicResource (298) */2894 /** @name RmrkTraitsResourceBasicResource (301) */
2891 interface RmrkTraitsResourceBasicResource extends Struct {2895 interface RmrkTraitsResourceBasicResource extends Struct {
2892 readonly src: Option<Bytes>;2896 readonly src: Option<Bytes>;
2893 readonly metadata: Option<Bytes>;2897 readonly metadata: Option<Bytes>;
2894 readonly license: Option<Bytes>;2898 readonly license: Option<Bytes>;
2895 readonly thumb: Option<Bytes>;2899 readonly thumb: Option<Bytes>;
2896 }2900 }
28972901
2898 /** @name RmrkTraitsResourceComposableResource (300) */2902 /** @name RmrkTraitsResourceComposableResource (303) */
2899 interface RmrkTraitsResourceComposableResource extends Struct {2903 interface RmrkTraitsResourceComposableResource extends Struct {
2900 readonly parts: Vec<u32>;2904 readonly parts: Vec<u32>;
2901 readonly base: u32;2905 readonly base: u32;
2905 readonly thumb: Option<Bytes>;2909 readonly thumb: Option<Bytes>;
2906 }2910 }
29072911
2908 /** @name RmrkTraitsResourceSlotResource (301) */2912 /** @name RmrkTraitsResourceSlotResource (304) */
2909 interface RmrkTraitsResourceSlotResource extends Struct {2913 interface RmrkTraitsResourceSlotResource extends Struct {
2910 readonly base: u32;2914 readonly base: u32;
2911 readonly src: Option<Bytes>;2915 readonly src: Option<Bytes>;
2915 readonly thumb: Option<Bytes>;2919 readonly thumb: Option<Bytes>;
2916 }2920 }
29172921
2918 /** @name PalletRmrkEquipCall (304) */2922 /** @name PalletRmrkEquipCall (307) */
2919 interface PalletRmrkEquipCall extends Enum {2923 interface PalletRmrkEquipCall extends Enum {
2920 readonly isCreateBase: boolean;2924 readonly isCreateBase: boolean;
2921 readonly asCreateBase: {2925 readonly asCreateBase: {
2937 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2941 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
2938 }2942 }
29392943
2940 /** @name RmrkTraitsPartPartType (307) */2944 /** @name RmrkTraitsPartPartType (310) */
2941 interface RmrkTraitsPartPartType extends Enum {2945 interface RmrkTraitsPartPartType extends Enum {
2942 readonly isFixedPart: boolean;2946 readonly isFixedPart: boolean;
2943 readonly asFixedPart: RmrkTraitsPartFixedPart;2947 readonly asFixedPart: RmrkTraitsPartFixedPart;
2946 readonly type: 'FixedPart' | 'SlotPart';2950 readonly type: 'FixedPart' | 'SlotPart';
2947 }2951 }
29482952
2949 /** @name RmrkTraitsPartFixedPart (309) */2953 /** @name RmrkTraitsPartFixedPart (312) */
2950 interface RmrkTraitsPartFixedPart extends Struct {2954 interface RmrkTraitsPartFixedPart extends Struct {
2951 readonly id: u32;2955 readonly id: u32;
2952 readonly z: u32;2956 readonly z: u32;
2953 readonly src: Bytes;2957 readonly src: Bytes;
2954 }2958 }
29552959
2956 /** @name RmrkTraitsPartSlotPart (310) */2960 /** @name RmrkTraitsPartSlotPart (313) */
2957 interface RmrkTraitsPartSlotPart extends Struct {2961 interface RmrkTraitsPartSlotPart extends Struct {
2958 readonly id: u32;2962 readonly id: u32;
2959 readonly equippable: RmrkTraitsPartEquippableList;2963 readonly equippable: RmrkTraitsPartEquippableList;
2960 readonly src: Bytes;2964 readonly src: Bytes;
2961 readonly z: u32;2965 readonly z: u32;
2962 }2966 }
29632967
2964 /** @name RmrkTraitsPartEquippableList (311) */2968 /** @name RmrkTraitsPartEquippableList (314) */
2965 interface RmrkTraitsPartEquippableList extends Enum {2969 interface RmrkTraitsPartEquippableList extends Enum {
2966 readonly isAll: boolean;2970 readonly isAll: boolean;
2967 readonly isEmpty: boolean;2971 readonly isEmpty: boolean;
2970 readonly type: 'All' | 'Empty' | 'Custom';2974 readonly type: 'All' | 'Empty' | 'Custom';
2971 }2975 }
29722976
2973 /** @name RmrkTraitsTheme (313) */2977 /** @name RmrkTraitsTheme (316) */
2974 interface RmrkTraitsTheme extends Struct {2978 interface RmrkTraitsTheme extends Struct {
2975 readonly name: Bytes;2979 readonly name: Bytes;
2976 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2980 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2977 readonly inherit: bool;2981 readonly inherit: bool;
2978 }2982 }
29792983
2980 /** @name RmrkTraitsThemeThemeProperty (315) */2984 /** @name RmrkTraitsThemeThemeProperty (318) */
2981 interface RmrkTraitsThemeThemeProperty extends Struct {2985 interface RmrkTraitsThemeThemeProperty extends Struct {
2982 readonly key: Bytes;2986 readonly key: Bytes;
2983 readonly value: Bytes;2987 readonly value: Bytes;
2984 }2988 }
29852989
2986 /** @name PalletAppPromotionCall (317) */2990 /** @name PalletAppPromotionCall (320) */
2987 interface PalletAppPromotionCall extends Enum {2991 interface PalletAppPromotionCall extends Enum {
2988 readonly isSetAdminAddress: boolean;2992 readonly isSetAdminAddress: boolean;
2989 readonly asSetAdminAddress: {2993 readonly asSetAdminAddress: {
3017 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3021 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
3018 }3022 }
30193023
3020 /** @name PalletForeignAssetsModuleCall (318) */3024 /** @name PalletForeignAssetsModuleCall (321) */
3021 interface PalletForeignAssetsModuleCall extends Enum {3025 interface PalletForeignAssetsModuleCall extends Enum {
3022 readonly isRegisterForeignAsset: boolean;3026 readonly isRegisterForeignAsset: boolean;
3023 readonly asRegisterForeignAsset: {3027 readonly asRegisterForeignAsset: {
3034 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3038 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
3035 }3039 }
30363040
3037 /** @name PalletEvmCall (319) */3041 /** @name PalletEvmCall (322) */
3038 interface PalletEvmCall extends Enum {3042 interface PalletEvmCall extends Enum {
3039 readonly isWithdraw: boolean;3043 readonly isWithdraw: boolean;
3040 readonly asWithdraw: {3044 readonly asWithdraw: {
3079 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3083 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3080 }3084 }
30813085
3082 /** @name PalletEthereumCall (325) */3086 /** @name PalletEthereumCall (328) */
3083 interface PalletEthereumCall extends Enum {3087 interface PalletEthereumCall extends Enum {
3084 readonly isTransact: boolean;3088 readonly isTransact: boolean;
3085 readonly asTransact: {3089 readonly asTransact: {
3088 readonly type: 'Transact';3092 readonly type: 'Transact';
3089 }3093 }
30903094
3091 /** @name EthereumTransactionTransactionV2 (326) */3095 /** @name EthereumTransactionTransactionV2 (329) */
3092 interface EthereumTransactionTransactionV2 extends Enum {3096 interface EthereumTransactionTransactionV2 extends Enum {
3093 readonly isLegacy: boolean;3097 readonly isLegacy: boolean;
3094 readonly asLegacy: EthereumTransactionLegacyTransaction;3098 readonly asLegacy: EthereumTransactionLegacyTransaction;
3099 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3103 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3100 }3104 }
31013105
3102 /** @name EthereumTransactionLegacyTransaction (327) */3106 /** @name EthereumTransactionLegacyTransaction (330) */
3103 interface EthereumTransactionLegacyTransaction extends Struct {3107 interface EthereumTransactionLegacyTransaction extends Struct {
3104 readonly nonce: U256;3108 readonly nonce: U256;
3105 readonly gasPrice: U256;3109 readonly gasPrice: U256;
3110 readonly signature: EthereumTransactionTransactionSignature;3114 readonly signature: EthereumTransactionTransactionSignature;
3111 }3115 }
31123116
3113 /** @name EthereumTransactionTransactionAction (328) */3117 /** @name EthereumTransactionTransactionAction (331) */
3114 interface EthereumTransactionTransactionAction extends Enum {3118 interface EthereumTransactionTransactionAction extends Enum {
3115 readonly isCall: boolean;3119 readonly isCall: boolean;
3116 readonly asCall: H160;3120 readonly asCall: H160;
3117 readonly isCreate: boolean;3121 readonly isCreate: boolean;
3118 readonly type: 'Call' | 'Create';3122 readonly type: 'Call' | 'Create';
3119 }3123 }
31203124
3121 /** @name EthereumTransactionTransactionSignature (329) */3125 /** @name EthereumTransactionTransactionSignature (332) */
3122 interface EthereumTransactionTransactionSignature extends Struct {3126 interface EthereumTransactionTransactionSignature extends Struct {
3123 readonly v: u64;3127 readonly v: u64;
3124 readonly r: H256;3128 readonly r: H256;
3125 readonly s: H256;3129 readonly s: H256;
3126 }3130 }
31273131
3128 /** @name EthereumTransactionEip2930Transaction (331) */3132 /** @name EthereumTransactionEip2930Transaction (334) */
3129 interface EthereumTransactionEip2930Transaction extends Struct {3133 interface EthereumTransactionEip2930Transaction extends Struct {
3130 readonly chainId: u64;3134 readonly chainId: u64;
3131 readonly nonce: U256;3135 readonly nonce: U256;
3140 readonly s: H256;3144 readonly s: H256;
3141 }3145 }
31423146
3143 /** @name EthereumTransactionAccessListItem (333) */3147 /** @name EthereumTransactionAccessListItem (336) */
3144 interface EthereumTransactionAccessListItem extends Struct {3148 interface EthereumTransactionAccessListItem extends Struct {
3145 readonly address: H160;3149 readonly address: H160;
3146 readonly storageKeys: Vec<H256>;3150 readonly storageKeys: Vec<H256>;
3147 }3151 }
31483152
3149 /** @name EthereumTransactionEip1559Transaction (334) */3153 /** @name EthereumTransactionEip1559Transaction (337) */
3150 interface EthereumTransactionEip1559Transaction extends Struct {3154 interface EthereumTransactionEip1559Transaction extends Struct {
3151 readonly chainId: u64;3155 readonly chainId: u64;
3152 readonly nonce: U256;3156 readonly nonce: U256;
3162 readonly s: H256;3166 readonly s: H256;
3163 }3167 }
31643168
3165 /** @name PalletEvmMigrationCall (335) */3169 /** @name PalletEvmMigrationCall (338) */
3166 interface PalletEvmMigrationCall extends Enum {3170 interface PalletEvmMigrationCall extends Enum {
3167 readonly isBegin: boolean;3171 readonly isBegin: boolean;
3168 readonly asBegin: {3172 readonly asBegin: {
3189 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3193 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
3190 }3194 }
31913195
3192 /** @name PalletMaintenanceCall (339) */3196 /** @name PalletMaintenanceCall (342) */
3193 interface PalletMaintenanceCall extends Enum {3197 interface PalletMaintenanceCall extends Enum {
3194 readonly isEnable: boolean;3198 readonly isEnable: boolean;
3195 readonly isDisable: boolean;3199 readonly isDisable: boolean;
3196 readonly type: 'Enable' | 'Disable';3200 readonly type: 'Enable' | 'Disable';
3197 }3201 }
31983202
3199 /** @name PalletTestUtilsCall (340) */3203 /** @name PalletTestUtilsCall (343) */
3200 interface PalletTestUtilsCall extends Enum {3204 interface PalletTestUtilsCall extends Enum {
3201 readonly isEnable: boolean;3205 readonly isEnable: boolean;
3202 readonly isSetTestValue: boolean;3206 readonly isSetTestValue: boolean;
3221 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3225 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
3222 }3226 }
32233227
3224 /** @name PalletSudoError (342) */3228 /** @name PalletSudoError (345) */
3225 interface PalletSudoError extends Enum {3229 interface PalletSudoError extends Enum {
3226 readonly isRequireSudo: boolean;3230 readonly isRequireSudo: boolean;
3227 readonly type: 'RequireSudo';3231 readonly type: 'RequireSudo';
3228 }3232 }
32293233
3230 /** @name OrmlVestingModuleError (344) */3234 /** @name OrmlVestingModuleError (347) */
3231 interface OrmlVestingModuleError extends Enum {3235 interface OrmlVestingModuleError extends Enum {
3232 readonly isZeroVestingPeriod: boolean;3236 readonly isZeroVestingPeriod: boolean;
3233 readonly isZeroVestingPeriodCount: boolean;3237 readonly isZeroVestingPeriodCount: boolean;
3238 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3242 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3239 }3243 }
32403244
3241 /** @name OrmlXtokensModuleError (345) */3245 /** @name OrmlXtokensModuleError (348) */
3242 interface OrmlXtokensModuleError extends Enum {3246 interface OrmlXtokensModuleError extends Enum {
3243 readonly isAssetHasNoReserve: boolean;3247 readonly isAssetHasNoReserve: boolean;
3244 readonly isNotCrossChainTransfer: boolean;3248 readonly isNotCrossChainTransfer: boolean;
3262 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3266 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3263 }3267 }
32643268
3265 /** @name OrmlTokensBalanceLock (348) */3269 /** @name OrmlTokensBalanceLock (351) */
3266 interface OrmlTokensBalanceLock extends Struct {3270 interface OrmlTokensBalanceLock extends Struct {
3267 readonly id: U8aFixed;3271 readonly id: U8aFixed;
3268 readonly amount: u128;3272 readonly amount: u128;
3269 }3273 }
32703274
3271 /** @name OrmlTokensAccountData (350) */3275 /** @name OrmlTokensAccountData (353) */
3272 interface OrmlTokensAccountData extends Struct {3276 interface OrmlTokensAccountData extends Struct {
3273 readonly free: u128;3277 readonly free: u128;
3274 readonly reserved: u128;3278 readonly reserved: u128;
3275 readonly frozen: u128;3279 readonly frozen: u128;
3276 }3280 }
32773281
3278 /** @name OrmlTokensReserveData (352) */3282 /** @name OrmlTokensReserveData (355) */
3279 interface OrmlTokensReserveData extends Struct {3283 interface OrmlTokensReserveData extends Struct {
3280 readonly id: Null;3284 readonly id: Null;
3281 readonly amount: u128;3285 readonly amount: u128;
3282 }3286 }
32833287
3284 /** @name OrmlTokensModuleError (354) */3288 /** @name OrmlTokensModuleError (357) */
3285 interface OrmlTokensModuleError extends Enum {3289 interface OrmlTokensModuleError extends Enum {
3286 readonly isBalanceTooLow: boolean;3290 readonly isBalanceTooLow: boolean;
3287 readonly isAmountIntoBalanceFailed: boolean;3291 readonly isAmountIntoBalanceFailed: boolean;
3294 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3298 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3295 }3299 }
32963300
3297 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3301 /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */
3298 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3302 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3299 readonly sender: u32;3303 readonly sender: u32;
3300 readonly state: CumulusPalletXcmpQueueInboundState;3304 readonly state: CumulusPalletXcmpQueueInboundState;
3301 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3305 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3302 }3306 }
33033307
3304 /** @name CumulusPalletXcmpQueueInboundState (357) */3308 /** @name CumulusPalletXcmpQueueInboundState (360) */
3305 interface CumulusPalletXcmpQueueInboundState extends Enum {3309 interface CumulusPalletXcmpQueueInboundState extends Enum {
3306 readonly isOk: boolean;3310 readonly isOk: boolean;
3307 readonly isSuspended: boolean;3311 readonly isSuspended: boolean;
3308 readonly type: 'Ok' | 'Suspended';3312 readonly type: 'Ok' | 'Suspended';
3309 }3313 }
33103314
3311 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3315 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */
3312 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3316 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3313 readonly isConcatenatedVersionedXcm: boolean;3317 readonly isConcatenatedVersionedXcm: boolean;
3314 readonly isConcatenatedEncodedBlob: boolean;3318 readonly isConcatenatedEncodedBlob: boolean;
3315 readonly isSignals: boolean;3319 readonly isSignals: boolean;
3316 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3320 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3317 }3321 }
33183322
3319 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3323 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */
3320 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3324 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3321 readonly recipient: u32;3325 readonly recipient: u32;
3322 readonly state: CumulusPalletXcmpQueueOutboundState;3326 readonly state: CumulusPalletXcmpQueueOutboundState;
3325 readonly lastIndex: u16;3329 readonly lastIndex: u16;
3326 }3330 }
33273331
3328 /** @name CumulusPalletXcmpQueueOutboundState (364) */3332 /** @name CumulusPalletXcmpQueueOutboundState (367) */
3329 interface CumulusPalletXcmpQueueOutboundState extends Enum {3333 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3330 readonly isOk: boolean;3334 readonly isOk: boolean;
3331 readonly isSuspended: boolean;3335 readonly isSuspended: boolean;
3332 readonly type: 'Ok' | 'Suspended';3336 readonly type: 'Ok' | 'Suspended';
3333 }3337 }
33343338
3335 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3339 /** @name CumulusPalletXcmpQueueQueueConfigData (369) */
3336 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3340 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3337 readonly suspendThreshold: u32;3341 readonly suspendThreshold: u32;
3338 readonly dropThreshold: u32;3342 readonly dropThreshold: u32;
3342 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3346 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
3343 }3347 }
33443348
3345 /** @name CumulusPalletXcmpQueueError (368) */3349 /** @name CumulusPalletXcmpQueueError (371) */
3346 interface CumulusPalletXcmpQueueError extends Enum {3350 interface CumulusPalletXcmpQueueError extends Enum {
3347 readonly isFailedToSend: boolean;3351 readonly isFailedToSend: boolean;
3348 readonly isBadXcmOrigin: boolean;3352 readonly isBadXcmOrigin: boolean;
3352 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3356 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3353 }3357 }
33543358
3355 /** @name PalletXcmError (369) */3359 /** @name PalletXcmError (372) */
3356 interface PalletXcmError extends Enum {3360 interface PalletXcmError extends Enum {
3357 readonly isUnreachable: boolean;3361 readonly isUnreachable: boolean;
3358 readonly isSendFailure: boolean;3362 readonly isSendFailure: boolean;
3370 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3374 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3371 }3375 }
33723376
3373 /** @name CumulusPalletXcmError (370) */3377 /** @name CumulusPalletXcmError (373) */
3374 type CumulusPalletXcmError = Null;3378 type CumulusPalletXcmError = Null;
33753379
3376 /** @name CumulusPalletDmpQueueConfigData (371) */3380 /** @name CumulusPalletDmpQueueConfigData (374) */
3377 interface CumulusPalletDmpQueueConfigData extends Struct {3381 interface CumulusPalletDmpQueueConfigData extends Struct {
3378 readonly maxIndividual: SpWeightsWeightV2Weight;3382 readonly maxIndividual: SpWeightsWeightV2Weight;
3379 }3383 }
33803384
3381 /** @name CumulusPalletDmpQueuePageIndexData (372) */3385 /** @name CumulusPalletDmpQueuePageIndexData (375) */
3382 interface CumulusPalletDmpQueuePageIndexData extends Struct {3386 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3383 readonly beginUsed: u32;3387 readonly beginUsed: u32;
3384 readonly endUsed: u32;3388 readonly endUsed: u32;
3385 readonly overweightCount: u64;3389 readonly overweightCount: u64;
3386 }3390 }
33873391
3388 /** @name CumulusPalletDmpQueueError (375) */3392 /** @name CumulusPalletDmpQueueError (378) */
3389 interface CumulusPalletDmpQueueError extends Enum {3393 interface CumulusPalletDmpQueueError extends Enum {
3390 readonly isUnknown: boolean;3394 readonly isUnknown: boolean;
3391 readonly isOverLimit: boolean;3395 readonly isOverLimit: boolean;
3392 readonly type: 'Unknown' | 'OverLimit';3396 readonly type: 'Unknown' | 'OverLimit';
3393 }3397 }
33943398
3395 /** @name PalletUniqueError (379) */3399 /** @name PalletUniqueError (382) */
3396 interface PalletUniqueError extends Enum {3400 interface PalletUniqueError extends Enum {
3397 readonly isCollectionDecimalPointLimitExceeded: boolean;3401 readonly isCollectionDecimalPointLimitExceeded: boolean;
3398 readonly isEmptyArgument: boolean;3402 readonly isEmptyArgument: boolean;
3399 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3403 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
3400 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3404 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3401 }3405 }
34023406
3403 /** @name PalletUniqueSchedulerV2BlockAgenda (380) */3407 /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
3404 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3408 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
3405 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3409 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
3406 readonly freePlaces: u32;3410 readonly freePlaces: u32;
3407 }3411 }
34083412
3409 /** @name PalletUniqueSchedulerV2Scheduled (383) */3413 /** @name PalletUniqueSchedulerV2Scheduled (386) */
3410 interface PalletUniqueSchedulerV2Scheduled extends Struct {3414 interface PalletUniqueSchedulerV2Scheduled extends Struct {
3411 readonly maybeId: Option<U8aFixed>;3415 readonly maybeId: Option<U8aFixed>;
3412 readonly priority: u8;3416 readonly priority: u8;
3415 readonly origin: OpalRuntimeOriginCaller;3419 readonly origin: OpalRuntimeOriginCaller;
3416 }3420 }
34173421
3418 /** @name PalletUniqueSchedulerV2ScheduledCall (384) */3422 /** @name PalletUniqueSchedulerV2ScheduledCall (387) */
3419 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3423 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
3420 readonly isInline: boolean;3424 readonly isInline: boolean;
3421 readonly asInline: Bytes;3425 readonly asInline: Bytes;
3427 readonly type: 'Inline' | 'PreimageLookup';3431 readonly type: 'Inline' | 'PreimageLookup';
3428 }3432 }
34293433
3430 /** @name OpalRuntimeOriginCaller (386) */3434 /** @name OpalRuntimeOriginCaller (389) */
3431 interface OpalRuntimeOriginCaller extends Enum {3435 interface OpalRuntimeOriginCaller extends Enum {
3432 readonly isSystem: boolean;3436 readonly isSystem: boolean;
3433 readonly asSystem: FrameSupportDispatchRawOrigin;3437 readonly asSystem: FrameSupportDispatchRawOrigin;
3441 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3445 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
3442 }3446 }
34433447
3444 /** @name FrameSupportDispatchRawOrigin (387) */3448 /** @name FrameSupportDispatchRawOrigin (390) */
3445 interface FrameSupportDispatchRawOrigin extends Enum {3449 interface FrameSupportDispatchRawOrigin extends Enum {
3446 readonly isRoot: boolean;3450 readonly isRoot: boolean;
3447 readonly isSigned: boolean;3451 readonly isSigned: boolean;
3450 readonly type: 'Root' | 'Signed' | 'None';3454 readonly type: 'Root' | 'Signed' | 'None';
3451 }3455 }
34523456
3453 /** @name PalletXcmOrigin (388) */3457 /** @name PalletXcmOrigin (391) */
3454 interface PalletXcmOrigin extends Enum {3458 interface PalletXcmOrigin extends Enum {
3455 readonly isXcm: boolean;3459 readonly isXcm: boolean;
3456 readonly asXcm: XcmV1MultiLocation;3460 readonly asXcm: XcmV1MultiLocation;
3459 readonly type: 'Xcm' | 'Response';3463 readonly type: 'Xcm' | 'Response';
3460 }3464 }
34613465
3462 /** @name CumulusPalletXcmOrigin (389) */3466 /** @name CumulusPalletXcmOrigin (392) */
3463 interface CumulusPalletXcmOrigin extends Enum {3467 interface CumulusPalletXcmOrigin extends Enum {
3464 readonly isRelay: boolean;3468 readonly isRelay: boolean;
3465 readonly isSiblingParachain: boolean;3469 readonly isSiblingParachain: boolean;
3466 readonly asSiblingParachain: u32;3470 readonly asSiblingParachain: u32;
3467 readonly type: 'Relay' | 'SiblingParachain';3471 readonly type: 'Relay' | 'SiblingParachain';
3468 }3472 }
34693473
3470 /** @name PalletEthereumRawOrigin (390) */3474 /** @name PalletEthereumRawOrigin (393) */
3471 interface PalletEthereumRawOrigin extends Enum {3475 interface PalletEthereumRawOrigin extends Enum {
3472 readonly isEthereumTransaction: boolean;3476 readonly isEthereumTransaction: boolean;
3473 readonly asEthereumTransaction: H160;3477 readonly asEthereumTransaction: H160;
3474 readonly type: 'EthereumTransaction';3478 readonly type: 'EthereumTransaction';
3475 }3479 }
34763480
3477 /** @name SpCoreVoid (391) */3481 /** @name SpCoreVoid (394) */
3478 type SpCoreVoid = Null;3482 type SpCoreVoid = Null;
34793483
3480 /** @name PalletUniqueSchedulerV2Error (393) */3484 /** @name PalletUniqueSchedulerV2Error (396) */
3481 interface PalletUniqueSchedulerV2Error extends Enum {3485 interface PalletUniqueSchedulerV2Error extends Enum {
3482 readonly isFailedToSchedule: boolean;3486 readonly isFailedToSchedule: boolean;
3483 readonly isAgendaIsExhausted: boolean;3487 readonly isAgendaIsExhausted: boolean;
3490 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3494 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
3491 }3495 }
34923496
3493 /** @name UpDataStructsCollection (394) */3497 /** @name UpDataStructsCollection (397) */
3494 interface UpDataStructsCollection extends Struct {3498 interface UpDataStructsCollection extends Struct {
3495 readonly owner: AccountId32;3499 readonly owner: AccountId32;
3496 readonly mode: UpDataStructsCollectionMode;3500 readonly mode: UpDataStructsCollectionMode;
3503 readonly flags: U8aFixed;3507 readonly flags: U8aFixed;
3504 }3508 }
35053509
3506 /** @name UpDataStructsSponsorshipStateAccountId32 (395) */3510 /** @name UpDataStructsSponsorshipStateAccountId32 (398) */
3507 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3511 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3508 readonly isDisabled: boolean;3512 readonly isDisabled: boolean;
3509 readonly isUnconfirmed: boolean;3513 readonly isUnconfirmed: boolean;
3513 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3517 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3514 }3518 }
35153519
3516 /** @name UpDataStructsProperties (397) */3520 /** @name UpDataStructsProperties (400) */
3517 interface UpDataStructsProperties extends Struct {3521 interface UpDataStructsProperties extends Struct {
3518 readonly map: UpDataStructsPropertiesMapBoundedVec;3522 readonly map: UpDataStructsPropertiesMapBoundedVec;
3519 readonly consumedSpace: u32;3523 readonly consumedSpace: u32;
3520 readonly spaceLimit: u32;3524 readonly spaceLimit: u32;
3521 }3525 }
35223526
3523 /** @name UpDataStructsPropertiesMapBoundedVec (398) */3527 /** @name UpDataStructsPropertiesMapBoundedVec (401) */
3524 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3528 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
35253529
3526 /** @name UpDataStructsPropertiesMapPropertyPermission (403) */3530 /** @name UpDataStructsPropertiesMapPropertyPermission (406) */
3527 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3531 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
35283532
3529 /** @name UpDataStructsCollectionStats (410) */3533 /** @name UpDataStructsCollectionStats (413) */
3530 interface UpDataStructsCollectionStats extends Struct {3534 interface UpDataStructsCollectionStats extends Struct {
3531 readonly created: u32;3535 readonly created: u32;
3532 readonly destroyed: u32;3536 readonly destroyed: u32;
3533 readonly alive: u32;3537 readonly alive: u32;
3534 }3538 }
35353539
3536 /** @name UpDataStructsTokenChild (411) */3540 /** @name UpDataStructsTokenChild (414) */
3537 interface UpDataStructsTokenChild extends Struct {3541 interface UpDataStructsTokenChild extends Struct {
3538 readonly token: u32;3542 readonly token: u32;
3539 readonly collection: u32;3543 readonly collection: u32;
3540 }3544 }
35413545
3542 /** @name PhantomTypeUpDataStructs (412) */3546 /** @name PhantomTypeUpDataStructs (415) */
3543 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3547 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
35443548
3545 /** @name UpDataStructsTokenData (414) */3549 /** @name UpDataStructsTokenData (417) */
3546 interface UpDataStructsTokenData extends Struct {3550 interface UpDataStructsTokenData extends Struct {
3547 readonly properties: Vec<UpDataStructsProperty>;3551 readonly properties: Vec<UpDataStructsProperty>;
3548 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3552 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3549 readonly pieces: u128;3553 readonly pieces: u128;
3550 }3554 }
35513555
3552 /** @name UpDataStructsRpcCollection (416) */3556 /** @name UpDataStructsRpcCollection (419) */
3553 interface UpDataStructsRpcCollection extends Struct {3557 interface UpDataStructsRpcCollection extends Struct {
3554 readonly owner: AccountId32;3558 readonly owner: AccountId32;
3555 readonly mode: UpDataStructsCollectionMode;3559 readonly mode: UpDataStructsCollectionMode;
3565 readonly flags: UpDataStructsRpcCollectionFlags;3569 readonly flags: UpDataStructsRpcCollectionFlags;
3566 }3570 }
35673571
3568 /** @name UpDataStructsRpcCollectionFlags (417) */3572 /** @name UpDataStructsRpcCollectionFlags (420) */
3569 interface UpDataStructsRpcCollectionFlags extends Struct {3573 interface UpDataStructsRpcCollectionFlags extends Struct {
3570 readonly foreign: bool;3574 readonly foreign: bool;
3571 readonly erc721metadata: bool;3575 readonly erc721metadata: bool;
3572 }3576 }
35733577
3574 /** @name RmrkTraitsCollectionCollectionInfo (418) */3578 /** @name RmrkTraitsCollectionCollectionInfo (421) */
3575 interface RmrkTraitsCollectionCollectionInfo extends Struct {3579 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3576 readonly issuer: AccountId32;3580 readonly issuer: AccountId32;
3577 readonly metadata: Bytes;3581 readonly metadata: Bytes;
3580 readonly nftsCount: u32;3584 readonly nftsCount: u32;
3581 }3585 }
35823586
3583 /** @name RmrkTraitsNftNftInfo (419) */3587 /** @name RmrkTraitsNftNftInfo (422) */
3584 interface RmrkTraitsNftNftInfo extends Struct {3588 interface RmrkTraitsNftNftInfo extends Struct {
3585 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3589 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3586 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3590 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3589 readonly pending: bool;3593 readonly pending: bool;
3590 }3594 }
35913595
3592 /** @name RmrkTraitsNftRoyaltyInfo (421) */3596 /** @name RmrkTraitsNftRoyaltyInfo (424) */
3593 interface RmrkTraitsNftRoyaltyInfo extends Struct {3597 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3594 readonly recipient: AccountId32;3598 readonly recipient: AccountId32;
3595 readonly amount: Permill;3599 readonly amount: Permill;
3596 }3600 }
35973601
3598 /** @name RmrkTraitsResourceResourceInfo (422) */3602 /** @name RmrkTraitsResourceResourceInfo (425) */
3599 interface RmrkTraitsResourceResourceInfo extends Struct {3603 interface RmrkTraitsResourceResourceInfo extends Struct {
3600 readonly id: u32;3604 readonly id: u32;
3601 readonly resource: RmrkTraitsResourceResourceTypes;3605 readonly resource: RmrkTraitsResourceResourceTypes;
3602 readonly pending: bool;3606 readonly pending: bool;
3603 readonly pendingRemoval: bool;3607 readonly pendingRemoval: bool;
3604 }3608 }
36053609
3606 /** @name RmrkTraitsPropertyPropertyInfo (423) */3610 /** @name RmrkTraitsPropertyPropertyInfo (426) */
3607 interface RmrkTraitsPropertyPropertyInfo extends Struct {3611 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3608 readonly key: Bytes;3612 readonly key: Bytes;
3609 readonly value: Bytes;3613 readonly value: Bytes;
3610 }3614 }
36113615
3612 /** @name RmrkTraitsBaseBaseInfo (424) */3616 /** @name RmrkTraitsBaseBaseInfo (427) */
3613 interface RmrkTraitsBaseBaseInfo extends Struct {3617 interface RmrkTraitsBaseBaseInfo extends Struct {
3614 readonly issuer: AccountId32;3618 readonly issuer: AccountId32;
3615 readonly baseType: Bytes;3619 readonly baseType: Bytes;
3616 readonly symbol: Bytes;3620 readonly symbol: Bytes;
3617 }3621 }
36183622
3619 /** @name RmrkTraitsNftNftChild (425) */3623 /** @name RmrkTraitsNftNftChild (428) */
3620 interface RmrkTraitsNftNftChild extends Struct {3624 interface RmrkTraitsNftNftChild extends Struct {
3621 readonly collectionId: u32;3625 readonly collectionId: u32;
3622 readonly nftId: u32;3626 readonly nftId: u32;
3623 }3627 }
36243628
3625 /** @name PalletCommonError (427) */3629 /** @name PalletCommonError (430) */
3626 interface PalletCommonError extends Enum {3630 interface PalletCommonError extends Enum {
3627 readonly isCollectionNotFound: boolean;3631 readonly isCollectionNotFound: boolean;
3628 readonly isMustBeTokenOwner: boolean;3632 readonly isMustBeTokenOwner: boolean;
3663 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';3667 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';
3664 }3668 }
36653669
3666 /** @name PalletFungibleError (429) */3670 /** @name PalletFungibleError (432) */
3667 interface PalletFungibleError extends Enum {3671 interface PalletFungibleError extends Enum {
3668 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3672 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3669 readonly isFungibleItemsHaveNoId: boolean;3673 readonly isFungibleItemsHaveNoId: boolean;
3674 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3678 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
3675 }3679 }
36763680
3677 /** @name PalletRefungibleItemData (430) */3681 /** @name PalletRefungibleItemData (433) */
3678 interface PalletRefungibleItemData extends Struct {3682 interface PalletRefungibleItemData extends Struct {
3679 readonly constData: Bytes;3683 readonly constData: Bytes;
3680 }3684 }
36813685
3682 /** @name PalletRefungibleError (435) */3686 /** @name PalletRefungibleError (438) */
3683 interface PalletRefungibleError extends Enum {3687 interface PalletRefungibleError extends Enum {
3684 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3688 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3685 readonly isWrongRefungiblePieces: boolean;3689 readonly isWrongRefungiblePieces: boolean;
3689 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3693 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3690 }3694 }
36913695
3692 /** @name PalletNonfungibleItemData (436) */3696 /** @name PalletNonfungibleItemData (439) */
3693 interface PalletNonfungibleItemData extends Struct {3697 interface PalletNonfungibleItemData extends Struct {
3694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3698 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3695 }3699 }
36963700
3697 /** @name UpDataStructsPropertyScope (438) */3701 /** @name UpDataStructsPropertyScope (441) */
3698 interface UpDataStructsPropertyScope extends Enum {3702 interface UpDataStructsPropertyScope extends Enum {
3699 readonly isNone: boolean;3703 readonly isNone: boolean;
3700 readonly isRmrk: boolean;3704 readonly isRmrk: boolean;
3701 readonly type: 'None' | 'Rmrk';3705 readonly type: 'None' | 'Rmrk';
3702 }3706 }
37033707
3704 /** @name PalletNonfungibleError (440) */3708 /** @name PalletNonfungibleError (443) */
3705 interface PalletNonfungibleError extends Enum {3709 interface PalletNonfungibleError extends Enum {
3706 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3710 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3707 readonly isNonfungibleItemsHaveNoAmount: boolean;3711 readonly isNonfungibleItemsHaveNoAmount: boolean;
3708 readonly isCantBurnNftWithChildren: boolean;3712 readonly isCantBurnNftWithChildren: boolean;
3709 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3713 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3710 }3714 }
37113715
3712 /** @name PalletStructureError (441) */3716 /** @name PalletStructureError (444) */
3713 interface PalletStructureError extends Enum {3717 interface PalletStructureError extends Enum {
3714 readonly isOuroborosDetected: boolean;3718 readonly isOuroborosDetected: boolean;
3715 readonly isDepthLimit: boolean;3719 readonly isDepthLimit: boolean;
3718 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3722 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
3719 }3723 }
37203724
3721 /** @name PalletRmrkCoreError (442) */3725 /** @name PalletRmrkCoreError (445) */
3722 interface PalletRmrkCoreError extends Enum {3726 interface PalletRmrkCoreError extends Enum {
3723 readonly isCorruptedCollectionType: boolean;3727 readonly isCorruptedCollectionType: boolean;
3724 readonly isRmrkPropertyKeyIsTooLong: boolean;3728 readonly isRmrkPropertyKeyIsTooLong: boolean;
3742 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3746 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
3743 }3747 }
37443748
3745 /** @name PalletRmrkEquipError (444) */3749 /** @name PalletRmrkEquipError (447) */
3746 interface PalletRmrkEquipError extends Enum {3750 interface PalletRmrkEquipError extends Enum {
3747 readonly isPermissionError: boolean;3751 readonly isPermissionError: boolean;
3748 readonly isNoAvailableBaseId: boolean;3752 readonly isNoAvailableBaseId: boolean;
3754 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3758 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
3755 }3759 }
37563760
3757 /** @name PalletAppPromotionError (450) */3761 /** @name PalletAppPromotionError (453) */
3758 interface PalletAppPromotionError extends Enum {3762 interface PalletAppPromotionError extends Enum {
3759 readonly isAdminNotSet: boolean;3763 readonly isAdminNotSet: boolean;
3760 readonly isNoPermission: boolean;3764 readonly isNoPermission: boolean;
3765 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3769 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
3766 }3770 }
37673771
3768 /** @name PalletForeignAssetsModuleError (451) */3772 /** @name PalletForeignAssetsModuleError (454) */
3769 interface PalletForeignAssetsModuleError extends Enum {3773 interface PalletForeignAssetsModuleError extends Enum {
3770 readonly isBadLocation: boolean;3774 readonly isBadLocation: boolean;
3771 readonly isMultiLocationExisted: boolean;3775 readonly isMultiLocationExisted: boolean;
3774 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3778 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3775 }3779 }
37763780
3777 /** @name PalletEvmError (453) */3781 /** @name PalletEvmError (456) */
3778 interface PalletEvmError extends Enum {3782 interface PalletEvmError extends Enum {
3779 readonly isBalanceLow: boolean;3783 readonly isBalanceLow: boolean;
3780 readonly isFeeOverflow: boolean;3784 readonly isFeeOverflow: boolean;
3789 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3793 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
3790 }3794 }
37913795
3792 /** @name FpRpcTransactionStatus (456) */3796 /** @name FpRpcTransactionStatus (459) */
3793 interface FpRpcTransactionStatus extends Struct {3797 interface FpRpcTransactionStatus extends Struct {
3794 readonly transactionHash: H256;3798 readonly transactionHash: H256;
3795 readonly transactionIndex: u32;3799 readonly transactionIndex: u32;
3800 readonly logsBloom: EthbloomBloom;3804 readonly logsBloom: EthbloomBloom;
3801 }3805 }
38023806
3803 /** @name EthbloomBloom (458) */3807 /** @name EthbloomBloom (461) */
3804 interface EthbloomBloom extends U8aFixed {}3808 interface EthbloomBloom extends U8aFixed {}
38053809
3806 /** @name EthereumReceiptReceiptV3 (460) */3810 /** @name EthereumReceiptReceiptV3 (463) */
3807 interface EthereumReceiptReceiptV3 extends Enum {3811 interface EthereumReceiptReceiptV3 extends Enum {
3808 readonly isLegacy: boolean;3812 readonly isLegacy: boolean;
3809 readonly asLegacy: EthereumReceiptEip658ReceiptData;3813 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3814 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3818 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3815 }3819 }
38163820
3817 /** @name EthereumReceiptEip658ReceiptData (461) */3821 /** @name EthereumReceiptEip658ReceiptData (464) */
3818 interface EthereumReceiptEip658ReceiptData extends Struct {3822 interface EthereumReceiptEip658ReceiptData extends Struct {
3819 readonly statusCode: u8;3823 readonly statusCode: u8;
3820 readonly usedGas: U256;3824 readonly usedGas: U256;
3821 readonly logsBloom: EthbloomBloom;3825 readonly logsBloom: EthbloomBloom;
3822 readonly logs: Vec<EthereumLog>;3826 readonly logs: Vec<EthereumLog>;
3823 }3827 }
38243828
3825 /** @name EthereumBlock (462) */3829 /** @name EthereumBlock (465) */
3826 interface EthereumBlock extends Struct {3830 interface EthereumBlock extends Struct {
3827 readonly header: EthereumHeader;3831 readonly header: EthereumHeader;
3828 readonly transactions: Vec<EthereumTransactionTransactionV2>;3832 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3829 readonly ommers: Vec<EthereumHeader>;3833 readonly ommers: Vec<EthereumHeader>;
3830 }3834 }
38313835
3832 /** @name EthereumHeader (463) */3836 /** @name EthereumHeader (466) */
3833 interface EthereumHeader extends Struct {3837 interface EthereumHeader extends Struct {
3834 readonly parentHash: H256;3838 readonly parentHash: H256;
3835 readonly ommersHash: H256;3839 readonly ommersHash: H256;
3848 readonly nonce: EthereumTypesHashH64;3852 readonly nonce: EthereumTypesHashH64;
3849 }3853 }
38503854
3851 /** @name EthereumTypesHashH64 (464) */3855 /** @name EthereumTypesHashH64 (467) */
3852 interface EthereumTypesHashH64 extends U8aFixed {}3856 interface EthereumTypesHashH64 extends U8aFixed {}
38533857
3854 /** @name PalletEthereumError (469) */3858 /** @name PalletEthereumError (472) */
3855 interface PalletEthereumError extends Enum {3859 interface PalletEthereumError extends Enum {
3856 readonly isInvalidSignature: boolean;3860 readonly isInvalidSignature: boolean;
3857 readonly isPreLogExists: boolean;3861 readonly isPreLogExists: boolean;
3858 readonly type: 'InvalidSignature' | 'PreLogExists';3862 readonly type: 'InvalidSignature' | 'PreLogExists';
3859 }3863 }
38603864
3861 /** @name PalletEvmCoderSubstrateError (470) */3865 /** @name PalletEvmCoderSubstrateError (473) */
3862 interface PalletEvmCoderSubstrateError extends Enum {3866 interface PalletEvmCoderSubstrateError extends Enum {
3863 readonly isOutOfGas: boolean;3867 readonly isOutOfGas: boolean;
3864 readonly isOutOfFund: boolean;3868 readonly isOutOfFund: boolean;
3865 readonly type: 'OutOfGas' | 'OutOfFund';3869 readonly type: 'OutOfGas' | 'OutOfFund';
3866 }3870 }
38673871
3868 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */3872 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */
3869 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3873 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3870 readonly isDisabled: boolean;3874 readonly isDisabled: boolean;
3871 readonly isUnconfirmed: boolean;3875 readonly isUnconfirmed: boolean;
3875 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3879 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3876 }3880 }
38773881
3878 /** @name PalletEvmContractHelpersSponsoringModeT (472) */3882 /** @name PalletEvmContractHelpersSponsoringModeT (475) */
3879 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3883 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3880 readonly isDisabled: boolean;3884 readonly isDisabled: boolean;
3881 readonly isAllowlisted: boolean;3885 readonly isAllowlisted: boolean;
3882 readonly isGenerous: boolean;3886 readonly isGenerous: boolean;
3883 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3887 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3884 }3888 }
38853889
3886 /** @name PalletEvmContractHelpersError (478) */3890 /** @name PalletEvmContractHelpersError (481) */
3887 interface PalletEvmContractHelpersError extends Enum {3891 interface PalletEvmContractHelpersError extends Enum {
3888 readonly isNoPermission: boolean;3892 readonly isNoPermission: boolean;
3889 readonly isNoPendingSponsor: boolean;3893 readonly isNoPendingSponsor: boolean;
3890 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3894 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
3891 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3895 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
3892 }3896 }
38933897
3894 /** @name PalletEvmMigrationError (479) */3898 /** @name PalletEvmMigrationError (482) */
3895 interface PalletEvmMigrationError extends Enum {3899 interface PalletEvmMigrationError extends Enum {
3896 readonly isAccountNotEmpty: boolean;3900 readonly isAccountNotEmpty: boolean;
3897 readonly isAccountIsNotMigrating: boolean;3901 readonly isAccountIsNotMigrating: boolean;
3898 readonly isBadEvent: boolean;3902 readonly isBadEvent: boolean;
3899 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3903 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
3900 }3904 }
39013905
3902 /** @name PalletMaintenanceError (480) */3906 /** @name PalletMaintenanceError (483) */
3903 type PalletMaintenanceError = Null;3907 type PalletMaintenanceError = Null;
39043908
3905 /** @name PalletTestUtilsError (481) */3909 /** @name PalletTestUtilsError (484) */
3906 interface PalletTestUtilsError extends Enum {3910 interface PalletTestUtilsError extends Enum {
3907 readonly isTestPalletDisabled: boolean;3911 readonly isTestPalletDisabled: boolean;
3908 readonly isTriggerRollback: boolean;3912 readonly isTriggerRollback: boolean;
3909 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3913 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
3910 }3914 }
39113915
3912 /** @name SpRuntimeMultiSignature (483) */3916 /** @name SpRuntimeMultiSignature (486) */
3913 interface SpRuntimeMultiSignature extends Enum {3917 interface SpRuntimeMultiSignature extends Enum {
3914 readonly isEd25519: boolean;3918 readonly isEd25519: boolean;
3915 readonly asEd25519: SpCoreEd25519Signature;3919 readonly asEd25519: SpCoreEd25519Signature;
3920 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3924 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3921 }3925 }
39223926
3923 /** @name SpCoreEd25519Signature (484) */3927 /** @name SpCoreEd25519Signature (487) */
3924 interface SpCoreEd25519Signature extends U8aFixed {}3928 interface SpCoreEd25519Signature extends U8aFixed {}
39253929
3926 /** @name SpCoreSr25519Signature (486) */3930 /** @name SpCoreSr25519Signature (489) */
3927 interface SpCoreSr25519Signature extends U8aFixed {}3931 interface SpCoreSr25519Signature extends U8aFixed {}
39283932
3929 /** @name SpCoreEcdsaSignature (487) */3933 /** @name SpCoreEcdsaSignature (490) */
3930 interface SpCoreEcdsaSignature extends U8aFixed {}3934 interface SpCoreEcdsaSignature extends U8aFixed {}
39313935
3932 /** @name FrameSystemExtensionsCheckSpecVersion (490) */3936 /** @name FrameSystemExtensionsCheckSpecVersion (493) */
3933 type FrameSystemExtensionsCheckSpecVersion = Null;3937 type FrameSystemExtensionsCheckSpecVersion = Null;
39343938
3935 /** @name FrameSystemExtensionsCheckTxVersion (491) */3939 /** @name FrameSystemExtensionsCheckTxVersion (494) */
3936 type FrameSystemExtensionsCheckTxVersion = Null;3940 type FrameSystemExtensionsCheckTxVersion = Null;
39373941
3938 /** @name FrameSystemExtensionsCheckGenesis (492) */3942 /** @name FrameSystemExtensionsCheckGenesis (495) */
3939 type FrameSystemExtensionsCheckGenesis = Null;3943 type FrameSystemExtensionsCheckGenesis = Null;
39403944
3941 /** @name FrameSystemExtensionsCheckNonce (495) */3945 /** @name FrameSystemExtensionsCheckNonce (498) */
3942 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3946 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
39433947
3944 /** @name FrameSystemExtensionsCheckWeight (496) */3948 /** @name FrameSystemExtensionsCheckWeight (499) */
3945 type FrameSystemExtensionsCheckWeight = Null;3949 type FrameSystemExtensionsCheckWeight = Null;
39463950
3947 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */3951 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */
3948 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3952 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
39493953
3950 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */3954 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */
3951 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3955 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
39523956
3953 /** @name OpalRuntimeRuntime (499) */3957 /** @name OpalRuntimeRuntime (502) */
3954 type OpalRuntimeRuntime = Null;3958 type OpalRuntimeRuntime = Null;
39553959
3956 /** @name PalletEthereumFakeTransactionFinalizer (500) */3960 /** @name PalletEthereumFakeTransactionFinalizer (503) */
3957 type PalletEthereumFakeTransactionFinalizer = Null;3961 type PalletEthereumFakeTransactionFinalizer = Null;
39583962
3959} // declare module3963} // declare module