git.delta.rocks / unique-network / refs/commits / 4b5ba1b4c26c

difftreelog

Merge pull request #781 from UniqueNetwork/fix/yarn-lock

ut-akuznetsov2022-12-15parents: #4387b1a #1b92351.patch.diff
in: master

9 files changed

modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -397,6 +397,10 @@
        **/
       FungibleItemsHaveNoId: AugmentedError<ApiType>;
       /**
+       * Only a fungible collection could be possibly broken; any fungible token is valid.
+       **/
+      FungibleTokensAreAlwaysValid: AugmentedError<ApiType>;
+      /**
        * Not Fungible item data used to mint in Fungible collection.
        **/
       NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;
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, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } 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, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfoV1 } 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: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+      instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: 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,13 +426,15 @@
     };
     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<RuntimeDispatchInfo>>;
+      queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
     };
     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, u64 } from '@polkadot/types-codec';
+import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, 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,6 +16,7 @@
 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';
@@ -228,5 +229,20 @@
        **/
       [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
+       **/
+      [key: string]: DecoratedCallBase<ApiType>;
+    };
   } // AugmentedCalls
 } // declare module
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -1475,6 +1475,15 @@
        **/
       removeFromAllowList: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, address: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
       /**
+       * Repairs a broken item
+       * 
+       * # Arguments
+       * 
+       * * `collection_id`: ID of the collection the item belongs to.
+       * * `item_id`: ID of the item.
+       **/
+      repairItem: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+      /**
        * Re-partition a refungible token, while owning all of its parts/pieces.
        * 
        * # Permissions
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, 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 { 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 { 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 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } 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,10 +273,12 @@
     ContractExecResultTo255: ContractExecResultTo255;
     ContractExecResultTo260: ContractExecResultTo260;
     ContractExecResultTo267: ContractExecResultTo267;
+    ContractExecResultU64: ContractExecResultU64;
     ContractInfo: ContractInfo;
     ContractInstantiateResult: ContractInstantiateResult;
     ContractInstantiateResultTo267: ContractInstantiateResultTo267;
     ContractInstantiateResultTo299: ContractInstantiateResultTo299;
+    ContractInstantiateResultU64: ContractInstantiateResultU64;
     ContractLayoutArray: ContractLayoutArray;
     ContractLayoutCell: ContractLayoutCell;
     ContractLayoutEnum: ContractLayoutEnum;
@@ -1057,6 +1059,8 @@
     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
@@ -1611,7 +1611,8 @@
   readonly isFungibleDisallowsNesting: boolean;
   readonly isSettingPropertiesNotAllowed: boolean;
   readonly isSettingAllowanceForAllNotAllowed: boolean;
-  readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
+  readonly isFungibleTokensAreAlwaysValid: boolean;
+  readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
 }
 
 /** @name PalletInflationCall */
@@ -2318,7 +2319,12 @@
     readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;
     readonly approve: bool;
   } & Struct;
-  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';
+  readonly isRepairItem: boolean;
+  readonly asRepairItem: {
+    readonly collectionId: u32;
+    readonly itemId: u32;
+  } & Struct;
+  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'RepairItem';
 }
 
 /** @name PalletUniqueError */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
before · tests/src/interfaces/lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7  /**8   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9   **/10  FrameSystemAccountInfo: {11    nonce: 'u32',12    consumers: 'u32',13    providers: 'u32',14    sufficients: 'u32',15    data: 'PalletBalancesAccountData'16  },17  /**18   * Lookup5: pallet_balances::AccountData<Balance>19   **/20  PalletBalancesAccountData: {21    free: 'u128',22    reserved: 'u128',23    miscFrozen: 'u128',24    feeFrozen: 'u128'25  },26  /**27   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28   **/29  FrameSupportDispatchPerDispatchClassWeight: {30    normal: 'SpWeightsWeightV2Weight',31    operational: 'SpWeightsWeightV2Weight',32    mandatory: 'SpWeightsWeightV2Weight'33  },34  /**35   * Lookup8: sp_weights::weight_v2::Weight36   **/37  SpWeightsWeightV2Weight: {38    refTime: 'Compact<u64>',39    proofSize: 'Compact<u64>'40  },41  /**42   * Lookup13: sp_runtime::generic::digest::Digest43   **/44  SpRuntimeDigest: {45    logs: 'Vec<SpRuntimeDigestDigestItem>'46  },47  /**48   * Lookup15: sp_runtime::generic::digest::DigestItem49   **/50  SpRuntimeDigestDigestItem: {51    _enum: {52      Other: 'Bytes',53      __Unused1: 'Null',54      __Unused2: 'Null',55      __Unused3: 'Null',56      Consensus: '([u8;4],Bytes)',57      Seal: '([u8;4],Bytes)',58      PreRuntime: '([u8;4],Bytes)',59      __Unused7: 'Null',60      RuntimeEnvironmentUpdated: 'Null'61    }62  },63  /**64   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65   **/66  FrameSystemEventRecord: {67    phase: 'FrameSystemPhase',68    event: 'Event',69    topics: 'Vec<H256>'70  },71  /**72   * Lookup20: frame_system::pallet::Event<T>73   **/74  FrameSystemEvent: {75    _enum: {76      ExtrinsicSuccess: {77        dispatchInfo: 'FrameSupportDispatchDispatchInfo',78      },79      ExtrinsicFailed: {80        dispatchError: 'SpRuntimeDispatchError',81        dispatchInfo: 'FrameSupportDispatchDispatchInfo',82      },83      CodeUpdated: 'Null',84      NewAccount: {85        account: 'AccountId32',86      },87      KilledAccount: {88        account: 'AccountId32',89      },90      Remarked: {91        _alias: {92          hash_: 'hash',93        },94        sender: 'AccountId32',95        hash_: 'H256'96      }97    }98  },99  /**100   * Lookup21: frame_support::dispatch::DispatchInfo101   **/102  FrameSupportDispatchDispatchInfo: {103    weight: 'SpWeightsWeightV2Weight',104    class: 'FrameSupportDispatchDispatchClass',105    paysFee: 'FrameSupportDispatchPays'106  },107  /**108   * Lookup22: frame_support::dispatch::DispatchClass109   **/110  FrameSupportDispatchDispatchClass: {111    _enum: ['Normal', 'Operational', 'Mandatory']112  },113  /**114   * Lookup23: frame_support::dispatch::Pays115   **/116  FrameSupportDispatchPays: {117    _enum: ['Yes', 'No']118  },119  /**120   * Lookup24: sp_runtime::DispatchError121   **/122  SpRuntimeDispatchError: {123    _enum: {124      Other: 'Null',125      CannotLookup: 'Null',126      BadOrigin: 'Null',127      Module: 'SpRuntimeModuleError',128      ConsumerRemaining: 'Null',129      NoProviders: 'Null',130      TooManyConsumers: 'Null',131      Token: 'SpRuntimeTokenError',132      Arithmetic: 'SpRuntimeArithmeticError',133      Transactional: 'SpRuntimeTransactionalError',134      Exhausted: 'Null',135      Corruption: 'Null',136      Unavailable: 'Null'137    }138  },139  /**140   * Lookup25: sp_runtime::ModuleError141   **/142  SpRuntimeModuleError: {143    index: 'u8',144    error: '[u8;4]'145  },146  /**147   * Lookup26: sp_runtime::TokenError148   **/149  SpRuntimeTokenError: {150    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151  },152  /**153   * Lookup27: sp_runtime::ArithmeticError154   **/155  SpRuntimeArithmeticError: {156    _enum: ['Underflow', 'Overflow', 'DivisionByZero']157  },158  /**159   * Lookup28: sp_runtime::TransactionalError160   **/161  SpRuntimeTransactionalError: {162    _enum: ['LimitReached', 'NoLayer']163  },164  /**165   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166   **/167  CumulusPalletParachainSystemEvent: {168    _enum: {169      ValidationFunctionStored: 'Null',170      ValidationFunctionApplied: {171        relayChainBlockNum: 'u32',172      },173      ValidationFunctionDiscarded: 'Null',174      UpgradeAuthorized: {175        codeHash: 'H256',176      },177      DownwardMessagesReceived: {178        count: 'u32',179      },180      DownwardMessagesProcessed: {181        weightUsed: 'SpWeightsWeightV2Weight',182        dmqHead: 'H256'183      }184    }185  },186  /**187   * Lookup30: pallet_balances::pallet::Event<T, I>188   **/189  PalletBalancesEvent: {190    _enum: {191      Endowed: {192        account: 'AccountId32',193        freeBalance: 'u128',194      },195      DustLost: {196        account: 'AccountId32',197        amount: 'u128',198      },199      Transfer: {200        from: 'AccountId32',201        to: 'AccountId32',202        amount: 'u128',203      },204      BalanceSet: {205        who: 'AccountId32',206        free: 'u128',207        reserved: 'u128',208      },209      Reserved: {210        who: 'AccountId32',211        amount: 'u128',212      },213      Unreserved: {214        who: 'AccountId32',215        amount: 'u128',216      },217      ReserveRepatriated: {218        from: 'AccountId32',219        to: 'AccountId32',220        amount: 'u128',221        destinationStatus: 'FrameSupportTokensMiscBalanceStatus',222      },223      Deposit: {224        who: 'AccountId32',225        amount: 'u128',226      },227      Withdraw: {228        who: 'AccountId32',229        amount: 'u128',230      },231      Slashed: {232        who: 'AccountId32',233        amount: 'u128'234      }235    }236  },237  /**238   * Lookup31: frame_support::traits::tokens::misc::BalanceStatus239   **/240  FrameSupportTokensMiscBalanceStatus: {241    _enum: ['Free', 'Reserved']242  },243  /**244   * Lookup32: pallet_transaction_payment::pallet::Event<T>245   **/246  PalletTransactionPaymentEvent: {247    _enum: {248      TransactionFeePaid: {249        who: 'AccountId32',250        actualFee: 'u128',251        tip: 'u128'252      }253    }254  },255  /**256   * Lookup33: pallet_treasury::pallet::Event<T, I>257   **/258  PalletTreasuryEvent: {259    _enum: {260      Proposed: {261        proposalIndex: 'u32',262      },263      Spending: {264        budgetRemaining: 'u128',265      },266      Awarded: {267        proposalIndex: 'u32',268        award: 'u128',269        account: 'AccountId32',270      },271      Rejected: {272        proposalIndex: 'u32',273        slashed: 'u128',274      },275      Burnt: {276        burntFunds: 'u128',277      },278      Rollover: {279        rolloverBalance: 'u128',280      },281      Deposit: {282        value: 'u128',283      },284      SpendApproved: {285        proposalIndex: 'u32',286        amount: 'u128',287        beneficiary: 'AccountId32'288      }289    }290  },291  /**292   * Lookup34: pallet_sudo::pallet::Event<T>293   **/294  PalletSudoEvent: {295    _enum: {296      Sudid: {297        sudoResult: 'Result<Null, SpRuntimeDispatchError>',298      },299      KeyChanged: {300        oldSudoer: 'Option<AccountId32>',301      },302      SudoAsDone: {303        sudoResult: 'Result<Null, SpRuntimeDispatchError>'304      }305    }306  },307  /**308   * Lookup38: orml_vesting::module::Event<T>309   **/310  OrmlVestingModuleEvent: {311    _enum: {312      VestingScheduleAdded: {313        from: 'AccountId32',314        to: 'AccountId32',315        vestingSchedule: 'OrmlVestingVestingSchedule',316      },317      Claimed: {318        who: 'AccountId32',319        amount: 'u128',320      },321      VestingSchedulesUpdated: {322        who: 'AccountId32'323      }324    }325  },326  /**327   * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>328   **/329  OrmlVestingVestingSchedule: {330    start: 'u32',331    period: 'u32',332    periodCount: 'u32',333    perPeriod: 'Compact<u128>'334  },335  /**336   * Lookup41: orml_xtokens::module::Event<T>337   **/338  OrmlXtokensModuleEvent: {339    _enum: {340      TransferredMultiAssets: {341        sender: 'AccountId32',342        assets: 'XcmV1MultiassetMultiAssets',343        fee: 'XcmV1MultiAsset',344        dest: 'XcmV1MultiLocation'345      }346    }347  },348  /**349   * Lookup42: xcm::v1::multiasset::MultiAssets350   **/351  XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',352  /**353   * Lookup44: xcm::v1::multiasset::MultiAsset354   **/355  XcmV1MultiAsset: {356    id: 'XcmV1MultiassetAssetId',357    fun: 'XcmV1MultiassetFungibility'358  },359  /**360   * Lookup45: xcm::v1::multiasset::AssetId361   **/362  XcmV1MultiassetAssetId: {363    _enum: {364      Concrete: 'XcmV1MultiLocation',365      Abstract: 'Bytes'366    }367  },368  /**369   * Lookup46: xcm::v1::multilocation::MultiLocation370   **/371  XcmV1MultiLocation: {372    parents: 'u8',373    interior: 'XcmV1MultilocationJunctions'374  },375  /**376   * Lookup47: xcm::v1::multilocation::Junctions377   **/378  XcmV1MultilocationJunctions: {379    _enum: {380      Here: 'Null',381      X1: 'XcmV1Junction',382      X2: '(XcmV1Junction,XcmV1Junction)',383      X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',384      X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',385      X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',386      X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',387      X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',388      X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'389    }390  },391  /**392   * Lookup48: xcm::v1::junction::Junction393   **/394  XcmV1Junction: {395    _enum: {396      Parachain: 'Compact<u32>',397      AccountId32: {398        network: 'XcmV0JunctionNetworkId',399        id: '[u8;32]',400      },401      AccountIndex64: {402        network: 'XcmV0JunctionNetworkId',403        index: 'Compact<u64>',404      },405      AccountKey20: {406        network: 'XcmV0JunctionNetworkId',407        key: '[u8;20]',408      },409      PalletInstance: 'u8',410      GeneralIndex: 'Compact<u128>',411      GeneralKey: 'Bytes',412      OnlyChild: 'Null',413      Plurality: {414        id: 'XcmV0JunctionBodyId',415        part: 'XcmV0JunctionBodyPart'416      }417    }418  },419  /**420   * Lookup50: xcm::v0::junction::NetworkId421   **/422  XcmV0JunctionNetworkId: {423    _enum: {424      Any: 'Null',425      Named: 'Bytes',426      Polkadot: 'Null',427      Kusama: 'Null'428    }429  },430  /**431   * Lookup53: xcm::v0::junction::BodyId432   **/433  XcmV0JunctionBodyId: {434    _enum: {435      Unit: 'Null',436      Named: 'Bytes',437      Index: 'Compact<u32>',438      Executive: 'Null',439      Technical: 'Null',440      Legislative: 'Null',441      Judicial: 'Null'442    }443  },444  /**445   * Lookup54: xcm::v0::junction::BodyPart446   **/447  XcmV0JunctionBodyPart: {448    _enum: {449      Voice: 'Null',450      Members: {451        count: 'Compact<u32>',452      },453      Fraction: {454        nom: 'Compact<u32>',455        denom: 'Compact<u32>',456      },457      AtLeastProportion: {458        nom: 'Compact<u32>',459        denom: 'Compact<u32>',460      },461      MoreThanProportion: {462        nom: 'Compact<u32>',463        denom: 'Compact<u32>'464      }465    }466  },467  /**468   * Lookup55: xcm::v1::multiasset::Fungibility469   **/470  XcmV1MultiassetFungibility: {471    _enum: {472      Fungible: 'Compact<u128>',473      NonFungible: 'XcmV1MultiassetAssetInstance'474    }475  },476  /**477   * Lookup56: xcm::v1::multiasset::AssetInstance478   **/479  XcmV1MultiassetAssetInstance: {480    _enum: {481      Undefined: 'Null',482      Index: 'Compact<u128>',483      Array4: '[u8;4]',484      Array8: '[u8;8]',485      Array16: '[u8;16]',486      Array32: '[u8;32]',487      Blob: 'Bytes'488    }489  },490  /**491   * Lookup59: orml_tokens::module::Event<T>492   **/493  OrmlTokensModuleEvent: {494    _enum: {495      Endowed: {496        currencyId: 'PalletForeignAssetsAssetIds',497        who: 'AccountId32',498        amount: 'u128',499      },500      DustLost: {501        currencyId: 'PalletForeignAssetsAssetIds',502        who: 'AccountId32',503        amount: 'u128',504      },505      Transfer: {506        currencyId: 'PalletForeignAssetsAssetIds',507        from: 'AccountId32',508        to: 'AccountId32',509        amount: 'u128',510      },511      Reserved: {512        currencyId: 'PalletForeignAssetsAssetIds',513        who: 'AccountId32',514        amount: 'u128',515      },516      Unreserved: {517        currencyId: 'PalletForeignAssetsAssetIds',518        who: 'AccountId32',519        amount: 'u128',520      },521      ReserveRepatriated: {522        currencyId: 'PalletForeignAssetsAssetIds',523        from: 'AccountId32',524        to: 'AccountId32',525        amount: 'u128',526        status: 'FrameSupportTokensMiscBalanceStatus',527      },528      BalanceSet: {529        currencyId: 'PalletForeignAssetsAssetIds',530        who: 'AccountId32',531        free: 'u128',532        reserved: 'u128',533      },534      TotalIssuanceSet: {535        currencyId: 'PalletForeignAssetsAssetIds',536        amount: 'u128',537      },538      Withdrawn: {539        currencyId: 'PalletForeignAssetsAssetIds',540        who: 'AccountId32',541        amount: 'u128',542      },543      Slashed: {544        currencyId: 'PalletForeignAssetsAssetIds',545        who: 'AccountId32',546        freeAmount: 'u128',547        reservedAmount: 'u128',548      },549      Deposited: {550        currencyId: 'PalletForeignAssetsAssetIds',551        who: 'AccountId32',552        amount: 'u128',553      },554      LockSet: {555        lockId: '[u8;8]',556        currencyId: 'PalletForeignAssetsAssetIds',557        who: 'AccountId32',558        amount: 'u128',559      },560      LockRemoved: {561        lockId: '[u8;8]',562        currencyId: 'PalletForeignAssetsAssetIds',563        who: 'AccountId32'564      }565    }566  },567  /**568   * Lookup60: pallet_foreign_assets::AssetIds569   **/570  PalletForeignAssetsAssetIds: {571    _enum: {572      ForeignAssetId: 'u32',573      NativeAssetId: 'PalletForeignAssetsNativeCurrency'574    }575  },576  /**577   * Lookup61: pallet_foreign_assets::NativeCurrency578   **/579  PalletForeignAssetsNativeCurrency: {580    _enum: ['Here', 'Parent']581  },582  /**583   * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>584   **/585  CumulusPalletXcmpQueueEvent: {586    _enum: {587      Success: {588        messageHash: 'Option<H256>',589        weight: 'SpWeightsWeightV2Weight',590      },591      Fail: {592        messageHash: 'Option<H256>',593        error: 'XcmV2TraitsError',594        weight: 'SpWeightsWeightV2Weight',595      },596      BadVersion: {597        messageHash: 'Option<H256>',598      },599      BadFormat: {600        messageHash: 'Option<H256>',601      },602      UpwardMessageSent: {603        messageHash: 'Option<H256>',604      },605      XcmpMessageSent: {606        messageHash: 'Option<H256>',607      },608      OverweightEnqueued: {609        sender: 'u32',610        sentAt: 'u32',611        index: 'u64',612        required: 'SpWeightsWeightV2Weight',613      },614      OverweightServiced: {615        index: 'u64',616        used: 'SpWeightsWeightV2Weight'617      }618    }619  },620  /**621   * Lookup64: xcm::v2::traits::Error622   **/623  XcmV2TraitsError: {624    _enum: {625      Overflow: 'Null',626      Unimplemented: 'Null',627      UntrustedReserveLocation: 'Null',628      UntrustedTeleportLocation: 'Null',629      MultiLocationFull: 'Null',630      MultiLocationNotInvertible: 'Null',631      BadOrigin: 'Null',632      InvalidLocation: 'Null',633      AssetNotFound: 'Null',634      FailedToTransactAsset: 'Null',635      NotWithdrawable: 'Null',636      LocationCannotHold: 'Null',637      ExceedsMaxMessageSize: 'Null',638      DestinationUnsupported: 'Null',639      Transport: 'Null',640      Unroutable: 'Null',641      UnknownClaim: 'Null',642      FailedToDecode: 'Null',643      MaxWeightInvalid: 'Null',644      NotHoldingFees: 'Null',645      TooExpensive: 'Null',646      Trap: 'u64',647      UnhandledXcmVersion: 'Null',648      WeightLimitReached: 'u64',649      Barrier: 'Null',650      WeightNotComputable: 'Null'651    }652  },653  /**654   * Lookup66: pallet_xcm::pallet::Event<T>655   **/656  PalletXcmEvent: {657    _enum: {658      Attempted: 'XcmV2TraitsOutcome',659      Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',660      UnexpectedResponse: '(XcmV1MultiLocation,u64)',661      ResponseReady: '(u64,XcmV2Response)',662      Notified: '(u64,u8,u8)',663      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',664      NotifyDispatchError: '(u64,u8,u8)',665      NotifyDecodeFailed: '(u64,u8,u8)',666      InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',667      InvalidResponderVersion: '(XcmV1MultiLocation,u64)',668      ResponseTaken: 'u64',669      AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',670      VersionChangeNotified: '(XcmV1MultiLocation,u32)',671      SupportedVersionChanged: '(XcmV1MultiLocation,u32)',672      NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',673      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',674      AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'675    }676  },677  /**678   * Lookup67: xcm::v2::traits::Outcome679   **/680  XcmV2TraitsOutcome: {681    _enum: {682      Complete: 'u64',683      Incomplete: '(u64,XcmV2TraitsError)',684      Error: 'XcmV2TraitsError'685    }686  },687  /**688   * Lookup68: xcm::v2::Xcm<RuntimeCall>689   **/690  XcmV2Xcm: 'Vec<XcmV2Instruction>',691  /**692   * Lookup70: xcm::v2::Instruction<RuntimeCall>693   **/694  XcmV2Instruction: {695    _enum: {696      WithdrawAsset: 'XcmV1MultiassetMultiAssets',697      ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',698      ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',699      QueryResponse: {700        queryId: 'Compact<u64>',701        response: 'XcmV2Response',702        maxWeight: 'Compact<u64>',703      },704      TransferAsset: {705        assets: 'XcmV1MultiassetMultiAssets',706        beneficiary: 'XcmV1MultiLocation',707      },708      TransferReserveAsset: {709        assets: 'XcmV1MultiassetMultiAssets',710        dest: 'XcmV1MultiLocation',711        xcm: 'XcmV2Xcm',712      },713      Transact: {714        originType: 'XcmV0OriginKind',715        requireWeightAtMost: 'Compact<u64>',716        call: 'XcmDoubleEncoded',717      },718      HrmpNewChannelOpenRequest: {719        sender: 'Compact<u32>',720        maxMessageSize: 'Compact<u32>',721        maxCapacity: 'Compact<u32>',722      },723      HrmpChannelAccepted: {724        recipient: 'Compact<u32>',725      },726      HrmpChannelClosing: {727        initiator: 'Compact<u32>',728        sender: 'Compact<u32>',729        recipient: 'Compact<u32>',730      },731      ClearOrigin: 'Null',732      DescendOrigin: 'XcmV1MultilocationJunctions',733      ReportError: {734        queryId: 'Compact<u64>',735        dest: 'XcmV1MultiLocation',736        maxResponseWeight: 'Compact<u64>',737      },738      DepositAsset: {739        assets: 'XcmV1MultiassetMultiAssetFilter',740        maxAssets: 'Compact<u32>',741        beneficiary: 'XcmV1MultiLocation',742      },743      DepositReserveAsset: {744        assets: 'XcmV1MultiassetMultiAssetFilter',745        maxAssets: 'Compact<u32>',746        dest: 'XcmV1MultiLocation',747        xcm: 'XcmV2Xcm',748      },749      ExchangeAsset: {750        give: 'XcmV1MultiassetMultiAssetFilter',751        receive: 'XcmV1MultiassetMultiAssets',752      },753      InitiateReserveWithdraw: {754        assets: 'XcmV1MultiassetMultiAssetFilter',755        reserve: 'XcmV1MultiLocation',756        xcm: 'XcmV2Xcm',757      },758      InitiateTeleport: {759        assets: 'XcmV1MultiassetMultiAssetFilter',760        dest: 'XcmV1MultiLocation',761        xcm: 'XcmV2Xcm',762      },763      QueryHolding: {764        queryId: 'Compact<u64>',765        dest: 'XcmV1MultiLocation',766        assets: 'XcmV1MultiassetMultiAssetFilter',767        maxResponseWeight: 'Compact<u64>',768      },769      BuyExecution: {770        fees: 'XcmV1MultiAsset',771        weightLimit: 'XcmV2WeightLimit',772      },773      RefundSurplus: 'Null',774      SetErrorHandler: 'XcmV2Xcm',775      SetAppendix: 'XcmV2Xcm',776      ClearError: 'Null',777      ClaimAsset: {778        assets: 'XcmV1MultiassetMultiAssets',779        ticket: 'XcmV1MultiLocation',780      },781      Trap: 'Compact<u64>',782      SubscribeVersion: {783        queryId: 'Compact<u64>',784        maxResponseWeight: 'Compact<u64>',785      },786      UnsubscribeVersion: 'Null'787    }788  },789  /**790   * Lookup71: xcm::v2::Response791   **/792  XcmV2Response: {793    _enum: {794      Null: 'Null',795      Assets: 'XcmV1MultiassetMultiAssets',796      ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',797      Version: 'u32'798    }799  },800  /**801   * Lookup74: xcm::v0::OriginKind802   **/803  XcmV0OriginKind: {804    _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']805  },806  /**807   * Lookup75: xcm::double_encoded::DoubleEncoded<T>808   **/809  XcmDoubleEncoded: {810    encoded: 'Bytes'811  },812  /**813   * Lookup76: xcm::v1::multiasset::MultiAssetFilter814   **/815  XcmV1MultiassetMultiAssetFilter: {816    _enum: {817      Definite: 'XcmV1MultiassetMultiAssets',818      Wild: 'XcmV1MultiassetWildMultiAsset'819    }820  },821  /**822   * Lookup77: xcm::v1::multiasset::WildMultiAsset823   **/824  XcmV1MultiassetWildMultiAsset: {825    _enum: {826      All: 'Null',827      AllOf: {828        id: 'XcmV1MultiassetAssetId',829        fun: 'XcmV1MultiassetWildFungibility'830      }831    }832  },833  /**834   * Lookup78: xcm::v1::multiasset::WildFungibility835   **/836  XcmV1MultiassetWildFungibility: {837    _enum: ['Fungible', 'NonFungible']838  },839  /**840   * Lookup79: xcm::v2::WeightLimit841   **/842  XcmV2WeightLimit: {843    _enum: {844      Unlimited: 'Null',845      Limited: 'Compact<u64>'846    }847  },848  /**849   * Lookup81: xcm::VersionedMultiAssets850   **/851  XcmVersionedMultiAssets: {852    _enum: {853      V0: 'Vec<XcmV0MultiAsset>',854      V1: 'XcmV1MultiassetMultiAssets'855    }856  },857  /**858   * Lookup83: xcm::v0::multi_asset::MultiAsset859   **/860  XcmV0MultiAsset: {861    _enum: {862      None: 'Null',863      All: 'Null',864      AllFungible: 'Null',865      AllNonFungible: 'Null',866      AllAbstractFungible: {867        id: 'Bytes',868      },869      AllAbstractNonFungible: {870        class: 'Bytes',871      },872      AllConcreteFungible: {873        id: 'XcmV0MultiLocation',874      },875      AllConcreteNonFungible: {876        class: 'XcmV0MultiLocation',877      },878      AbstractFungible: {879        id: 'Bytes',880        amount: 'Compact<u128>',881      },882      AbstractNonFungible: {883        class: 'Bytes',884        instance: 'XcmV1MultiassetAssetInstance',885      },886      ConcreteFungible: {887        id: 'XcmV0MultiLocation',888        amount: 'Compact<u128>',889      },890      ConcreteNonFungible: {891        class: 'XcmV0MultiLocation',892        instance: 'XcmV1MultiassetAssetInstance'893      }894    }895  },896  /**897   * Lookup84: xcm::v0::multi_location::MultiLocation898   **/899  XcmV0MultiLocation: {900    _enum: {901      Null: 'Null',902      X1: 'XcmV0Junction',903      X2: '(XcmV0Junction,XcmV0Junction)',904      X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',905      X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',906      X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',907      X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',908      X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',909      X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'910    }911  },912  /**913   * Lookup85: xcm::v0::junction::Junction914   **/915  XcmV0Junction: {916    _enum: {917      Parent: 'Null',918      Parachain: 'Compact<u32>',919      AccountId32: {920        network: 'XcmV0JunctionNetworkId',921        id: '[u8;32]',922      },923      AccountIndex64: {924        network: 'XcmV0JunctionNetworkId',925        index: 'Compact<u64>',926      },927      AccountKey20: {928        network: 'XcmV0JunctionNetworkId',929        key: '[u8;20]',930      },931      PalletInstance: 'u8',932      GeneralIndex: 'Compact<u128>',933      GeneralKey: 'Bytes',934      OnlyChild: 'Null',935      Plurality: {936        id: 'XcmV0JunctionBodyId',937        part: 'XcmV0JunctionBodyPart'938      }939    }940  },941  /**942   * Lookup86: xcm::VersionedMultiLocation943   **/944  XcmVersionedMultiLocation: {945    _enum: {946      V0: 'XcmV0MultiLocation',947      V1: 'XcmV1MultiLocation'948    }949  },950  /**951   * Lookup87: cumulus_pallet_xcm::pallet::Event<T>952   **/953  CumulusPalletXcmEvent: {954    _enum: {955      InvalidFormat: '[u8;8]',956      UnsupportedVersion: '[u8;8]',957      ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'958    }959  },960  /**961   * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>962   **/963  CumulusPalletDmpQueueEvent: {964    _enum: {965      InvalidFormat: {966        messageId: '[u8;32]',967      },968      UnsupportedVersion: {969        messageId: '[u8;32]',970      },971      ExecutedDownward: {972        messageId: '[u8;32]',973        outcome: 'XcmV2TraitsOutcome',974      },975      WeightExhausted: {976        messageId: '[u8;32]',977        remainingWeight: 'SpWeightsWeightV2Weight',978        requiredWeight: 'SpWeightsWeightV2Weight',979      },980      OverweightEnqueued: {981        messageId: '[u8;32]',982        overweightIndex: 'u64',983        requiredWeight: 'SpWeightsWeightV2Weight',984      },985      OverweightServiced: {986        overweightIndex: 'u64',987        weightUsed: 'SpWeightsWeightV2Weight'988      }989    }990  },991  /**992   * Lookup89: pallet_common::pallet::Event<T>993   **/994  PalletCommonEvent: {995    _enum: {996      CollectionCreated: '(u32,u8,AccountId32)',997      CollectionDestroyed: 'u32',998      ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',999      ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1000      Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1001      Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1002      ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1003      CollectionPropertySet: '(u32,Bytes)',1004      CollectionPropertyDeleted: '(u32,Bytes)',1005      TokenPropertySet: '(u32,u32,Bytes)',1006      TokenPropertyDeleted: '(u32,u32,Bytes)',1007      PropertyPermissionSet: '(u32,Bytes)',1008      AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1009      AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1010      CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1011      CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1012      CollectionLimitSet: 'u32',1013      CollectionOwnerChanged: '(u32,AccountId32)',1014      CollectionPermissionSet: 'u32',1015      CollectionSponsorSet: '(u32,AccountId32)',1016      SponsorshipConfirmed: '(u32,AccountId32)',1017      CollectionSponsorRemoved: 'u32'1018    }1019  },1020  /**1021   * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1022   **/1023  PalletEvmAccountBasicCrossAccountIdRepr: {1024    _enum: {1025      Substrate: 'AccountId32',1026      Ethereum: 'H160'1027    }1028  },1029  /**1030   * Lookup96: pallet_structure::pallet::Event<T>1031   **/1032  PalletStructureEvent: {1033    _enum: {1034      Executed: 'Result<Null, SpRuntimeDispatchError>'1035    }1036  },1037  /**1038   * Lookup97: pallet_rmrk_core::pallet::Event<T>1039   **/1040  PalletRmrkCoreEvent: {1041    _enum: {1042      CollectionCreated: {1043        issuer: 'AccountId32',1044        collectionId: 'u32',1045      },1046      CollectionDestroyed: {1047        issuer: 'AccountId32',1048        collectionId: 'u32',1049      },1050      IssuerChanged: {1051        oldIssuer: 'AccountId32',1052        newIssuer: 'AccountId32',1053        collectionId: 'u32',1054      },1055      CollectionLocked: {1056        issuer: 'AccountId32',1057        collectionId: 'u32',1058      },1059      NftMinted: {1060        owner: 'AccountId32',1061        collectionId: 'u32',1062        nftId: 'u32',1063      },1064      NFTBurned: {1065        owner: 'AccountId32',1066        nftId: 'u32',1067      },1068      NFTSent: {1069        sender: 'AccountId32',1070        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1071        collectionId: 'u32',1072        nftId: 'u32',1073        approvalRequired: 'bool',1074      },1075      NFTAccepted: {1076        sender: 'AccountId32',1077        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1078        collectionId: 'u32',1079        nftId: 'u32',1080      },1081      NFTRejected: {1082        sender: 'AccountId32',1083        collectionId: 'u32',1084        nftId: 'u32',1085      },1086      PropertySet: {1087        collectionId: 'u32',1088        maybeNftId: 'Option<u32>',1089        key: 'Bytes',1090        value: 'Bytes',1091      },1092      ResourceAdded: {1093        nftId: 'u32',1094        resourceId: 'u32',1095      },1096      ResourceRemoval: {1097        nftId: 'u32',1098        resourceId: 'u32',1099      },1100      ResourceAccepted: {1101        nftId: 'u32',1102        resourceId: 'u32',1103      },1104      ResourceRemovalAccepted: {1105        nftId: 'u32',1106        resourceId: 'u32',1107      },1108      PrioritySet: {1109        collectionId: 'u32',1110        nftId: 'u32'1111      }1112    }1113  },1114  /**1115   * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1116   **/1117  RmrkTraitsNftAccountIdOrCollectionNftTuple: {1118    _enum: {1119      AccountId: 'AccountId32',1120      CollectionAndNftTuple: '(u32,u32)'1121    }1122  },1123  /**1124   * Lookup102: pallet_rmrk_equip::pallet::Event<T>1125   **/1126  PalletRmrkEquipEvent: {1127    _enum: {1128      BaseCreated: {1129        issuer: 'AccountId32',1130        baseId: 'u32',1131      },1132      EquippablesUpdated: {1133        baseId: 'u32',1134        slotId: 'u32'1135      }1136    }1137  },1138  /**1139   * Lookup103: pallet_app_promotion::pallet::Event<T>1140   **/1141  PalletAppPromotionEvent: {1142    _enum: {1143      StakingRecalculation: '(AccountId32,u128,u128)',1144      Stake: '(AccountId32,u128)',1145      Unstake: '(AccountId32,u128)',1146      SetAdmin: 'AccountId32'1147    }1148  },1149  /**1150   * Lookup104: pallet_foreign_assets::module::Event<T>1151   **/1152  PalletForeignAssetsModuleEvent: {1153    _enum: {1154      ForeignAssetRegistered: {1155        assetId: 'u32',1156        assetAddress: 'XcmV1MultiLocation',1157        metadata: 'PalletForeignAssetsModuleAssetMetadata',1158      },1159      ForeignAssetUpdated: {1160        assetId: 'u32',1161        assetAddress: 'XcmV1MultiLocation',1162        metadata: 'PalletForeignAssetsModuleAssetMetadata',1163      },1164      AssetRegistered: {1165        assetId: 'PalletForeignAssetsAssetIds',1166        metadata: 'PalletForeignAssetsModuleAssetMetadata',1167      },1168      AssetUpdated: {1169        assetId: 'PalletForeignAssetsAssetIds',1170        metadata: 'PalletForeignAssetsModuleAssetMetadata'1171      }1172    }1173  },1174  /**1175   * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>1176   **/1177  PalletForeignAssetsModuleAssetMetadata: {1178    name: 'Bytes',1179    symbol: 'Bytes',1180    decimals: 'u8',1181    minimalBalance: 'u128'1182  },1183  /**1184   * Lookup106: pallet_evm::pallet::Event<T>1185   **/1186  PalletEvmEvent: {1187    _enum: {1188      Log: {1189        log: 'EthereumLog',1190      },1191      Created: {1192        address: 'H160',1193      },1194      CreatedFailed: {1195        address: 'H160',1196      },1197      Executed: {1198        address: 'H160',1199      },1200      ExecutedFailed: {1201        address: 'H160'1202      }1203    }1204  },1205  /**1206   * Lookup107: ethereum::log::Log1207   **/1208  EthereumLog: {1209    address: 'H160',1210    topics: 'Vec<H256>',1211    data: 'Bytes'1212  },1213  /**1214   * Lookup109: pallet_ethereum::pallet::Event1215   **/1216  PalletEthereumEvent: {1217    _enum: {1218      Executed: {1219        from: 'H160',1220        to: 'H160',1221        transactionHash: 'H256',1222        exitReason: 'EvmCoreErrorExitReason'1223      }1224    }1225  },1226  /**1227   * Lookup110: evm_core::error::ExitReason1228   **/1229  EvmCoreErrorExitReason: {1230    _enum: {1231      Succeed: 'EvmCoreErrorExitSucceed',1232      Error: 'EvmCoreErrorExitError',1233      Revert: 'EvmCoreErrorExitRevert',1234      Fatal: 'EvmCoreErrorExitFatal'1235    }1236  },1237  /**1238   * Lookup111: evm_core::error::ExitSucceed1239   **/1240  EvmCoreErrorExitSucceed: {1241    _enum: ['Stopped', 'Returned', 'Suicided']1242  },1243  /**1244   * Lookup112: evm_core::error::ExitError1245   **/1246  EvmCoreErrorExitError: {1247    _enum: {1248      StackUnderflow: 'Null',1249      StackOverflow: 'Null',1250      InvalidJump: 'Null',1251      InvalidRange: 'Null',1252      DesignatedInvalid: 'Null',1253      CallTooDeep: 'Null',1254      CreateCollision: 'Null',1255      CreateContractLimit: 'Null',1256      OutOfOffset: 'Null',1257      OutOfGas: 'Null',1258      OutOfFund: 'Null',1259      PCUnderflow: 'Null',1260      CreateEmpty: 'Null',1261      Other: 'Text',1262      InvalidCode: 'Null'1263    }1264  },1265  /**1266   * Lookup115: evm_core::error::ExitRevert1267   **/1268  EvmCoreErrorExitRevert: {1269    _enum: ['Reverted']1270  },1271  /**1272   * Lookup116: evm_core::error::ExitFatal1273   **/1274  EvmCoreErrorExitFatal: {1275    _enum: {1276      NotSupported: 'Null',1277      UnhandledInterrupt: 'Null',1278      CallErrorAsFatal: 'EvmCoreErrorExitError',1279      Other: 'Text'1280    }1281  },1282  /**1283   * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>1284   **/1285  PalletEvmContractHelpersEvent: {1286    _enum: {1287      ContractSponsorSet: '(H160,AccountId32)',1288      ContractSponsorshipConfirmed: '(H160,AccountId32)',1289      ContractSponsorRemoved: 'H160'1290    }1291  },1292  /**1293   * Lookup118: pallet_evm_migration::pallet::Event<T>1294   **/1295  PalletEvmMigrationEvent: {1296    _enum: ['TestEvent']1297  },1298  /**1299   * Lookup119: pallet_maintenance::pallet::Event<T>1300   **/1301  PalletMaintenanceEvent: {1302    _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1303  },1304  /**1305   * Lookup120: pallet_test_utils::pallet::Event<T>1306   **/1307  PalletTestUtilsEvent: {1308    _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1309  },1310  /**1311   * Lookup121: frame_system::Phase1312   **/1313  FrameSystemPhase: {1314    _enum: {1315      ApplyExtrinsic: 'u32',1316      Finalization: 'Null',1317      Initialization: 'Null'1318    }1319  },1320  /**1321   * Lookup124: frame_system::LastRuntimeUpgradeInfo1322   **/1323  FrameSystemLastRuntimeUpgradeInfo: {1324    specVersion: 'Compact<u32>',1325    specName: 'Text'1326  },1327  /**1328   * Lookup125: frame_system::pallet::Call<T>1329   **/1330  FrameSystemCall: {1331    _enum: {1332      fill_block: {1333        ratio: 'Perbill',1334      },1335      remark: {1336        remark: 'Bytes',1337      },1338      set_heap_pages: {1339        pages: 'u64',1340      },1341      set_code: {1342        code: 'Bytes',1343      },1344      set_code_without_checks: {1345        code: 'Bytes',1346      },1347      set_storage: {1348        items: 'Vec<(Bytes,Bytes)>',1349      },1350      kill_storage: {1351        _alias: {1352          keys_: 'keys',1353        },1354        keys_: 'Vec<Bytes>',1355      },1356      kill_prefix: {1357        prefix: 'Bytes',1358        subkeys: 'u32',1359      },1360      remark_with_event: {1361        remark: 'Bytes'1362      }1363    }1364  },1365  /**1366   * Lookup130: frame_system::limits::BlockWeights1367   **/1368  FrameSystemLimitsBlockWeights: {1369    baseBlock: 'SpWeightsWeightV2Weight',1370    maxBlock: 'SpWeightsWeightV2Weight',1371    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1372  },1373  /**1374   * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1375   **/1376  FrameSupportDispatchPerDispatchClassWeightsPerClass: {1377    normal: 'FrameSystemLimitsWeightsPerClass',1378    operational: 'FrameSystemLimitsWeightsPerClass',1379    mandatory: 'FrameSystemLimitsWeightsPerClass'1380  },1381  /**1382   * Lookup132: frame_system::limits::WeightsPerClass1383   **/1384  FrameSystemLimitsWeightsPerClass: {1385    baseExtrinsic: 'SpWeightsWeightV2Weight',1386    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1387    maxTotal: 'Option<SpWeightsWeightV2Weight>',1388    reserved: 'Option<SpWeightsWeightV2Weight>'1389  },1390  /**1391   * Lookup134: frame_system::limits::BlockLength1392   **/1393  FrameSystemLimitsBlockLength: {1394    max: 'FrameSupportDispatchPerDispatchClassU32'1395  },1396  /**1397   * Lookup135: frame_support::dispatch::PerDispatchClass<T>1398   **/1399  FrameSupportDispatchPerDispatchClassU32: {1400    normal: 'u32',1401    operational: 'u32',1402    mandatory: 'u32'1403  },1404  /**1405   * Lookup136: sp_weights::RuntimeDbWeight1406   **/1407  SpWeightsRuntimeDbWeight: {1408    read: 'u64',1409    write: 'u64'1410  },1411  /**1412   * Lookup137: sp_version::RuntimeVersion1413   **/1414  SpVersionRuntimeVersion: {1415    specName: 'Text',1416    implName: 'Text',1417    authoringVersion: 'u32',1418    specVersion: 'u32',1419    implVersion: 'u32',1420    apis: 'Vec<([u8;8],u32)>',1421    transactionVersion: 'u32',1422    stateVersion: 'u8'1423  },1424  /**1425   * Lookup142: frame_system::pallet::Error<T>1426   **/1427  FrameSystemError: {1428    _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1429  },1430  /**1431   * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1432   **/1433  PolkadotPrimitivesV2PersistedValidationData: {1434    parentHead: 'Bytes',1435    relayParentNumber: 'u32',1436    relayParentStorageRoot: 'H256',1437    maxPovSize: 'u32'1438  },1439  /**1440   * Lookup146: polkadot_primitives::v2::UpgradeRestriction1441   **/1442  PolkadotPrimitivesV2UpgradeRestriction: {1443    _enum: ['Present']1444  },1445  /**1446   * Lookup147: sp_trie::storage_proof::StorageProof1447   **/1448  SpTrieStorageProof: {1449    trieNodes: 'BTreeSet<Bytes>'1450  },1451  /**1452   * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1453   **/1454  CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1455    dmqMqcHead: 'H256',1456    relayDispatchQueueSize: '(u32,u32)',1457    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1458    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1459  },1460  /**1461   * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel1462   **/1463  PolkadotPrimitivesV2AbridgedHrmpChannel: {1464    maxCapacity: 'u32',1465    maxTotalSize: 'u32',1466    maxMessageSize: 'u32',1467    msgCount: 'u32',1468    totalSize: 'u32',1469    mqcHead: 'Option<H256>'1470  },1471  /**1472   * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration1473   **/1474  PolkadotPrimitivesV2AbridgedHostConfiguration: {1475    maxCodeSize: 'u32',1476    maxHeadDataSize: 'u32',1477    maxUpwardQueueCount: 'u32',1478    maxUpwardQueueSize: 'u32',1479    maxUpwardMessageSize: 'u32',1480    maxUpwardMessageNumPerCandidate: 'u32',1481    hrmpMaxMessageNumPerCandidate: 'u32',1482    validationUpgradeCooldown: 'u32',1483    validationUpgradeDelay: 'u32'1484  },1485  /**1486   * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1487   **/1488  PolkadotCorePrimitivesOutboundHrmpMessage: {1489    recipient: 'u32',1490    data: 'Bytes'1491  },1492  /**1493   * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>1494   **/1495  CumulusPalletParachainSystemCall: {1496    _enum: {1497      set_validation_data: {1498        data: 'CumulusPrimitivesParachainInherentParachainInherentData',1499      },1500      sudo_send_upward_message: {1501        message: 'Bytes',1502      },1503      authorize_upgrade: {1504        codeHash: 'H256',1505      },1506      enact_authorized_upgrade: {1507        code: 'Bytes'1508      }1509    }1510  },1511  /**1512   * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData1513   **/1514  CumulusPrimitivesParachainInherentParachainInherentData: {1515    validationData: 'PolkadotPrimitivesV2PersistedValidationData',1516    relayChainState: 'SpTrieStorageProof',1517    downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1518    horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1519  },1520  /**1521   * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1522   **/1523  PolkadotCorePrimitivesInboundDownwardMessage: {1524    sentAt: 'u32',1525    msg: 'Bytes'1526  },1527  /**1528   * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1529   **/1530  PolkadotCorePrimitivesInboundHrmpMessage: {1531    sentAt: 'u32',1532    data: 'Bytes'1533  },1534  /**1535   * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>1536   **/1537  CumulusPalletParachainSystemError: {1538    _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1539  },1540  /**1541   * Lookup171: pallet_balances::BalanceLock<Balance>1542   **/1543  PalletBalancesBalanceLock: {1544    id: '[u8;8]',1545    amount: 'u128',1546    reasons: 'PalletBalancesReasons'1547  },1548  /**1549   * Lookup172: pallet_balances::Reasons1550   **/1551  PalletBalancesReasons: {1552    _enum: ['Fee', 'Misc', 'All']1553  },1554  /**1555   * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>1556   **/1557  PalletBalancesReserveData: {1558    id: '[u8;16]',1559    amount: 'u128'1560  },1561  /**1562   * Lookup177: pallet_balances::Releases1563   **/1564  PalletBalancesReleases: {1565    _enum: ['V1_0_0', 'V2_0_0']1566  },1567  /**1568   * Lookup178: pallet_balances::pallet::Call<T, I>1569   **/1570  PalletBalancesCall: {1571    _enum: {1572      transfer: {1573        dest: 'MultiAddress',1574        value: 'Compact<u128>',1575      },1576      set_balance: {1577        who: 'MultiAddress',1578        newFree: 'Compact<u128>',1579        newReserved: 'Compact<u128>',1580      },1581      force_transfer: {1582        source: 'MultiAddress',1583        dest: 'MultiAddress',1584        value: 'Compact<u128>',1585      },1586      transfer_keep_alive: {1587        dest: 'MultiAddress',1588        value: 'Compact<u128>',1589      },1590      transfer_all: {1591        dest: 'MultiAddress',1592        keepAlive: 'bool',1593      },1594      force_unreserve: {1595        who: 'MultiAddress',1596        amount: 'u128'1597      }1598    }1599  },1600  /**1601   * Lookup181: pallet_balances::pallet::Error<T, I>1602   **/1603  PalletBalancesError: {1604    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1605  },1606  /**1607   * Lookup183: pallet_timestamp::pallet::Call<T>1608   **/1609  PalletTimestampCall: {1610    _enum: {1611      set: {1612        now: 'Compact<u64>'1613      }1614    }1615  },1616  /**1617   * Lookup185: pallet_transaction_payment::Releases1618   **/1619  PalletTransactionPaymentReleases: {1620    _enum: ['V1Ancient', 'V2']1621  },1622  /**1623   * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1624   **/1625  PalletTreasuryProposal: {1626    proposer: 'AccountId32',1627    value: 'u128',1628    beneficiary: 'AccountId32',1629    bond: 'u128'1630  },1631  /**1632   * Lookup189: pallet_treasury::pallet::Call<T, I>1633   **/1634  PalletTreasuryCall: {1635    _enum: {1636      propose_spend: {1637        value: 'Compact<u128>',1638        beneficiary: 'MultiAddress',1639      },1640      reject_proposal: {1641        proposalId: 'Compact<u32>',1642      },1643      approve_proposal: {1644        proposalId: 'Compact<u32>',1645      },1646      spend: {1647        amount: 'Compact<u128>',1648        beneficiary: 'MultiAddress',1649      },1650      remove_approval: {1651        proposalId: 'Compact<u32>'1652      }1653    }1654  },1655  /**1656   * Lookup192: frame_support::PalletId1657   **/1658  FrameSupportPalletId: '[u8;8]',1659  /**1660   * Lookup193: pallet_treasury::pallet::Error<T, I>1661   **/1662  PalletTreasuryError: {1663    _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1664  },1665  /**1666   * Lookup194: pallet_sudo::pallet::Call<T>1667   **/1668  PalletSudoCall: {1669    _enum: {1670      sudo: {1671        call: 'Call',1672      },1673      sudo_unchecked_weight: {1674        call: 'Call',1675        weight: 'SpWeightsWeightV2Weight',1676      },1677      set_key: {1678        _alias: {1679          new_: 'new',1680        },1681        new_: 'MultiAddress',1682      },1683      sudo_as: {1684        who: 'MultiAddress',1685        call: 'Call'1686      }1687    }1688  },1689  /**1690   * Lookup196: orml_vesting::module::Call<T>1691   **/1692  OrmlVestingModuleCall: {1693    _enum: {1694      claim: 'Null',1695      vested_transfer: {1696        dest: 'MultiAddress',1697        schedule: 'OrmlVestingVestingSchedule',1698      },1699      update_vesting_schedules: {1700        who: 'MultiAddress',1701        vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1702      },1703      claim_for: {1704        dest: 'MultiAddress'1705      }1706    }1707  },1708  /**1709   * Lookup198: orml_xtokens::module::Call<T>1710   **/1711  OrmlXtokensModuleCall: {1712    _enum: {1713      transfer: {1714        currencyId: 'PalletForeignAssetsAssetIds',1715        amount: 'u128',1716        dest: 'XcmVersionedMultiLocation',1717        destWeightLimit: 'XcmV2WeightLimit',1718      },1719      transfer_multiasset: {1720        asset: 'XcmVersionedMultiAsset',1721        dest: 'XcmVersionedMultiLocation',1722        destWeightLimit: 'XcmV2WeightLimit',1723      },1724      transfer_with_fee: {1725        currencyId: 'PalletForeignAssetsAssetIds',1726        amount: 'u128',1727        fee: 'u128',1728        dest: 'XcmVersionedMultiLocation',1729        destWeightLimit: 'XcmV2WeightLimit',1730      },1731      transfer_multiasset_with_fee: {1732        asset: 'XcmVersionedMultiAsset',1733        fee: 'XcmVersionedMultiAsset',1734        dest: 'XcmVersionedMultiLocation',1735        destWeightLimit: 'XcmV2WeightLimit',1736      },1737      transfer_multicurrencies: {1738        currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1739        feeItem: 'u32',1740        dest: 'XcmVersionedMultiLocation',1741        destWeightLimit: 'XcmV2WeightLimit',1742      },1743      transfer_multiassets: {1744        assets: 'XcmVersionedMultiAssets',1745        feeItem: 'u32',1746        dest: 'XcmVersionedMultiLocation',1747        destWeightLimit: 'XcmV2WeightLimit'1748      }1749    }1750  },1751  /**1752   * Lookup199: xcm::VersionedMultiAsset1753   **/1754  XcmVersionedMultiAsset: {1755    _enum: {1756      V0: 'XcmV0MultiAsset',1757      V1: 'XcmV1MultiAsset'1758    }1759  },1760  /**1761   * Lookup202: orml_tokens::module::Call<T>1762   **/1763  OrmlTokensModuleCall: {1764    _enum: {1765      transfer: {1766        dest: 'MultiAddress',1767        currencyId: 'PalletForeignAssetsAssetIds',1768        amount: 'Compact<u128>',1769      },1770      transfer_all: {1771        dest: 'MultiAddress',1772        currencyId: 'PalletForeignAssetsAssetIds',1773        keepAlive: 'bool',1774      },1775      transfer_keep_alive: {1776        dest: 'MultiAddress',1777        currencyId: 'PalletForeignAssetsAssetIds',1778        amount: 'Compact<u128>',1779      },1780      force_transfer: {1781        source: 'MultiAddress',1782        dest: 'MultiAddress',1783        currencyId: 'PalletForeignAssetsAssetIds',1784        amount: 'Compact<u128>',1785      },1786      set_balance: {1787        who: 'MultiAddress',1788        currencyId: 'PalletForeignAssetsAssetIds',1789        newFree: 'Compact<u128>',1790        newReserved: 'Compact<u128>'1791      }1792    }1793  },1794  /**1795   * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>1796   **/1797  CumulusPalletXcmpQueueCall: {1798    _enum: {1799      service_overweight: {1800        index: 'u64',1801        weightLimit: 'u64',1802      },1803      suspend_xcm_execution: 'Null',1804      resume_xcm_execution: 'Null',1805      update_suspend_threshold: {1806        _alias: {1807          new_: 'new',1808        },1809        new_: 'u32',1810      },1811      update_drop_threshold: {1812        _alias: {1813          new_: 'new',1814        },1815        new_: 'u32',1816      },1817      update_resume_threshold: {1818        _alias: {1819          new_: 'new',1820        },1821        new_: 'u32',1822      },1823      update_threshold_weight: {1824        _alias: {1825          new_: 'new',1826        },1827        new_: 'u64',1828      },1829      update_weight_restrict_decay: {1830        _alias: {1831          new_: 'new',1832        },1833        new_: 'u64',1834      },1835      update_xcmp_max_individual_weight: {1836        _alias: {1837          new_: 'new',1838        },1839        new_: 'u64'1840      }1841    }1842  },1843  /**1844   * Lookup204: pallet_xcm::pallet::Call<T>1845   **/1846  PalletXcmCall: {1847    _enum: {1848      send: {1849        dest: 'XcmVersionedMultiLocation',1850        message: 'XcmVersionedXcm',1851      },1852      teleport_assets: {1853        dest: 'XcmVersionedMultiLocation',1854        beneficiary: 'XcmVersionedMultiLocation',1855        assets: 'XcmVersionedMultiAssets',1856        feeAssetItem: 'u32',1857      },1858      reserve_transfer_assets: {1859        dest: 'XcmVersionedMultiLocation',1860        beneficiary: 'XcmVersionedMultiLocation',1861        assets: 'XcmVersionedMultiAssets',1862        feeAssetItem: 'u32',1863      },1864      execute: {1865        message: 'XcmVersionedXcm',1866        maxWeight: 'u64',1867      },1868      force_xcm_version: {1869        location: 'XcmV1MultiLocation',1870        xcmVersion: 'u32',1871      },1872      force_default_xcm_version: {1873        maybeXcmVersion: 'Option<u32>',1874      },1875      force_subscribe_version_notify: {1876        location: 'XcmVersionedMultiLocation',1877      },1878      force_unsubscribe_version_notify: {1879        location: 'XcmVersionedMultiLocation',1880      },1881      limited_reserve_transfer_assets: {1882        dest: 'XcmVersionedMultiLocation',1883        beneficiary: 'XcmVersionedMultiLocation',1884        assets: 'XcmVersionedMultiAssets',1885        feeAssetItem: 'u32',1886        weightLimit: 'XcmV2WeightLimit',1887      },1888      limited_teleport_assets: {1889        dest: 'XcmVersionedMultiLocation',1890        beneficiary: 'XcmVersionedMultiLocation',1891        assets: 'XcmVersionedMultiAssets',1892        feeAssetItem: 'u32',1893        weightLimit: 'XcmV2WeightLimit'1894      }1895    }1896  },1897  /**1898   * Lookup205: xcm::VersionedXcm<RuntimeCall>1899   **/1900  XcmVersionedXcm: {1901    _enum: {1902      V0: 'XcmV0Xcm',1903      V1: 'XcmV1Xcm',1904      V2: 'XcmV2Xcm'1905    }1906  },1907  /**1908   * Lookup206: xcm::v0::Xcm<RuntimeCall>1909   **/1910  XcmV0Xcm: {1911    _enum: {1912      WithdrawAsset: {1913        assets: 'Vec<XcmV0MultiAsset>',1914        effects: 'Vec<XcmV0Order>',1915      },1916      ReserveAssetDeposit: {1917        assets: 'Vec<XcmV0MultiAsset>',1918        effects: 'Vec<XcmV0Order>',1919      },1920      TeleportAsset: {1921        assets: 'Vec<XcmV0MultiAsset>',1922        effects: 'Vec<XcmV0Order>',1923      },1924      QueryResponse: {1925        queryId: 'Compact<u64>',1926        response: 'XcmV0Response',1927      },1928      TransferAsset: {1929        assets: 'Vec<XcmV0MultiAsset>',1930        dest: 'XcmV0MultiLocation',1931      },1932      TransferReserveAsset: {1933        assets: 'Vec<XcmV0MultiAsset>',1934        dest: 'XcmV0MultiLocation',1935        effects: 'Vec<XcmV0Order>',1936      },1937      Transact: {1938        originType: 'XcmV0OriginKind',1939        requireWeightAtMost: 'u64',1940        call: 'XcmDoubleEncoded',1941      },1942      HrmpNewChannelOpenRequest: {1943        sender: 'Compact<u32>',1944        maxMessageSize: 'Compact<u32>',1945        maxCapacity: 'Compact<u32>',1946      },1947      HrmpChannelAccepted: {1948        recipient: 'Compact<u32>',1949      },1950      HrmpChannelClosing: {1951        initiator: 'Compact<u32>',1952        sender: 'Compact<u32>',1953        recipient: 'Compact<u32>',1954      },1955      RelayedFrom: {1956        who: 'XcmV0MultiLocation',1957        message: 'XcmV0Xcm'1958      }1959    }1960  },1961  /**1962   * Lookup208: xcm::v0::order::Order<RuntimeCall>1963   **/1964  XcmV0Order: {1965    _enum: {1966      Null: 'Null',1967      DepositAsset: {1968        assets: 'Vec<XcmV0MultiAsset>',1969        dest: 'XcmV0MultiLocation',1970      },1971      DepositReserveAsset: {1972        assets: 'Vec<XcmV0MultiAsset>',1973        dest: 'XcmV0MultiLocation',1974        effects: 'Vec<XcmV0Order>',1975      },1976      ExchangeAsset: {1977        give: 'Vec<XcmV0MultiAsset>',1978        receive: 'Vec<XcmV0MultiAsset>',1979      },1980      InitiateReserveWithdraw: {1981        assets: 'Vec<XcmV0MultiAsset>',1982        reserve: 'XcmV0MultiLocation',1983        effects: 'Vec<XcmV0Order>',1984      },1985      InitiateTeleport: {1986        assets: 'Vec<XcmV0MultiAsset>',1987        dest: 'XcmV0MultiLocation',1988        effects: 'Vec<XcmV0Order>',1989      },1990      QueryHolding: {1991        queryId: 'Compact<u64>',1992        dest: 'XcmV0MultiLocation',1993        assets: 'Vec<XcmV0MultiAsset>',1994      },1995      BuyExecution: {1996        fees: 'XcmV0MultiAsset',1997        weight: 'u64',1998        debt: 'u64',1999        haltOnError: 'bool',2000        xcm: 'Vec<XcmV0Xcm>'2001      }2002    }2003  },2004  /**2005   * Lookup210: xcm::v0::Response2006   **/2007  XcmV0Response: {2008    _enum: {2009      Assets: 'Vec<XcmV0MultiAsset>'2010    }2011  },2012  /**2013   * Lookup211: xcm::v1::Xcm<RuntimeCall>2014   **/2015  XcmV1Xcm: {2016    _enum: {2017      WithdrawAsset: {2018        assets: 'XcmV1MultiassetMultiAssets',2019        effects: 'Vec<XcmV1Order>',2020      },2021      ReserveAssetDeposited: {2022        assets: 'XcmV1MultiassetMultiAssets',2023        effects: 'Vec<XcmV1Order>',2024      },2025      ReceiveTeleportedAsset: {2026        assets: 'XcmV1MultiassetMultiAssets',2027        effects: 'Vec<XcmV1Order>',2028      },2029      QueryResponse: {2030        queryId: 'Compact<u64>',2031        response: 'XcmV1Response',2032      },2033      TransferAsset: {2034        assets: 'XcmV1MultiassetMultiAssets',2035        beneficiary: 'XcmV1MultiLocation',2036      },2037      TransferReserveAsset: {2038        assets: 'XcmV1MultiassetMultiAssets',2039        dest: 'XcmV1MultiLocation',2040        effects: 'Vec<XcmV1Order>',2041      },2042      Transact: {2043        originType: 'XcmV0OriginKind',2044        requireWeightAtMost: 'u64',2045        call: 'XcmDoubleEncoded',2046      },2047      HrmpNewChannelOpenRequest: {2048        sender: 'Compact<u32>',2049        maxMessageSize: 'Compact<u32>',2050        maxCapacity: 'Compact<u32>',2051      },2052      HrmpChannelAccepted: {2053        recipient: 'Compact<u32>',2054      },2055      HrmpChannelClosing: {2056        initiator: 'Compact<u32>',2057        sender: 'Compact<u32>',2058        recipient: 'Compact<u32>',2059      },2060      RelayedFrom: {2061        who: 'XcmV1MultilocationJunctions',2062        message: 'XcmV1Xcm',2063      },2064      SubscribeVersion: {2065        queryId: 'Compact<u64>',2066        maxResponseWeight: 'Compact<u64>',2067      },2068      UnsubscribeVersion: 'Null'2069    }2070  },2071  /**2072   * Lookup213: xcm::v1::order::Order<RuntimeCall>2073   **/2074  XcmV1Order: {2075    _enum: {2076      Noop: 'Null',2077      DepositAsset: {2078        assets: 'XcmV1MultiassetMultiAssetFilter',2079        maxAssets: 'u32',2080        beneficiary: 'XcmV1MultiLocation',2081      },2082      DepositReserveAsset: {2083        assets: 'XcmV1MultiassetMultiAssetFilter',2084        maxAssets: 'u32',2085        dest: 'XcmV1MultiLocation',2086        effects: 'Vec<XcmV1Order>',2087      },2088      ExchangeAsset: {2089        give: 'XcmV1MultiassetMultiAssetFilter',2090        receive: 'XcmV1MultiassetMultiAssets',2091      },2092      InitiateReserveWithdraw: {2093        assets: 'XcmV1MultiassetMultiAssetFilter',2094        reserve: 'XcmV1MultiLocation',2095        effects: 'Vec<XcmV1Order>',2096      },2097      InitiateTeleport: {2098        assets: 'XcmV1MultiassetMultiAssetFilter',2099        dest: 'XcmV1MultiLocation',2100        effects: 'Vec<XcmV1Order>',2101      },2102      QueryHolding: {2103        queryId: 'Compact<u64>',2104        dest: 'XcmV1MultiLocation',2105        assets: 'XcmV1MultiassetMultiAssetFilter',2106      },2107      BuyExecution: {2108        fees: 'XcmV1MultiAsset',2109        weight: 'u64',2110        debt: 'u64',2111        haltOnError: 'bool',2112        instructions: 'Vec<XcmV1Xcm>'2113      }2114    }2115  },2116  /**2117   * Lookup215: xcm::v1::Response2118   **/2119  XcmV1Response: {2120    _enum: {2121      Assets: 'XcmV1MultiassetMultiAssets',2122      Version: 'u32'2123    }2124  },2125  /**2126   * Lookup229: cumulus_pallet_xcm::pallet::Call<T>2127   **/2128  CumulusPalletXcmCall: 'Null',2129  /**2130   * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>2131   **/2132  CumulusPalletDmpQueueCall: {2133    _enum: {2134      service_overweight: {2135        index: 'u64',2136        weightLimit: 'u64'2137      }2138    }2139  },2140  /**2141   * Lookup231: pallet_inflation::pallet::Call<T>2142   **/2143  PalletInflationCall: {2144    _enum: {2145      start_inflation: {2146        inflationStartRelayBlock: 'u32'2147      }2148    }2149  },2150  /**2151   * Lookup232: pallet_unique::Call<T>2152   **/2153  PalletUniqueCall: {2154    _enum: {2155      create_collection: {2156        collectionName: 'Vec<u16>',2157        collectionDescription: 'Vec<u16>',2158        tokenPrefix: 'Bytes',2159        mode: 'UpDataStructsCollectionMode',2160      },2161      create_collection_ex: {2162        data: 'UpDataStructsCreateCollectionData',2163      },2164      destroy_collection: {2165        collectionId: 'u32',2166      },2167      add_to_allow_list: {2168        collectionId: 'u32',2169        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2170      },2171      remove_from_allow_list: {2172        collectionId: 'u32',2173        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2174      },2175      change_collection_owner: {2176        collectionId: 'u32',2177        newOwner: 'AccountId32',2178      },2179      add_collection_admin: {2180        collectionId: 'u32',2181        newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2182      },2183      remove_collection_admin: {2184        collectionId: 'u32',2185        accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2186      },2187      set_collection_sponsor: {2188        collectionId: 'u32',2189        newSponsor: 'AccountId32',2190      },2191      confirm_sponsorship: {2192        collectionId: 'u32',2193      },2194      remove_collection_sponsor: {2195        collectionId: 'u32',2196      },2197      create_item: {2198        collectionId: 'u32',2199        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2200        data: 'UpDataStructsCreateItemData',2201      },2202      create_multiple_items: {2203        collectionId: 'u32',2204        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2205        itemsData: 'Vec<UpDataStructsCreateItemData>',2206      },2207      set_collection_properties: {2208        collectionId: 'u32',2209        properties: 'Vec<UpDataStructsProperty>',2210      },2211      delete_collection_properties: {2212        collectionId: 'u32',2213        propertyKeys: 'Vec<Bytes>',2214      },2215      set_token_properties: {2216        collectionId: 'u32',2217        tokenId: 'u32',2218        properties: 'Vec<UpDataStructsProperty>',2219      },2220      delete_token_properties: {2221        collectionId: 'u32',2222        tokenId: 'u32',2223        propertyKeys: 'Vec<Bytes>',2224      },2225      set_token_property_permissions: {2226        collectionId: 'u32',2227        propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2228      },2229      create_multiple_items_ex: {2230        collectionId: 'u32',2231        data: 'UpDataStructsCreateItemExData',2232      },2233      set_transfers_enabled_flag: {2234        collectionId: 'u32',2235        value: 'bool',2236      },2237      burn_item: {2238        collectionId: 'u32',2239        itemId: 'u32',2240        value: 'u128',2241      },2242      burn_from: {2243        collectionId: 'u32',2244        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2245        itemId: 'u32',2246        value: 'u128',2247      },2248      transfer: {2249        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2250        collectionId: 'u32',2251        itemId: 'u32',2252        value: 'u128',2253      },2254      approve: {2255        spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2256        collectionId: 'u32',2257        itemId: 'u32',2258        amount: 'u128',2259      },2260      transfer_from: {2261        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2262        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2263        collectionId: 'u32',2264        itemId: 'u32',2265        value: 'u128',2266      },2267      set_collection_limits: {2268        collectionId: 'u32',2269        newLimit: 'UpDataStructsCollectionLimits',2270      },2271      set_collection_permissions: {2272        collectionId: 'u32',2273        newPermission: 'UpDataStructsCollectionPermissions',2274      },2275      repartition: {2276        collectionId: 'u32',2277        tokenId: 'u32',2278        amount: 'u128',2279      },2280      set_allowance_for_all: {2281        collectionId: 'u32',2282        operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2283        approve: 'bool'2284      }2285    }2286  },2287  /**2288   * Lookup237: up_data_structs::CollectionMode2289   **/2290  UpDataStructsCollectionMode: {2291    _enum: {2292      NFT: 'Null',2293      Fungible: 'u8',2294      ReFungible: 'Null'2295    }2296  },2297  /**2298   * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2299   **/2300  UpDataStructsCreateCollectionData: {2301    mode: 'UpDataStructsCollectionMode',2302    access: 'Option<UpDataStructsAccessMode>',2303    name: 'Vec<u16>',2304    description: 'Vec<u16>',2305    tokenPrefix: 'Bytes',2306    pendingSponsor: 'Option<AccountId32>',2307    limits: 'Option<UpDataStructsCollectionLimits>',2308    permissions: 'Option<UpDataStructsCollectionPermissions>',2309    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2310    properties: 'Vec<UpDataStructsProperty>'2311  },2312  /**2313   * Lookup240: up_data_structs::AccessMode2314   **/2315  UpDataStructsAccessMode: {2316    _enum: ['Normal', 'AllowList']2317  },2318  /**2319   * Lookup242: up_data_structs::CollectionLimits2320   **/2321  UpDataStructsCollectionLimits: {2322    accountTokenOwnershipLimit: 'Option<u32>',2323    sponsoredDataSize: 'Option<u32>',2324    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2325    tokenLimit: 'Option<u32>',2326    sponsorTransferTimeout: 'Option<u32>',2327    sponsorApproveTimeout: 'Option<u32>',2328    ownerCanTransfer: 'Option<bool>',2329    ownerCanDestroy: 'Option<bool>',2330    transfersEnabled: 'Option<bool>'2331  },2332  /**2333   * Lookup244: up_data_structs::SponsoringRateLimit2334   **/2335  UpDataStructsSponsoringRateLimit: {2336    _enum: {2337      SponsoringDisabled: 'Null',2338      Blocks: 'u32'2339    }2340  },2341  /**2342   * Lookup247: up_data_structs::CollectionPermissions2343   **/2344  UpDataStructsCollectionPermissions: {2345    access: 'Option<UpDataStructsAccessMode>',2346    mintMode: 'Option<bool>',2347    nesting: 'Option<UpDataStructsNestingPermissions>'2348  },2349  /**2350   * Lookup249: up_data_structs::NestingPermissions2351   **/2352  UpDataStructsNestingPermissions: {2353    tokenOwner: 'bool',2354    collectionAdmin: 'bool',2355    restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2356  },2357  /**2358   * Lookup251: up_data_structs::OwnerRestrictedSet2359   **/2360  UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2361  /**2362   * Lookup256: up_data_structs::PropertyKeyPermission2363   **/2364  UpDataStructsPropertyKeyPermission: {2365    key: 'Bytes',2366    permission: 'UpDataStructsPropertyPermission'2367  },2368  /**2369   * Lookup257: up_data_structs::PropertyPermission2370   **/2371  UpDataStructsPropertyPermission: {2372    mutable: 'bool',2373    collectionAdmin: 'bool',2374    tokenOwner: 'bool'2375  },2376  /**2377   * Lookup260: up_data_structs::Property2378   **/2379  UpDataStructsProperty: {2380    key: 'Bytes',2381    value: 'Bytes'2382  },2383  /**2384   * Lookup263: up_data_structs::CreateItemData2385   **/2386  UpDataStructsCreateItemData: {2387    _enum: {2388      NFT: 'UpDataStructsCreateNftData',2389      Fungible: 'UpDataStructsCreateFungibleData',2390      ReFungible: 'UpDataStructsCreateReFungibleData'2391    }2392  },2393  /**2394   * Lookup264: up_data_structs::CreateNftData2395   **/2396  UpDataStructsCreateNftData: {2397    properties: 'Vec<UpDataStructsProperty>'2398  },2399  /**2400   * Lookup265: up_data_structs::CreateFungibleData2401   **/2402  UpDataStructsCreateFungibleData: {2403    value: 'u128'2404  },2405  /**2406   * Lookup266: up_data_structs::CreateReFungibleData2407   **/2408  UpDataStructsCreateReFungibleData: {2409    pieces: 'u128',2410    properties: 'Vec<UpDataStructsProperty>'2411  },2412  /**2413   * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2414   **/2415  UpDataStructsCreateItemExData: {2416    _enum: {2417      NFT: 'Vec<UpDataStructsCreateNftExData>',2418      Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2419      RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2420      RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2421    }2422  },2423  /**2424   * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2425   **/2426  UpDataStructsCreateNftExData: {2427    properties: 'Vec<UpDataStructsProperty>',2428    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2429  },2430  /**2431   * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2432   **/2433  UpDataStructsCreateRefungibleExSingleOwner: {2434    user: 'PalletEvmAccountBasicCrossAccountIdRepr',2435    pieces: 'u128',2436    properties: 'Vec<UpDataStructsProperty>'2437  },2438  /**2439   * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2440   **/2441  UpDataStructsCreateRefungibleExMultipleOwners: {2442    users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2443    properties: 'Vec<UpDataStructsProperty>'2444  },2445  /**2446   * Lookup281: pallet_configuration::pallet::Call<T>2447   **/2448  PalletConfigurationCall: {2449    _enum: {2450      set_weight_to_fee_coefficient_override: {2451        coeff: 'Option<u32>',2452      },2453      set_min_gas_price_override: {2454        coeff: 'Option<u64>',2455      },2456      set_xcm_allowed_locations: {2457        locations: 'Option<Vec<XcmV1MultiLocation>>',2458      },2459      set_app_promotion_configuration_override: {2460        configuration: 'PalletConfigurationAppPromotionConfiguration'2461      }2462    }2463  },2464  /**2465   * Lookup286: pallet_configuration::AppPromotionConfiguration<BlockNumber>2466   **/2467  PalletConfigurationAppPromotionConfiguration: {2468    recalculationInterval: 'Option<u32>',2469    pendingInterval: 'Option<u32>',2470    intervalIncome: 'Option<Perbill>',2471    maxStakersPerCalculation: 'Option<u8>'2472  },2473  /**2474   * Lookup289: pallet_template_transaction_payment::Call<T>2475   **/2476  PalletTemplateTransactionPaymentCall: 'Null',2477  /**2478   * Lookup290: pallet_structure::pallet::Call<T>2479   **/2480  PalletStructureCall: 'Null',2481  /**2482   * Lookup291: pallet_rmrk_core::pallet::Call<T>2483   **/2484  PalletRmrkCoreCall: {2485    _enum: {2486      create_collection: {2487        metadata: 'Bytes',2488        max: 'Option<u32>',2489        symbol: 'Bytes',2490      },2491      destroy_collection: {2492        collectionId: 'u32',2493      },2494      change_collection_issuer: {2495        collectionId: 'u32',2496        newIssuer: 'MultiAddress',2497      },2498      lock_collection: {2499        collectionId: 'u32',2500      },2501      mint_nft: {2502        owner: 'Option<AccountId32>',2503        collectionId: 'u32',2504        recipient: 'Option<AccountId32>',2505        royaltyAmount: 'Option<Permill>',2506        metadata: 'Bytes',2507        transferable: 'bool',2508        resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2509      },2510      burn_nft: {2511        collectionId: 'u32',2512        nftId: 'u32',2513        maxBurns: 'u32',2514      },2515      send: {2516        rmrkCollectionId: 'u32',2517        rmrkNftId: 'u32',2518        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2519      },2520      accept_nft: {2521        rmrkCollectionId: 'u32',2522        rmrkNftId: 'u32',2523        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2524      },2525      reject_nft: {2526        rmrkCollectionId: 'u32',2527        rmrkNftId: 'u32',2528      },2529      accept_resource: {2530        rmrkCollectionId: 'u32',2531        rmrkNftId: 'u32',2532        resourceId: 'u32',2533      },2534      accept_resource_removal: {2535        rmrkCollectionId: 'u32',2536        rmrkNftId: 'u32',2537        resourceId: 'u32',2538      },2539      set_property: {2540        rmrkCollectionId: 'Compact<u32>',2541        maybeNftId: 'Option<u32>',2542        key: 'Bytes',2543        value: 'Bytes',2544      },2545      set_priority: {2546        rmrkCollectionId: 'u32',2547        rmrkNftId: 'u32',2548        priorities: 'Vec<u32>',2549      },2550      add_basic_resource: {2551        rmrkCollectionId: 'u32',2552        nftId: 'u32',2553        resource: 'RmrkTraitsResourceBasicResource',2554      },2555      add_composable_resource: {2556        rmrkCollectionId: 'u32',2557        nftId: 'u32',2558        resource: 'RmrkTraitsResourceComposableResource',2559      },2560      add_slot_resource: {2561        rmrkCollectionId: 'u32',2562        nftId: 'u32',2563        resource: 'RmrkTraitsResourceSlotResource',2564      },2565      remove_resource: {2566        rmrkCollectionId: 'u32',2567        nftId: 'u32',2568        resourceId: 'u32'2569      }2570    }2571  },2572  /**2573   * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2574   **/2575  RmrkTraitsResourceResourceTypes: {2576    _enum: {2577      Basic: 'RmrkTraitsResourceBasicResource',2578      Composable: 'RmrkTraitsResourceComposableResource',2579      Slot: 'RmrkTraitsResourceSlotResource'2580    }2581  },2582  /**2583   * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2584   **/2585  RmrkTraitsResourceBasicResource: {2586    src: 'Option<Bytes>',2587    metadata: 'Option<Bytes>',2588    license: 'Option<Bytes>',2589    thumb: 'Option<Bytes>'2590  },2591  /**2592   * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2593   **/2594  RmrkTraitsResourceComposableResource: {2595    parts: 'Vec<u32>',2596    base: 'u32',2597    src: 'Option<Bytes>',2598    metadata: 'Option<Bytes>',2599    license: 'Option<Bytes>',2600    thumb: 'Option<Bytes>'2601  },2602  /**2603   * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2604   **/2605  RmrkTraitsResourceSlotResource: {2606    base: 'u32',2607    src: 'Option<Bytes>',2608    metadata: 'Option<Bytes>',2609    slot: 'u32',2610    license: 'Option<Bytes>',2611    thumb: 'Option<Bytes>'2612  },2613  /**2614   * Lookup305: pallet_rmrk_equip::pallet::Call<T>2615   **/2616  PalletRmrkEquipCall: {2617    _enum: {2618      create_base: {2619        baseType: 'Bytes',2620        symbol: 'Bytes',2621        parts: 'Vec<RmrkTraitsPartPartType>',2622      },2623      theme_add: {2624        baseId: 'u32',2625        theme: 'RmrkTraitsTheme',2626      },2627      equippable: {2628        baseId: 'u32',2629        slotId: 'u32',2630        equippables: 'RmrkTraitsPartEquippableList'2631      }2632    }2633  },2634  /**2635   * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2636   **/2637  RmrkTraitsPartPartType: {2638    _enum: {2639      FixedPart: 'RmrkTraitsPartFixedPart',2640      SlotPart: 'RmrkTraitsPartSlotPart'2641    }2642  },2643  /**2644   * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2645   **/2646  RmrkTraitsPartFixedPart: {2647    id: 'u32',2648    z: 'u32',2649    src: 'Bytes'2650  },2651  /**2652   * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2653   **/2654  RmrkTraitsPartSlotPart: {2655    id: 'u32',2656    equippable: 'RmrkTraitsPartEquippableList',2657    src: 'Bytes',2658    z: 'u32'2659  },2660  /**2661   * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2662   **/2663  RmrkTraitsPartEquippableList: {2664    _enum: {2665      All: 'Null',2666      Empty: 'Null',2667      Custom: 'Vec<u32>'2668    }2669  },2670  /**2671   * Lookup314: 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>>2672   **/2673  RmrkTraitsTheme: {2674    name: 'Bytes',2675    properties: 'Vec<RmrkTraitsThemeThemeProperty>',2676    inherit: 'bool'2677  },2678  /**2679   * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2680   **/2681  RmrkTraitsThemeThemeProperty: {2682    key: 'Bytes',2683    value: 'Bytes'2684  },2685  /**2686   * Lookup318: pallet_app_promotion::pallet::Call<T>2687   **/2688  PalletAppPromotionCall: {2689    _enum: {2690      set_admin_address: {2691        admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2692      },2693      stake: {2694        amount: 'u128',2695      },2696      unstake: 'Null',2697      sponsor_collection: {2698        collectionId: 'u32',2699      },2700      stop_sponsoring_collection: {2701        collectionId: 'u32',2702      },2703      sponsor_contract: {2704        contractId: 'H160',2705      },2706      stop_sponsoring_contract: {2707        contractId: 'H160',2708      },2709      payout_stakers: {2710        stakersNumber: 'Option<u8>'2711      }2712    }2713  },2714  /**2715   * Lookup319: pallet_foreign_assets::module::Call<T>2716   **/2717  PalletForeignAssetsModuleCall: {2718    _enum: {2719      register_foreign_asset: {2720        owner: 'AccountId32',2721        location: 'XcmVersionedMultiLocation',2722        metadata: 'PalletForeignAssetsModuleAssetMetadata',2723      },2724      update_foreign_asset: {2725        foreignAssetId: 'u32',2726        location: 'XcmVersionedMultiLocation',2727        metadata: 'PalletForeignAssetsModuleAssetMetadata'2728      }2729    }2730  },2731  /**2732   * Lookup320: pallet_evm::pallet::Call<T>2733   **/2734  PalletEvmCall: {2735    _enum: {2736      withdraw: {2737        address: 'H160',2738        value: 'u128',2739      },2740      call: {2741        source: 'H160',2742        target: 'H160',2743        input: 'Bytes',2744        value: 'U256',2745        gasLimit: 'u64',2746        maxFeePerGas: 'U256',2747        maxPriorityFeePerGas: 'Option<U256>',2748        nonce: 'Option<U256>',2749        accessList: 'Vec<(H160,Vec<H256>)>',2750      },2751      create: {2752        source: 'H160',2753        init: 'Bytes',2754        value: 'U256',2755        gasLimit: 'u64',2756        maxFeePerGas: 'U256',2757        maxPriorityFeePerGas: 'Option<U256>',2758        nonce: 'Option<U256>',2759        accessList: 'Vec<(H160,Vec<H256>)>',2760      },2761      create2: {2762        source: 'H160',2763        init: 'Bytes',2764        salt: 'H256',2765        value: 'U256',2766        gasLimit: 'u64',2767        maxFeePerGas: 'U256',2768        maxPriorityFeePerGas: 'Option<U256>',2769        nonce: 'Option<U256>',2770        accessList: 'Vec<(H160,Vec<H256>)>'2771      }2772    }2773  },2774  /**2775   * Lookup326: pallet_ethereum::pallet::Call<T>2776   **/2777  PalletEthereumCall: {2778    _enum: {2779      transact: {2780        transaction: 'EthereumTransactionTransactionV2'2781      }2782    }2783  },2784  /**2785   * Lookup327: ethereum::transaction::TransactionV22786   **/2787  EthereumTransactionTransactionV2: {2788    _enum: {2789      Legacy: 'EthereumTransactionLegacyTransaction',2790      EIP2930: 'EthereumTransactionEip2930Transaction',2791      EIP1559: 'EthereumTransactionEip1559Transaction'2792    }2793  },2794  /**2795   * Lookup328: ethereum::transaction::LegacyTransaction2796   **/2797  EthereumTransactionLegacyTransaction: {2798    nonce: 'U256',2799    gasPrice: 'U256',2800    gasLimit: 'U256',2801    action: 'EthereumTransactionTransactionAction',2802    value: 'U256',2803    input: 'Bytes',2804    signature: 'EthereumTransactionTransactionSignature'2805  },2806  /**2807   * Lookup329: ethereum::transaction::TransactionAction2808   **/2809  EthereumTransactionTransactionAction: {2810    _enum: {2811      Call: 'H160',2812      Create: 'Null'2813    }2814  },2815  /**2816   * Lookup330: ethereum::transaction::TransactionSignature2817   **/2818  EthereumTransactionTransactionSignature: {2819    v: 'u64',2820    r: 'H256',2821    s: 'H256'2822  },2823  /**2824   * Lookup332: ethereum::transaction::EIP2930Transaction2825   **/2826  EthereumTransactionEip2930Transaction: {2827    chainId: 'u64',2828    nonce: 'U256',2829    gasPrice: 'U256',2830    gasLimit: 'U256',2831    action: 'EthereumTransactionTransactionAction',2832    value: 'U256',2833    input: 'Bytes',2834    accessList: 'Vec<EthereumTransactionAccessListItem>',2835    oddYParity: 'bool',2836    r: 'H256',2837    s: 'H256'2838  },2839  /**2840   * Lookup334: ethereum::transaction::AccessListItem2841   **/2842  EthereumTransactionAccessListItem: {2843    address: 'H160',2844    storageKeys: 'Vec<H256>'2845  },2846  /**2847   * Lookup335: ethereum::transaction::EIP1559Transaction2848   **/2849  EthereumTransactionEip1559Transaction: {2850    chainId: 'u64',2851    nonce: 'U256',2852    maxPriorityFeePerGas: 'U256',2853    maxFeePerGas: 'U256',2854    gasLimit: 'U256',2855    action: 'EthereumTransactionTransactionAction',2856    value: 'U256',2857    input: 'Bytes',2858    accessList: 'Vec<EthereumTransactionAccessListItem>',2859    oddYParity: 'bool',2860    r: 'H256',2861    s: 'H256'2862  },2863  /**2864   * Lookup336: pallet_evm_migration::pallet::Call<T>2865   **/2866  PalletEvmMigrationCall: {2867    _enum: {2868      begin: {2869        address: 'H160',2870      },2871      set_data: {2872        address: 'H160',2873        data: 'Vec<(H256,H256)>',2874      },2875      finish: {2876        address: 'H160',2877        code: 'Bytes',2878      },2879      insert_eth_logs: {2880        logs: 'Vec<EthereumLog>',2881      },2882      insert_events: {2883        events: 'Vec<Bytes>'2884      }2885    }2886  },2887  /**2888   * Lookup340: pallet_maintenance::pallet::Call<T>2889   **/2890  PalletMaintenanceCall: {2891    _enum: ['enable', 'disable']2892  },2893  /**2894   * Lookup341: pallet_test_utils::pallet::Call<T>2895   **/2896  PalletTestUtilsCall: {2897    _enum: {2898      enable: 'Null',2899      set_test_value: {2900        value: 'u32',2901      },2902      set_test_value_and_rollback: {2903        value: 'u32',2904      },2905      inc_test_value: 'Null',2906      just_take_fee: 'Null',2907      batch_all: {2908        calls: 'Vec<Call>'2909      }2910    }2911  },2912  /**2913   * Lookup343: pallet_sudo::pallet::Error<T>2914   **/2915  PalletSudoError: {2916    _enum: ['RequireSudo']2917  },2918  /**2919   * Lookup345: orml_vesting::module::Error<T>2920   **/2921  OrmlVestingModuleError: {2922    _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2923  },2924  /**2925   * Lookup346: orml_xtokens::module::Error<T>2926   **/2927  OrmlXtokensModuleError: {2928    _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2929  },2930  /**2931   * Lookup349: orml_tokens::BalanceLock<Balance>2932   **/2933  OrmlTokensBalanceLock: {2934    id: '[u8;8]',2935    amount: 'u128'2936  },2937  /**2938   * Lookup351: orml_tokens::AccountData<Balance>2939   **/2940  OrmlTokensAccountData: {2941    free: 'u128',2942    reserved: 'u128',2943    frozen: 'u128'2944  },2945  /**2946   * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>2947   **/2948  OrmlTokensReserveData: {2949    id: 'Null',2950    amount: 'u128'2951  },2952  /**2953   * Lookup355: orml_tokens::module::Error<T>2954   **/2955  OrmlTokensModuleError: {2956    _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2957  },2958  /**2959   * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails2960   **/2961  CumulusPalletXcmpQueueInboundChannelDetails: {2962    sender: 'u32',2963    state: 'CumulusPalletXcmpQueueInboundState',2964    messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2965  },2966  /**2967   * Lookup358: cumulus_pallet_xcmp_queue::InboundState2968   **/2969  CumulusPalletXcmpQueueInboundState: {2970    _enum: ['Ok', 'Suspended']2971  },2972  /**2973   * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat2974   **/2975  PolkadotParachainPrimitivesXcmpMessageFormat: {2976    _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2977  },2978  /**2979   * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails2980   **/2981  CumulusPalletXcmpQueueOutboundChannelDetails: {2982    recipient: 'u32',2983    state: 'CumulusPalletXcmpQueueOutboundState',2984    signalsExist: 'bool',2985    firstIndex: 'u16',2986    lastIndex: 'u16'2987  },2988  /**2989   * Lookup365: cumulus_pallet_xcmp_queue::OutboundState2990   **/2991  CumulusPalletXcmpQueueOutboundState: {2992    _enum: ['Ok', 'Suspended']2993  },2994  /**2995   * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData2996   **/2997  CumulusPalletXcmpQueueQueueConfigData: {2998    suspendThreshold: 'u32',2999    dropThreshold: 'u32',3000    resumeThreshold: 'u32',3001    thresholdWeight: 'SpWeightsWeightV2Weight',3002    weightRestrictDecay: 'SpWeightsWeightV2Weight',3003    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3004  },3005  /**3006   * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3007   **/3008  CumulusPalletXcmpQueueError: {3009    _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3010  },3011  /**3012   * Lookup370: pallet_xcm::pallet::Error<T>3013   **/3014  PalletXcmError: {3015    _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3016  },3017  /**3018   * Lookup371: cumulus_pallet_xcm::pallet::Error<T>3019   **/3020  CumulusPalletXcmError: 'Null',3021  /**3022   * Lookup372: cumulus_pallet_dmp_queue::ConfigData3023   **/3024  CumulusPalletDmpQueueConfigData: {3025    maxIndividual: 'SpWeightsWeightV2Weight'3026  },3027  /**3028   * Lookup373: cumulus_pallet_dmp_queue::PageIndexData3029   **/3030  CumulusPalletDmpQueuePageIndexData: {3031    beginUsed: 'u32',3032    endUsed: 'u32',3033    overweightCount: 'u64'3034  },3035  /**3036   * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>3037   **/3038  CumulusPalletDmpQueueError: {3039    _enum: ['Unknown', 'OverLimit']3040  },3041  /**3042   * Lookup380: pallet_unique::Error<T>3043   **/3044  PalletUniqueError: {3045    _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3046  },3047  /**3048   * Lookup381: pallet_configuration::pallet::Error<T>3049   **/3050  PalletConfigurationError: {3051    _enum: ['InconsistentConfiguration']3052  },3053  /**3054   * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>3055   **/3056  UpDataStructsCollection: {3057    owner: 'AccountId32',3058    mode: 'UpDataStructsCollectionMode',3059    name: 'Vec<u16>',3060    description: 'Vec<u16>',3061    tokenPrefix: 'Bytes',3062    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3063    limits: 'UpDataStructsCollectionLimits',3064    permissions: 'UpDataStructsCollectionPermissions',3065    flags: '[u8;1]'3066  },3067  /**3068   * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3069   **/3070  UpDataStructsSponsorshipStateAccountId32: {3071    _enum: {3072      Disabled: 'Null',3073      Unconfirmed: 'AccountId32',3074      Confirmed: 'AccountId32'3075    }3076  },3077  /**3078   * Lookup385: up_data_structs::Properties3079   **/3080  UpDataStructsProperties: {3081    map: 'UpDataStructsPropertiesMapBoundedVec',3082    consumedSpace: 'u32',3083    spaceLimit: 'u32'3084  },3085  /**3086   * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3087   **/3088  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3089  /**3090   * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3091   **/3092  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3093  /**3094   * Lookup398: up_data_structs::CollectionStats3095   **/3096  UpDataStructsCollectionStats: {3097    created: 'u32',3098    destroyed: 'u32',3099    alive: 'u32'3100  },3101  /**3102   * Lookup399: up_data_structs::TokenChild3103   **/3104  UpDataStructsTokenChild: {3105    token: 'u32',3106    collection: 'u32'3107  },3108  /**3109   * Lookup400: PhantomType::up_data_structs<T>3110   **/3111  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3112  /**3113   * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3114   **/3115  UpDataStructsTokenData: {3116    properties: 'Vec<UpDataStructsProperty>',3117    owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3118    pieces: 'u128'3119  },3120  /**3121   * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3122   **/3123  UpDataStructsRpcCollection: {3124    owner: 'AccountId32',3125    mode: 'UpDataStructsCollectionMode',3126    name: 'Vec<u16>',3127    description: 'Vec<u16>',3128    tokenPrefix: 'Bytes',3129    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3130    limits: 'UpDataStructsCollectionLimits',3131    permissions: 'UpDataStructsCollectionPermissions',3132    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3133    properties: 'Vec<UpDataStructsProperty>',3134    readOnly: 'bool',3135    flags: 'UpDataStructsRpcCollectionFlags'3136  },3137  /**3138   * Lookup405: up_data_structs::RpcCollectionFlags3139   **/3140  UpDataStructsRpcCollectionFlags: {3141    foreign: 'bool',3142    erc721metadata: 'bool'3143  },3144  /**3145   * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3146   **/3147  RmrkTraitsCollectionCollectionInfo: {3148    issuer: 'AccountId32',3149    metadata: 'Bytes',3150    max: 'Option<u32>',3151    symbol: 'Bytes',3152    nftsCount: 'u32'3153  },3154  /**3155   * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3156   **/3157  RmrkTraitsNftNftInfo: {3158    owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3159    royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3160    metadata: 'Bytes',3161    equipped: 'bool',3162    pending: 'bool'3163  },3164  /**3165   * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3166   **/3167  RmrkTraitsNftRoyaltyInfo: {3168    recipient: 'AccountId32',3169    amount: 'Permill'3170  },3171  /**3172   * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3173   **/3174  RmrkTraitsResourceResourceInfo: {3175    id: 'u32',3176    resource: 'RmrkTraitsResourceResourceTypes',3177    pending: 'bool',3178    pendingRemoval: 'bool'3179  },3180  /**3181   * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3182   **/3183  RmrkTraitsPropertyPropertyInfo: {3184    key: 'Bytes',3185    value: 'Bytes'3186  },3187  /**3188   * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3189   **/3190  RmrkTraitsBaseBaseInfo: {3191    issuer: 'AccountId32',3192    baseType: 'Bytes',3193    symbol: 'Bytes'3194  },3195  /**3196   * Lookup413: rmrk_traits::nft::NftChild3197   **/3198  RmrkTraitsNftNftChild: {3199    collectionId: 'u32',3200    nftId: 'u32'3201  },3202  /**3203   * Lookup415: pallet_common::pallet::Error<T>3204   **/3205  PalletCommonError: {3206    _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']3207  },3208  /**3209   * Lookup417: pallet_fungible::pallet::Error<T>3210   **/3211  PalletFungibleError: {3212    _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3213  },3214  /**3215   * Lookup418: pallet_refungible::ItemData3216   **/3217  PalletRefungibleItemData: {3218    constData: 'Bytes'3219  },3220  /**3221   * Lookup423: pallet_refungible::pallet::Error<T>3222   **/3223  PalletRefungibleError: {3224    _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3225  },3226  /**3227   * Lookup424: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3228   **/3229  PalletNonfungibleItemData: {3230    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3231  },3232  /**3233   * Lookup426: up_data_structs::PropertyScope3234   **/3235  UpDataStructsPropertyScope: {3236    _enum: ['None', 'Rmrk']3237  },3238  /**3239   * Lookup428: pallet_nonfungible::pallet::Error<T>3240   **/3241  PalletNonfungibleError: {3242    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3243  },3244  /**3245   * Lookup429: pallet_structure::pallet::Error<T>3246   **/3247  PalletStructureError: {3248    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3249  },3250  /**3251   * Lookup430: pallet_rmrk_core::pallet::Error<T>3252   **/3253  PalletRmrkCoreError: {3254    _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3255  },3256  /**3257   * Lookup432: pallet_rmrk_equip::pallet::Error<T>3258   **/3259  PalletRmrkEquipError: {3260    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3261  },3262  /**3263   * Lookup438: pallet_app_promotion::pallet::Error<T>3264   **/3265  PalletAppPromotionError: {3266    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3267  },3268  /**3269   * Lookup439: pallet_foreign_assets::module::Error<T>3270   **/3271  PalletForeignAssetsModuleError: {3272    _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3273  },3274  /**3275   * Lookup441: pallet_evm::pallet::Error<T>3276   **/3277  PalletEvmError: {3278    _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3279  },3280  /**3281   * Lookup444: fp_rpc::TransactionStatus3282   **/3283  FpRpcTransactionStatus: {3284    transactionHash: 'H256',3285    transactionIndex: 'u32',3286    from: 'H160',3287    to: 'Option<H160>',3288    contractAddress: 'Option<H160>',3289    logs: 'Vec<EthereumLog>',3290    logsBloom: 'EthbloomBloom'3291  },3292  /**3293   * Lookup446: ethbloom::Bloom3294   **/3295  EthbloomBloom: '[u8;256]',3296  /**3297   * Lookup448: ethereum::receipt::ReceiptV33298   **/3299  EthereumReceiptReceiptV3: {3300    _enum: {3301      Legacy: 'EthereumReceiptEip658ReceiptData',3302      EIP2930: 'EthereumReceiptEip658ReceiptData',3303      EIP1559: 'EthereumReceiptEip658ReceiptData'3304    }3305  },3306  /**3307   * Lookup449: ethereum::receipt::EIP658ReceiptData3308   **/3309  EthereumReceiptEip658ReceiptData: {3310    statusCode: 'u8',3311    usedGas: 'U256',3312    logsBloom: 'EthbloomBloom',3313    logs: 'Vec<EthereumLog>'3314  },3315  /**3316   * Lookup450: ethereum::block::Block<ethereum::transaction::TransactionV2>3317   **/3318  EthereumBlock: {3319    header: 'EthereumHeader',3320    transactions: 'Vec<EthereumTransactionTransactionV2>',3321    ommers: 'Vec<EthereumHeader>'3322  },3323  /**3324   * Lookup451: ethereum::header::Header3325   **/3326  EthereumHeader: {3327    parentHash: 'H256',3328    ommersHash: 'H256',3329    beneficiary: 'H160',3330    stateRoot: 'H256',3331    transactionsRoot: 'H256',3332    receiptsRoot: 'H256',3333    logsBloom: 'EthbloomBloom',3334    difficulty: 'U256',3335    number: 'U256',3336    gasLimit: 'U256',3337    gasUsed: 'U256',3338    timestamp: 'u64',3339    extraData: 'Bytes',3340    mixHash: 'H256',3341    nonce: 'EthereumTypesHashH64'3342  },3343  /**3344   * Lookup452: ethereum_types::hash::H643345   **/3346  EthereumTypesHashH64: '[u8;8]',3347  /**3348   * Lookup457: pallet_ethereum::pallet::Error<T>3349   **/3350  PalletEthereumError: {3351    _enum: ['InvalidSignature', 'PreLogExists']3352  },3353  /**3354   * Lookup458: pallet_evm_coder_substrate::pallet::Error<T>3355   **/3356  PalletEvmCoderSubstrateError: {3357    _enum: ['OutOfGas', 'OutOfFund']3358  },3359  /**3360   * Lookup459: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3361   **/3362  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3363    _enum: {3364      Disabled: 'Null',3365      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3366      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3367    }3368  },3369  /**3370   * Lookup460: pallet_evm_contract_helpers::SponsoringModeT3371   **/3372  PalletEvmContractHelpersSponsoringModeT: {3373    _enum: ['Disabled', 'Allowlisted', 'Generous']3374  },3375  /**3376   * Lookup466: pallet_evm_contract_helpers::pallet::Error<T>3377   **/3378  PalletEvmContractHelpersError: {3379    _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3380  },3381  /**3382   * Lookup467: pallet_evm_migration::pallet::Error<T>3383   **/3384  PalletEvmMigrationError: {3385    _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3386  },3387  /**3388   * Lookup468: pallet_maintenance::pallet::Error<T>3389   **/3390  PalletMaintenanceError: 'Null',3391  /**3392   * Lookup469: pallet_test_utils::pallet::Error<T>3393   **/3394  PalletTestUtilsError: {3395    _enum: ['TestPalletDisabled', 'TriggerRollback']3396  },3397  /**3398   * Lookup471: sp_runtime::MultiSignature3399   **/3400  SpRuntimeMultiSignature: {3401    _enum: {3402      Ed25519: 'SpCoreEd25519Signature',3403      Sr25519: 'SpCoreSr25519Signature',3404      Ecdsa: 'SpCoreEcdsaSignature'3405    }3406  },3407  /**3408   * Lookup472: sp_core::ed25519::Signature3409   **/3410  SpCoreEd25519Signature: '[u8;64]',3411  /**3412   * Lookup474: sp_core::sr25519::Signature3413   **/3414  SpCoreSr25519Signature: '[u8;64]',3415  /**3416   * Lookup475: sp_core::ecdsa::Signature3417   **/3418  SpCoreEcdsaSignature: '[u8;65]',3419  /**3420   * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3421   **/3422  FrameSystemExtensionsCheckSpecVersion: 'Null',3423  /**3424   * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>3425   **/3426  FrameSystemExtensionsCheckTxVersion: 'Null',3427  /**3428   * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>3429   **/3430  FrameSystemExtensionsCheckGenesis: 'Null',3431  /**3432   * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>3433   **/3434  FrameSystemExtensionsCheckNonce: 'Compact<u32>',3435  /**3436   * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>3437   **/3438  FrameSystemExtensionsCheckWeight: 'Null',3439  /**3440   * Lookup485: opal_runtime::runtime_common::maintenance::CheckMaintenance3441   **/3442  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3443  /**3444   * Lookup486: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3445   **/3446  PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3447  /**3448   * Lookup487: opal_runtime::Runtime3449   **/3450  OpalRuntimeRuntime: 'Null',3451  /**3452   * Lookup488: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3453   **/3454  PalletEthereumFakeTransactionFinalizer: 'Null'3455};
after · tests/src/interfaces/lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7  /**8   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9   **/10  FrameSystemAccountInfo: {11    nonce: 'u32',12    consumers: 'u32',13    providers: 'u32',14    sufficients: 'u32',15    data: 'PalletBalancesAccountData'16  },17  /**18   * Lookup5: pallet_balances::AccountData<Balance>19   **/20  PalletBalancesAccountData: {21    free: 'u128',22    reserved: 'u128',23    miscFrozen: 'u128',24    feeFrozen: 'u128'25  },26  /**27   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28   **/29  FrameSupportDispatchPerDispatchClassWeight: {30    normal: 'SpWeightsWeightV2Weight',31    operational: 'SpWeightsWeightV2Weight',32    mandatory: 'SpWeightsWeightV2Weight'33  },34  /**35   * Lookup8: sp_weights::weight_v2::Weight36   **/37  SpWeightsWeightV2Weight: {38    refTime: 'Compact<u64>',39    proofSize: 'Compact<u64>'40  },41  /**42   * Lookup13: sp_runtime::generic::digest::Digest43   **/44  SpRuntimeDigest: {45    logs: 'Vec<SpRuntimeDigestDigestItem>'46  },47  /**48   * Lookup15: sp_runtime::generic::digest::DigestItem49   **/50  SpRuntimeDigestDigestItem: {51    _enum: {52      Other: 'Bytes',53      __Unused1: 'Null',54      __Unused2: 'Null',55      __Unused3: 'Null',56      Consensus: '([u8;4],Bytes)',57      Seal: '([u8;4],Bytes)',58      PreRuntime: '([u8;4],Bytes)',59      __Unused7: 'Null',60      RuntimeEnvironmentUpdated: 'Null'61    }62  },63  /**64   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65   **/66  FrameSystemEventRecord: {67    phase: 'FrameSystemPhase',68    event: 'Event',69    topics: 'Vec<H256>'70  },71  /**72   * Lookup20: frame_system::pallet::Event<T>73   **/74  FrameSystemEvent: {75    _enum: {76      ExtrinsicSuccess: {77        dispatchInfo: 'FrameSupportDispatchDispatchInfo',78      },79      ExtrinsicFailed: {80        dispatchError: 'SpRuntimeDispatchError',81        dispatchInfo: 'FrameSupportDispatchDispatchInfo',82      },83      CodeUpdated: 'Null',84      NewAccount: {85        account: 'AccountId32',86      },87      KilledAccount: {88        account: 'AccountId32',89      },90      Remarked: {91        _alias: {92          hash_: 'hash',93        },94        sender: 'AccountId32',95        hash_: 'H256'96      }97    }98  },99  /**100   * Lookup21: frame_support::dispatch::DispatchInfo101   **/102  FrameSupportDispatchDispatchInfo: {103    weight: 'SpWeightsWeightV2Weight',104    class: 'FrameSupportDispatchDispatchClass',105    paysFee: 'FrameSupportDispatchPays'106  },107  /**108   * Lookup22: frame_support::dispatch::DispatchClass109   **/110  FrameSupportDispatchDispatchClass: {111    _enum: ['Normal', 'Operational', 'Mandatory']112  },113  /**114   * Lookup23: frame_support::dispatch::Pays115   **/116  FrameSupportDispatchPays: {117    _enum: ['Yes', 'No']118  },119  /**120   * Lookup24: sp_runtime::DispatchError121   **/122  SpRuntimeDispatchError: {123    _enum: {124      Other: 'Null',125      CannotLookup: 'Null',126      BadOrigin: 'Null',127      Module: 'SpRuntimeModuleError',128      ConsumerRemaining: 'Null',129      NoProviders: 'Null',130      TooManyConsumers: 'Null',131      Token: 'SpRuntimeTokenError',132      Arithmetic: 'SpRuntimeArithmeticError',133      Transactional: 'SpRuntimeTransactionalError',134      Exhausted: 'Null',135      Corruption: 'Null',136      Unavailable: 'Null'137    }138  },139  /**140   * Lookup25: sp_runtime::ModuleError141   **/142  SpRuntimeModuleError: {143    index: 'u8',144    error: '[u8;4]'145  },146  /**147   * Lookup26: sp_runtime::TokenError148   **/149  SpRuntimeTokenError: {150    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151  },152  /**153   * Lookup27: sp_runtime::ArithmeticError154   **/155  SpRuntimeArithmeticError: {156    _enum: ['Underflow', 'Overflow', 'DivisionByZero']157  },158  /**159   * Lookup28: sp_runtime::TransactionalError160   **/161  SpRuntimeTransactionalError: {162    _enum: ['LimitReached', 'NoLayer']163  },164  /**165   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166   **/167  CumulusPalletParachainSystemEvent: {168    _enum: {169      ValidationFunctionStored: 'Null',170      ValidationFunctionApplied: {171        relayChainBlockNum: 'u32',172      },173      ValidationFunctionDiscarded: 'Null',174      UpgradeAuthorized: {175        codeHash: 'H256',176      },177      DownwardMessagesReceived: {178        count: 'u32',179      },180      DownwardMessagesProcessed: {181        weightUsed: 'SpWeightsWeightV2Weight',182        dmqHead: 'H256'183      }184    }185  },186  /**187   * Lookup30: pallet_balances::pallet::Event<T, I>188   **/189  PalletBalancesEvent: {190    _enum: {191      Endowed: {192        account: 'AccountId32',193        freeBalance: 'u128',194      },195      DustLost: {196        account: 'AccountId32',197        amount: 'u128',198      },199      Transfer: {200        from: 'AccountId32',201        to: 'AccountId32',202        amount: 'u128',203      },204      BalanceSet: {205        who: 'AccountId32',206        free: 'u128',207        reserved: 'u128',208      },209      Reserved: {210        who: 'AccountId32',211        amount: 'u128',212      },213      Unreserved: {214        who: 'AccountId32',215        amount: 'u128',216      },217      ReserveRepatriated: {218        from: 'AccountId32',219        to: 'AccountId32',220        amount: 'u128',221        destinationStatus: 'FrameSupportTokensMiscBalanceStatus',222      },223      Deposit: {224        who: 'AccountId32',225        amount: 'u128',226      },227      Withdraw: {228        who: 'AccountId32',229        amount: 'u128',230      },231      Slashed: {232        who: 'AccountId32',233        amount: 'u128'234      }235    }236  },237  /**238   * Lookup31: frame_support::traits::tokens::misc::BalanceStatus239   **/240  FrameSupportTokensMiscBalanceStatus: {241    _enum: ['Free', 'Reserved']242  },243  /**244   * Lookup32: pallet_transaction_payment::pallet::Event<T>245   **/246  PalletTransactionPaymentEvent: {247    _enum: {248      TransactionFeePaid: {249        who: 'AccountId32',250        actualFee: 'u128',251        tip: 'u128'252      }253    }254  },255  /**256   * Lookup33: pallet_treasury::pallet::Event<T, I>257   **/258  PalletTreasuryEvent: {259    _enum: {260      Proposed: {261        proposalIndex: 'u32',262      },263      Spending: {264        budgetRemaining: 'u128',265      },266      Awarded: {267        proposalIndex: 'u32',268        award: 'u128',269        account: 'AccountId32',270      },271      Rejected: {272        proposalIndex: 'u32',273        slashed: 'u128',274      },275      Burnt: {276        burntFunds: 'u128',277      },278      Rollover: {279        rolloverBalance: 'u128',280      },281      Deposit: {282        value: 'u128',283      },284      SpendApproved: {285        proposalIndex: 'u32',286        amount: 'u128',287        beneficiary: 'AccountId32'288      }289    }290  },291  /**292   * Lookup34: pallet_sudo::pallet::Event<T>293   **/294  PalletSudoEvent: {295    _enum: {296      Sudid: {297        sudoResult: 'Result<Null, SpRuntimeDispatchError>',298      },299      KeyChanged: {300        oldSudoer: 'Option<AccountId32>',301      },302      SudoAsDone: {303        sudoResult: 'Result<Null, SpRuntimeDispatchError>'304      }305    }306  },307  /**308   * Lookup38: orml_vesting::module::Event<T>309   **/310  OrmlVestingModuleEvent: {311    _enum: {312      VestingScheduleAdded: {313        from: 'AccountId32',314        to: 'AccountId32',315        vestingSchedule: 'OrmlVestingVestingSchedule',316      },317      Claimed: {318        who: 'AccountId32',319        amount: 'u128',320      },321      VestingSchedulesUpdated: {322        who: 'AccountId32'323      }324    }325  },326  /**327   * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>328   **/329  OrmlVestingVestingSchedule: {330    start: 'u32',331    period: 'u32',332    periodCount: 'u32',333    perPeriod: 'Compact<u128>'334  },335  /**336   * Lookup41: orml_xtokens::module::Event<T>337   **/338  OrmlXtokensModuleEvent: {339    _enum: {340      TransferredMultiAssets: {341        sender: 'AccountId32',342        assets: 'XcmV1MultiassetMultiAssets',343        fee: 'XcmV1MultiAsset',344        dest: 'XcmV1MultiLocation'345      }346    }347  },348  /**349   * Lookup42: xcm::v1::multiasset::MultiAssets350   **/351  XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',352  /**353   * Lookup44: xcm::v1::multiasset::MultiAsset354   **/355  XcmV1MultiAsset: {356    id: 'XcmV1MultiassetAssetId',357    fun: 'XcmV1MultiassetFungibility'358  },359  /**360   * Lookup45: xcm::v1::multiasset::AssetId361   **/362  XcmV1MultiassetAssetId: {363    _enum: {364      Concrete: 'XcmV1MultiLocation',365      Abstract: 'Bytes'366    }367  },368  /**369   * Lookup46: xcm::v1::multilocation::MultiLocation370   **/371  XcmV1MultiLocation: {372    parents: 'u8',373    interior: 'XcmV1MultilocationJunctions'374  },375  /**376   * Lookup47: xcm::v1::multilocation::Junctions377   **/378  XcmV1MultilocationJunctions: {379    _enum: {380      Here: 'Null',381      X1: 'XcmV1Junction',382      X2: '(XcmV1Junction,XcmV1Junction)',383      X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',384      X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',385      X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',386      X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',387      X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',388      X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'389    }390  },391  /**392   * Lookup48: xcm::v1::junction::Junction393   **/394  XcmV1Junction: {395    _enum: {396      Parachain: 'Compact<u32>',397      AccountId32: {398        network: 'XcmV0JunctionNetworkId',399        id: '[u8;32]',400      },401      AccountIndex64: {402        network: 'XcmV0JunctionNetworkId',403        index: 'Compact<u64>',404      },405      AccountKey20: {406        network: 'XcmV0JunctionNetworkId',407        key: '[u8;20]',408      },409      PalletInstance: 'u8',410      GeneralIndex: 'Compact<u128>',411      GeneralKey: 'Bytes',412      OnlyChild: 'Null',413      Plurality: {414        id: 'XcmV0JunctionBodyId',415        part: 'XcmV0JunctionBodyPart'416      }417    }418  },419  /**420   * Lookup50: xcm::v0::junction::NetworkId421   **/422  XcmV0JunctionNetworkId: {423    _enum: {424      Any: 'Null',425      Named: 'Bytes',426      Polkadot: 'Null',427      Kusama: 'Null'428    }429  },430  /**431   * Lookup53: xcm::v0::junction::BodyId432   **/433  XcmV0JunctionBodyId: {434    _enum: {435      Unit: 'Null',436      Named: 'Bytes',437      Index: 'Compact<u32>',438      Executive: 'Null',439      Technical: 'Null',440      Legislative: 'Null',441      Judicial: 'Null'442    }443  },444  /**445   * Lookup54: xcm::v0::junction::BodyPart446   **/447  XcmV0JunctionBodyPart: {448    _enum: {449      Voice: 'Null',450      Members: {451        count: 'Compact<u32>',452      },453      Fraction: {454        nom: 'Compact<u32>',455        denom: 'Compact<u32>',456      },457      AtLeastProportion: {458        nom: 'Compact<u32>',459        denom: 'Compact<u32>',460      },461      MoreThanProportion: {462        nom: 'Compact<u32>',463        denom: 'Compact<u32>'464      }465    }466  },467  /**468   * Lookup55: xcm::v1::multiasset::Fungibility469   **/470  XcmV1MultiassetFungibility: {471    _enum: {472      Fungible: 'Compact<u128>',473      NonFungible: 'XcmV1MultiassetAssetInstance'474    }475  },476  /**477   * Lookup56: xcm::v1::multiasset::AssetInstance478   **/479  XcmV1MultiassetAssetInstance: {480    _enum: {481      Undefined: 'Null',482      Index: 'Compact<u128>',483      Array4: '[u8;4]',484      Array8: '[u8;8]',485      Array16: '[u8;16]',486      Array32: '[u8;32]',487      Blob: 'Bytes'488    }489  },490  /**491   * Lookup59: orml_tokens::module::Event<T>492   **/493  OrmlTokensModuleEvent: {494    _enum: {495      Endowed: {496        currencyId: 'PalletForeignAssetsAssetIds',497        who: 'AccountId32',498        amount: 'u128',499      },500      DustLost: {501        currencyId: 'PalletForeignAssetsAssetIds',502        who: 'AccountId32',503        amount: 'u128',504      },505      Transfer: {506        currencyId: 'PalletForeignAssetsAssetIds',507        from: 'AccountId32',508        to: 'AccountId32',509        amount: 'u128',510      },511      Reserved: {512        currencyId: 'PalletForeignAssetsAssetIds',513        who: 'AccountId32',514        amount: 'u128',515      },516      Unreserved: {517        currencyId: 'PalletForeignAssetsAssetIds',518        who: 'AccountId32',519        amount: 'u128',520      },521      ReserveRepatriated: {522        currencyId: 'PalletForeignAssetsAssetIds',523        from: 'AccountId32',524        to: 'AccountId32',525        amount: 'u128',526        status: 'FrameSupportTokensMiscBalanceStatus',527      },528      BalanceSet: {529        currencyId: 'PalletForeignAssetsAssetIds',530        who: 'AccountId32',531        free: 'u128',532        reserved: 'u128',533      },534      TotalIssuanceSet: {535        currencyId: 'PalletForeignAssetsAssetIds',536        amount: 'u128',537      },538      Withdrawn: {539        currencyId: 'PalletForeignAssetsAssetIds',540        who: 'AccountId32',541        amount: 'u128',542      },543      Slashed: {544        currencyId: 'PalletForeignAssetsAssetIds',545        who: 'AccountId32',546        freeAmount: 'u128',547        reservedAmount: 'u128',548      },549      Deposited: {550        currencyId: 'PalletForeignAssetsAssetIds',551        who: 'AccountId32',552        amount: 'u128',553      },554      LockSet: {555        lockId: '[u8;8]',556        currencyId: 'PalletForeignAssetsAssetIds',557        who: 'AccountId32',558        amount: 'u128',559      },560      LockRemoved: {561        lockId: '[u8;8]',562        currencyId: 'PalletForeignAssetsAssetIds',563        who: 'AccountId32'564      }565    }566  },567  /**568   * Lookup60: pallet_foreign_assets::AssetIds569   **/570  PalletForeignAssetsAssetIds: {571    _enum: {572      ForeignAssetId: 'u32',573      NativeAssetId: 'PalletForeignAssetsNativeCurrency'574    }575  },576  /**577   * Lookup61: pallet_foreign_assets::NativeCurrency578   **/579  PalletForeignAssetsNativeCurrency: {580    _enum: ['Here', 'Parent']581  },582  /**583   * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>584   **/585  CumulusPalletXcmpQueueEvent: {586    _enum: {587      Success: {588        messageHash: 'Option<H256>',589        weight: 'SpWeightsWeightV2Weight',590      },591      Fail: {592        messageHash: 'Option<H256>',593        error: 'XcmV2TraitsError',594        weight: 'SpWeightsWeightV2Weight',595      },596      BadVersion: {597        messageHash: 'Option<H256>',598      },599      BadFormat: {600        messageHash: 'Option<H256>',601      },602      UpwardMessageSent: {603        messageHash: 'Option<H256>',604      },605      XcmpMessageSent: {606        messageHash: 'Option<H256>',607      },608      OverweightEnqueued: {609        sender: 'u32',610        sentAt: 'u32',611        index: 'u64',612        required: 'SpWeightsWeightV2Weight',613      },614      OverweightServiced: {615        index: 'u64',616        used: 'SpWeightsWeightV2Weight'617      }618    }619  },620  /**621   * Lookup64: xcm::v2::traits::Error622   **/623  XcmV2TraitsError: {624    _enum: {625      Overflow: 'Null',626      Unimplemented: 'Null',627      UntrustedReserveLocation: 'Null',628      UntrustedTeleportLocation: 'Null',629      MultiLocationFull: 'Null',630      MultiLocationNotInvertible: 'Null',631      BadOrigin: 'Null',632      InvalidLocation: 'Null',633      AssetNotFound: 'Null',634      FailedToTransactAsset: 'Null',635      NotWithdrawable: 'Null',636      LocationCannotHold: 'Null',637      ExceedsMaxMessageSize: 'Null',638      DestinationUnsupported: 'Null',639      Transport: 'Null',640      Unroutable: 'Null',641      UnknownClaim: 'Null',642      FailedToDecode: 'Null',643      MaxWeightInvalid: 'Null',644      NotHoldingFees: 'Null',645      TooExpensive: 'Null',646      Trap: 'u64',647      UnhandledXcmVersion: 'Null',648      WeightLimitReached: 'u64',649      Barrier: 'Null',650      WeightNotComputable: 'Null'651    }652  },653  /**654   * Lookup66: pallet_xcm::pallet::Event<T>655   **/656  PalletXcmEvent: {657    _enum: {658      Attempted: 'XcmV2TraitsOutcome',659      Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',660      UnexpectedResponse: '(XcmV1MultiLocation,u64)',661      ResponseReady: '(u64,XcmV2Response)',662      Notified: '(u64,u8,u8)',663      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',664      NotifyDispatchError: '(u64,u8,u8)',665      NotifyDecodeFailed: '(u64,u8,u8)',666      InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',667      InvalidResponderVersion: '(XcmV1MultiLocation,u64)',668      ResponseTaken: 'u64',669      AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',670      VersionChangeNotified: '(XcmV1MultiLocation,u32)',671      SupportedVersionChanged: '(XcmV1MultiLocation,u32)',672      NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',673      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',674      AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'675    }676  },677  /**678   * Lookup67: xcm::v2::traits::Outcome679   **/680  XcmV2TraitsOutcome: {681    _enum: {682      Complete: 'u64',683      Incomplete: '(u64,XcmV2TraitsError)',684      Error: 'XcmV2TraitsError'685    }686  },687  /**688   * Lookup68: xcm::v2::Xcm<RuntimeCall>689   **/690  XcmV2Xcm: 'Vec<XcmV2Instruction>',691  /**692   * Lookup70: xcm::v2::Instruction<RuntimeCall>693   **/694  XcmV2Instruction: {695    _enum: {696      WithdrawAsset: 'XcmV1MultiassetMultiAssets',697      ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',698      ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',699      QueryResponse: {700        queryId: 'Compact<u64>',701        response: 'XcmV2Response',702        maxWeight: 'Compact<u64>',703      },704      TransferAsset: {705        assets: 'XcmV1MultiassetMultiAssets',706        beneficiary: 'XcmV1MultiLocation',707      },708      TransferReserveAsset: {709        assets: 'XcmV1MultiassetMultiAssets',710        dest: 'XcmV1MultiLocation',711        xcm: 'XcmV2Xcm',712      },713      Transact: {714        originType: 'XcmV0OriginKind',715        requireWeightAtMost: 'Compact<u64>',716        call: 'XcmDoubleEncoded',717      },718      HrmpNewChannelOpenRequest: {719        sender: 'Compact<u32>',720        maxMessageSize: 'Compact<u32>',721        maxCapacity: 'Compact<u32>',722      },723      HrmpChannelAccepted: {724        recipient: 'Compact<u32>',725      },726      HrmpChannelClosing: {727        initiator: 'Compact<u32>',728        sender: 'Compact<u32>',729        recipient: 'Compact<u32>',730      },731      ClearOrigin: 'Null',732      DescendOrigin: 'XcmV1MultilocationJunctions',733      ReportError: {734        queryId: 'Compact<u64>',735        dest: 'XcmV1MultiLocation',736        maxResponseWeight: 'Compact<u64>',737      },738      DepositAsset: {739        assets: 'XcmV1MultiassetMultiAssetFilter',740        maxAssets: 'Compact<u32>',741        beneficiary: 'XcmV1MultiLocation',742      },743      DepositReserveAsset: {744        assets: 'XcmV1MultiassetMultiAssetFilter',745        maxAssets: 'Compact<u32>',746        dest: 'XcmV1MultiLocation',747        xcm: 'XcmV2Xcm',748      },749      ExchangeAsset: {750        give: 'XcmV1MultiassetMultiAssetFilter',751        receive: 'XcmV1MultiassetMultiAssets',752      },753      InitiateReserveWithdraw: {754        assets: 'XcmV1MultiassetMultiAssetFilter',755        reserve: 'XcmV1MultiLocation',756        xcm: 'XcmV2Xcm',757      },758      InitiateTeleport: {759        assets: 'XcmV1MultiassetMultiAssetFilter',760        dest: 'XcmV1MultiLocation',761        xcm: 'XcmV2Xcm',762      },763      QueryHolding: {764        queryId: 'Compact<u64>',765        dest: 'XcmV1MultiLocation',766        assets: 'XcmV1MultiassetMultiAssetFilter',767        maxResponseWeight: 'Compact<u64>',768      },769      BuyExecution: {770        fees: 'XcmV1MultiAsset',771        weightLimit: 'XcmV2WeightLimit',772      },773      RefundSurplus: 'Null',774      SetErrorHandler: 'XcmV2Xcm',775      SetAppendix: 'XcmV2Xcm',776      ClearError: 'Null',777      ClaimAsset: {778        assets: 'XcmV1MultiassetMultiAssets',779        ticket: 'XcmV1MultiLocation',780      },781      Trap: 'Compact<u64>',782      SubscribeVersion: {783        queryId: 'Compact<u64>',784        maxResponseWeight: 'Compact<u64>',785      },786      UnsubscribeVersion: 'Null'787    }788  },789  /**790   * Lookup71: xcm::v2::Response791   **/792  XcmV2Response: {793    _enum: {794      Null: 'Null',795      Assets: 'XcmV1MultiassetMultiAssets',796      ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',797      Version: 'u32'798    }799  },800  /**801   * Lookup74: xcm::v0::OriginKind802   **/803  XcmV0OriginKind: {804    _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']805  },806  /**807   * Lookup75: xcm::double_encoded::DoubleEncoded<T>808   **/809  XcmDoubleEncoded: {810    encoded: 'Bytes'811  },812  /**813   * Lookup76: xcm::v1::multiasset::MultiAssetFilter814   **/815  XcmV1MultiassetMultiAssetFilter: {816    _enum: {817      Definite: 'XcmV1MultiassetMultiAssets',818      Wild: 'XcmV1MultiassetWildMultiAsset'819    }820  },821  /**822   * Lookup77: xcm::v1::multiasset::WildMultiAsset823   **/824  XcmV1MultiassetWildMultiAsset: {825    _enum: {826      All: 'Null',827      AllOf: {828        id: 'XcmV1MultiassetAssetId',829        fun: 'XcmV1MultiassetWildFungibility'830      }831    }832  },833  /**834   * Lookup78: xcm::v1::multiasset::WildFungibility835   **/836  XcmV1MultiassetWildFungibility: {837    _enum: ['Fungible', 'NonFungible']838  },839  /**840   * Lookup79: xcm::v2::WeightLimit841   **/842  XcmV2WeightLimit: {843    _enum: {844      Unlimited: 'Null',845      Limited: 'Compact<u64>'846    }847  },848  /**849   * Lookup81: xcm::VersionedMultiAssets850   **/851  XcmVersionedMultiAssets: {852    _enum: {853      V0: 'Vec<XcmV0MultiAsset>',854      V1: 'XcmV1MultiassetMultiAssets'855    }856  },857  /**858   * Lookup83: xcm::v0::multi_asset::MultiAsset859   **/860  XcmV0MultiAsset: {861    _enum: {862      None: 'Null',863      All: 'Null',864      AllFungible: 'Null',865      AllNonFungible: 'Null',866      AllAbstractFungible: {867        id: 'Bytes',868      },869      AllAbstractNonFungible: {870        class: 'Bytes',871      },872      AllConcreteFungible: {873        id: 'XcmV0MultiLocation',874      },875      AllConcreteNonFungible: {876        class: 'XcmV0MultiLocation',877      },878      AbstractFungible: {879        id: 'Bytes',880        amount: 'Compact<u128>',881      },882      AbstractNonFungible: {883        class: 'Bytes',884        instance: 'XcmV1MultiassetAssetInstance',885      },886      ConcreteFungible: {887        id: 'XcmV0MultiLocation',888        amount: 'Compact<u128>',889      },890      ConcreteNonFungible: {891        class: 'XcmV0MultiLocation',892        instance: 'XcmV1MultiassetAssetInstance'893      }894    }895  },896  /**897   * Lookup84: xcm::v0::multi_location::MultiLocation898   **/899  XcmV0MultiLocation: {900    _enum: {901      Null: 'Null',902      X1: 'XcmV0Junction',903      X2: '(XcmV0Junction,XcmV0Junction)',904      X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',905      X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',906      X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',907      X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',908      X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',909      X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'910    }911  },912  /**913   * Lookup85: xcm::v0::junction::Junction914   **/915  XcmV0Junction: {916    _enum: {917      Parent: 'Null',918      Parachain: 'Compact<u32>',919      AccountId32: {920        network: 'XcmV0JunctionNetworkId',921        id: '[u8;32]',922      },923      AccountIndex64: {924        network: 'XcmV0JunctionNetworkId',925        index: 'Compact<u64>',926      },927      AccountKey20: {928        network: 'XcmV0JunctionNetworkId',929        key: '[u8;20]',930      },931      PalletInstance: 'u8',932      GeneralIndex: 'Compact<u128>',933      GeneralKey: 'Bytes',934      OnlyChild: 'Null',935      Plurality: {936        id: 'XcmV0JunctionBodyId',937        part: 'XcmV0JunctionBodyPart'938      }939    }940  },941  /**942   * Lookup86: xcm::VersionedMultiLocation943   **/944  XcmVersionedMultiLocation: {945    _enum: {946      V0: 'XcmV0MultiLocation',947      V1: 'XcmV1MultiLocation'948    }949  },950  /**951   * Lookup87: cumulus_pallet_xcm::pallet::Event<T>952   **/953  CumulusPalletXcmEvent: {954    _enum: {955      InvalidFormat: '[u8;8]',956      UnsupportedVersion: '[u8;8]',957      ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'958    }959  },960  /**961   * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>962   **/963  CumulusPalletDmpQueueEvent: {964    _enum: {965      InvalidFormat: {966        messageId: '[u8;32]',967      },968      UnsupportedVersion: {969        messageId: '[u8;32]',970      },971      ExecutedDownward: {972        messageId: '[u8;32]',973        outcome: 'XcmV2TraitsOutcome',974      },975      WeightExhausted: {976        messageId: '[u8;32]',977        remainingWeight: 'SpWeightsWeightV2Weight',978        requiredWeight: 'SpWeightsWeightV2Weight',979      },980      OverweightEnqueued: {981        messageId: '[u8;32]',982        overweightIndex: 'u64',983        requiredWeight: 'SpWeightsWeightV2Weight',984      },985      OverweightServiced: {986        overweightIndex: 'u64',987        weightUsed: 'SpWeightsWeightV2Weight'988      }989    }990  },991  /**992   * Lookup89: pallet_common::pallet::Event<T>993   **/994  PalletCommonEvent: {995    _enum: {996      CollectionCreated: '(u32,u8,AccountId32)',997      CollectionDestroyed: 'u32',998      ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',999      ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1000      Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1001      Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1002      ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1003      CollectionPropertySet: '(u32,Bytes)',1004      CollectionPropertyDeleted: '(u32,Bytes)',1005      TokenPropertySet: '(u32,u32,Bytes)',1006      TokenPropertyDeleted: '(u32,u32,Bytes)',1007      PropertyPermissionSet: '(u32,Bytes)',1008      AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1009      AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1010      CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1011      CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1012      CollectionLimitSet: 'u32',1013      CollectionOwnerChanged: '(u32,AccountId32)',1014      CollectionPermissionSet: 'u32',1015      CollectionSponsorSet: '(u32,AccountId32)',1016      SponsorshipConfirmed: '(u32,AccountId32)',1017      CollectionSponsorRemoved: 'u32'1018    }1019  },1020  /**1021   * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1022   **/1023  PalletEvmAccountBasicCrossAccountIdRepr: {1024    _enum: {1025      Substrate: 'AccountId32',1026      Ethereum: 'H160'1027    }1028  },1029  /**1030   * Lookup96: pallet_structure::pallet::Event<T>1031   **/1032  PalletStructureEvent: {1033    _enum: {1034      Executed: 'Result<Null, SpRuntimeDispatchError>'1035    }1036  },1037  /**1038   * Lookup97: pallet_rmrk_core::pallet::Event<T>1039   **/1040  PalletRmrkCoreEvent: {1041    _enum: {1042      CollectionCreated: {1043        issuer: 'AccountId32',1044        collectionId: 'u32',1045      },1046      CollectionDestroyed: {1047        issuer: 'AccountId32',1048        collectionId: 'u32',1049      },1050      IssuerChanged: {1051        oldIssuer: 'AccountId32',1052        newIssuer: 'AccountId32',1053        collectionId: 'u32',1054      },1055      CollectionLocked: {1056        issuer: 'AccountId32',1057        collectionId: 'u32',1058      },1059      NftMinted: {1060        owner: 'AccountId32',1061        collectionId: 'u32',1062        nftId: 'u32',1063      },1064      NFTBurned: {1065        owner: 'AccountId32',1066        nftId: 'u32',1067      },1068      NFTSent: {1069        sender: 'AccountId32',1070        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1071        collectionId: 'u32',1072        nftId: 'u32',1073        approvalRequired: 'bool',1074      },1075      NFTAccepted: {1076        sender: 'AccountId32',1077        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1078        collectionId: 'u32',1079        nftId: 'u32',1080      },1081      NFTRejected: {1082        sender: 'AccountId32',1083        collectionId: 'u32',1084        nftId: 'u32',1085      },1086      PropertySet: {1087        collectionId: 'u32',1088        maybeNftId: 'Option<u32>',1089        key: 'Bytes',1090        value: 'Bytes',1091      },1092      ResourceAdded: {1093        nftId: 'u32',1094        resourceId: 'u32',1095      },1096      ResourceRemoval: {1097        nftId: 'u32',1098        resourceId: 'u32',1099      },1100      ResourceAccepted: {1101        nftId: 'u32',1102        resourceId: 'u32',1103      },1104      ResourceRemovalAccepted: {1105        nftId: 'u32',1106        resourceId: 'u32',1107      },1108      PrioritySet: {1109        collectionId: 'u32',1110        nftId: 'u32'1111      }1112    }1113  },1114  /**1115   * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1116   **/1117  RmrkTraitsNftAccountIdOrCollectionNftTuple: {1118    _enum: {1119      AccountId: 'AccountId32',1120      CollectionAndNftTuple: '(u32,u32)'1121    }1122  },1123  /**1124   * Lookup102: pallet_rmrk_equip::pallet::Event<T>1125   **/1126  PalletRmrkEquipEvent: {1127    _enum: {1128      BaseCreated: {1129        issuer: 'AccountId32',1130        baseId: 'u32',1131      },1132      EquippablesUpdated: {1133        baseId: 'u32',1134        slotId: 'u32'1135      }1136    }1137  },1138  /**1139   * Lookup103: pallet_app_promotion::pallet::Event<T>1140   **/1141  PalletAppPromotionEvent: {1142    _enum: {1143      StakingRecalculation: '(AccountId32,u128,u128)',1144      Stake: '(AccountId32,u128)',1145      Unstake: '(AccountId32,u128)',1146      SetAdmin: 'AccountId32'1147    }1148  },1149  /**1150   * Lookup104: pallet_foreign_assets::module::Event<T>1151   **/1152  PalletForeignAssetsModuleEvent: {1153    _enum: {1154      ForeignAssetRegistered: {1155        assetId: 'u32',1156        assetAddress: 'XcmV1MultiLocation',1157        metadata: 'PalletForeignAssetsModuleAssetMetadata',1158      },1159      ForeignAssetUpdated: {1160        assetId: 'u32',1161        assetAddress: 'XcmV1MultiLocation',1162        metadata: 'PalletForeignAssetsModuleAssetMetadata',1163      },1164      AssetRegistered: {1165        assetId: 'PalletForeignAssetsAssetIds',1166        metadata: 'PalletForeignAssetsModuleAssetMetadata',1167      },1168      AssetUpdated: {1169        assetId: 'PalletForeignAssetsAssetIds',1170        metadata: 'PalletForeignAssetsModuleAssetMetadata'1171      }1172    }1173  },1174  /**1175   * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>1176   **/1177  PalletForeignAssetsModuleAssetMetadata: {1178    name: 'Bytes',1179    symbol: 'Bytes',1180    decimals: 'u8',1181    minimalBalance: 'u128'1182  },1183  /**1184   * Lookup106: pallet_evm::pallet::Event<T>1185   **/1186  PalletEvmEvent: {1187    _enum: {1188      Log: {1189        log: 'EthereumLog',1190      },1191      Created: {1192        address: 'H160',1193      },1194      CreatedFailed: {1195        address: 'H160',1196      },1197      Executed: {1198        address: 'H160',1199      },1200      ExecutedFailed: {1201        address: 'H160'1202      }1203    }1204  },1205  /**1206   * Lookup107: ethereum::log::Log1207   **/1208  EthereumLog: {1209    address: 'H160',1210    topics: 'Vec<H256>',1211    data: 'Bytes'1212  },1213  /**1214   * Lookup109: pallet_ethereum::pallet::Event1215   **/1216  PalletEthereumEvent: {1217    _enum: {1218      Executed: {1219        from: 'H160',1220        to: 'H160',1221        transactionHash: 'H256',1222        exitReason: 'EvmCoreErrorExitReason'1223      }1224    }1225  },1226  /**1227   * Lookup110: evm_core::error::ExitReason1228   **/1229  EvmCoreErrorExitReason: {1230    _enum: {1231      Succeed: 'EvmCoreErrorExitSucceed',1232      Error: 'EvmCoreErrorExitError',1233      Revert: 'EvmCoreErrorExitRevert',1234      Fatal: 'EvmCoreErrorExitFatal'1235    }1236  },1237  /**1238   * Lookup111: evm_core::error::ExitSucceed1239   **/1240  EvmCoreErrorExitSucceed: {1241    _enum: ['Stopped', 'Returned', 'Suicided']1242  },1243  /**1244   * Lookup112: evm_core::error::ExitError1245   **/1246  EvmCoreErrorExitError: {1247    _enum: {1248      StackUnderflow: 'Null',1249      StackOverflow: 'Null',1250      InvalidJump: 'Null',1251      InvalidRange: 'Null',1252      DesignatedInvalid: 'Null',1253      CallTooDeep: 'Null',1254      CreateCollision: 'Null',1255      CreateContractLimit: 'Null',1256      OutOfOffset: 'Null',1257      OutOfGas: 'Null',1258      OutOfFund: 'Null',1259      PCUnderflow: 'Null',1260      CreateEmpty: 'Null',1261      Other: 'Text',1262      InvalidCode: 'Null'1263    }1264  },1265  /**1266   * Lookup115: evm_core::error::ExitRevert1267   **/1268  EvmCoreErrorExitRevert: {1269    _enum: ['Reverted']1270  },1271  /**1272   * Lookup116: evm_core::error::ExitFatal1273   **/1274  EvmCoreErrorExitFatal: {1275    _enum: {1276      NotSupported: 'Null',1277      UnhandledInterrupt: 'Null',1278      CallErrorAsFatal: 'EvmCoreErrorExitError',1279      Other: 'Text'1280    }1281  },1282  /**1283   * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>1284   **/1285  PalletEvmContractHelpersEvent: {1286    _enum: {1287      ContractSponsorSet: '(H160,AccountId32)',1288      ContractSponsorshipConfirmed: '(H160,AccountId32)',1289      ContractSponsorRemoved: 'H160'1290    }1291  },1292  /**1293   * Lookup118: pallet_evm_migration::pallet::Event<T>1294   **/1295  PalletEvmMigrationEvent: {1296    _enum: ['TestEvent']1297  },1298  /**1299   * Lookup119: pallet_maintenance::pallet::Event<T>1300   **/1301  PalletMaintenanceEvent: {1302    _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1303  },1304  /**1305   * Lookup120: pallet_test_utils::pallet::Event<T>1306   **/1307  PalletTestUtilsEvent: {1308    _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1309  },1310  /**1311   * Lookup121: frame_system::Phase1312   **/1313  FrameSystemPhase: {1314    _enum: {1315      ApplyExtrinsic: 'u32',1316      Finalization: 'Null',1317      Initialization: 'Null'1318    }1319  },1320  /**1321   * Lookup124: frame_system::LastRuntimeUpgradeInfo1322   **/1323  FrameSystemLastRuntimeUpgradeInfo: {1324    specVersion: 'Compact<u32>',1325    specName: 'Text'1326  },1327  /**1328   * Lookup125: frame_system::pallet::Call<T>1329   **/1330  FrameSystemCall: {1331    _enum: {1332      fill_block: {1333        ratio: 'Perbill',1334      },1335      remark: {1336        remark: 'Bytes',1337      },1338      set_heap_pages: {1339        pages: 'u64',1340      },1341      set_code: {1342        code: 'Bytes',1343      },1344      set_code_without_checks: {1345        code: 'Bytes',1346      },1347      set_storage: {1348        items: 'Vec<(Bytes,Bytes)>',1349      },1350      kill_storage: {1351        _alias: {1352          keys_: 'keys',1353        },1354        keys_: 'Vec<Bytes>',1355      },1356      kill_prefix: {1357        prefix: 'Bytes',1358        subkeys: 'u32',1359      },1360      remark_with_event: {1361        remark: 'Bytes'1362      }1363    }1364  },1365  /**1366   * Lookup130: frame_system::limits::BlockWeights1367   **/1368  FrameSystemLimitsBlockWeights: {1369    baseBlock: 'SpWeightsWeightV2Weight',1370    maxBlock: 'SpWeightsWeightV2Weight',1371    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1372  },1373  /**1374   * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1375   **/1376  FrameSupportDispatchPerDispatchClassWeightsPerClass: {1377    normal: 'FrameSystemLimitsWeightsPerClass',1378    operational: 'FrameSystemLimitsWeightsPerClass',1379    mandatory: 'FrameSystemLimitsWeightsPerClass'1380  },1381  /**1382   * Lookup132: frame_system::limits::WeightsPerClass1383   **/1384  FrameSystemLimitsWeightsPerClass: {1385    baseExtrinsic: 'SpWeightsWeightV2Weight',1386    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1387    maxTotal: 'Option<SpWeightsWeightV2Weight>',1388    reserved: 'Option<SpWeightsWeightV2Weight>'1389  },1390  /**1391   * Lookup134: frame_system::limits::BlockLength1392   **/1393  FrameSystemLimitsBlockLength: {1394    max: 'FrameSupportDispatchPerDispatchClassU32'1395  },1396  /**1397   * Lookup135: frame_support::dispatch::PerDispatchClass<T>1398   **/1399  FrameSupportDispatchPerDispatchClassU32: {1400    normal: 'u32',1401    operational: 'u32',1402    mandatory: 'u32'1403  },1404  /**1405   * Lookup136: sp_weights::RuntimeDbWeight1406   **/1407  SpWeightsRuntimeDbWeight: {1408    read: 'u64',1409    write: 'u64'1410  },1411  /**1412   * Lookup137: sp_version::RuntimeVersion1413   **/1414  SpVersionRuntimeVersion: {1415    specName: 'Text',1416    implName: 'Text',1417    authoringVersion: 'u32',1418    specVersion: 'u32',1419    implVersion: 'u32',1420    apis: 'Vec<([u8;8],u32)>',1421    transactionVersion: 'u32',1422    stateVersion: 'u8'1423  },1424  /**1425   * Lookup142: frame_system::pallet::Error<T>1426   **/1427  FrameSystemError: {1428    _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1429  },1430  /**1431   * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1432   **/1433  PolkadotPrimitivesV2PersistedValidationData: {1434    parentHead: 'Bytes',1435    relayParentNumber: 'u32',1436    relayParentStorageRoot: 'H256',1437    maxPovSize: 'u32'1438  },1439  /**1440   * Lookup146: polkadot_primitives::v2::UpgradeRestriction1441   **/1442  PolkadotPrimitivesV2UpgradeRestriction: {1443    _enum: ['Present']1444  },1445  /**1446   * Lookup147: sp_trie::storage_proof::StorageProof1447   **/1448  SpTrieStorageProof: {1449    trieNodes: 'BTreeSet<Bytes>'1450  },1451  /**1452   * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1453   **/1454  CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1455    dmqMqcHead: 'H256',1456    relayDispatchQueueSize: '(u32,u32)',1457    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1458    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1459  },1460  /**1461   * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel1462   **/1463  PolkadotPrimitivesV2AbridgedHrmpChannel: {1464    maxCapacity: 'u32',1465    maxTotalSize: 'u32',1466    maxMessageSize: 'u32',1467    msgCount: 'u32',1468    totalSize: 'u32',1469    mqcHead: 'Option<H256>'1470  },1471  /**1472   * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration1473   **/1474  PolkadotPrimitivesV2AbridgedHostConfiguration: {1475    maxCodeSize: 'u32',1476    maxHeadDataSize: 'u32',1477    maxUpwardQueueCount: 'u32',1478    maxUpwardQueueSize: 'u32',1479    maxUpwardMessageSize: 'u32',1480    maxUpwardMessageNumPerCandidate: 'u32',1481    hrmpMaxMessageNumPerCandidate: 'u32',1482    validationUpgradeCooldown: 'u32',1483    validationUpgradeDelay: 'u32'1484  },1485  /**1486   * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1487   **/1488  PolkadotCorePrimitivesOutboundHrmpMessage: {1489    recipient: 'u32',1490    data: 'Bytes'1491  },1492  /**1493   * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>1494   **/1495  CumulusPalletParachainSystemCall: {1496    _enum: {1497      set_validation_data: {1498        data: 'CumulusPrimitivesParachainInherentParachainInherentData',1499      },1500      sudo_send_upward_message: {1501        message: 'Bytes',1502      },1503      authorize_upgrade: {1504        codeHash: 'H256',1505      },1506      enact_authorized_upgrade: {1507        code: 'Bytes'1508      }1509    }1510  },1511  /**1512   * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData1513   **/1514  CumulusPrimitivesParachainInherentParachainInherentData: {1515    validationData: 'PolkadotPrimitivesV2PersistedValidationData',1516    relayChainState: 'SpTrieStorageProof',1517    downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1518    horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1519  },1520  /**1521   * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1522   **/1523  PolkadotCorePrimitivesInboundDownwardMessage: {1524    sentAt: 'u32',1525    msg: 'Bytes'1526  },1527  /**1528   * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1529   **/1530  PolkadotCorePrimitivesInboundHrmpMessage: {1531    sentAt: 'u32',1532    data: 'Bytes'1533  },1534  /**1535   * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>1536   **/1537  CumulusPalletParachainSystemError: {1538    _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1539  },1540  /**1541   * Lookup171: pallet_balances::BalanceLock<Balance>1542   **/1543  PalletBalancesBalanceLock: {1544    id: '[u8;8]',1545    amount: 'u128',1546    reasons: 'PalletBalancesReasons'1547  },1548  /**1549   * Lookup172: pallet_balances::Reasons1550   **/1551  PalletBalancesReasons: {1552    _enum: ['Fee', 'Misc', 'All']1553  },1554  /**1555   * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>1556   **/1557  PalletBalancesReserveData: {1558    id: '[u8;16]',1559    amount: 'u128'1560  },1561  /**1562   * Lookup177: pallet_balances::Releases1563   **/1564  PalletBalancesReleases: {1565    _enum: ['V1_0_0', 'V2_0_0']1566  },1567  /**1568   * Lookup178: pallet_balances::pallet::Call<T, I>1569   **/1570  PalletBalancesCall: {1571    _enum: {1572      transfer: {1573        dest: 'MultiAddress',1574        value: 'Compact<u128>',1575      },1576      set_balance: {1577        who: 'MultiAddress',1578        newFree: 'Compact<u128>',1579        newReserved: 'Compact<u128>',1580      },1581      force_transfer: {1582        source: 'MultiAddress',1583        dest: 'MultiAddress',1584        value: 'Compact<u128>',1585      },1586      transfer_keep_alive: {1587        dest: 'MultiAddress',1588        value: 'Compact<u128>',1589      },1590      transfer_all: {1591        dest: 'MultiAddress',1592        keepAlive: 'bool',1593      },1594      force_unreserve: {1595        who: 'MultiAddress',1596        amount: 'u128'1597      }1598    }1599  },1600  /**1601   * Lookup181: pallet_balances::pallet::Error<T, I>1602   **/1603  PalletBalancesError: {1604    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1605  },1606  /**1607   * Lookup183: pallet_timestamp::pallet::Call<T>1608   **/1609  PalletTimestampCall: {1610    _enum: {1611      set: {1612        now: 'Compact<u64>'1613      }1614    }1615  },1616  /**1617   * Lookup185: pallet_transaction_payment::Releases1618   **/1619  PalletTransactionPaymentReleases: {1620    _enum: ['V1Ancient', 'V2']1621  },1622  /**1623   * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1624   **/1625  PalletTreasuryProposal: {1626    proposer: 'AccountId32',1627    value: 'u128',1628    beneficiary: 'AccountId32',1629    bond: 'u128'1630  },1631  /**1632   * Lookup189: pallet_treasury::pallet::Call<T, I>1633   **/1634  PalletTreasuryCall: {1635    _enum: {1636      propose_spend: {1637        value: 'Compact<u128>',1638        beneficiary: 'MultiAddress',1639      },1640      reject_proposal: {1641        proposalId: 'Compact<u32>',1642      },1643      approve_proposal: {1644        proposalId: 'Compact<u32>',1645      },1646      spend: {1647        amount: 'Compact<u128>',1648        beneficiary: 'MultiAddress',1649      },1650      remove_approval: {1651        proposalId: 'Compact<u32>'1652      }1653    }1654  },1655  /**1656   * Lookup192: frame_support::PalletId1657   **/1658  FrameSupportPalletId: '[u8;8]',1659  /**1660   * Lookup193: pallet_treasury::pallet::Error<T, I>1661   **/1662  PalletTreasuryError: {1663    _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1664  },1665  /**1666   * Lookup194: pallet_sudo::pallet::Call<T>1667   **/1668  PalletSudoCall: {1669    _enum: {1670      sudo: {1671        call: 'Call',1672      },1673      sudo_unchecked_weight: {1674        call: 'Call',1675        weight: 'SpWeightsWeightV2Weight',1676      },1677      set_key: {1678        _alias: {1679          new_: 'new',1680        },1681        new_: 'MultiAddress',1682      },1683      sudo_as: {1684        who: 'MultiAddress',1685        call: 'Call'1686      }1687    }1688  },1689  /**1690   * Lookup196: orml_vesting::module::Call<T>1691   **/1692  OrmlVestingModuleCall: {1693    _enum: {1694      claim: 'Null',1695      vested_transfer: {1696        dest: 'MultiAddress',1697        schedule: 'OrmlVestingVestingSchedule',1698      },1699      update_vesting_schedules: {1700        who: 'MultiAddress',1701        vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1702      },1703      claim_for: {1704        dest: 'MultiAddress'1705      }1706    }1707  },1708  /**1709   * Lookup198: orml_xtokens::module::Call<T>1710   **/1711  OrmlXtokensModuleCall: {1712    _enum: {1713      transfer: {1714        currencyId: 'PalletForeignAssetsAssetIds',1715        amount: 'u128',1716        dest: 'XcmVersionedMultiLocation',1717        destWeightLimit: 'XcmV2WeightLimit',1718      },1719      transfer_multiasset: {1720        asset: 'XcmVersionedMultiAsset',1721        dest: 'XcmVersionedMultiLocation',1722        destWeightLimit: 'XcmV2WeightLimit',1723      },1724      transfer_with_fee: {1725        currencyId: 'PalletForeignAssetsAssetIds',1726        amount: 'u128',1727        fee: 'u128',1728        dest: 'XcmVersionedMultiLocation',1729        destWeightLimit: 'XcmV2WeightLimit',1730      },1731      transfer_multiasset_with_fee: {1732        asset: 'XcmVersionedMultiAsset',1733        fee: 'XcmVersionedMultiAsset',1734        dest: 'XcmVersionedMultiLocation',1735        destWeightLimit: 'XcmV2WeightLimit',1736      },1737      transfer_multicurrencies: {1738        currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1739        feeItem: 'u32',1740        dest: 'XcmVersionedMultiLocation',1741        destWeightLimit: 'XcmV2WeightLimit',1742      },1743      transfer_multiassets: {1744        assets: 'XcmVersionedMultiAssets',1745        feeItem: 'u32',1746        dest: 'XcmVersionedMultiLocation',1747        destWeightLimit: 'XcmV2WeightLimit'1748      }1749    }1750  },1751  /**1752   * Lookup199: xcm::VersionedMultiAsset1753   **/1754  XcmVersionedMultiAsset: {1755    _enum: {1756      V0: 'XcmV0MultiAsset',1757      V1: 'XcmV1MultiAsset'1758    }1759  },1760  /**1761   * Lookup202: orml_tokens::module::Call<T>1762   **/1763  OrmlTokensModuleCall: {1764    _enum: {1765      transfer: {1766        dest: 'MultiAddress',1767        currencyId: 'PalletForeignAssetsAssetIds',1768        amount: 'Compact<u128>',1769      },1770      transfer_all: {1771        dest: 'MultiAddress',1772        currencyId: 'PalletForeignAssetsAssetIds',1773        keepAlive: 'bool',1774      },1775      transfer_keep_alive: {1776        dest: 'MultiAddress',1777        currencyId: 'PalletForeignAssetsAssetIds',1778        amount: 'Compact<u128>',1779      },1780      force_transfer: {1781        source: 'MultiAddress',1782        dest: 'MultiAddress',1783        currencyId: 'PalletForeignAssetsAssetIds',1784        amount: 'Compact<u128>',1785      },1786      set_balance: {1787        who: 'MultiAddress',1788        currencyId: 'PalletForeignAssetsAssetIds',1789        newFree: 'Compact<u128>',1790        newReserved: 'Compact<u128>'1791      }1792    }1793  },1794  /**1795   * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>1796   **/1797  CumulusPalletXcmpQueueCall: {1798    _enum: {1799      service_overweight: {1800        index: 'u64',1801        weightLimit: 'u64',1802      },1803      suspend_xcm_execution: 'Null',1804      resume_xcm_execution: 'Null',1805      update_suspend_threshold: {1806        _alias: {1807          new_: 'new',1808        },1809        new_: 'u32',1810      },1811      update_drop_threshold: {1812        _alias: {1813          new_: 'new',1814        },1815        new_: 'u32',1816      },1817      update_resume_threshold: {1818        _alias: {1819          new_: 'new',1820        },1821        new_: 'u32',1822      },1823      update_threshold_weight: {1824        _alias: {1825          new_: 'new',1826        },1827        new_: 'u64',1828      },1829      update_weight_restrict_decay: {1830        _alias: {1831          new_: 'new',1832        },1833        new_: 'u64',1834      },1835      update_xcmp_max_individual_weight: {1836        _alias: {1837          new_: 'new',1838        },1839        new_: 'u64'1840      }1841    }1842  },1843  /**1844   * Lookup204: pallet_xcm::pallet::Call<T>1845   **/1846  PalletXcmCall: {1847    _enum: {1848      send: {1849        dest: 'XcmVersionedMultiLocation',1850        message: 'XcmVersionedXcm',1851      },1852      teleport_assets: {1853        dest: 'XcmVersionedMultiLocation',1854        beneficiary: 'XcmVersionedMultiLocation',1855        assets: 'XcmVersionedMultiAssets',1856        feeAssetItem: 'u32',1857      },1858      reserve_transfer_assets: {1859        dest: 'XcmVersionedMultiLocation',1860        beneficiary: 'XcmVersionedMultiLocation',1861        assets: 'XcmVersionedMultiAssets',1862        feeAssetItem: 'u32',1863      },1864      execute: {1865        message: 'XcmVersionedXcm',1866        maxWeight: 'u64',1867      },1868      force_xcm_version: {1869        location: 'XcmV1MultiLocation',1870        xcmVersion: 'u32',1871      },1872      force_default_xcm_version: {1873        maybeXcmVersion: 'Option<u32>',1874      },1875      force_subscribe_version_notify: {1876        location: 'XcmVersionedMultiLocation',1877      },1878      force_unsubscribe_version_notify: {1879        location: 'XcmVersionedMultiLocation',1880      },1881      limited_reserve_transfer_assets: {1882        dest: 'XcmVersionedMultiLocation',1883        beneficiary: 'XcmVersionedMultiLocation',1884        assets: 'XcmVersionedMultiAssets',1885        feeAssetItem: 'u32',1886        weightLimit: 'XcmV2WeightLimit',1887      },1888      limited_teleport_assets: {1889        dest: 'XcmVersionedMultiLocation',1890        beneficiary: 'XcmVersionedMultiLocation',1891        assets: 'XcmVersionedMultiAssets',1892        feeAssetItem: 'u32',1893        weightLimit: 'XcmV2WeightLimit'1894      }1895    }1896  },1897  /**1898   * Lookup205: xcm::VersionedXcm<RuntimeCall>1899   **/1900  XcmVersionedXcm: {1901    _enum: {1902      V0: 'XcmV0Xcm',1903      V1: 'XcmV1Xcm',1904      V2: 'XcmV2Xcm'1905    }1906  },1907  /**1908   * Lookup206: xcm::v0::Xcm<RuntimeCall>1909   **/1910  XcmV0Xcm: {1911    _enum: {1912      WithdrawAsset: {1913        assets: 'Vec<XcmV0MultiAsset>',1914        effects: 'Vec<XcmV0Order>',1915      },1916      ReserveAssetDeposit: {1917        assets: 'Vec<XcmV0MultiAsset>',1918        effects: 'Vec<XcmV0Order>',1919      },1920      TeleportAsset: {1921        assets: 'Vec<XcmV0MultiAsset>',1922        effects: 'Vec<XcmV0Order>',1923      },1924      QueryResponse: {1925        queryId: 'Compact<u64>',1926        response: 'XcmV0Response',1927      },1928      TransferAsset: {1929        assets: 'Vec<XcmV0MultiAsset>',1930        dest: 'XcmV0MultiLocation',1931      },1932      TransferReserveAsset: {1933        assets: 'Vec<XcmV0MultiAsset>',1934        dest: 'XcmV0MultiLocation',1935        effects: 'Vec<XcmV0Order>',1936      },1937      Transact: {1938        originType: 'XcmV0OriginKind',1939        requireWeightAtMost: 'u64',1940        call: 'XcmDoubleEncoded',1941      },1942      HrmpNewChannelOpenRequest: {1943        sender: 'Compact<u32>',1944        maxMessageSize: 'Compact<u32>',1945        maxCapacity: 'Compact<u32>',1946      },1947      HrmpChannelAccepted: {1948        recipient: 'Compact<u32>',1949      },1950      HrmpChannelClosing: {1951        initiator: 'Compact<u32>',1952        sender: 'Compact<u32>',1953        recipient: 'Compact<u32>',1954      },1955      RelayedFrom: {1956        who: 'XcmV0MultiLocation',1957        message: 'XcmV0Xcm'1958      }1959    }1960  },1961  /**1962   * Lookup208: xcm::v0::order::Order<RuntimeCall>1963   **/1964  XcmV0Order: {1965    _enum: {1966      Null: 'Null',1967      DepositAsset: {1968        assets: 'Vec<XcmV0MultiAsset>',1969        dest: 'XcmV0MultiLocation',1970      },1971      DepositReserveAsset: {1972        assets: 'Vec<XcmV0MultiAsset>',1973        dest: 'XcmV0MultiLocation',1974        effects: 'Vec<XcmV0Order>',1975      },1976      ExchangeAsset: {1977        give: 'Vec<XcmV0MultiAsset>',1978        receive: 'Vec<XcmV0MultiAsset>',1979      },1980      InitiateReserveWithdraw: {1981        assets: 'Vec<XcmV0MultiAsset>',1982        reserve: 'XcmV0MultiLocation',1983        effects: 'Vec<XcmV0Order>',1984      },1985      InitiateTeleport: {1986        assets: 'Vec<XcmV0MultiAsset>',1987        dest: 'XcmV0MultiLocation',1988        effects: 'Vec<XcmV0Order>',1989      },1990      QueryHolding: {1991        queryId: 'Compact<u64>',1992        dest: 'XcmV0MultiLocation',1993        assets: 'Vec<XcmV0MultiAsset>',1994      },1995      BuyExecution: {1996        fees: 'XcmV0MultiAsset',1997        weight: 'u64',1998        debt: 'u64',1999        haltOnError: 'bool',2000        xcm: 'Vec<XcmV0Xcm>'2001      }2002    }2003  },2004  /**2005   * Lookup210: xcm::v0::Response2006   **/2007  XcmV0Response: {2008    _enum: {2009      Assets: 'Vec<XcmV0MultiAsset>'2010    }2011  },2012  /**2013   * Lookup211: xcm::v1::Xcm<RuntimeCall>2014   **/2015  XcmV1Xcm: {2016    _enum: {2017      WithdrawAsset: {2018        assets: 'XcmV1MultiassetMultiAssets',2019        effects: 'Vec<XcmV1Order>',2020      },2021      ReserveAssetDeposited: {2022        assets: 'XcmV1MultiassetMultiAssets',2023        effects: 'Vec<XcmV1Order>',2024      },2025      ReceiveTeleportedAsset: {2026        assets: 'XcmV1MultiassetMultiAssets',2027        effects: 'Vec<XcmV1Order>',2028      },2029      QueryResponse: {2030        queryId: 'Compact<u64>',2031        response: 'XcmV1Response',2032      },2033      TransferAsset: {2034        assets: 'XcmV1MultiassetMultiAssets',2035        beneficiary: 'XcmV1MultiLocation',2036      },2037      TransferReserveAsset: {2038        assets: 'XcmV1MultiassetMultiAssets',2039        dest: 'XcmV1MultiLocation',2040        effects: 'Vec<XcmV1Order>',2041      },2042      Transact: {2043        originType: 'XcmV0OriginKind',2044        requireWeightAtMost: 'u64',2045        call: 'XcmDoubleEncoded',2046      },2047      HrmpNewChannelOpenRequest: {2048        sender: 'Compact<u32>',2049        maxMessageSize: 'Compact<u32>',2050        maxCapacity: 'Compact<u32>',2051      },2052      HrmpChannelAccepted: {2053        recipient: 'Compact<u32>',2054      },2055      HrmpChannelClosing: {2056        initiator: 'Compact<u32>',2057        sender: 'Compact<u32>',2058        recipient: 'Compact<u32>',2059      },2060      RelayedFrom: {2061        who: 'XcmV1MultilocationJunctions',2062        message: 'XcmV1Xcm',2063      },2064      SubscribeVersion: {2065        queryId: 'Compact<u64>',2066        maxResponseWeight: 'Compact<u64>',2067      },2068      UnsubscribeVersion: 'Null'2069    }2070  },2071  /**2072   * Lookup213: xcm::v1::order::Order<RuntimeCall>2073   **/2074  XcmV1Order: {2075    _enum: {2076      Noop: 'Null',2077      DepositAsset: {2078        assets: 'XcmV1MultiassetMultiAssetFilter',2079        maxAssets: 'u32',2080        beneficiary: 'XcmV1MultiLocation',2081      },2082      DepositReserveAsset: {2083        assets: 'XcmV1MultiassetMultiAssetFilter',2084        maxAssets: 'u32',2085        dest: 'XcmV1MultiLocation',2086        effects: 'Vec<XcmV1Order>',2087      },2088      ExchangeAsset: {2089        give: 'XcmV1MultiassetMultiAssetFilter',2090        receive: 'XcmV1MultiassetMultiAssets',2091      },2092      InitiateReserveWithdraw: {2093        assets: 'XcmV1MultiassetMultiAssetFilter',2094        reserve: 'XcmV1MultiLocation',2095        effects: 'Vec<XcmV1Order>',2096      },2097      InitiateTeleport: {2098        assets: 'XcmV1MultiassetMultiAssetFilter',2099        dest: 'XcmV1MultiLocation',2100        effects: 'Vec<XcmV1Order>',2101      },2102      QueryHolding: {2103        queryId: 'Compact<u64>',2104        dest: 'XcmV1MultiLocation',2105        assets: 'XcmV1MultiassetMultiAssetFilter',2106      },2107      BuyExecution: {2108        fees: 'XcmV1MultiAsset',2109        weight: 'u64',2110        debt: 'u64',2111        haltOnError: 'bool',2112        instructions: 'Vec<XcmV1Xcm>'2113      }2114    }2115  },2116  /**2117   * Lookup215: xcm::v1::Response2118   **/2119  XcmV1Response: {2120    _enum: {2121      Assets: 'XcmV1MultiassetMultiAssets',2122      Version: 'u32'2123    }2124  },2125  /**2126   * Lookup229: cumulus_pallet_xcm::pallet::Call<T>2127   **/2128  CumulusPalletXcmCall: 'Null',2129  /**2130   * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>2131   **/2132  CumulusPalletDmpQueueCall: {2133    _enum: {2134      service_overweight: {2135        index: 'u64',2136        weightLimit: 'u64'2137      }2138    }2139  },2140  /**2141   * Lookup231: pallet_inflation::pallet::Call<T>2142   **/2143  PalletInflationCall: {2144    _enum: {2145      start_inflation: {2146        inflationStartRelayBlock: 'u32'2147      }2148    }2149  },2150  /**2151   * Lookup232: pallet_unique::Call<T>2152   **/2153  PalletUniqueCall: {2154    _enum: {2155      create_collection: {2156        collectionName: 'Vec<u16>',2157        collectionDescription: 'Vec<u16>',2158        tokenPrefix: 'Bytes',2159        mode: 'UpDataStructsCollectionMode',2160      },2161      create_collection_ex: {2162        data: 'UpDataStructsCreateCollectionData',2163      },2164      destroy_collection: {2165        collectionId: 'u32',2166      },2167      add_to_allow_list: {2168        collectionId: 'u32',2169        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2170      },2171      remove_from_allow_list: {2172        collectionId: 'u32',2173        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2174      },2175      change_collection_owner: {2176        collectionId: 'u32',2177        newOwner: 'AccountId32',2178      },2179      add_collection_admin: {2180        collectionId: 'u32',2181        newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2182      },2183      remove_collection_admin: {2184        collectionId: 'u32',2185        accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2186      },2187      set_collection_sponsor: {2188        collectionId: 'u32',2189        newSponsor: 'AccountId32',2190      },2191      confirm_sponsorship: {2192        collectionId: 'u32',2193      },2194      remove_collection_sponsor: {2195        collectionId: 'u32',2196      },2197      create_item: {2198        collectionId: 'u32',2199        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2200        data: 'UpDataStructsCreateItemData',2201      },2202      create_multiple_items: {2203        collectionId: 'u32',2204        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2205        itemsData: 'Vec<UpDataStructsCreateItemData>',2206      },2207      set_collection_properties: {2208        collectionId: 'u32',2209        properties: 'Vec<UpDataStructsProperty>',2210      },2211      delete_collection_properties: {2212        collectionId: 'u32',2213        propertyKeys: 'Vec<Bytes>',2214      },2215      set_token_properties: {2216        collectionId: 'u32',2217        tokenId: 'u32',2218        properties: 'Vec<UpDataStructsProperty>',2219      },2220      delete_token_properties: {2221        collectionId: 'u32',2222        tokenId: 'u32',2223        propertyKeys: 'Vec<Bytes>',2224      },2225      set_token_property_permissions: {2226        collectionId: 'u32',2227        propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2228      },2229      create_multiple_items_ex: {2230        collectionId: 'u32',2231        data: 'UpDataStructsCreateItemExData',2232      },2233      set_transfers_enabled_flag: {2234        collectionId: 'u32',2235        value: 'bool',2236      },2237      burn_item: {2238        collectionId: 'u32',2239        itemId: 'u32',2240        value: 'u128',2241      },2242      burn_from: {2243        collectionId: 'u32',2244        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2245        itemId: 'u32',2246        value: 'u128',2247      },2248      transfer: {2249        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2250        collectionId: 'u32',2251        itemId: 'u32',2252        value: 'u128',2253      },2254      approve: {2255        spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2256        collectionId: 'u32',2257        itemId: 'u32',2258        amount: 'u128',2259      },2260      transfer_from: {2261        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2262        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2263        collectionId: 'u32',2264        itemId: 'u32',2265        value: 'u128',2266      },2267      set_collection_limits: {2268        collectionId: 'u32',2269        newLimit: 'UpDataStructsCollectionLimits',2270      },2271      set_collection_permissions: {2272        collectionId: 'u32',2273        newPermission: 'UpDataStructsCollectionPermissions',2274      },2275      repartition: {2276        collectionId: 'u32',2277        tokenId: 'u32',2278        amount: 'u128',2279      },2280      set_allowance_for_all: {2281        collectionId: 'u32',2282        operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2283        approve: 'bool',2284      },2285      repair_item: {2286        collectionId: 'u32',2287        itemId: 'u32'2288      }2289    }2290  },2291  /**2292   * Lookup237: up_data_structs::CollectionMode2293   **/2294  UpDataStructsCollectionMode: {2295    _enum: {2296      NFT: 'Null',2297      Fungible: 'u8',2298      ReFungible: 'Null'2299    }2300  },2301  /**2302   * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2303   **/2304  UpDataStructsCreateCollectionData: {2305    mode: 'UpDataStructsCollectionMode',2306    access: 'Option<UpDataStructsAccessMode>',2307    name: 'Vec<u16>',2308    description: 'Vec<u16>',2309    tokenPrefix: 'Bytes',2310    pendingSponsor: 'Option<AccountId32>',2311    limits: 'Option<UpDataStructsCollectionLimits>',2312    permissions: 'Option<UpDataStructsCollectionPermissions>',2313    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2314    properties: 'Vec<UpDataStructsProperty>'2315  },2316  /**2317   * Lookup240: up_data_structs::AccessMode2318   **/2319  UpDataStructsAccessMode: {2320    _enum: ['Normal', 'AllowList']2321  },2322  /**2323   * Lookup242: up_data_structs::CollectionLimits2324   **/2325  UpDataStructsCollectionLimits: {2326    accountTokenOwnershipLimit: 'Option<u32>',2327    sponsoredDataSize: 'Option<u32>',2328    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2329    tokenLimit: 'Option<u32>',2330    sponsorTransferTimeout: 'Option<u32>',2331    sponsorApproveTimeout: 'Option<u32>',2332    ownerCanTransfer: 'Option<bool>',2333    ownerCanDestroy: 'Option<bool>',2334    transfersEnabled: 'Option<bool>'2335  },2336  /**2337   * Lookup244: up_data_structs::SponsoringRateLimit2338   **/2339  UpDataStructsSponsoringRateLimit: {2340    _enum: {2341      SponsoringDisabled: 'Null',2342      Blocks: 'u32'2343    }2344  },2345  /**2346   * Lookup247: up_data_structs::CollectionPermissions2347   **/2348  UpDataStructsCollectionPermissions: {2349    access: 'Option<UpDataStructsAccessMode>',2350    mintMode: 'Option<bool>',2351    nesting: 'Option<UpDataStructsNestingPermissions>'2352  },2353  /**2354   * Lookup249: up_data_structs::NestingPermissions2355   **/2356  UpDataStructsNestingPermissions: {2357    tokenOwner: 'bool',2358    collectionAdmin: 'bool',2359    restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2360  },2361  /**2362   * Lookup251: up_data_structs::OwnerRestrictedSet2363   **/2364  UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2365  /**2366   * Lookup256: up_data_structs::PropertyKeyPermission2367   **/2368  UpDataStructsPropertyKeyPermission: {2369    key: 'Bytes',2370    permission: 'UpDataStructsPropertyPermission'2371  },2372  /**2373   * Lookup257: up_data_structs::PropertyPermission2374   **/2375  UpDataStructsPropertyPermission: {2376    mutable: 'bool',2377    collectionAdmin: 'bool',2378    tokenOwner: 'bool'2379  },2380  /**2381   * Lookup260: up_data_structs::Property2382   **/2383  UpDataStructsProperty: {2384    key: 'Bytes',2385    value: 'Bytes'2386  },2387  /**2388   * Lookup263: up_data_structs::CreateItemData2389   **/2390  UpDataStructsCreateItemData: {2391    _enum: {2392      NFT: 'UpDataStructsCreateNftData',2393      Fungible: 'UpDataStructsCreateFungibleData',2394      ReFungible: 'UpDataStructsCreateReFungibleData'2395    }2396  },2397  /**2398   * Lookup264: up_data_structs::CreateNftData2399   **/2400  UpDataStructsCreateNftData: {2401    properties: 'Vec<UpDataStructsProperty>'2402  },2403  /**2404   * Lookup265: up_data_structs::CreateFungibleData2405   **/2406  UpDataStructsCreateFungibleData: {2407    value: 'u128'2408  },2409  /**2410   * Lookup266: up_data_structs::CreateReFungibleData2411   **/2412  UpDataStructsCreateReFungibleData: {2413    pieces: 'u128',2414    properties: 'Vec<UpDataStructsProperty>'2415  },2416  /**2417   * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2418   **/2419  UpDataStructsCreateItemExData: {2420    _enum: {2421      NFT: 'Vec<UpDataStructsCreateNftExData>',2422      Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2423      RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2424      RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2425    }2426  },2427  /**2428   * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2429   **/2430  UpDataStructsCreateNftExData: {2431    properties: 'Vec<UpDataStructsProperty>',2432    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2433  },2434  /**2435   * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2436   **/2437  UpDataStructsCreateRefungibleExSingleOwner: {2438    user: 'PalletEvmAccountBasicCrossAccountIdRepr',2439    pieces: 'u128',2440    properties: 'Vec<UpDataStructsProperty>'2441  },2442  /**2443   * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2444   **/2445  UpDataStructsCreateRefungibleExMultipleOwners: {2446    users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2447    properties: 'Vec<UpDataStructsProperty>'2448  },2449  /**2450   * Lookup281: pallet_configuration::pallet::Call<T>2451   **/2452  PalletConfigurationCall: {2453    _enum: {2454      set_weight_to_fee_coefficient_override: {2455        coeff: 'Option<u32>',2456      },2457      set_min_gas_price_override: {2458        coeff: 'Option<u64>',2459      },2460      set_xcm_allowed_locations: {2461        locations: 'Option<Vec<XcmV1MultiLocation>>',2462      },2463      set_app_promotion_configuration_override: {2464        configuration: 'PalletConfigurationAppPromotionConfiguration'2465      }2466    }2467  },2468  /**2469   * Lookup286: pallet_configuration::AppPromotionConfiguration<BlockNumber>2470   **/2471  PalletConfigurationAppPromotionConfiguration: {2472    recalculationInterval: 'Option<u32>',2473    pendingInterval: 'Option<u32>',2474    intervalIncome: 'Option<Perbill>',2475    maxStakersPerCalculation: 'Option<u8>'2476  },2477  /**2478   * Lookup289: pallet_template_transaction_payment::Call<T>2479   **/2480  PalletTemplateTransactionPaymentCall: 'Null',2481  /**2482   * Lookup290: pallet_structure::pallet::Call<T>2483   **/2484  PalletStructureCall: 'Null',2485  /**2486   * Lookup291: pallet_rmrk_core::pallet::Call<T>2487   **/2488  PalletRmrkCoreCall: {2489    _enum: {2490      create_collection: {2491        metadata: 'Bytes',2492        max: 'Option<u32>',2493        symbol: 'Bytes',2494      },2495      destroy_collection: {2496        collectionId: 'u32',2497      },2498      change_collection_issuer: {2499        collectionId: 'u32',2500        newIssuer: 'MultiAddress',2501      },2502      lock_collection: {2503        collectionId: 'u32',2504      },2505      mint_nft: {2506        owner: 'Option<AccountId32>',2507        collectionId: 'u32',2508        recipient: 'Option<AccountId32>',2509        royaltyAmount: 'Option<Permill>',2510        metadata: 'Bytes',2511        transferable: 'bool',2512        resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2513      },2514      burn_nft: {2515        collectionId: 'u32',2516        nftId: 'u32',2517        maxBurns: 'u32',2518      },2519      send: {2520        rmrkCollectionId: 'u32',2521        rmrkNftId: 'u32',2522        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2523      },2524      accept_nft: {2525        rmrkCollectionId: 'u32',2526        rmrkNftId: 'u32',2527        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2528      },2529      reject_nft: {2530        rmrkCollectionId: 'u32',2531        rmrkNftId: 'u32',2532      },2533      accept_resource: {2534        rmrkCollectionId: 'u32',2535        rmrkNftId: 'u32',2536        resourceId: 'u32',2537      },2538      accept_resource_removal: {2539        rmrkCollectionId: 'u32',2540        rmrkNftId: 'u32',2541        resourceId: 'u32',2542      },2543      set_property: {2544        rmrkCollectionId: 'Compact<u32>',2545        maybeNftId: 'Option<u32>',2546        key: 'Bytes',2547        value: 'Bytes',2548      },2549      set_priority: {2550        rmrkCollectionId: 'u32',2551        rmrkNftId: 'u32',2552        priorities: 'Vec<u32>',2553      },2554      add_basic_resource: {2555        rmrkCollectionId: 'u32',2556        nftId: 'u32',2557        resource: 'RmrkTraitsResourceBasicResource',2558      },2559      add_composable_resource: {2560        rmrkCollectionId: 'u32',2561        nftId: 'u32',2562        resource: 'RmrkTraitsResourceComposableResource',2563      },2564      add_slot_resource: {2565        rmrkCollectionId: 'u32',2566        nftId: 'u32',2567        resource: 'RmrkTraitsResourceSlotResource',2568      },2569      remove_resource: {2570        rmrkCollectionId: 'u32',2571        nftId: 'u32',2572        resourceId: 'u32'2573      }2574    }2575  },2576  /**2577   * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2578   **/2579  RmrkTraitsResourceResourceTypes: {2580    _enum: {2581      Basic: 'RmrkTraitsResourceBasicResource',2582      Composable: 'RmrkTraitsResourceComposableResource',2583      Slot: 'RmrkTraitsResourceSlotResource'2584    }2585  },2586  /**2587   * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2588   **/2589  RmrkTraitsResourceBasicResource: {2590    src: 'Option<Bytes>',2591    metadata: 'Option<Bytes>',2592    license: 'Option<Bytes>',2593    thumb: 'Option<Bytes>'2594  },2595  /**2596   * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2597   **/2598  RmrkTraitsResourceComposableResource: {2599    parts: 'Vec<u32>',2600    base: 'u32',2601    src: 'Option<Bytes>',2602    metadata: 'Option<Bytes>',2603    license: 'Option<Bytes>',2604    thumb: 'Option<Bytes>'2605  },2606  /**2607   * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2608   **/2609  RmrkTraitsResourceSlotResource: {2610    base: 'u32',2611    src: 'Option<Bytes>',2612    metadata: 'Option<Bytes>',2613    slot: 'u32',2614    license: 'Option<Bytes>',2615    thumb: 'Option<Bytes>'2616  },2617  /**2618   * Lookup305: pallet_rmrk_equip::pallet::Call<T>2619   **/2620  PalletRmrkEquipCall: {2621    _enum: {2622      create_base: {2623        baseType: 'Bytes',2624        symbol: 'Bytes',2625        parts: 'Vec<RmrkTraitsPartPartType>',2626      },2627      theme_add: {2628        baseId: 'u32',2629        theme: 'RmrkTraitsTheme',2630      },2631      equippable: {2632        baseId: 'u32',2633        slotId: 'u32',2634        equippables: 'RmrkTraitsPartEquippableList'2635      }2636    }2637  },2638  /**2639   * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2640   **/2641  RmrkTraitsPartPartType: {2642    _enum: {2643      FixedPart: 'RmrkTraitsPartFixedPart',2644      SlotPart: 'RmrkTraitsPartSlotPart'2645    }2646  },2647  /**2648   * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2649   **/2650  RmrkTraitsPartFixedPart: {2651    id: 'u32',2652    z: 'u32',2653    src: 'Bytes'2654  },2655  /**2656   * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2657   **/2658  RmrkTraitsPartSlotPart: {2659    id: 'u32',2660    equippable: 'RmrkTraitsPartEquippableList',2661    src: 'Bytes',2662    z: 'u32'2663  },2664  /**2665   * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2666   **/2667  RmrkTraitsPartEquippableList: {2668    _enum: {2669      All: 'Null',2670      Empty: 'Null',2671      Custom: 'Vec<u32>'2672    }2673  },2674  /**2675   * Lookup314: 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>>2676   **/2677  RmrkTraitsTheme: {2678    name: 'Bytes',2679    properties: 'Vec<RmrkTraitsThemeThemeProperty>',2680    inherit: 'bool'2681  },2682  /**2683   * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2684   **/2685  RmrkTraitsThemeThemeProperty: {2686    key: 'Bytes',2687    value: 'Bytes'2688  },2689  /**2690   * Lookup318: pallet_app_promotion::pallet::Call<T>2691   **/2692  PalletAppPromotionCall: {2693    _enum: {2694      set_admin_address: {2695        admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2696      },2697      stake: {2698        amount: 'u128',2699      },2700      unstake: 'Null',2701      sponsor_collection: {2702        collectionId: 'u32',2703      },2704      stop_sponsoring_collection: {2705        collectionId: 'u32',2706      },2707      sponsor_contract: {2708        contractId: 'H160',2709      },2710      stop_sponsoring_contract: {2711        contractId: 'H160',2712      },2713      payout_stakers: {2714        stakersNumber: 'Option<u8>'2715      }2716    }2717  },2718  /**2719   * Lookup319: pallet_foreign_assets::module::Call<T>2720   **/2721  PalletForeignAssetsModuleCall: {2722    _enum: {2723      register_foreign_asset: {2724        owner: 'AccountId32',2725        location: 'XcmVersionedMultiLocation',2726        metadata: 'PalletForeignAssetsModuleAssetMetadata',2727      },2728      update_foreign_asset: {2729        foreignAssetId: 'u32',2730        location: 'XcmVersionedMultiLocation',2731        metadata: 'PalletForeignAssetsModuleAssetMetadata'2732      }2733    }2734  },2735  /**2736   * Lookup320: pallet_evm::pallet::Call<T>2737   **/2738  PalletEvmCall: {2739    _enum: {2740      withdraw: {2741        address: 'H160',2742        value: 'u128',2743      },2744      call: {2745        source: 'H160',2746        target: 'H160',2747        input: 'Bytes',2748        value: 'U256',2749        gasLimit: 'u64',2750        maxFeePerGas: 'U256',2751        maxPriorityFeePerGas: 'Option<U256>',2752        nonce: 'Option<U256>',2753        accessList: 'Vec<(H160,Vec<H256>)>',2754      },2755      create: {2756        source: 'H160',2757        init: 'Bytes',2758        value: 'U256',2759        gasLimit: 'u64',2760        maxFeePerGas: 'U256',2761        maxPriorityFeePerGas: 'Option<U256>',2762        nonce: 'Option<U256>',2763        accessList: 'Vec<(H160,Vec<H256>)>',2764      },2765      create2: {2766        source: 'H160',2767        init: 'Bytes',2768        salt: 'H256',2769        value: 'U256',2770        gasLimit: 'u64',2771        maxFeePerGas: 'U256',2772        maxPriorityFeePerGas: 'Option<U256>',2773        nonce: 'Option<U256>',2774        accessList: 'Vec<(H160,Vec<H256>)>'2775      }2776    }2777  },2778  /**2779   * Lookup326: pallet_ethereum::pallet::Call<T>2780   **/2781  PalletEthereumCall: {2782    _enum: {2783      transact: {2784        transaction: 'EthereumTransactionTransactionV2'2785      }2786    }2787  },2788  /**2789   * Lookup327: ethereum::transaction::TransactionV22790   **/2791  EthereumTransactionTransactionV2: {2792    _enum: {2793      Legacy: 'EthereumTransactionLegacyTransaction',2794      EIP2930: 'EthereumTransactionEip2930Transaction',2795      EIP1559: 'EthereumTransactionEip1559Transaction'2796    }2797  },2798  /**2799   * Lookup328: ethereum::transaction::LegacyTransaction2800   **/2801  EthereumTransactionLegacyTransaction: {2802    nonce: 'U256',2803    gasPrice: 'U256',2804    gasLimit: 'U256',2805    action: 'EthereumTransactionTransactionAction',2806    value: 'U256',2807    input: 'Bytes',2808    signature: 'EthereumTransactionTransactionSignature'2809  },2810  /**2811   * Lookup329: ethereum::transaction::TransactionAction2812   **/2813  EthereumTransactionTransactionAction: {2814    _enum: {2815      Call: 'H160',2816      Create: 'Null'2817    }2818  },2819  /**2820   * Lookup330: ethereum::transaction::TransactionSignature2821   **/2822  EthereumTransactionTransactionSignature: {2823    v: 'u64',2824    r: 'H256',2825    s: 'H256'2826  },2827  /**2828   * Lookup332: ethereum::transaction::EIP2930Transaction2829   **/2830  EthereumTransactionEip2930Transaction: {2831    chainId: 'u64',2832    nonce: 'U256',2833    gasPrice: 'U256',2834    gasLimit: 'U256',2835    action: 'EthereumTransactionTransactionAction',2836    value: 'U256',2837    input: 'Bytes',2838    accessList: 'Vec<EthereumTransactionAccessListItem>',2839    oddYParity: 'bool',2840    r: 'H256',2841    s: 'H256'2842  },2843  /**2844   * Lookup334: ethereum::transaction::AccessListItem2845   **/2846  EthereumTransactionAccessListItem: {2847    address: 'H160',2848    storageKeys: 'Vec<H256>'2849  },2850  /**2851   * Lookup335: ethereum::transaction::EIP1559Transaction2852   **/2853  EthereumTransactionEip1559Transaction: {2854    chainId: 'u64',2855    nonce: 'U256',2856    maxPriorityFeePerGas: 'U256',2857    maxFeePerGas: 'U256',2858    gasLimit: 'U256',2859    action: 'EthereumTransactionTransactionAction',2860    value: 'U256',2861    input: 'Bytes',2862    accessList: 'Vec<EthereumTransactionAccessListItem>',2863    oddYParity: 'bool',2864    r: 'H256',2865    s: 'H256'2866  },2867  /**2868   * Lookup336: pallet_evm_migration::pallet::Call<T>2869   **/2870  PalletEvmMigrationCall: {2871    _enum: {2872      begin: {2873        address: 'H160',2874      },2875      set_data: {2876        address: 'H160',2877        data: 'Vec<(H256,H256)>',2878      },2879      finish: {2880        address: 'H160',2881        code: 'Bytes',2882      },2883      insert_eth_logs: {2884        logs: 'Vec<EthereumLog>',2885      },2886      insert_events: {2887        events: 'Vec<Bytes>'2888      }2889    }2890  },2891  /**2892   * Lookup340: pallet_maintenance::pallet::Call<T>2893   **/2894  PalletMaintenanceCall: {2895    _enum: ['enable', 'disable']2896  },2897  /**2898   * Lookup341: pallet_test_utils::pallet::Call<T>2899   **/2900  PalletTestUtilsCall: {2901    _enum: {2902      enable: 'Null',2903      set_test_value: {2904        value: 'u32',2905      },2906      set_test_value_and_rollback: {2907        value: 'u32',2908      },2909      inc_test_value: 'Null',2910      just_take_fee: 'Null',2911      batch_all: {2912        calls: 'Vec<Call>'2913      }2914    }2915  },2916  /**2917   * Lookup343: pallet_sudo::pallet::Error<T>2918   **/2919  PalletSudoError: {2920    _enum: ['RequireSudo']2921  },2922  /**2923   * Lookup345: orml_vesting::module::Error<T>2924   **/2925  OrmlVestingModuleError: {2926    _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2927  },2928  /**2929   * Lookup346: orml_xtokens::module::Error<T>2930   **/2931  OrmlXtokensModuleError: {2932    _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2933  },2934  /**2935   * Lookup349: orml_tokens::BalanceLock<Balance>2936   **/2937  OrmlTokensBalanceLock: {2938    id: '[u8;8]',2939    amount: 'u128'2940  },2941  /**2942   * Lookup351: orml_tokens::AccountData<Balance>2943   **/2944  OrmlTokensAccountData: {2945    free: 'u128',2946    reserved: 'u128',2947    frozen: 'u128'2948  },2949  /**2950   * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>2951   **/2952  OrmlTokensReserveData: {2953    id: 'Null',2954    amount: 'u128'2955  },2956  /**2957   * Lookup355: orml_tokens::module::Error<T>2958   **/2959  OrmlTokensModuleError: {2960    _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2961  },2962  /**2963   * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails2964   **/2965  CumulusPalletXcmpQueueInboundChannelDetails: {2966    sender: 'u32',2967    state: 'CumulusPalletXcmpQueueInboundState',2968    messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2969  },2970  /**2971   * Lookup358: cumulus_pallet_xcmp_queue::InboundState2972   **/2973  CumulusPalletXcmpQueueInboundState: {2974    _enum: ['Ok', 'Suspended']2975  },2976  /**2977   * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat2978   **/2979  PolkadotParachainPrimitivesXcmpMessageFormat: {2980    _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2981  },2982  /**2983   * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails2984   **/2985  CumulusPalletXcmpQueueOutboundChannelDetails: {2986    recipient: 'u32',2987    state: 'CumulusPalletXcmpQueueOutboundState',2988    signalsExist: 'bool',2989    firstIndex: 'u16',2990    lastIndex: 'u16'2991  },2992  /**2993   * Lookup365: cumulus_pallet_xcmp_queue::OutboundState2994   **/2995  CumulusPalletXcmpQueueOutboundState: {2996    _enum: ['Ok', 'Suspended']2997  },2998  /**2999   * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData3000   **/3001  CumulusPalletXcmpQueueQueueConfigData: {3002    suspendThreshold: 'u32',3003    dropThreshold: 'u32',3004    resumeThreshold: 'u32',3005    thresholdWeight: 'SpWeightsWeightV2Weight',3006    weightRestrictDecay: 'SpWeightsWeightV2Weight',3007    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3008  },3009  /**3010   * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3011   **/3012  CumulusPalletXcmpQueueError: {3013    _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3014  },3015  /**3016   * Lookup370: pallet_xcm::pallet::Error<T>3017   **/3018  PalletXcmError: {3019    _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3020  },3021  /**3022   * Lookup371: cumulus_pallet_xcm::pallet::Error<T>3023   **/3024  CumulusPalletXcmError: 'Null',3025  /**3026   * Lookup372: cumulus_pallet_dmp_queue::ConfigData3027   **/3028  CumulusPalletDmpQueueConfigData: {3029    maxIndividual: 'SpWeightsWeightV2Weight'3030  },3031  /**3032   * Lookup373: cumulus_pallet_dmp_queue::PageIndexData3033   **/3034  CumulusPalletDmpQueuePageIndexData: {3035    beginUsed: 'u32',3036    endUsed: 'u32',3037    overweightCount: 'u64'3038  },3039  /**3040   * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>3041   **/3042  CumulusPalletDmpQueueError: {3043    _enum: ['Unknown', 'OverLimit']3044  },3045  /**3046   * Lookup380: pallet_unique::Error<T>3047   **/3048  PalletUniqueError: {3049    _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3050  },3051  /**3052   * Lookup381: pallet_configuration::pallet::Error<T>3053   **/3054  PalletConfigurationError: {3055    _enum: ['InconsistentConfiguration']3056  },3057  /**3058   * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>3059   **/3060  UpDataStructsCollection: {3061    owner: 'AccountId32',3062    mode: 'UpDataStructsCollectionMode',3063    name: 'Vec<u16>',3064    description: 'Vec<u16>',3065    tokenPrefix: 'Bytes',3066    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3067    limits: 'UpDataStructsCollectionLimits',3068    permissions: 'UpDataStructsCollectionPermissions',3069    flags: '[u8;1]'3070  },3071  /**3072   * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3073   **/3074  UpDataStructsSponsorshipStateAccountId32: {3075    _enum: {3076      Disabled: 'Null',3077      Unconfirmed: 'AccountId32',3078      Confirmed: 'AccountId32'3079    }3080  },3081  /**3082   * Lookup385: up_data_structs::Properties3083   **/3084  UpDataStructsProperties: {3085    map: 'UpDataStructsPropertiesMapBoundedVec',3086    consumedSpace: 'u32',3087    spaceLimit: 'u32'3088  },3089  /**3090   * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3091   **/3092  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3093  /**3094   * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3095   **/3096  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3097  /**3098   * Lookup398: up_data_structs::CollectionStats3099   **/3100  UpDataStructsCollectionStats: {3101    created: 'u32',3102    destroyed: 'u32',3103    alive: 'u32'3104  },3105  /**3106   * Lookup399: up_data_structs::TokenChild3107   **/3108  UpDataStructsTokenChild: {3109    token: 'u32',3110    collection: 'u32'3111  },3112  /**3113   * Lookup400: PhantomType::up_data_structs<T>3114   **/3115  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3116  /**3117   * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3118   **/3119  UpDataStructsTokenData: {3120    properties: 'Vec<UpDataStructsProperty>',3121    owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3122    pieces: 'u128'3123  },3124  /**3125   * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3126   **/3127  UpDataStructsRpcCollection: {3128    owner: 'AccountId32',3129    mode: 'UpDataStructsCollectionMode',3130    name: 'Vec<u16>',3131    description: 'Vec<u16>',3132    tokenPrefix: 'Bytes',3133    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3134    limits: 'UpDataStructsCollectionLimits',3135    permissions: 'UpDataStructsCollectionPermissions',3136    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3137    properties: 'Vec<UpDataStructsProperty>',3138    readOnly: 'bool',3139    flags: 'UpDataStructsRpcCollectionFlags'3140  },3141  /**3142   * Lookup405: up_data_structs::RpcCollectionFlags3143   **/3144  UpDataStructsRpcCollectionFlags: {3145    foreign: 'bool',3146    erc721metadata: 'bool'3147  },3148  /**3149   * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3150   **/3151  RmrkTraitsCollectionCollectionInfo: {3152    issuer: 'AccountId32',3153    metadata: 'Bytes',3154    max: 'Option<u32>',3155    symbol: 'Bytes',3156    nftsCount: 'u32'3157  },3158  /**3159   * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3160   **/3161  RmrkTraitsNftNftInfo: {3162    owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3163    royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3164    metadata: 'Bytes',3165    equipped: 'bool',3166    pending: 'bool'3167  },3168  /**3169   * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3170   **/3171  RmrkTraitsNftRoyaltyInfo: {3172    recipient: 'AccountId32',3173    amount: 'Permill'3174  },3175  /**3176   * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3177   **/3178  RmrkTraitsResourceResourceInfo: {3179    id: 'u32',3180    resource: 'RmrkTraitsResourceResourceTypes',3181    pending: 'bool',3182    pendingRemoval: 'bool'3183  },3184  /**3185   * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3186   **/3187  RmrkTraitsPropertyPropertyInfo: {3188    key: 'Bytes',3189    value: 'Bytes'3190  },3191  /**3192   * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3193   **/3194  RmrkTraitsBaseBaseInfo: {3195    issuer: 'AccountId32',3196    baseType: 'Bytes',3197    symbol: 'Bytes'3198  },3199  /**3200   * Lookup413: rmrk_traits::nft::NftChild3201   **/3202  RmrkTraitsNftNftChild: {3203    collectionId: 'u32',3204    nftId: 'u32'3205  },3206  /**3207   * Lookup415: pallet_common::pallet::Error<T>3208   **/3209  PalletCommonError: {3210    _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']3211  },3212  /**3213   * Lookup417: pallet_fungible::pallet::Error<T>3214   **/3215  PalletFungibleError: {3216    _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3217  },3218  /**3219   * Lookup418: pallet_refungible::ItemData3220   **/3221  PalletRefungibleItemData: {3222    constData: 'Bytes'3223  },3224  /**3225   * Lookup423: pallet_refungible::pallet::Error<T>3226   **/3227  PalletRefungibleError: {3228    _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3229  },3230  /**3231   * Lookup424: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3232   **/3233  PalletNonfungibleItemData: {3234    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3235  },3236  /**3237   * Lookup426: up_data_structs::PropertyScope3238   **/3239  UpDataStructsPropertyScope: {3240    _enum: ['None', 'Rmrk']3241  },3242  /**3243   * Lookup428: pallet_nonfungible::pallet::Error<T>3244   **/3245  PalletNonfungibleError: {3246    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3247  },3248  /**3249   * Lookup429: pallet_structure::pallet::Error<T>3250   **/3251  PalletStructureError: {3252    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3253  },3254  /**3255   * Lookup430: pallet_rmrk_core::pallet::Error<T>3256   **/3257  PalletRmrkCoreError: {3258    _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3259  },3260  /**3261   * Lookup432: pallet_rmrk_equip::pallet::Error<T>3262   **/3263  PalletRmrkEquipError: {3264    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3265  },3266  /**3267   * Lookup438: pallet_app_promotion::pallet::Error<T>3268   **/3269  PalletAppPromotionError: {3270    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3271  },3272  /**3273   * Lookup439: pallet_foreign_assets::module::Error<T>3274   **/3275  PalletForeignAssetsModuleError: {3276    _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3277  },3278  /**3279   * Lookup441: pallet_evm::pallet::Error<T>3280   **/3281  PalletEvmError: {3282    _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3283  },3284  /**3285   * Lookup444: fp_rpc::TransactionStatus3286   **/3287  FpRpcTransactionStatus: {3288    transactionHash: 'H256',3289    transactionIndex: 'u32',3290    from: 'H160',3291    to: 'Option<H160>',3292    contractAddress: 'Option<H160>',3293    logs: 'Vec<EthereumLog>',3294    logsBloom: 'EthbloomBloom'3295  },3296  /**3297   * Lookup446: ethbloom::Bloom3298   **/3299  EthbloomBloom: '[u8;256]',3300  /**3301   * Lookup448: ethereum::receipt::ReceiptV33302   **/3303  EthereumReceiptReceiptV3: {3304    _enum: {3305      Legacy: 'EthereumReceiptEip658ReceiptData',3306      EIP2930: 'EthereumReceiptEip658ReceiptData',3307      EIP1559: 'EthereumReceiptEip658ReceiptData'3308    }3309  },3310  /**3311   * Lookup449: ethereum::receipt::EIP658ReceiptData3312   **/3313  EthereumReceiptEip658ReceiptData: {3314    statusCode: 'u8',3315    usedGas: 'U256',3316    logsBloom: 'EthbloomBloom',3317    logs: 'Vec<EthereumLog>'3318  },3319  /**3320   * Lookup450: ethereum::block::Block<ethereum::transaction::TransactionV2>3321   **/3322  EthereumBlock: {3323    header: 'EthereumHeader',3324    transactions: 'Vec<EthereumTransactionTransactionV2>',3325    ommers: 'Vec<EthereumHeader>'3326  },3327  /**3328   * Lookup451: ethereum::header::Header3329   **/3330  EthereumHeader: {3331    parentHash: 'H256',3332    ommersHash: 'H256',3333    beneficiary: 'H160',3334    stateRoot: 'H256',3335    transactionsRoot: 'H256',3336    receiptsRoot: 'H256',3337    logsBloom: 'EthbloomBloom',3338    difficulty: 'U256',3339    number: 'U256',3340    gasLimit: 'U256',3341    gasUsed: 'U256',3342    timestamp: 'u64',3343    extraData: 'Bytes',3344    mixHash: 'H256',3345    nonce: 'EthereumTypesHashH64'3346  },3347  /**3348   * Lookup452: ethereum_types::hash::H643349   **/3350  EthereumTypesHashH64: '[u8;8]',3351  /**3352   * Lookup457: pallet_ethereum::pallet::Error<T>3353   **/3354  PalletEthereumError: {3355    _enum: ['InvalidSignature', 'PreLogExists']3356  },3357  /**3358   * Lookup458: pallet_evm_coder_substrate::pallet::Error<T>3359   **/3360  PalletEvmCoderSubstrateError: {3361    _enum: ['OutOfGas', 'OutOfFund']3362  },3363  /**3364   * Lookup459: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3365   **/3366  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3367    _enum: {3368      Disabled: 'Null',3369      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3370      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3371    }3372  },3373  /**3374   * Lookup460: pallet_evm_contract_helpers::SponsoringModeT3375   **/3376  PalletEvmContractHelpersSponsoringModeT: {3377    _enum: ['Disabled', 'Allowlisted', 'Generous']3378  },3379  /**3380   * Lookup466: pallet_evm_contract_helpers::pallet::Error<T>3381   **/3382  PalletEvmContractHelpersError: {3383    _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3384  },3385  /**3386   * Lookup467: pallet_evm_migration::pallet::Error<T>3387   **/3388  PalletEvmMigrationError: {3389    _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3390  },3391  /**3392   * Lookup468: pallet_maintenance::pallet::Error<T>3393   **/3394  PalletMaintenanceError: 'Null',3395  /**3396   * Lookup469: pallet_test_utils::pallet::Error<T>3397   **/3398  PalletTestUtilsError: {3399    _enum: ['TestPalletDisabled', 'TriggerRollback']3400  },3401  /**3402   * Lookup471: sp_runtime::MultiSignature3403   **/3404  SpRuntimeMultiSignature: {3405    _enum: {3406      Ed25519: 'SpCoreEd25519Signature',3407      Sr25519: 'SpCoreSr25519Signature',3408      Ecdsa: 'SpCoreEcdsaSignature'3409    }3410  },3411  /**3412   * Lookup472: sp_core::ed25519::Signature3413   **/3414  SpCoreEd25519Signature: '[u8;64]',3415  /**3416   * Lookup474: sp_core::sr25519::Signature3417   **/3418  SpCoreSr25519Signature: '[u8;64]',3419  /**3420   * Lookup475: sp_core::ecdsa::Signature3421   **/3422  SpCoreEcdsaSignature: '[u8;65]',3423  /**3424   * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3425   **/3426  FrameSystemExtensionsCheckSpecVersion: 'Null',3427  /**3428   * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>3429   **/3430  FrameSystemExtensionsCheckTxVersion: 'Null',3431  /**3432   * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>3433   **/3434  FrameSystemExtensionsCheckGenesis: 'Null',3435  /**3436   * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>3437   **/3438  FrameSystemExtensionsCheckNonce: 'Compact<u32>',3439  /**3440   * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>3441   **/3442  FrameSystemExtensionsCheckWeight: 'Null',3443  /**3444   * Lookup485: opal_runtime::runtime_common::maintenance::CheckMaintenance3445   **/3446  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3447  /**3448   * Lookup486: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3449   **/3450  PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3451  /**3452   * Lookup487: opal_runtime::Runtime3453   **/3454  OpalRuntimeRuntime: 'Null',3455  /**3456   * Lookup488: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3457   **/3458  PalletEthereumFakeTransactionFinalizer: 'Null'3459};
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -2517,7 +2517,12 @@
       readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;
       readonly approve: bool;
     } & Struct;
-    readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';
+    readonly isRepairItem: boolean;
+    readonly asRepairItem: {
+      readonly collectionId: u32;
+      readonly itemId: u32;
+    } & Struct;
+    readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'RepairItem';
   }
 
   /** @name UpDataStructsCollectionMode (237) */
@@ -3513,7 +3518,8 @@
     readonly isFungibleDisallowsNesting: boolean;
     readonly isSettingPropertiesNotAllowed: boolean;
     readonly isSettingAllowanceForAllNotAllowed: boolean;
-    readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
+    readonly isFungibleTokensAreAlwaysValid: boolean;
+    readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
   }
 
   /** @name PalletRefungibleItemData (418) */
modifiedtests/yarn.lockdiffbeforeafterboth
--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -150,12 +150,7 @@
     chalk "^2.0.0"
     js-tokens "^4.0.0"
 
-"@babel/parser@^7.18.10":
-  version "7.19.6"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"
-  integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==
-
-"@babel/parser@^7.20.5":
+"@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
   version "7.20.5"
   resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
   integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
@@ -203,16 +198,7 @@
     debug "^4.1.0"
     globals "^11.1.0"
 
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":
-  version "7.19.4"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
-  integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
-  dependencies:
-    "@babel/helper-string-parser" "^7.19.4"
-    "@babel/helper-validator-identifier" "^7.19.1"
-    to-fast-properties "^2.0.0"
-
-"@babel/types@^7.20.2", "@babel/types@^7.20.5":
+"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5":
   version "7.20.5"
   resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
   integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
@@ -243,7 +229,15 @@
     minimatch "^3.1.2"
     strip-json-comments "^3.1.1"
 
-"@ethereumjs/common@^2.5.0", "@ethereumjs/common@^2.6.4":
+"@ethereumjs/common@2.5.0":
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.5.0.tgz#ec61551b31bef7a69d1dc634d8932468866a4268"
+  integrity sha512-DEHjW6e38o+JmB/NO3GZBpW4lpaiBpkFgXF6jLcJ6gETBYpEyaA5nTimsWBUJR3Vmtm/didUEbNjajskugZORg==
+  dependencies:
+    crc-32 "^1.2.0"
+    ethereumjs-util "^7.1.1"
+
+"@ethereumjs/common@^2.5.0":
   version "2.6.5"
   resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.5.tgz#0a75a22a046272579d91919cb12d84f2756e8d30"
   integrity sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==
@@ -251,13 +245,13 @@
     crc-32 "^1.2.0"
     ethereumjs-util "^7.1.5"
 
-"@ethereumjs/tx@^3.3.2":
-  version "3.5.2"
-  resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.5.2.tgz#197b9b6299582ad84f9527ca961466fce2296c1c"
-  integrity sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==
+"@ethereumjs/tx@3.3.2":
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.3.2.tgz#348d4624bf248aaab6c44fec2ae67265efe3db00"
+  integrity sha512-6AaJhwg4ucmwTvw/1qLaZUX5miWrwZ4nLOUsKyb/HtzS3BMw/CasKhdi1ims9mBKeK9sOJCH4qGKOBGyJCeeog==
   dependencies:
-    "@ethereumjs/common" "^2.6.4"
-    ethereumjs-util "^7.1.5"
+    "@ethereumjs/common" "^2.5.0"
+    ethereumjs-util "^7.1.2"
 
 "@ethersproject/abi@^5.6.3":
   version "5.7.0"
@@ -436,14 +430,14 @@
     "@ethersproject/properties" "^5.7.0"
     "@ethersproject/strings" "^5.7.0"
 
-"@humanwhocodes/config-array@^0.10.5":
-  version "0.10.7"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc"
-  integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==
+"@humanwhocodes/config-array@^0.11.6":
+  version "0.11.8"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
+  integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
   dependencies:
     "@humanwhocodes/object-schema" "^1.2.1"
     debug "^4.1.1"
-    minimatch "^3.0.4"
+    minimatch "^3.0.5"
 
 "@humanwhocodes/module-importer@^1.0.1":
   version "1.0.1"
@@ -526,7 +520,7 @@
   resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
   integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
 
-"@nodelib/fs.walk@^1.2.3":
+"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
   version "1.2.8"
   resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
   integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
@@ -962,14 +956,14 @@
     "@types/node" "*"
 
 "@types/cacheable-request@^6.0.1", "@types/cacheable-request@^6.0.2":
-  version "6.0.2"
-  resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.2.tgz#c324da0197de0a98a2312156536ae262429ff6b9"
-  integrity sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183"
+  integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==
   dependencies:
     "@types/http-cache-semantics" "*"
-    "@types/keyv" "*"
+    "@types/keyv" "^3.1.4"
     "@types/node" "*"
-    "@types/responselike" "*"
+    "@types/responselike" "^1.0.0"
 
 "@types/chai-as-promised@^7.1.5":
   version "7.1.5"
@@ -986,9 +980,9 @@
     "@types/chai" "*"
 
 "@types/chai@*", "@types/chai@^4.3.3":
-  version "4.3.3"
-  resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07"
-  integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==
+  version "4.3.4"
+  resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.4.tgz#e913e8175db8307d78b4e8fa690408ba6b65dee4"
+  integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==
 
 "@types/http-cache-semantics@*":
   version "4.0.1"
@@ -1000,17 +994,17 @@
   resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
   integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
 
-"@types/keyv@*":
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-4.2.0.tgz#65b97868ab757906f2dbb653590d7167ad023fa0"
-  integrity sha512-xoBtGl5R9jeKUhc8ZqeYaRDx04qqJ10yhhXYGmJ4Jr8qKpvMsDQQrNUvF/wUJ4klOtmJeJM+p2Xo3zp9uaC3tw==
+"@types/keyv@^3.1.4":
+  version "3.1.4"
+  resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6"
+  integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==
   dependencies:
-    keyv "*"
+    "@types/node" "*"
 
 "@types/mocha@^10.0.0":
-  version "10.0.0"
-  resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.0.tgz#3d9018c575f0e3f7386c1de80ee66cc21fbb7a52"
-  integrity sha512-rADY+HtTOA52l9VZWtgQfn4p+UDVM2eDVkMZT1I6syp0YKxW2F9v+0pbRZLsvskhQv/vMb6ZfCay81GHbz5SHg==
+  version "10.0.1"
+  resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.1.tgz#2f4f65bb08bc368ac39c96da7b2f09140b26851b"
+  integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==
 
 "@types/node-fetch@^2.6.2":
   version "2.6.2"
@@ -1021,9 +1015,9 @@
     form-data "^3.0.0"
 
 "@types/node@*", "@types/node@^18.11.2":
-  version "18.11.2"
-  resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.2.tgz#c59b7641832531264fda3f1ba610362dc9a7dfc8"
-  integrity sha512-BWN3M23gLO2jVG8g/XHIRFWiiV4/GckeFIqbU/C4V3xpoBBWSMk4OZomouN0wCkfQFPqgZikyLr7DOYDysIkkw==
+  version "18.11.15"
+  resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.15.tgz#de0e1fbd2b22b962d45971431e2ae696643d3f5d"
+  integrity sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==
 
 "@types/node@^12.12.6":
   version "12.20.55"
@@ -1037,7 +1031,7 @@
   dependencies:
     "@types/node" "*"
 
-"@types/responselike@*", "@types/responselike@^1.0.0":
+"@types/responselike@^1.0.0":
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29"
   integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
@@ -1052,9 +1046,9 @@
     "@types/node" "*"
 
 "@types/semver@^7.3.12":
-  version "7.3.12"
-  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.12.tgz#920447fdd78d76b19de0438b7f60df3c4a80bf1c"
-  integrity sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==
+  version "7.3.13"
+  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
+  integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
 
 "@types/websocket@^1.0.5":
   version "1.0.5"
@@ -1064,85 +1058,86 @@
     "@types/node" "*"
 
 "@typescript-eslint/eslint-plugin@^5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.40.1.tgz#3203a6ff396b1194083faaa6e5110c401201d7d5"
-  integrity sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.1.tgz#098abb4c9354e19f460d57ab18bff1f676a6cff0"
+  integrity sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==
   dependencies:
-    "@typescript-eslint/scope-manager" "5.40.1"
-    "@typescript-eslint/type-utils" "5.40.1"
-    "@typescript-eslint/utils" "5.40.1"
+    "@typescript-eslint/scope-manager" "5.46.1"
+    "@typescript-eslint/type-utils" "5.46.1"
+    "@typescript-eslint/utils" "5.46.1"
     debug "^4.3.4"
     ignore "^5.2.0"
+    natural-compare-lite "^1.4.0"
     regexpp "^3.2.0"
     semver "^7.3.7"
     tsutils "^3.21.0"
 
 "@typescript-eslint/parser@^5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.40.1.tgz#e7f8295dd8154d0d37d661ddd8e2f0ecfdee28dd"
-  integrity sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.46.1.tgz#1fc8e7102c1141eb64276c3b89d70da8c0ba5699"
+  integrity sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==
   dependencies:
-    "@typescript-eslint/scope-manager" "5.40.1"
-    "@typescript-eslint/types" "5.40.1"
-    "@typescript-eslint/typescript-estree" "5.40.1"
+    "@typescript-eslint/scope-manager" "5.46.1"
+    "@typescript-eslint/types" "5.46.1"
+    "@typescript-eslint/typescript-estree" "5.46.1"
     debug "^4.3.4"
 
-"@typescript-eslint/scope-manager@5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz#a7a5197dfd234622a2421ea590ee0ccc02e18dfe"
-  integrity sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==
+"@typescript-eslint/scope-manager@5.46.1":
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.46.1.tgz#70af8425c79bbc1178b5a63fb51102ddf48e104a"
+  integrity sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==
   dependencies:
-    "@typescript-eslint/types" "5.40.1"
-    "@typescript-eslint/visitor-keys" "5.40.1"
+    "@typescript-eslint/types" "5.46.1"
+    "@typescript-eslint/visitor-keys" "5.46.1"
 
-"@typescript-eslint/type-utils@5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.40.1.tgz#091e4ce3bebbdb68f4980bae9dee2e4e1725f601"
-  integrity sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==
+"@typescript-eslint/type-utils@5.46.1":
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.46.1.tgz#195033e4b30b51b870dfcf2828e88d57b04a11cc"
+  integrity sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==
   dependencies:
-    "@typescript-eslint/typescript-estree" "5.40.1"
-    "@typescript-eslint/utils" "5.40.1"
+    "@typescript-eslint/typescript-estree" "5.46.1"
+    "@typescript-eslint/utils" "5.46.1"
     debug "^4.3.4"
     tsutils "^3.21.0"
 
-"@typescript-eslint/types@5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.40.1.tgz#de37f4f64de731ee454bb2085d71030aa832f749"
-  integrity sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==
+"@typescript-eslint/types@5.46.1":
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.46.1.tgz#4e9db2107b9a88441c4d5ecacde3bb7a5ebbd47e"
+  integrity sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==
 
-"@typescript-eslint/typescript-estree@5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz#9a7d25492f02c69882ce5e0cd1857b0c55645d72"
-  integrity sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==
+"@typescript-eslint/typescript-estree@5.46.1":
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.1.tgz#5358088f98a8f9939355e0996f9c8f41c25eced2"
+  integrity sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==
   dependencies:
-    "@typescript-eslint/types" "5.40.1"
-    "@typescript-eslint/visitor-keys" "5.40.1"
+    "@typescript-eslint/types" "5.46.1"
+    "@typescript-eslint/visitor-keys" "5.46.1"
     debug "^4.3.4"
     globby "^11.1.0"
     is-glob "^4.0.3"
     semver "^7.3.7"
     tsutils "^3.21.0"
 
-"@typescript-eslint/utils@5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.40.1.tgz#3204fb73a559d3b7bab7dc9d3c44487c2734a9ca"
-  integrity sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==
+"@typescript-eslint/utils@5.46.1":
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.46.1.tgz#7da3c934d9fd0eb4002a6bb3429f33298b469b4a"
+  integrity sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==
   dependencies:
     "@types/json-schema" "^7.0.9"
     "@types/semver" "^7.3.12"
-    "@typescript-eslint/scope-manager" "5.40.1"
-    "@typescript-eslint/types" "5.40.1"
-    "@typescript-eslint/typescript-estree" "5.40.1"
+    "@typescript-eslint/scope-manager" "5.46.1"
+    "@typescript-eslint/types" "5.46.1"
+    "@typescript-eslint/typescript-estree" "5.46.1"
     eslint-scope "^5.1.1"
     eslint-utils "^3.0.0"
     semver "^7.3.7"
 
-"@typescript-eslint/visitor-keys@5.40.1":
-  version "5.40.1"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz#f3d2bf5af192f4432b84cec6fdcb387193518754"
-  integrity sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==
+"@typescript-eslint/visitor-keys@5.46.1":
+  version "5.46.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.1.tgz#126cc6fe3c0f83608b2b125c5d9daced61394242"
+  integrity sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==
   dependencies:
-    "@typescript-eslint/types" "5.40.1"
+    "@typescript-eslint/types" "5.46.1"
     eslint-visitor-keys "^3.3.0"
 
 abortcontroller-polyfill@^1.7.3:
@@ -1169,9 +1164,9 @@
   integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
 
 acorn@^8.4.1, acorn@^8.8.0:
-  version "8.8.0"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8"
-  integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==
+  version "8.8.1"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
+  integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
 
 ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4:
   version "6.12.6"
@@ -1208,9 +1203,9 @@
     color-convert "^2.0.1"
 
 anymatch@~3.1.2:
-  version "3.1.2"
-  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
-  integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
+  version "3.1.3"
+  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+  integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
   dependencies:
     normalize-path "^3.0.0"
     picomatch "^2.0.4"
@@ -1312,9 +1307,9 @@
     tweetnacl "^0.14.3"
 
 bignumber.js@^9.0.0:
-  version "9.1.0"
-  resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62"
-  integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==
+  version "9.1.1"
+  resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6"
+  integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==
 
 binary-extensions@^2.0.0:
   version "2.2.0"
@@ -1553,9 +1548,9 @@
   integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
 
 caniuse-lite@^1.0.30001400:
-  version "1.0.30001422"
-  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001422.tgz#f2d7c6202c49a8359e6e35add894d88ef93edba1"
-  integrity sha512-hSesn02u1QacQHhaxl/kNMZwqVG35Sz/8DgvmgedxSH8z9UUpcDYSPYgsj3x5dQNRcNp6BwpSfQfVzYUTm+fog==
+  version "1.0.30001439"
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
+  integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
 
 caseless@~0.12.0:
   version "0.12.0"
@@ -1575,13 +1570,13 @@
   integrity sha512-VKa9z/SnhXhkT1zIjtPACFWSoWsqVoaz1Vg+ecrKo5DCKVlgL30F/pEyEvXPBOVwCgLZcWUleCM/C1okaKdTTA==
 
 chai@^4.3.6:
-  version "4.3.6"
-  resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c"
-  integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==
+  version "4.3.7"
+  resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51"
+  integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==
   dependencies:
     assertion-error "^1.1.0"
     check-error "^1.0.2"
-    deep-eql "^3.0.1"
+    deep-eql "^4.1.2"
     get-func-name "^2.0.0"
     loupe "^2.3.1"
     pathval "^1.1.1"
@@ -1911,9 +1906,9 @@
   integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
 
 decode-uri-component@^0.2.0:
-  version "0.2.0"
-  resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
-  integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
+  integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
 
 decompress-response@^3.3.0:
   version "3.3.0"
@@ -1929,10 +1924,10 @@
   dependencies:
     mimic-response "^3.1.0"
 
-deep-eql@^3.0.1:
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df"
-  integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==
+deep-eql@^4.1.2:
+  version "4.1.3"
+  resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d"
+  integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==
   dependencies:
     type-detect "^4.0.0"
 
@@ -1945,14 +1940,6 @@
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"
   integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
-
-define-properties@^1.1.3, define-properties@^1.1.4:
-  version "1.1.4"
-  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
-  integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
-  dependencies:
-    has-property-descriptors "^1.0.0"
-    object-keys "^1.1.1"
 
 delayed-stream@~1.0.0:
   version "1.0.0"
@@ -2069,46 +2056,7 @@
   integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
   dependencies:
     once "^1.4.0"
-
-es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0:
-  version "1.20.4"
-  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
-  integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
-  dependencies:
-    call-bind "^1.0.2"
-    es-to-primitive "^1.2.1"
-    function-bind "^1.1.1"
-    function.prototype.name "^1.1.5"
-    get-intrinsic "^1.1.3"
-    get-symbol-description "^1.0.0"
-    has "^1.0.3"
-    has-property-descriptors "^1.0.0"
-    has-symbols "^1.0.3"
-    internal-slot "^1.0.3"
-    is-callable "^1.2.7"
-    is-negative-zero "^2.0.2"
-    is-regex "^1.1.4"
-    is-shared-array-buffer "^1.0.2"
-    is-string "^1.0.7"
-    is-weakref "^1.0.2"
-    object-inspect "^1.12.2"
-    object-keys "^1.1.1"
-    object.assign "^4.1.4"
-    regexp.prototype.flags "^1.4.3"
-    safe-regex-test "^1.0.0"
-    string.prototype.trimend "^1.0.5"
-    string.prototype.trimstart "^1.0.5"
-    unbox-primitive "^1.0.2"
 
-es-to-primitive@^1.2.1:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
-  integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
-  dependencies:
-    is-callable "^1.1.4"
-    is-date-object "^1.0.1"
-    is-symbol "^1.0.2"
-
 es5-ext@^0.10.35, es5-ext@^0.10.50:
   version "0.10.62"
   resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5"
@@ -2202,13 +2150,14 @@
   integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
 
 eslint@^8.25.0:
-  version "8.25.0"
-  resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b"
-  integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==
+  version "8.29.0"
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz#d74a88a20fb44d59c51851625bc4ee8d0ec43f87"
+  integrity sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==
   dependencies:
     "@eslint/eslintrc" "^1.3.3"
-    "@humanwhocodes/config-array" "^0.10.5"
+    "@humanwhocodes/config-array" "^0.11.6"
     "@humanwhocodes/module-importer" "^1.0.1"
+    "@nodelib/fs.walk" "^1.2.8"
     ajv "^6.10.0"
     chalk "^4.0.0"
     cross-spawn "^7.0.2"
@@ -2224,14 +2173,14 @@
     fast-deep-equal "^3.1.3"
     file-entry-cache "^6.0.1"
     find-up "^5.0.0"
-    glob-parent "^6.0.1"
+    glob-parent "^6.0.2"
     globals "^13.15.0"
-    globby "^11.1.0"
     grapheme-splitter "^1.0.4"
     ignore "^5.2.0"
     import-fresh "^3.0.0"
     imurmurhash "^0.1.4"
     is-glob "^4.0.0"
+    is-path-inside "^3.0.3"
     js-sdsl "^4.1.4"
     js-yaml "^4.1.0"
     json-stable-stringify-without-jsonify "^1.0.1"
@@ -2246,9 +2195,9 @@
     text-table "^0.2.0"
 
 espree@^9.4.0:
-  version "9.4.0"
-  resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a"
-  integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==
+  version "9.4.1"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
+  integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
   dependencies:
     acorn "^8.8.0"
     acorn-jsx "^5.3.2"
@@ -2345,7 +2294,7 @@
     secp256k1 "^4.0.1"
     setimmediate "^1.0.5"
 
-ethereumjs-util@^7.0.10, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.5:
+ethereumjs-util@^7.0.10, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.1, ethereumjs-util@^7.1.2, ethereumjs-util@^7.1.5:
   version "7.1.5"
   resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz#9ecf04861e4fbbeed7465ece5f23317ad1129181"
   integrity sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==
@@ -2468,9 +2417,9 @@
   integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
 
 fastq@^1.6.0:
-  version "1.13.0"
-  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
-  integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
+  version "1.14.0"
+  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.14.0.tgz#107f69d7295b11e0fccc264e1fc6389f623731ce"
+  integrity sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==
   dependencies:
     reusify "^1.0.4"
 
@@ -2647,22 +2596,7 @@
   version "1.1.1"
   resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
   integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-function.prototype.name@^1.1.5:
-  version "1.1.5"
-  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
-  integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
-  dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.3"
-    es-abstract "^1.19.0"
-    functions-have-names "^1.2.2"
 
-functions-have-names@^1.2.2:
-  version "1.2.3"
-  resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
-  integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
-
 gensync@^1.0.0-beta.2:
   version "1.0.0-beta.2"
   resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
@@ -2678,7 +2612,7 @@
   resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
   integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
 
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.3:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
   integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
@@ -2698,14 +2632,6 @@
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
   integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
-
-get-symbol-description@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
-  integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
-  dependencies:
-    call-bind "^1.0.2"
-    get-intrinsic "^1.1.1"
 
 getpass@^0.1.1:
   version "0.1.7"
@@ -2721,7 +2647,7 @@
   dependencies:
     is-glob "^4.0.1"
 
-glob-parent@^6.0.1:
+glob-parent@^6.0.2:
   version "6.0.2"
   resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
   integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
@@ -2766,9 +2692,9 @@
   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
 
 globals@^13.15.0:
-  version "13.17.0"
-  resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4"
-  integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==
+  version "13.19.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
+  integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
   dependencies:
     type-fest "^0.20.2"
 
@@ -2784,6 +2710,13 @@
     merge2 "^1.4.1"
     slash "^3.0.0"
 
+gopd@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+  integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+  dependencies:
+    get-intrinsic "^1.1.3"
+
 got@12.1.0:
   version "12.1.0"
   resolved "https://registry.yarnpkg.com/got/-/got-12.1.0.tgz#099f3815305c682be4fd6b0ee0726d8e4c6b0af4"
@@ -2804,9 +2737,9 @@
     responselike "^2.0.0"
 
 got@^11.8.5:
-  version "11.8.5"
-  resolved "https://registry.yarnpkg.com/got/-/got-11.8.5.tgz#ce77d045136de56e8f024bebb82ea349bc730046"
-  integrity sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==
+  version "11.8.6"
+  resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a"
+  integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==
   dependencies:
     "@sindresorhus/is" "^4.0.0"
     "@szmarczak/http-timer" "^4.0.5"
@@ -2854,11 +2787,6 @@
   dependencies:
     ajv "^6.12.3"
     har-schema "^2.0.0"
-
-has-bigints@^1.0.1, has-bigints@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
-  integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
 
 has-flag@^3.0.0:
   version "3.0.0"
@@ -2870,13 +2798,6 @@
   resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
   integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
 
-has-property-descriptors@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
-  integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
-  dependencies:
-    get-intrinsic "^1.1.1"
-
 has-symbols@^1.0.2, has-symbols@^1.0.3:
   version "1.0.3"
   resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
@@ -2966,9 +2887,9 @@
     resolve-alpn "^1.0.0"
 
 http2-wrapper@^2.1.10:
-  version "2.1.11"
-  resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.1.11.tgz#d7c980c7ffb85be3859b6a96c800b2951ae257ef"
-  integrity sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.0.tgz#b80ad199d216b7d3680195077bd7b9060fa9d7f3"
+  integrity sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==
   dependencies:
     quick-lru "^5.1.1"
     resolve-alpn "^1.2.0"
@@ -2993,9 +2914,9 @@
   integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
 
 ignore@^5.2.0:
-  version "5.2.0"
-  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
-  integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
+  version "5.2.1"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c"
+  integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==
 
 import-fresh@^3.0.0, import-fresh@^3.2.1:
   version "3.3.0"
@@ -3022,15 +2943,6 @@
   version "2.0.4"
   resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
   integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-internal-slot@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
-  integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
-  dependencies:
-    get-intrinsic "^1.1.0"
-    has "^1.0.3"
-    side-channel "^1.0.4"
 
 ipaddr.js@1.9.1:
   version "1.9.1"
@@ -3045,13 +2957,6 @@
     call-bind "^1.0.2"
     has-tostringtag "^1.0.0"
 
-is-bigint@^1.0.1:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
-  integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
-  dependencies:
-    has-bigints "^1.0.1"
-
 is-binary-path@~2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -3059,26 +2964,11 @@
   dependencies:
     binary-extensions "^2.0.0"
 
-is-boolean-object@^1.1.0:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
-  integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
-  dependencies:
-    call-bind "^1.0.2"
-    has-tostringtag "^1.0.0"
-
-is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
+is-callable@^1.1.3:
   version "1.2.7"
   resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
   integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
 
-is-date-object@^1.0.1:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
-  integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
-  dependencies:
-    has-tostringtag "^1.0.0"
-
 is-extglob@^2.1.1:
   version "2.1.1"
   resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
@@ -3112,24 +3002,17 @@
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"
   integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==
-
-is-negative-zero@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
-  integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
-
-is-number-object@^1.0.4:
-  version "1.0.7"
-  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
-  integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
-  dependencies:
-    has-tostringtag "^1.0.0"
 
 is-number@^7.0.0:
   version "7.0.0"
   resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
   integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
 
+is-path-inside@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+  integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
+
 is-plain-obj@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
@@ -3142,44 +3025,15 @@
   dependencies:
     isobject "^3.0.1"
 
-is-regex@^1.1.4:
-  version "1.1.4"
-  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
-  integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
-  dependencies:
-    call-bind "^1.0.2"
-    has-tostringtag "^1.0.0"
-
-is-shared-array-buffer@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
-  integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
-  dependencies:
-    call-bind "^1.0.2"
-
-is-string@^1.0.5, is-string@^1.0.7:
-  version "1.0.7"
-  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
-  integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
-  dependencies:
-    has-tostringtag "^1.0.0"
-
-is-symbol@^1.0.2, is-symbol@^1.0.3:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
-  integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
-  dependencies:
-    has-symbols "^1.0.2"
-
-is-typed-array@^1.1.3, is-typed-array@^1.1.9:
-  version "1.1.9"
-  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67"
-  integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==
+is-typed-array@^1.1.10, is-typed-array@^1.1.3:
+  version "1.1.10"
+  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+  integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
   dependencies:
     available-typed-arrays "^1.0.5"
     call-bind "^1.0.2"
-    es-abstract "^1.20.0"
     for-each "^0.3.3"
+    gopd "^1.0.1"
     has-tostringtag "^1.0.0"
 
 is-typedarray@^1.0.0, is-typedarray@~1.0.0:
@@ -3192,13 +3046,6 @@
   resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
   integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
 
-is-weakref@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
-  integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
-  dependencies:
-    call-bind "^1.0.2"
-
 isexe@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
@@ -3215,9 +3062,9 @@
   integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
 
 js-sdsl@^4.1.4:
-  version "4.1.5"
-  resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"
-  integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0"
+  integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==
 
 js-sha3@0.8.0, js-sha3@^0.8.0:
   version "0.8.0"
@@ -3307,10 +3154,10 @@
     node-gyp-build "^4.2.0"
     readable-stream "^3.6.0"
 
-keyv@*, keyv@^4.0.0:
-  version "4.5.0"
-  resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.0.tgz#dbce9ade79610b6e641a9a65f2f6499ba06b9bc6"
-  integrity sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA==
+keyv@^4.0.0:
+  version "4.5.2"
+  resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56"
+  integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==
   dependencies:
     json-buffer "3.0.1"
 
@@ -3361,9 +3208,9 @@
     is-unicode-supported "^0.1.0"
 
 loupe@^2.3.1:
-  version "2.3.4"
-  resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3"
-  integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==
+  version "2.3.6"
+  resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
+  integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
   dependencies:
     get-func-name "^2.0.0"
 
@@ -3498,7 +3345,7 @@
   dependencies:
     brace-expansion "^2.0.1"
 
-minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
+minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
   version "3.1.2"
   resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
   integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
@@ -3545,9 +3392,9 @@
     minimist "^1.2.6"
 
 mocha@^10.1.0:
-  version "10.1.0"
-  resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.1.0.tgz#dbf1114b7c3f9d0ca5de3133906aea3dfc89ef7a"
-  integrity sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==
+  version "10.2.0"
+  resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8"
+  integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==
   dependencies:
     ansi-colors "4.1.1"
     browser-stdout "1.3.1"
@@ -3646,6 +3493,11 @@
   resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
   integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
 
+natural-compare-lite@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
+  integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==
+
 natural-compare@^1.4.0:
   version "1.4.0"
   resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -3708,9 +3560,9 @@
   integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
 
 node-releases@^2.0.6:
-  version "2.0.6"
-  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
-  integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
+  version "2.0.7"
+  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
+  integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
 
 normalize-path@^3.0.0, normalize-path@~3.0.0:
   version "3.0.0"
@@ -3740,25 +3592,10 @@
   resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
   integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
 
-object-inspect@^1.12.2, object-inspect@^1.9.0:
+object-inspect@^1.9.0:
   version "1.12.2"
   resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
   integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
-
-object-keys@^1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
-  integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-object.assign@^4.1.4:
-  version "4.1.4"
-  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
-  integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
-  dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    has-symbols "^1.0.3"
-    object-keys "^1.1.1"
 
 oboe@2.1.5:
   version "2.1.5"
@@ -3842,9 +3679,9 @@
   integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
 
 pako@^2.0.4:
-  version "2.0.4"
-  resolved "https://registry.yarnpkg.com/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d"
-  integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
+  integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
 
 parent-module@^1.0.0:
   version "1.0.1"
@@ -4042,9 +3879,9 @@
   integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
 
 rambda@^7.1.0:
-  version "7.3.0"
-  resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.3.0.tgz#90e440ead53030a216093865d8d97997a80868ca"
-  integrity sha512-RFVofZYaG2TaVcxjnM0ejdVWf/59rFq1f57OGnjP3GT/bthzFw0GVr5rkP9PKbVlEuF/Y7bOVPLfiiYfxq/EWQ==
+  version "7.4.0"
+  resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.4.0.tgz#61ec9de31d3dd6affe804de3bae04a5b818781e5"
+  integrity sha512-A9hihu7dUTLOUCM+I8E61V4kRXnN4DwYeK0DwCBydC1MqNI1PidyAtbtpsJlBBzK4icSctEcCQ1bGcLpBuETUQ==
 
 randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
   version "2.1.0"
@@ -4097,15 +3934,6 @@
   resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
   integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
 
-regexp.prototype.flags@^1.4.3:
-  version "1.4.3"
-  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
-  integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
-  dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.3"
-    functions-have-names "^1.2.2"
-
 regexpp@^3.2.0:
   version "3.2.0"
   resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
@@ -4194,9 +4022,9 @@
     queue-microtask "^1.2.2"
 
 rxjs@^7.5.7:
-  version "7.5.7"
-  resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"
-  integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.6.0.tgz#361da5362b6ddaa691a2de0b4f2d32028f1eb5a2"
+  integrity sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==
   dependencies:
     tslib "^2.1.0"
 
@@ -4210,15 +4038,6 @@
   resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
   integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
 
-safe-regex-test@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
-  integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
-  dependencies:
-    call-bind "^1.0.2"
-    get-intrinsic "^1.1.3"
-    is-regex "^1.1.4"
-
 "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
   version "2.1.2"
   resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
@@ -4426,24 +4245,6 @@
     emoji-regex "^8.0.0"
     is-fullwidth-code-point "^3.0.0"
     strip-ansi "^6.0.1"
-
-string.prototype.trimend@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
-  integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
-  dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.19.5"
-
-string.prototype.trimstart@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
-  integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
-  dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.19.5"
 
 string_decoder@^1.1.1:
   version "1.3.0"
@@ -4594,9 +4395,9 @@
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
 
 tslib@^2.1.0:
-  version "2.4.0"
-  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
-  integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
+  version "2.4.1"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
+  integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
 
 tsutils@^3.21.0:
   version "3.21.0"
@@ -4665,29 +4466,19 @@
     is-typedarray "^1.0.0"
 
 typescript@^4.8.4:
-  version "4.8.4"
-  resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
-  integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
+  version "4.9.4"
+  resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
+  integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
 
 uglify-js@^3.1.4:
-  version "3.17.3"
-  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377"
-  integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==
+  version "3.17.4"
+  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
+  integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
 
 ultron@~1.1.0:
   version "1.1.1"
   resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
   integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==
-
-unbox-primitive@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
-  integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
-  dependencies:
-    call-bind "^1.0.2"
-    has-bigints "^1.0.2"
-    has-symbols "^1.0.3"
-    which-boxed-primitive "^1.0.2"
 
 universalify@^0.1.0:
   version "0.1.2"
@@ -4752,16 +4543,16 @@
   resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
   integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
 
-uuid@3.3.2:
-  version "3.3.2"
-  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
-  integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
-
 uuid@^3.3.2:
   version "3.4.0"
   resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
   integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
 
+uuid@^9.0.0:
+  version "9.0.0"
+  resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5"
+  integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==
+
 v8-compile-cache-lib@^3.0.1:
   version "3.0.1"
   resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
@@ -4791,214 +4582,214 @@
   resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
   integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
 
-web3-bzz@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.0.tgz#2023676d7c17ea36512bf76eb310755a02a3d464"
-  integrity sha512-caDtdKeLi7+2Vb+y+cq2yyhkNjnxkFzVW0j1DtemarBg3dycG1iEl75CVQMLNO6Wkg+HH9tZtRnUyFIe5LIUeQ==
+web3-bzz@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.1.tgz#81397be5ce262d03d82b92e9d8acc11f8a609ea1"
+  integrity sha512-dJJHS84nvpoxv6ijTMkdUSlRr5beCXNtx4UZcrFLHBva8dT63QEtKdLyDt2AyMJJdVzTCk78uir/6XtVWrdS6w==
   dependencies:
     "@types/node" "^12.12.6"
     got "12.1.0"
     swarm-js "^0.1.40"
 
-web3-core-helpers@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.0.tgz#5dcfdda1a4ea277041d912003198f1334ca29d7c"
-  integrity sha512-nMAVwZB3rEp/khHI2BvFy0e/xCryf501p5NGjswmJtEM+Zrd3Biaw52JrB1qAZZIzCA8cmLKaOgdfamoDOpWdw==
+web3-core-helpers@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.1.tgz#7904747b23fd0afa4f2c86ed98ea9418ccad7672"
+  integrity sha512-ClzNO6T1S1gifC+BThw0+GTfcsjLEY8T1qUp6Ly2+w4PntAdNtKahxWKApWJ0l9idqot/fFIDXwO3Euu7I0Xqw==
   dependencies:
-    web3-eth-iban "1.8.0"
-    web3-utils "1.8.0"
+    web3-eth-iban "1.8.1"
+    web3-utils "1.8.1"
 
-web3-core-method@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.0.tgz#9c2da8896808917d1679c319f19e2174ba17086c"
-  integrity sha512-c94RAzo3gpXwf2rf8rL8C77jOzNWF4mXUoUfZYYsiY35cJFd46jQDPI00CB5+ZbICTiA5mlVzMj4e7jAsTqiLA==
+web3-core-method@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.1.tgz#0fc5a433a9fc784c447522f141c0a8e0163c7790"
+  integrity sha512-oYGRodktfs86NrnFwaWTbv2S38JnpPslFwSSARwFv4W9cjbGUW3LDeA5MKD/dRY+ssZ5OaekeMsUCLoGhX68yA==
   dependencies:
     "@ethersproject/transactions" "^5.6.2"
-    web3-core-helpers "1.8.0"
-    web3-core-promievent "1.8.0"
-    web3-core-subscriptions "1.8.0"
-    web3-utils "1.8.0"
+    web3-core-helpers "1.8.1"
+    web3-core-promievent "1.8.1"
+    web3-core-subscriptions "1.8.1"
+    web3-utils "1.8.1"
 
-web3-core-promievent@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.0.tgz#979765fd4d37ab0f158f0ee54037b279b737bd53"
-  integrity sha512-FGLyjAuOaAQ+ZhV6iuw9tg/9WvIkSZXKHQ4mdTyQ8MxVraOtFivOCbuLLsGgapfHYX+RPxsc1j1YzQjKoupagQ==
+web3-core-promievent@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.1.tgz#f334c8b2ceac6c2228f06d2a515f6d103157f036"
+  integrity sha512-9mxqHlgB0MrZI4oUIRFkuoJMNj3E7btjrMv3sMer/Z9rYR1PfoSc1aAokw4rxKIcAh+ylVtd/acaB2HKB7aRPg==
   dependencies:
     eventemitter3 "4.0.4"
 
-web3-core-requestmanager@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.0.tgz#06189df80cf52d24a195a7ef655031afe8192df3"
-  integrity sha512-2AoYCs3Owl5foWcf4uKPONyqFygSl9T54L8b581U16nsUirjhoTUGK/PBhMDVcLCmW4QQmcY5A8oPFpkQc1TTg==
+web3-core-requestmanager@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.1.tgz#272ffa55b7b568ecbc8e4a257ca080355c31c60e"
+  integrity sha512-x+VC2YPPwZ1khvqA6TA69LvfFCOZXsoUVOxmTx/vIN22PrY9KzKhxcE7pBSiGhmab1jtmRYXUbcQSVpAXqL8cw==
   dependencies:
     util "^0.12.0"
-    web3-core-helpers "1.8.0"
-    web3-providers-http "1.8.0"
-    web3-providers-ipc "1.8.0"
-    web3-providers-ws "1.8.0"
+    web3-core-helpers "1.8.1"
+    web3-providers-http "1.8.1"
+    web3-providers-ipc "1.8.1"
+    web3-providers-ws "1.8.1"
 
-web3-core-subscriptions@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.0.tgz#ff66ae4467c8cb4716367248bcefb1845c0f8b83"
-  integrity sha512-7lHVRzDdg0+Gcog55lG6Q3D8JV+jN+4Ly6F8cSn9xFUAwOkdbgdWsjknQG7t7CDWy21DQkvdiY2BJF8S68AqOA==
+web3-core-subscriptions@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.1.tgz#f5ae1380e92746eadfab6475b8a70ef5a1be6bbf"
+  integrity sha512-bmCMq5OeA3E2vZUh8Js1HcJbhwtsE+yeMqGC4oIZB3XsL5SLqyKLB/pU+qUYqQ9o4GdcrFTDPhPg1bgvf7p1Pw==
   dependencies:
     eventemitter3 "4.0.4"
-    web3-core-helpers "1.8.0"
+    web3-core-helpers "1.8.1"
 
-web3-core@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.0.tgz#90afce527ac1b1dff8cbed2acbc0336530b8aacf"
-  integrity sha512-9sCA+Z02ci6zoY2bAquFiDjujRwmSKHiSGi4B8IstML8okSytnzXk1izHYSynE7ahIkguhjWAuXFvX76F5rAbA==
+web3-core@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.1.tgz#050b1c408d1f9b7ae539e90f7f7d1b7a7d10578b"
+  integrity sha512-LbRZlJH2N6nS3n3Eo9Y++25IvzMY7WvYnp4NM/Ajhh97dAdglYs6rToQ2DbL2RLvTYmTew4O/y9WmOk4nq9COw==
   dependencies:
     "@types/bn.js" "^5.1.0"
     "@types/node" "^12.12.6"
     bignumber.js "^9.0.0"
-    web3-core-helpers "1.8.0"
-    web3-core-method "1.8.0"
-    web3-core-requestmanager "1.8.0"
-    web3-utils "1.8.0"
+    web3-core-helpers "1.8.1"
+    web3-core-method "1.8.1"
+    web3-core-requestmanager "1.8.1"
+    web3-utils "1.8.1"
 
-web3-eth-abi@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.0.tgz#47fdff00bfdfa72064c9c612ff6369986598196d"
-  integrity sha512-xPeMb2hS9YLQK/Q5YZpkcmzoRGM+/R8bogSrYHhNC3hjZSSU0YRH+1ZKK0f9YF4qDZaPMI8tKWIMSCDIpjG6fg==
+web3-eth-abi@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.1.tgz#47455d6513217c4b0866fea6f97b1c4afa0b6535"
+  integrity sha512-0mZvCRTIG0UhDhJwNQJgJxu4b4DyIpuMA0GTfqxqeuqzX4Q/ZvmoNurw0ExTfXaGPP82UUmmdkRi6FdZOx+C6w==
   dependencies:
     "@ethersproject/abi" "^5.6.3"
-    web3-utils "1.8.0"
+    web3-utils "1.8.1"
 
-web3-eth-accounts@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.0.tgz#960d947ee87a49d6c706dc6312334fbfbd6ff812"
-  integrity sha512-HQ/MDSv4bexwJLvnqsM6xpGE7c2NVOqyhzOZFyMUKXbIwIq85T3TaLnM9pCN7XqMpDcfxqiZ3q43JqQVkzHdmw==
+web3-eth-accounts@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.1.tgz#1ce7387721f118aeb0376291e4d8bbe2ac323406"
+  integrity sha512-mgzxSYgN54/NsOFBO1Fq1KkXp1S5KlBvI/DlgvajU72rupoFMq6Cu6Yp9GUaZ/w2ij9PzEJuFJk174XwtfMCmg==
   dependencies:
-    "@ethereumjs/common" "^2.5.0"
-    "@ethereumjs/tx" "^3.3.2"
+    "@ethereumjs/common" "2.5.0"
+    "@ethereumjs/tx" "3.3.2"
     crypto-browserify "3.12.0"
     eth-lib "0.2.8"
     ethereumjs-util "^7.0.10"
     scrypt-js "^3.0.1"
-    uuid "3.3.2"
-    web3-core "1.8.0"
-    web3-core-helpers "1.8.0"
-    web3-core-method "1.8.0"
-    web3-utils "1.8.0"
+    uuid "^9.0.0"
+    web3-core "1.8.1"
+    web3-core-helpers "1.8.1"
+    web3-core-method "1.8.1"
+    web3-utils "1.8.1"
 
-web3-eth-contract@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.0.tgz#58f4ce0bde74e5ce87663502e409a92abad7b2c5"
-  integrity sha512-6xeXhW2YoCrz2Ayf2Vm4srWiMOB6LawkvxWJDnUWJ8SMATg4Pgu42C/j8rz/enXbYWt2IKuj0kk8+QszxQbK+Q==
+web3-eth-contract@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.1.tgz#bdf3e33bbcb79a1b6144dffd6a0deefd2e459272"
+  integrity sha512-1wphnl+/xwCE2io44JKnN+ti3oa47BKRiVzvWd42icwRbcpFfRxH9QH+aQX3u8VZIISNH7dAkTWpGIIJgGFTmg==
   dependencies:
     "@types/bn.js" "^5.1.0"
-    web3-core "1.8.0"
-    web3-core-helpers "1.8.0"
-    web3-core-method "1.8.0"
-    web3-core-promievent "1.8.0"
-    web3-core-subscriptions "1.8.0"
-    web3-eth-abi "1.8.0"
-    web3-utils "1.8.0"
+    web3-core "1.8.1"
+    web3-core-helpers "1.8.1"
+    web3-core-method "1.8.1"
+    web3-core-promievent "1.8.1"
+    web3-core-subscriptions "1.8.1"
+    web3-eth-abi "1.8.1"
+    web3-utils "1.8.1"
 
-web3-eth-ens@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.0.tgz#f1937371eac54b087ebe2e871780c2710d39998d"
-  integrity sha512-/eFbQEwvsMOEiOhw9/iuRXCsPkqAmHHWuFOrThQkozRgcnSTRnvxkkRC/b6koiT5/HaKeUs4yQDg+/ixsIxZxA==
+web3-eth-ens@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.1.tgz#e78a9651fea8282abe8565b001819e2d645e5929"
+  integrity sha512-FT8xTI9uN8RxeBQa/W8pLa2aoFh4+EE34w7W2271LICKzla1dtLyb6XSdn48vsUcPmhWsTVk9mO9RTU0l4LGQQ==
   dependencies:
     content-hash "^2.5.2"
     eth-ens-namehash "2.0.8"
-    web3-core "1.8.0"
-    web3-core-helpers "1.8.0"
-    web3-core-promievent "1.8.0"
-    web3-eth-abi "1.8.0"
-    web3-eth-contract "1.8.0"
-    web3-utils "1.8.0"
+    web3-core "1.8.1"
+    web3-core-helpers "1.8.1"
+    web3-core-promievent "1.8.1"
+    web3-eth-abi "1.8.1"
+    web3-eth-contract "1.8.1"
+    web3-utils "1.8.1"
 
-web3-eth-iban@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.0.tgz#3af8a0c95b5f7b0b81ab0bcd2075c1e5dda31520"
-  integrity sha512-4RbvUxcMpo/e5811sE3a6inJ2H4+FFqUVmlRYs0RaXaxiHweahSRBNcpO0UWgmlePTolj0rXqPT2oEr0DuC8kg==
+web3-eth-iban@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.1.tgz#c6484e5d68ca644aa78431301e7acd5df24598d1"
+  integrity sha512-DomoQBfvIdtM08RyMGkMVBOH0vpOIxSSQ+jukWk/EkMLGMWJtXw/K2c2uHAeq3L/VPWNB7zXV2DUEGV/lNE2Dg==
   dependencies:
     bn.js "^5.2.1"
-    web3-utils "1.8.0"
+    web3-utils "1.8.1"
 
-web3-eth-personal@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.0.tgz#433c35e2e042844402a12d543c4126ea1494b478"
-  integrity sha512-L7FT4nR3HmsfZyIAhFpEctKkYGOjRC2h6iFKs9gnFCHZga8yLcYcGaYOBIoYtaKom99MuGBoosayWt/Twh7F5A==
+web3-eth-personal@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.1.tgz#00b5ff1898b62044d25ed5fddd8486168d4827cf"
+  integrity sha512-myIYMvj7SDIoV9vE5BkVdon3pya1WinaXItugoii2VoTcQNPOtBxmYVH+XS5ErzCJlnxzphpQrkywyY64bbbCA==
   dependencies:
     "@types/node" "^12.12.6"
-    web3-core "1.8.0"
-    web3-core-helpers "1.8.0"
-    web3-core-method "1.8.0"
-    web3-net "1.8.0"
-    web3-utils "1.8.0"
+    web3-core "1.8.1"
+    web3-core-helpers "1.8.1"
+    web3-core-method "1.8.1"
+    web3-net "1.8.1"
+    web3-utils "1.8.1"
 
-web3-eth@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.0.tgz#006974a5d5e30644d05814111f9e162a72e4a09c"
-  integrity sha512-hist52os3OT4TQFB/GxPSMxTh3995sz6LPvQpPvj7ktSbpg9RNSFaSsPlCT63wUAHA3PZb1FemkAIeQM5t72Lw==
+web3-eth@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.1.tgz#395f6cd56edaac5dbb23e8cec9886c3fd32c430e"
+  integrity sha512-LgyzbhFqiFRd8M8sBXoFN4ztzOnkeckl3H/9lH5ek7AdoRMhBg7tYpYRP3E5qkhd/q+yiZmcUgy1AF6NHrC1wg==
   dependencies:
-    web3-core "1.8.0"
-    web3-core-helpers "1.8.0"
-    web3-core-method "1.8.0"
-    web3-core-subscriptions "1.8.0"
-    web3-eth-abi "1.8.0"
-    web3-eth-accounts "1.8.0"
-    web3-eth-contract "1.8.0"
-    web3-eth-ens "1.8.0"
-    web3-eth-iban "1.8.0"
-    web3-eth-personal "1.8.0"
-    web3-net "1.8.0"
-    web3-utils "1.8.0"
+    web3-core "1.8.1"
+    web3-core-helpers "1.8.1"
+    web3-core-method "1.8.1"
+    web3-core-subscriptions "1.8.1"
+    web3-eth-abi "1.8.1"
+    web3-eth-accounts "1.8.1"
+    web3-eth-contract "1.8.1"
+    web3-eth-ens "1.8.1"
+    web3-eth-iban "1.8.1"
+    web3-eth-personal "1.8.1"
+    web3-net "1.8.1"
+    web3-utils "1.8.1"
 
-web3-net@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.0.tgz#9acff92d7c647d801bc68df0ff4416f104dbe789"
-  integrity sha512-kX6EAacK7QrOe7DOh0t5yHS5q2kxZmTCxPVwSz9io9xBeE4n4UhmzGJ/VfhP2eM3OPKYeypcR3LEO6zZ8xn2vw==
+web3-net@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.1.tgz#2bed4d4b93166724129ec33d0e5dea98880285f4"
+  integrity sha512-LyEJAwogdFo0UAXZqoSJGFjopdt+kLw0P00FSZn2yszbgcoI7EwC+nXiOsEe12xz4LqpYLOtbR7+gxgiTVjjHQ==
   dependencies:
-    web3-core "1.8.0"
-    web3-core-method "1.8.0"
-    web3-utils "1.8.0"
+    web3-core "1.8.1"
+    web3-core-method "1.8.1"
+    web3-utils "1.8.1"
 
-web3-providers-http@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.0.tgz#3fd1e569ead2095343fac17d53160a3bae674c23"
-  integrity sha512-/MqxwRzExohBWW97mqlCSW/+NHydGRyoEDUS1bAIF2YjfKFwyRtHgrEzOojzkC9JvB+8LofMvbXk9CcltpZapw==
+web3-providers-http@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.1.tgz#8aa89c11a9272f11ddb74b871273c92225faa28d"
+  integrity sha512-1Zyts4O9W/UNEPkp+jyL19Jc3D15S4yp8xuLTjVhcUEAlHo24NDWEKxtZGUuHk4HrKL2gp8OlsDbJ7MM+ESDgg==
   dependencies:
     abortcontroller-polyfill "^1.7.3"
     cross-fetch "^3.1.4"
     es6-promise "^4.2.8"
-    web3-core-helpers "1.8.0"
+    web3-core-helpers "1.8.1"
 
-web3-providers-ipc@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.0.tgz#d339a24c4d764e459e425d3ac868a551ac33e3ea"
-  integrity sha512-tAXHtVXNUOgehaBU8pzAlB3qhjn/PRpjdzEjzHNFqtRRTwzSEKOJxFeEhaUA4FzHnTlbnrs8ujHWUitcp1elfg==
+web3-providers-ipc@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.1.tgz#6128a3a3a824d06bf0efcfe86325401f8691a5ca"
+  integrity sha512-nw/W5nclvi+P2z2dYkLWReKLnocStflWqFl+qjtv0xn3MrUTyXMzSF0+61i77+16xFsTgzo4wS/NWIOVkR0EFA==
   dependencies:
     oboe "2.1.5"
-    web3-core-helpers "1.8.0"
+    web3-core-helpers "1.8.1"
 
-web3-providers-ws@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.0.tgz#a0a73e0606981ea32bed40d215000a64753899de"
-  integrity sha512-bcZtSifsqyJxwkfQYamfdIRp4nhj9eJd7cxHg1uUkfLJK125WP96wyJL1xbPt7qt0MpfnTFn8/UuIqIB6nFENg==
+web3-providers-ws@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.1.tgz#5e5370e07eb8c615ed298ebc8602b283c7b7d649"
+  integrity sha512-TNefIDAMpdx57+YdWpYZ/xdofS0P+FfKaDYXhn24ie/tH9G+AB+UBSOKnjN0KSadcRSCMBwGPRiEmNHPavZdsA==
   dependencies:
     eventemitter3 "4.0.4"
-    web3-core-helpers "1.8.0"
+    web3-core-helpers "1.8.1"
     websocket "^1.0.32"
 
-web3-shh@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.0.tgz#b4abbf4f59d097ce2f74360e61e2e5c0bd6507c7"
-  integrity sha512-DNRgSa9Jf9xYFUGKSMylrf+zt3MPjhI2qF+UWX07o0y3+uf8zalDGiJOWvIS4upAsdPiKKVJ7co+Neof47OMmg==
+web3-shh@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.1.tgz#028a95cf9d3a36020380938b9a127610efbb9be7"
+  integrity sha512-sqHgarnfcY2Qt3PYS4R6YveHrDy7hmL09yeLLHHCI+RKirmjLVqV0rc5LJWUtlbYI+kDoa5gbgde489M9ZAC0g==
   dependencies:
-    web3-core "1.8.0"
-    web3-core-method "1.8.0"
-    web3-core-subscriptions "1.8.0"
-    web3-net "1.8.0"
+    web3-core "1.8.1"
+    web3-core-method "1.8.1"
+    web3-core-subscriptions "1.8.1"
+    web3-net "1.8.1"
 
-web3-utils@1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.0.tgz#0a506f8c6af9a2ad6ba79689892662769534fc03"
-  integrity sha512-7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ==
+web3-utils@1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.1.tgz#f2f7ca7eb65e6feb9f3d61056d0de6bbd57125ff"
+  integrity sha512-LgnM9p6V7rHHUGfpMZod+NST8cRfGzJ1BTXAyNo7A9cJX9LczBfSRxJp+U/GInYe9mby40t3v22AJdlELibnsQ==
   dependencies:
     bn.js "^5.2.1"
     ethereum-bloom-filters "^1.0.6"
@@ -5009,17 +4800,17 @@
     utf8 "3.0.0"
 
 web3@^1.8.0:
-  version "1.8.0"
-  resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.0.tgz#3ca5f0b32de6a1f626407740411219035b5fde64"
-  integrity sha512-sldr9stK/SALSJTgI/8qpnDuBJNMGjVR84hJ+AcdQ+MLBGLMGsCDNubCoyO6qgk1/Y9SQ7ignegOI/7BPLoiDA==
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.1.tgz#8ea67215ef5f3a6f6d3381800b527242ea22885a"
+  integrity sha512-tAqFsQhGv340C9OgRJIuoScN7f7wa1tUvsnnDUMt9YE6J4gcm7TV2Uwv+KERnzvV+xgdeuULYpsioRRNKrUvoQ==
   dependencies:
-    web3-bzz "1.8.0"
-    web3-core "1.8.0"
-    web3-eth "1.8.0"
-    web3-eth-personal "1.8.0"
-    web3-net "1.8.0"
-    web3-shh "1.8.0"
-    web3-utils "1.8.0"
+    web3-bzz "1.8.1"
+    web3-core "1.8.1"
+    web3-eth "1.8.1"
+    web3-eth-personal "1.8.1"
+    web3-net "1.8.1"
+    web3-shh "1.8.1"
+    web3-utils "1.8.1"
 
 webidl-conversions@^3.0.0:
   version "3.0.1"
@@ -5046,28 +4837,17 @@
     tr46 "~0.0.3"
     webidl-conversions "^3.0.0"
 
-which-boxed-primitive@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
-  integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
-  dependencies:
-    is-bigint "^1.0.1"
-    is-boolean-object "^1.1.0"
-    is-number-object "^1.0.4"
-    is-string "^1.0.5"
-    is-symbol "^1.0.3"
-
 which-typed-array@^1.1.2:
-  version "1.1.8"
-  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f"
-  integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==
+  version "1.1.9"
+  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+  integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
   dependencies:
     available-typed-arrays "^1.0.5"
     call-bind "^1.0.2"
-    es-abstract "^1.20.0"
     for-each "^0.3.3"
+    gopd "^1.0.1"
     has-tostringtag "^1.0.0"
-    is-typed-array "^1.1.9"
+    is-typed-array "^1.1.10"
 
 which@^2.0.1:
   version "2.0.2"
@@ -5115,9 +4895,9 @@
     ultron "~1.1.0"
 
 ws@^8.8.1:
-  version "8.9.0"
-  resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e"
-  integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==
+  version "8.11.0"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
+  integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
 
 xhr-request-promise@^0.1.2:
   version "0.1.3"