difftreelog
fix after rebase
in: master
9 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -81,6 +81,7 @@
configuration: {
defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;
+ maxOverridedAllowedLocations: u32 & AugmentedConst<ApiType>;
/**
* Generic const
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -162,6 +162,7 @@
configuration: {
minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+ xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -16,7 +16,7 @@
import type { BlockHash } from '@polkadot/types/interfaces/chain';
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
-import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
import type { BlockStats } from '@polkadot/types/interfaces/dev';
import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
@@ -24,7 +24,7 @@
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
-import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
@@ -174,7 +174,7 @@
* @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
* Instantiate a new contract
**/
- instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+ instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
/**
* @deprecated Not available in newer versions of the contracts interfaces
* Returns the projected time a given contract will be able to sustain paying its rent
@@ -426,15 +426,13 @@
};
payment: {
/**
- * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead
* Query the detailed fee of a given encoded extrinsic
**/
queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;
/**
- * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead
* Retrieves the fee information for an encoded extrinsic
**/
- queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
+ queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
};
rmrk: {
/**
tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -6,7 +6,7 @@
import '@polkadot/api-base/types/calls';
import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';
-import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, u64 } from '@polkadot/types-codec';
+import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';
import type { BlockHash } from '@polkadot/types/interfaces/chain';
@@ -16,7 +16,6 @@
import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';
import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
-import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';
import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
@@ -224,21 +223,6 @@
* Validate the transaction.
**/
validateTransaction: AugmentedCall<ApiType, (source: TransactionSource | 'InBlock' | 'Local' | 'External' | number | Uint8Array, tx: Extrinsic | IExtrinsic | string | Uint8Array, blockHash: BlockHash | string | Uint8Array) => Observable<TransactionValidity>>;
- /**
- * Generic call
- **/
- [key: string]: DecoratedCallBase<ApiType>;
- };
- /** 0x37c8bb1350a9a2a8/2 */
- transactionPaymentApi: {
- /**
- * The transaction fee details
- **/
- queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;
- /**
- * The transaction info
- **/
- queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
/**
* Generic call
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -217,6 +217,7 @@
configuration: {
setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+ setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -24,7 +24,7 @@
import type { StatementKind } from '@polkadot/types/interfaces/claims';
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
-import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
+import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
@@ -47,7 +47,7 @@
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
-import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { Approvals } from '@polkadot/types/interfaces/poll';
import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
@@ -273,12 +273,10 @@
ContractExecResultTo255: ContractExecResultTo255;
ContractExecResultTo260: ContractExecResultTo260;
ContractExecResultTo267: ContractExecResultTo267;
- ContractExecResultU64: ContractExecResultU64;
ContractInfo: ContractInfo;
ContractInstantiateResult: ContractInstantiateResult;
ContractInstantiateResultTo267: ContractInstantiateResultTo267;
ContractInstantiateResultTo299: ContractInstantiateResultTo299;
- ContractInstantiateResultU64: ContractInstantiateResultU64;
ContractLayoutArray: ContractLayoutArray;
ContractLayoutCell: ContractLayoutCell;
ContractLayoutEnum: ContractLayoutEnum;
@@ -1068,8 +1066,6 @@
RpcMethods: RpcMethods;
RuntimeDbWeight: RuntimeDbWeight;
RuntimeDispatchInfo: RuntimeDispatchInfo;
- RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
- RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
RuntimeVersion: RuntimeVersion;
RuntimeVersionApi: RuntimeVersionApi;
RuntimeVersionPartial: RuntimeVersionPartial;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1333,7 +1333,11 @@
readonly asSetMinGasPriceOverride: {
readonly coeff: Option<u64>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+ readonly isSetXcmAllowedLocations: boolean;
+ readonly asSetXcmAllowedLocations: {
+ readonly locations: Option<Vec<XcmV1MultiLocation>>;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
}
/** @name PalletEthereumCall */
tests/src/interfaces/lookup.tsdiffbeforeafterboth1// 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_unique_scheduler_v2::pallet::Event<T>993 **/994 PalletUniqueSchedulerV2Event: {995 _enum: {996 Scheduled: {997 when: 'u32',998 index: 'u32',999 },1000 Canceled: {1001 when: 'u32',1002 index: 'u32',1003 },1004 Dispatched: {1005 task: '(u32,u32)',1006 id: 'Option<[u8;32]>',1007 result: 'Result<Null, SpRuntimeDispatchError>',1008 },1009 PriorityChanged: {1010 task: '(u32,u32)',1011 priority: 'u8',1012 },1013 CallUnavailable: {1014 task: '(u32,u32)',1015 id: 'Option<[u8;32]>',1016 },1017 PermanentlyOverweight: {1018 task: '(u32,u32)',1019 id: 'Option<[u8;32]>'1020 }1021 }1022 },1023 /**1024 * Lookup92: pallet_common::pallet::Event<T>1025 **/1026 PalletCommonEvent: {1027 _enum: {1028 CollectionCreated: '(u32,u8,AccountId32)',1029 CollectionDestroyed: 'u32',1030 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1031 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1032 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1033 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1034 ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1035 CollectionPropertySet: '(u32,Bytes)',1036 CollectionPropertyDeleted: '(u32,Bytes)',1037 TokenPropertySet: '(u32,u32,Bytes)',1038 TokenPropertyDeleted: '(u32,u32,Bytes)',1039 PropertyPermissionSet: '(u32,Bytes)',1040 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1041 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1042 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1043 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1044 CollectionLimitSet: 'u32',1045 CollectionOwnerChanged: '(u32,AccountId32)',1046 CollectionPermissionSet: 'u32',1047 CollectionSponsorSet: '(u32,AccountId32)',1048 SponsorshipConfirmed: '(u32,AccountId32)',1049 CollectionSponsorRemoved: 'u32'1050 }1051 },1052 /**1053 * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1054 **/1055 PalletEvmAccountBasicCrossAccountIdRepr: {1056 _enum: {1057 Substrate: 'AccountId32',1058 Ethereum: 'H160'1059 }1060 },1061 /**1062 * Lookup99: pallet_structure::pallet::Event<T>1063 **/1064 PalletStructureEvent: {1065 _enum: {1066 Executed: 'Result<Null, SpRuntimeDispatchError>'1067 }1068 },1069 /**1070 * Lookup100: pallet_rmrk_core::pallet::Event<T>1071 **/1072 PalletRmrkCoreEvent: {1073 _enum: {1074 CollectionCreated: {1075 issuer: 'AccountId32',1076 collectionId: 'u32',1077 },1078 CollectionDestroyed: {1079 issuer: 'AccountId32',1080 collectionId: 'u32',1081 },1082 IssuerChanged: {1083 oldIssuer: 'AccountId32',1084 newIssuer: 'AccountId32',1085 collectionId: 'u32',1086 },1087 CollectionLocked: {1088 issuer: 'AccountId32',1089 collectionId: 'u32',1090 },1091 NftMinted: {1092 owner: 'AccountId32',1093 collectionId: 'u32',1094 nftId: 'u32',1095 },1096 NFTBurned: {1097 owner: 'AccountId32',1098 nftId: 'u32',1099 },1100 NFTSent: {1101 sender: 'AccountId32',1102 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1103 collectionId: 'u32',1104 nftId: 'u32',1105 approvalRequired: 'bool',1106 },1107 NFTAccepted: {1108 sender: 'AccountId32',1109 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1110 collectionId: 'u32',1111 nftId: 'u32',1112 },1113 NFTRejected: {1114 sender: 'AccountId32',1115 collectionId: 'u32',1116 nftId: 'u32',1117 },1118 PropertySet: {1119 collectionId: 'u32',1120 maybeNftId: 'Option<u32>',1121 key: 'Bytes',1122 value: 'Bytes',1123 },1124 ResourceAdded: {1125 nftId: 'u32',1126 resourceId: 'u32',1127 },1128 ResourceRemoval: {1129 nftId: 'u32',1130 resourceId: 'u32',1131 },1132 ResourceAccepted: {1133 nftId: 'u32',1134 resourceId: 'u32',1135 },1136 ResourceRemovalAccepted: {1137 nftId: 'u32',1138 resourceId: 'u32',1139 },1140 PrioritySet: {1141 collectionId: 'u32',1142 nftId: 'u32'1143 }1144 }1145 },1146 /**1147 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1148 **/1149 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1150 _enum: {1151 AccountId: 'AccountId32',1152 CollectionAndNftTuple: '(u32,u32)'1153 }1154 },1155 /**1156 * Lookup105: pallet_rmrk_equip::pallet::Event<T>1157 **/1158 PalletRmrkEquipEvent: {1159 _enum: {1160 BaseCreated: {1161 issuer: 'AccountId32',1162 baseId: 'u32',1163 },1164 EquippablesUpdated: {1165 baseId: 'u32',1166 slotId: 'u32'1167 }1168 }1169 },1170 /**1171 * Lookup106: pallet_app_promotion::pallet::Event<T>1172 **/1173 PalletAppPromotionEvent: {1174 _enum: {1175 StakingRecalculation: '(AccountId32,u128,u128)',1176 Stake: '(AccountId32,u128)',1177 Unstake: '(AccountId32,u128)',1178 SetAdmin: 'AccountId32'1179 }1180 },1181 /**1182 * Lookup107: pallet_foreign_assets::module::Event<T>1183 **/1184 PalletForeignAssetsModuleEvent: {1185 _enum: {1186 ForeignAssetRegistered: {1187 assetId: 'u32',1188 assetAddress: 'XcmV1MultiLocation',1189 metadata: 'PalletForeignAssetsModuleAssetMetadata',1190 },1191 ForeignAssetUpdated: {1192 assetId: 'u32',1193 assetAddress: 'XcmV1MultiLocation',1194 metadata: 'PalletForeignAssetsModuleAssetMetadata',1195 },1196 AssetRegistered: {1197 assetId: 'PalletForeignAssetsAssetIds',1198 metadata: 'PalletForeignAssetsModuleAssetMetadata',1199 },1200 AssetUpdated: {1201 assetId: 'PalletForeignAssetsAssetIds',1202 metadata: 'PalletForeignAssetsModuleAssetMetadata'1203 }1204 }1205 },1206 /**1207 * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>1208 **/1209 PalletForeignAssetsModuleAssetMetadata: {1210 name: 'Bytes',1211 symbol: 'Bytes',1212 decimals: 'u8',1213 minimalBalance: 'u128'1214 },1215 /**1216 * Lookup109: pallet_evm::pallet::Event<T>1217 **/1218 PalletEvmEvent: {1219 _enum: {1220 Log: {1221 log: 'EthereumLog',1222 },1223 Created: {1224 address: 'H160',1225 },1226 CreatedFailed: {1227 address: 'H160',1228 },1229 Executed: {1230 address: 'H160',1231 },1232 ExecutedFailed: {1233 address: 'H160'1234 }1235 }1236 },1237 /**1238 * Lookup110: ethereum::log::Log1239 **/1240 EthereumLog: {1241 address: 'H160',1242 topics: 'Vec<H256>',1243 data: 'Bytes'1244 },1245 /**1246 * Lookup112: pallet_ethereum::pallet::Event1247 **/1248 PalletEthereumEvent: {1249 _enum: {1250 Executed: {1251 from: 'H160',1252 to: 'H160',1253 transactionHash: 'H256',1254 exitReason: 'EvmCoreErrorExitReason'1255 }1256 }1257 },1258 /**1259 * Lookup113: evm_core::error::ExitReason1260 **/1261 EvmCoreErrorExitReason: {1262 _enum: {1263 Succeed: 'EvmCoreErrorExitSucceed',1264 Error: 'EvmCoreErrorExitError',1265 Revert: 'EvmCoreErrorExitRevert',1266 Fatal: 'EvmCoreErrorExitFatal'1267 }1268 },1269 /**1270 * Lookup114: evm_core::error::ExitSucceed1271 **/1272 EvmCoreErrorExitSucceed: {1273 _enum: ['Stopped', 'Returned', 'Suicided']1274 },1275 /**1276 * Lookup115: evm_core::error::ExitError1277 **/1278 EvmCoreErrorExitError: {1279 _enum: {1280 StackUnderflow: 'Null',1281 StackOverflow: 'Null',1282 InvalidJump: 'Null',1283 InvalidRange: 'Null',1284 DesignatedInvalid: 'Null',1285 CallTooDeep: 'Null',1286 CreateCollision: 'Null',1287 CreateContractLimit: 'Null',1288 OutOfOffset: 'Null',1289 OutOfGas: 'Null',1290 OutOfFund: 'Null',1291 PCUnderflow: 'Null',1292 CreateEmpty: 'Null',1293 Other: 'Text',1294 InvalidCode: 'Null'1295 }1296 },1297 /**1298 * Lookup118: evm_core::error::ExitRevert1299 **/1300 EvmCoreErrorExitRevert: {1301 _enum: ['Reverted']1302 },1303 /**1304 * Lookup119: evm_core::error::ExitFatal1305 **/1306 EvmCoreErrorExitFatal: {1307 _enum: {1308 NotSupported: 'Null',1309 UnhandledInterrupt: 'Null',1310 CallErrorAsFatal: 'EvmCoreErrorExitError',1311 Other: 'Text'1312 }1313 },1314 /**1315 * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>1316 **/1317 PalletEvmContractHelpersEvent: {1318 _enum: {1319 ContractSponsorSet: '(H160,AccountId32)',1320 ContractSponsorshipConfirmed: '(H160,AccountId32)',1321 ContractSponsorRemoved: 'H160'1322 }1323 },1324 /**1325 * Lookup121: pallet_evm_migration::pallet::Event<T>1326 **/1327 PalletEvmMigrationEvent: {1328 _enum: ['TestEvent']1329 },1330 /**1331 * Lookup122: pallet_maintenance::pallet::Event<T>1332 **/1333 PalletMaintenanceEvent: {1334 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1335 },1336 /**1337 * Lookup123: pallet_test_utils::pallet::Event<T>1338 **/1339 PalletTestUtilsEvent: {1340 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1341 },1342 /**1343 * Lookup124: frame_system::Phase1344 **/1345 FrameSystemPhase: {1346 _enum: {1347 ApplyExtrinsic: 'u32',1348 Finalization: 'Null',1349 Initialization: 'Null'1350 }1351 },1352 /**1353 * Lookup126: frame_system::LastRuntimeUpgradeInfo1354 **/1355 FrameSystemLastRuntimeUpgradeInfo: {1356 specVersion: 'Compact<u32>',1357 specName: 'Text'1358 },1359 /**1360 * Lookup127: frame_system::pallet::Call<T>1361 **/1362 FrameSystemCall: {1363 _enum: {1364 fill_block: {1365 ratio: 'Perbill',1366 },1367 remark: {1368 remark: 'Bytes',1369 },1370 set_heap_pages: {1371 pages: 'u64',1372 },1373 set_code: {1374 code: 'Bytes',1375 },1376 set_code_without_checks: {1377 code: 'Bytes',1378 },1379 set_storage: {1380 items: 'Vec<(Bytes,Bytes)>',1381 },1382 kill_storage: {1383 _alias: {1384 keys_: 'keys',1385 },1386 keys_: 'Vec<Bytes>',1387 },1388 kill_prefix: {1389 prefix: 'Bytes',1390 subkeys: 'u32',1391 },1392 remark_with_event: {1393 remark: 'Bytes'1394 }1395 }1396 },1397 /**1398 * Lookup132: frame_system::limits::BlockWeights1399 **/1400 FrameSystemLimitsBlockWeights: {1401 baseBlock: 'SpWeightsWeightV2Weight',1402 maxBlock: 'SpWeightsWeightV2Weight',1403 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1404 },1405 /**1406 * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1407 **/1408 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1409 normal: 'FrameSystemLimitsWeightsPerClass',1410 operational: 'FrameSystemLimitsWeightsPerClass',1411 mandatory: 'FrameSystemLimitsWeightsPerClass'1412 },1413 /**1414 * Lookup134: frame_system::limits::WeightsPerClass1415 **/1416 FrameSystemLimitsWeightsPerClass: {1417 baseExtrinsic: 'SpWeightsWeightV2Weight',1418 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1419 maxTotal: 'Option<SpWeightsWeightV2Weight>',1420 reserved: 'Option<SpWeightsWeightV2Weight>'1421 },1422 /**1423 * Lookup136: frame_system::limits::BlockLength1424 **/1425 FrameSystemLimitsBlockLength: {1426 max: 'FrameSupportDispatchPerDispatchClassU32'1427 },1428 /**1429 * Lookup137: frame_support::dispatch::PerDispatchClass<T>1430 **/1431 FrameSupportDispatchPerDispatchClassU32: {1432 normal: 'u32',1433 operational: 'u32',1434 mandatory: 'u32'1435 },1436 /**1437 * Lookup138: sp_weights::RuntimeDbWeight1438 **/1439 SpWeightsRuntimeDbWeight: {1440 read: 'u64',1441 write: 'u64'1442 },1443 /**1444 * Lookup139: sp_version::RuntimeVersion1445 **/1446 SpVersionRuntimeVersion: {1447 specName: 'Text',1448 implName: 'Text',1449 authoringVersion: 'u32',1450 specVersion: 'u32',1451 implVersion: 'u32',1452 apis: 'Vec<([u8;8],u32)>',1453 transactionVersion: 'u32',1454 stateVersion: 'u8'1455 },1456 /**1457 * Lookup144: frame_system::pallet::Error<T>1458 **/1459 FrameSystemError: {1460 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1461 },1462 /**1463 * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1464 **/1465 PolkadotPrimitivesV2PersistedValidationData: {1466 parentHead: 'Bytes',1467 relayParentNumber: 'u32',1468 relayParentStorageRoot: 'H256',1469 maxPovSize: 'u32'1470 },1471 /**1472 * Lookup148: polkadot_primitives::v2::UpgradeRestriction1473 **/1474 PolkadotPrimitivesV2UpgradeRestriction: {1475 _enum: ['Present']1476 },1477 /**1478 * Lookup149: sp_trie::storage_proof::StorageProof1479 **/1480 SpTrieStorageProof: {1481 trieNodes: 'BTreeSet<Bytes>'1482 },1483 /**1484 * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1485 **/1486 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1487 dmqMqcHead: 'H256',1488 relayDispatchQueueSize: '(u32,u32)',1489 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1490 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1491 },1492 /**1493 * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel1494 **/1495 PolkadotPrimitivesV2AbridgedHrmpChannel: {1496 maxCapacity: 'u32',1497 maxTotalSize: 'u32',1498 maxMessageSize: 'u32',1499 msgCount: 'u32',1500 totalSize: 'u32',1501 mqcHead: 'Option<H256>'1502 },1503 /**1504 * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration1505 **/1506 PolkadotPrimitivesV2AbridgedHostConfiguration: {1507 maxCodeSize: 'u32',1508 maxHeadDataSize: 'u32',1509 maxUpwardQueueCount: 'u32',1510 maxUpwardQueueSize: 'u32',1511 maxUpwardMessageSize: 'u32',1512 maxUpwardMessageNumPerCandidate: 'u32',1513 hrmpMaxMessageNumPerCandidate: 'u32',1514 validationUpgradeCooldown: 'u32',1515 validationUpgradeDelay: 'u32'1516 },1517 /**1518 * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1519 **/1520 PolkadotCorePrimitivesOutboundHrmpMessage: {1521 recipient: 'u32',1522 data: 'Bytes'1523 },1524 /**1525 * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>1526 **/1527 CumulusPalletParachainSystemCall: {1528 _enum: {1529 set_validation_data: {1530 data: 'CumulusPrimitivesParachainInherentParachainInherentData',1531 },1532 sudo_send_upward_message: {1533 message: 'Bytes',1534 },1535 authorize_upgrade: {1536 codeHash: 'H256',1537 },1538 enact_authorized_upgrade: {1539 code: 'Bytes'1540 }1541 }1542 },1543 /**1544 * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData1545 **/1546 CumulusPrimitivesParachainInherentParachainInherentData: {1547 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1548 relayChainState: 'SpTrieStorageProof',1549 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1550 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1551 },1552 /**1553 * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1554 **/1555 PolkadotCorePrimitivesInboundDownwardMessage: {1556 sentAt: 'u32',1557 msg: 'Bytes'1558 },1559 /**1560 * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1561 **/1562 PolkadotCorePrimitivesInboundHrmpMessage: {1563 sentAt: 'u32',1564 data: 'Bytes'1565 },1566 /**1567 * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>1568 **/1569 CumulusPalletParachainSystemError: {1570 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1571 },1572 /**1573 * Lookup173: pallet_balances::BalanceLock<Balance>1574 **/1575 PalletBalancesBalanceLock: {1576 id: '[u8;8]',1577 amount: 'u128',1578 reasons: 'PalletBalancesReasons'1579 },1580 /**1581 * Lookup174: pallet_balances::Reasons1582 **/1583 PalletBalancesReasons: {1584 _enum: ['Fee', 'Misc', 'All']1585 },1586 /**1587 * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>1588 **/1589 PalletBalancesReserveData: {1590 id: '[u8;16]',1591 amount: 'u128'1592 },1593 /**1594 * Lookup179: pallet_balances::Releases1595 **/1596 PalletBalancesReleases: {1597 _enum: ['V1_0_0', 'V2_0_0']1598 },1599 /**1600 * Lookup180: pallet_balances::pallet::Call<T, I>1601 **/1602 PalletBalancesCall: {1603 _enum: {1604 transfer: {1605 dest: 'MultiAddress',1606 value: 'Compact<u128>',1607 },1608 set_balance: {1609 who: 'MultiAddress',1610 newFree: 'Compact<u128>',1611 newReserved: 'Compact<u128>',1612 },1613 force_transfer: {1614 source: 'MultiAddress',1615 dest: 'MultiAddress',1616 value: 'Compact<u128>',1617 },1618 transfer_keep_alive: {1619 dest: 'MultiAddress',1620 value: 'Compact<u128>',1621 },1622 transfer_all: {1623 dest: 'MultiAddress',1624 keepAlive: 'bool',1625 },1626 force_unreserve: {1627 who: 'MultiAddress',1628 amount: 'u128'1629 }1630 }1631 },1632 /**1633 * Lookup183: pallet_balances::pallet::Error<T, I>1634 **/1635 PalletBalancesError: {1636 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1637 },1638 /**1639 * Lookup185: pallet_timestamp::pallet::Call<T>1640 **/1641 PalletTimestampCall: {1642 _enum: {1643 set: {1644 now: 'Compact<u64>'1645 }1646 }1647 },1648 /**1649 * Lookup187: pallet_transaction_payment::Releases1650 **/1651 PalletTransactionPaymentReleases: {1652 _enum: ['V1Ancient', 'V2']1653 },1654 /**1655 * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1656 **/1657 PalletTreasuryProposal: {1658 proposer: 'AccountId32',1659 value: 'u128',1660 beneficiary: 'AccountId32',1661 bond: 'u128'1662 },1663 /**1664 * Lookup191: pallet_treasury::pallet::Call<T, I>1665 **/1666 PalletTreasuryCall: {1667 _enum: {1668 propose_spend: {1669 value: 'Compact<u128>',1670 beneficiary: 'MultiAddress',1671 },1672 reject_proposal: {1673 proposalId: 'Compact<u32>',1674 },1675 approve_proposal: {1676 proposalId: 'Compact<u32>',1677 },1678 spend: {1679 amount: 'Compact<u128>',1680 beneficiary: 'MultiAddress',1681 },1682 remove_approval: {1683 proposalId: 'Compact<u32>'1684 }1685 }1686 },1687 /**1688 * Lookup194: frame_support::PalletId1689 **/1690 FrameSupportPalletId: '[u8;8]',1691 /**1692 * Lookup195: pallet_treasury::pallet::Error<T, I>1693 **/1694 PalletTreasuryError: {1695 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1696 },1697 /**1698 * Lookup196: pallet_sudo::pallet::Call<T>1699 **/1700 PalletSudoCall: {1701 _enum: {1702 sudo: {1703 call: 'Call',1704 },1705 sudo_unchecked_weight: {1706 call: 'Call',1707 weight: 'SpWeightsWeightV2Weight',1708 },1709 set_key: {1710 _alias: {1711 new_: 'new',1712 },1713 new_: 'MultiAddress',1714 },1715 sudo_as: {1716 who: 'MultiAddress',1717 call: 'Call'1718 }1719 }1720 },1721 /**1722 * Lookup198: orml_vesting::module::Call<T>1723 **/1724 OrmlVestingModuleCall: {1725 _enum: {1726 claim: 'Null',1727 vested_transfer: {1728 dest: 'MultiAddress',1729 schedule: 'OrmlVestingVestingSchedule',1730 },1731 update_vesting_schedules: {1732 who: 'MultiAddress',1733 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1734 },1735 claim_for: {1736 dest: 'MultiAddress'1737 }1738 }1739 },1740 /**1741 * Lookup200: orml_xtokens::module::Call<T>1742 **/1743 OrmlXtokensModuleCall: {1744 _enum: {1745 transfer: {1746 currencyId: 'PalletForeignAssetsAssetIds',1747 amount: 'u128',1748 dest: 'XcmVersionedMultiLocation',1749 destWeightLimit: 'XcmV2WeightLimit',1750 },1751 transfer_multiasset: {1752 asset: 'XcmVersionedMultiAsset',1753 dest: 'XcmVersionedMultiLocation',1754 destWeightLimit: 'XcmV2WeightLimit',1755 },1756 transfer_with_fee: {1757 currencyId: 'PalletForeignAssetsAssetIds',1758 amount: 'u128',1759 fee: 'u128',1760 dest: 'XcmVersionedMultiLocation',1761 destWeightLimit: 'XcmV2WeightLimit',1762 },1763 transfer_multiasset_with_fee: {1764 asset: 'XcmVersionedMultiAsset',1765 fee: 'XcmVersionedMultiAsset',1766 dest: 'XcmVersionedMultiLocation',1767 destWeightLimit: 'XcmV2WeightLimit',1768 },1769 transfer_multicurrencies: {1770 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1771 feeItem: 'u32',1772 dest: 'XcmVersionedMultiLocation',1773 destWeightLimit: 'XcmV2WeightLimit',1774 },1775 transfer_multiassets: {1776 assets: 'XcmVersionedMultiAssets',1777 feeItem: 'u32',1778 dest: 'XcmVersionedMultiLocation',1779 destWeightLimit: 'XcmV2WeightLimit'1780 }1781 }1782 },1783 /**1784 * Lookup201: xcm::VersionedMultiAsset1785 **/1786 XcmVersionedMultiAsset: {1787 _enum: {1788 V0: 'XcmV0MultiAsset',1789 V1: 'XcmV1MultiAsset'1790 }1791 },1792 /**1793 * Lookup204: orml_tokens::module::Call<T>1794 **/1795 OrmlTokensModuleCall: {1796 _enum: {1797 transfer: {1798 dest: 'MultiAddress',1799 currencyId: 'PalletForeignAssetsAssetIds',1800 amount: 'Compact<u128>',1801 },1802 transfer_all: {1803 dest: 'MultiAddress',1804 currencyId: 'PalletForeignAssetsAssetIds',1805 keepAlive: 'bool',1806 },1807 transfer_keep_alive: {1808 dest: 'MultiAddress',1809 currencyId: 'PalletForeignAssetsAssetIds',1810 amount: 'Compact<u128>',1811 },1812 force_transfer: {1813 source: 'MultiAddress',1814 dest: 'MultiAddress',1815 currencyId: 'PalletForeignAssetsAssetIds',1816 amount: 'Compact<u128>',1817 },1818 set_balance: {1819 who: 'MultiAddress',1820 currencyId: 'PalletForeignAssetsAssetIds',1821 newFree: 'Compact<u128>',1822 newReserved: 'Compact<u128>'1823 }1824 }1825 },1826 /**1827 * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>1828 **/1829 CumulusPalletXcmpQueueCall: {1830 _enum: {1831 service_overweight: {1832 index: 'u64',1833 weightLimit: 'u64',1834 },1835 suspend_xcm_execution: 'Null',1836 resume_xcm_execution: 'Null',1837 update_suspend_threshold: {1838 _alias: {1839 new_: 'new',1840 },1841 new_: 'u32',1842 },1843 update_drop_threshold: {1844 _alias: {1845 new_: 'new',1846 },1847 new_: 'u32',1848 },1849 update_resume_threshold: {1850 _alias: {1851 new_: 'new',1852 },1853 new_: 'u32',1854 },1855 update_threshold_weight: {1856 _alias: {1857 new_: 'new',1858 },1859 new_: 'u64',1860 },1861 update_weight_restrict_decay: {1862 _alias: {1863 new_: 'new',1864 },1865 new_: 'u64',1866 },1867 update_xcmp_max_individual_weight: {1868 _alias: {1869 new_: 'new',1870 },1871 new_: 'u64'1872 }1873 }1874 },1875 /**1876 * Lookup206: pallet_xcm::pallet::Call<T>1877 **/1878 PalletXcmCall: {1879 _enum: {1880 send: {1881 dest: 'XcmVersionedMultiLocation',1882 message: 'XcmVersionedXcm',1883 },1884 teleport_assets: {1885 dest: 'XcmVersionedMultiLocation',1886 beneficiary: 'XcmVersionedMultiLocation',1887 assets: 'XcmVersionedMultiAssets',1888 feeAssetItem: 'u32',1889 },1890 reserve_transfer_assets: {1891 dest: 'XcmVersionedMultiLocation',1892 beneficiary: 'XcmVersionedMultiLocation',1893 assets: 'XcmVersionedMultiAssets',1894 feeAssetItem: 'u32',1895 },1896 execute: {1897 message: 'XcmVersionedXcm',1898 maxWeight: 'u64',1899 },1900 force_xcm_version: {1901 location: 'XcmV1MultiLocation',1902 xcmVersion: 'u32',1903 },1904 force_default_xcm_version: {1905 maybeXcmVersion: 'Option<u32>',1906 },1907 force_subscribe_version_notify: {1908 location: 'XcmVersionedMultiLocation',1909 },1910 force_unsubscribe_version_notify: {1911 location: 'XcmVersionedMultiLocation',1912 },1913 limited_reserve_transfer_assets: {1914 dest: 'XcmVersionedMultiLocation',1915 beneficiary: 'XcmVersionedMultiLocation',1916 assets: 'XcmVersionedMultiAssets',1917 feeAssetItem: 'u32',1918 weightLimit: 'XcmV2WeightLimit',1919 },1920 limited_teleport_assets: {1921 dest: 'XcmVersionedMultiLocation',1922 beneficiary: 'XcmVersionedMultiLocation',1923 assets: 'XcmVersionedMultiAssets',1924 feeAssetItem: 'u32',1925 weightLimit: 'XcmV2WeightLimit'1926 }1927 }1928 },1929 /**1930 * Lookup207: xcm::VersionedXcm<RuntimeCall>1931 **/1932 XcmVersionedXcm: {1933 _enum: {1934 V0: 'XcmV0Xcm',1935 V1: 'XcmV1Xcm',1936 V2: 'XcmV2Xcm'1937 }1938 },1939 /**1940 * Lookup208: xcm::v0::Xcm<RuntimeCall>1941 **/1942 XcmV0Xcm: {1943 _enum: {1944 WithdrawAsset: {1945 assets: 'Vec<XcmV0MultiAsset>',1946 effects: 'Vec<XcmV0Order>',1947 },1948 ReserveAssetDeposit: {1949 assets: 'Vec<XcmV0MultiAsset>',1950 effects: 'Vec<XcmV0Order>',1951 },1952 TeleportAsset: {1953 assets: 'Vec<XcmV0MultiAsset>',1954 effects: 'Vec<XcmV0Order>',1955 },1956 QueryResponse: {1957 queryId: 'Compact<u64>',1958 response: 'XcmV0Response',1959 },1960 TransferAsset: {1961 assets: 'Vec<XcmV0MultiAsset>',1962 dest: 'XcmV0MultiLocation',1963 },1964 TransferReserveAsset: {1965 assets: 'Vec<XcmV0MultiAsset>',1966 dest: 'XcmV0MultiLocation',1967 effects: 'Vec<XcmV0Order>',1968 },1969 Transact: {1970 originType: 'XcmV0OriginKind',1971 requireWeightAtMost: 'u64',1972 call: 'XcmDoubleEncoded',1973 },1974 HrmpNewChannelOpenRequest: {1975 sender: 'Compact<u32>',1976 maxMessageSize: 'Compact<u32>',1977 maxCapacity: 'Compact<u32>',1978 },1979 HrmpChannelAccepted: {1980 recipient: 'Compact<u32>',1981 },1982 HrmpChannelClosing: {1983 initiator: 'Compact<u32>',1984 sender: 'Compact<u32>',1985 recipient: 'Compact<u32>',1986 },1987 RelayedFrom: {1988 who: 'XcmV0MultiLocation',1989 message: 'XcmV0Xcm'1990 }1991 }1992 },1993 /**1994 * Lookup210: xcm::v0::order::Order<RuntimeCall>1995 **/1996 XcmV0Order: {1997 _enum: {1998 Null: 'Null',1999 DepositAsset: {2000 assets: 'Vec<XcmV0MultiAsset>',2001 dest: 'XcmV0MultiLocation',2002 },2003 DepositReserveAsset: {2004 assets: 'Vec<XcmV0MultiAsset>',2005 dest: 'XcmV0MultiLocation',2006 effects: 'Vec<XcmV0Order>',2007 },2008 ExchangeAsset: {2009 give: 'Vec<XcmV0MultiAsset>',2010 receive: 'Vec<XcmV0MultiAsset>',2011 },2012 InitiateReserveWithdraw: {2013 assets: 'Vec<XcmV0MultiAsset>',2014 reserve: 'XcmV0MultiLocation',2015 effects: 'Vec<XcmV0Order>',2016 },2017 InitiateTeleport: {2018 assets: 'Vec<XcmV0MultiAsset>',2019 dest: 'XcmV0MultiLocation',2020 effects: 'Vec<XcmV0Order>',2021 },2022 QueryHolding: {2023 queryId: 'Compact<u64>',2024 dest: 'XcmV0MultiLocation',2025 assets: 'Vec<XcmV0MultiAsset>',2026 },2027 BuyExecution: {2028 fees: 'XcmV0MultiAsset',2029 weight: 'u64',2030 debt: 'u64',2031 haltOnError: 'bool',2032 xcm: 'Vec<XcmV0Xcm>'2033 }2034 }2035 },2036 /**2037 * Lookup212: xcm::v0::Response2038 **/2039 XcmV0Response: {2040 _enum: {2041 Assets: 'Vec<XcmV0MultiAsset>'2042 }2043 },2044 /**2045 * Lookup213: xcm::v1::Xcm<RuntimeCall>2046 **/2047 XcmV1Xcm: {2048 _enum: {2049 WithdrawAsset: {2050 assets: 'XcmV1MultiassetMultiAssets',2051 effects: 'Vec<XcmV1Order>',2052 },2053 ReserveAssetDeposited: {2054 assets: 'XcmV1MultiassetMultiAssets',2055 effects: 'Vec<XcmV1Order>',2056 },2057 ReceiveTeleportedAsset: {2058 assets: 'XcmV1MultiassetMultiAssets',2059 effects: 'Vec<XcmV1Order>',2060 },2061 QueryResponse: {2062 queryId: 'Compact<u64>',2063 response: 'XcmV1Response',2064 },2065 TransferAsset: {2066 assets: 'XcmV1MultiassetMultiAssets',2067 beneficiary: 'XcmV1MultiLocation',2068 },2069 TransferReserveAsset: {2070 assets: 'XcmV1MultiassetMultiAssets',2071 dest: 'XcmV1MultiLocation',2072 effects: 'Vec<XcmV1Order>',2073 },2074 Transact: {2075 originType: 'XcmV0OriginKind',2076 requireWeightAtMost: 'u64',2077 call: 'XcmDoubleEncoded',2078 },2079 HrmpNewChannelOpenRequest: {2080 sender: 'Compact<u32>',2081 maxMessageSize: 'Compact<u32>',2082 maxCapacity: 'Compact<u32>',2083 },2084 HrmpChannelAccepted: {2085 recipient: 'Compact<u32>',2086 },2087 HrmpChannelClosing: {2088 initiator: 'Compact<u32>',2089 sender: 'Compact<u32>',2090 recipient: 'Compact<u32>',2091 },2092 RelayedFrom: {2093 who: 'XcmV1MultilocationJunctions',2094 message: 'XcmV1Xcm',2095 },2096 SubscribeVersion: {2097 queryId: 'Compact<u64>',2098 maxResponseWeight: 'Compact<u64>',2099 },2100 UnsubscribeVersion: 'Null'2101 }2102 },2103 /**2104 * Lookup215: xcm::v1::order::Order<RuntimeCall>2105 **/2106 XcmV1Order: {2107 _enum: {2108 Noop: 'Null',2109 DepositAsset: {2110 assets: 'XcmV1MultiassetMultiAssetFilter',2111 maxAssets: 'u32',2112 beneficiary: 'XcmV1MultiLocation',2113 },2114 DepositReserveAsset: {2115 assets: 'XcmV1MultiassetMultiAssetFilter',2116 maxAssets: 'u32',2117 dest: 'XcmV1MultiLocation',2118 effects: 'Vec<XcmV1Order>',2119 },2120 ExchangeAsset: {2121 give: 'XcmV1MultiassetMultiAssetFilter',2122 receive: 'XcmV1MultiassetMultiAssets',2123 },2124 InitiateReserveWithdraw: {2125 assets: 'XcmV1MultiassetMultiAssetFilter',2126 reserve: 'XcmV1MultiLocation',2127 effects: 'Vec<XcmV1Order>',2128 },2129 InitiateTeleport: {2130 assets: 'XcmV1MultiassetMultiAssetFilter',2131 dest: 'XcmV1MultiLocation',2132 effects: 'Vec<XcmV1Order>',2133 },2134 QueryHolding: {2135 queryId: 'Compact<u64>',2136 dest: 'XcmV1MultiLocation',2137 assets: 'XcmV1MultiassetMultiAssetFilter',2138 },2139 BuyExecution: {2140 fees: 'XcmV1MultiAsset',2141 weight: 'u64',2142 debt: 'u64',2143 haltOnError: 'bool',2144 instructions: 'Vec<XcmV1Xcm>'2145 }2146 }2147 },2148 /**2149 * Lookup217: xcm::v1::Response2150 **/2151 XcmV1Response: {2152 _enum: {2153 Assets: 'XcmV1MultiassetMultiAssets',2154 Version: 'u32'2155 }2156 },2157 /**2158 * Lookup231: cumulus_pallet_xcm::pallet::Call<T>2159 **/2160 CumulusPalletXcmCall: 'Null',2161 /**2162 * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>2163 **/2164 CumulusPalletDmpQueueCall: {2165 _enum: {2166 service_overweight: {2167 index: 'u64',2168 weightLimit: 'u64'2169 }2170 }2171 },2172 /**2173 * Lookup233: pallet_inflation::pallet::Call<T>2174 **/2175 PalletInflationCall: {2176 _enum: {2177 start_inflation: {2178 inflationStartRelayBlock: 'u32'2179 }2180 }2181 },2182 /**2183 * Lookup234: pallet_unique::Call<T>2184 **/2185 PalletUniqueCall: {2186 _enum: {2187 create_collection: {2188 collectionName: 'Vec<u16>',2189 collectionDescription: 'Vec<u16>',2190 tokenPrefix: 'Bytes',2191 mode: 'UpDataStructsCollectionMode',2192 },2193 create_collection_ex: {2194 data: 'UpDataStructsCreateCollectionData',2195 },2196 destroy_collection: {2197 collectionId: 'u32',2198 },2199 add_to_allow_list: {2200 collectionId: 'u32',2201 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2202 },2203 remove_from_allow_list: {2204 collectionId: 'u32',2205 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2206 },2207 change_collection_owner: {2208 collectionId: 'u32',2209 newOwner: 'AccountId32',2210 },2211 add_collection_admin: {2212 collectionId: 'u32',2213 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2214 },2215 remove_collection_admin: {2216 collectionId: 'u32',2217 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2218 },2219 set_collection_sponsor: {2220 collectionId: 'u32',2221 newSponsor: 'AccountId32',2222 },2223 confirm_sponsorship: {2224 collectionId: 'u32',2225 },2226 remove_collection_sponsor: {2227 collectionId: 'u32',2228 },2229 create_item: {2230 collectionId: 'u32',2231 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2232 data: 'UpDataStructsCreateItemData',2233 },2234 create_multiple_items: {2235 collectionId: 'u32',2236 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2237 itemsData: 'Vec<UpDataStructsCreateItemData>',2238 },2239 set_collection_properties: {2240 collectionId: 'u32',2241 properties: 'Vec<UpDataStructsProperty>',2242 },2243 delete_collection_properties: {2244 collectionId: 'u32',2245 propertyKeys: 'Vec<Bytes>',2246 },2247 set_token_properties: {2248 collectionId: 'u32',2249 tokenId: 'u32',2250 properties: 'Vec<UpDataStructsProperty>',2251 },2252 delete_token_properties: {2253 collectionId: 'u32',2254 tokenId: 'u32',2255 propertyKeys: 'Vec<Bytes>',2256 },2257 set_token_property_permissions: {2258 collectionId: 'u32',2259 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2260 },2261 create_multiple_items_ex: {2262 collectionId: 'u32',2263 data: 'UpDataStructsCreateItemExData',2264 },2265 set_transfers_enabled_flag: {2266 collectionId: 'u32',2267 value: 'bool',2268 },2269 burn_item: {2270 collectionId: 'u32',2271 itemId: 'u32',2272 value: 'u128',2273 },2274 burn_from: {2275 collectionId: 'u32',2276 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2277 itemId: 'u32',2278 value: 'u128',2279 },2280 transfer: {2281 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2282 collectionId: 'u32',2283 itemId: 'u32',2284 value: 'u128',2285 },2286 approve: {2287 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2288 collectionId: 'u32',2289 itemId: 'u32',2290 amount: 'u128',2291 },2292 transfer_from: {2293 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2294 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2295 collectionId: 'u32',2296 itemId: 'u32',2297 value: 'u128',2298 },2299 set_collection_limits: {2300 collectionId: 'u32',2301 newLimit: 'UpDataStructsCollectionLimits',2302 },2303 set_collection_permissions: {2304 collectionId: 'u32',2305 newPermission: 'UpDataStructsCollectionPermissions',2306 },2307 repartition: {2308 collectionId: 'u32',2309 tokenId: 'u32',2310 amount: 'u128',2311 },2312 set_allowance_for_all: {2313 collectionId: 'u32',2314 operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2315 approve: 'bool'2316 }2317 }2318 },2319 /**2320 * Lookup239: up_data_structs::CollectionMode2321 **/2322 UpDataStructsCollectionMode: {2323 _enum: {2324 NFT: 'Null',2325 Fungible: 'u8',2326 ReFungible: 'Null'2327 }2328 },2329 /**2330 * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2331 **/2332 UpDataStructsCreateCollectionData: {2333 mode: 'UpDataStructsCollectionMode',2334 access: 'Option<UpDataStructsAccessMode>',2335 name: 'Vec<u16>',2336 description: 'Vec<u16>',2337 tokenPrefix: 'Bytes',2338 pendingSponsor: 'Option<AccountId32>',2339 limits: 'Option<UpDataStructsCollectionLimits>',2340 permissions: 'Option<UpDataStructsCollectionPermissions>',2341 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2342 properties: 'Vec<UpDataStructsProperty>'2343 },2344 /**2345 * Lookup242: up_data_structs::AccessMode2346 **/2347 UpDataStructsAccessMode: {2348 _enum: ['Normal', 'AllowList']2349 },2350 /**2351 * Lookup244: up_data_structs::CollectionLimits2352 **/2353 UpDataStructsCollectionLimits: {2354 accountTokenOwnershipLimit: 'Option<u32>',2355 sponsoredDataSize: 'Option<u32>',2356 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2357 tokenLimit: 'Option<u32>',2358 sponsorTransferTimeout: 'Option<u32>',2359 sponsorApproveTimeout: 'Option<u32>',2360 ownerCanTransfer: 'Option<bool>',2361 ownerCanDestroy: 'Option<bool>',2362 transfersEnabled: 'Option<bool>'2363 },2364 /**2365 * Lookup246: up_data_structs::SponsoringRateLimit2366 **/2367 UpDataStructsSponsoringRateLimit: {2368 _enum: {2369 SponsoringDisabled: 'Null',2370 Blocks: 'u32'2371 }2372 },2373 /**2374 * Lookup249: up_data_structs::CollectionPermissions2375 **/2376 UpDataStructsCollectionPermissions: {2377 access: 'Option<UpDataStructsAccessMode>',2378 mintMode: 'Option<bool>',2379 nesting: 'Option<UpDataStructsNestingPermissions>'2380 },2381 /**2382 * Lookup251: up_data_structs::NestingPermissions2383 **/2384 UpDataStructsNestingPermissions: {2385 tokenOwner: 'bool',2386 collectionAdmin: 'bool',2387 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2388 },2389 /**2390 * Lookup253: up_data_structs::OwnerRestrictedSet2391 **/2392 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2393 /**2394 * Lookup258: up_data_structs::PropertyKeyPermission2395 **/2396 UpDataStructsPropertyKeyPermission: {2397 key: 'Bytes',2398 permission: 'UpDataStructsPropertyPermission'2399 },2400 /**2401 * Lookup259: up_data_structs::PropertyPermission2402 **/2403 UpDataStructsPropertyPermission: {2404 mutable: 'bool',2405 collectionAdmin: 'bool',2406 tokenOwner: 'bool'2407 },2408 /**2409 * Lookup262: up_data_structs::Property2410 **/2411 UpDataStructsProperty: {2412 key: 'Bytes',2413 value: 'Bytes'2414 },2415 /**2416 * Lookup265: up_data_structs::CreateItemData2417 **/2418 UpDataStructsCreateItemData: {2419 _enum: {2420 NFT: 'UpDataStructsCreateNftData',2421 Fungible: 'UpDataStructsCreateFungibleData',2422 ReFungible: 'UpDataStructsCreateReFungibleData'2423 }2424 },2425 /**2426 * Lookup266: up_data_structs::CreateNftData2427 **/2428 UpDataStructsCreateNftData: {2429 properties: 'Vec<UpDataStructsProperty>'2430 },2431 /**2432 * Lookup267: up_data_structs::CreateFungibleData2433 **/2434 UpDataStructsCreateFungibleData: {2435 value: 'u128'2436 },2437 /**2438 * Lookup268: up_data_structs::CreateReFungibleData2439 **/2440 UpDataStructsCreateReFungibleData: {2441 pieces: 'u128',2442 properties: 'Vec<UpDataStructsProperty>'2443 },2444 /**2445 * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2446 **/2447 UpDataStructsCreateItemExData: {2448 _enum: {2449 NFT: 'Vec<UpDataStructsCreateNftExData>',2450 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2451 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2452 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2453 }2454 },2455 /**2456 * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2457 **/2458 UpDataStructsCreateNftExData: {2459 properties: 'Vec<UpDataStructsProperty>',2460 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2461 },2462 /**2463 * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2464 **/2465 UpDataStructsCreateRefungibleExSingleOwner: {2466 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2467 pieces: 'u128',2468 properties: 'Vec<UpDataStructsProperty>'2469 },2470 /**2471 * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2472 **/2473 UpDataStructsCreateRefungibleExMultipleOwners: {2474 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2475 properties: 'Vec<UpDataStructsProperty>'2476 },2477 /**2478 * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>2479 **/2480 PalletUniqueSchedulerV2Call: {2481 _enum: {2482 schedule: {2483 when: 'u32',2484 maybePeriodic: 'Option<(u32,u32)>',2485 priority: 'Option<u8>',2486 call: 'Call',2487 },2488 cancel: {2489 when: 'u32',2490 index: 'u32',2491 },2492 schedule_named: {2493 id: '[u8;32]',2494 when: 'u32',2495 maybePeriodic: 'Option<(u32,u32)>',2496 priority: 'Option<u8>',2497 call: 'Call',2498 },2499 cancel_named: {2500 id: '[u8;32]',2501 },2502 schedule_after: {2503 after: 'u32',2504 maybePeriodic: 'Option<(u32,u32)>',2505 priority: 'Option<u8>',2506 call: 'Call',2507 },2508 schedule_named_after: {2509 id: '[u8;32]',2510 after: 'u32',2511 maybePeriodic: 'Option<(u32,u32)>',2512 priority: 'Option<u8>',2513 call: 'Call',2514 },2515 change_named_priority: {2516 id: '[u8;32]',2517 priority: 'u8'2518 }2519 }2520 },2521 /**2522 * Lookup286: pallet_configuration::pallet::Call<T>2523 **/2524 PalletConfigurationCall: {2525 _enum: {2526 set_weight_to_fee_coefficient_override: {2527 coeff: 'Option<u32>',2528 },2529 set_min_gas_price_override: {2530 coeff: 'Option<u64>'2531 }2532 }2533 },2534 /**2535 * Lookup288: pallet_template_transaction_payment::Call<T>2536 **/2537 PalletTemplateTransactionPaymentCall: 'Null',2538 /**2539 * Lookup289: pallet_structure::pallet::Call<T>2540 **/2541 PalletStructureCall: 'Null',2542 /**2543 * Lookup290: pallet_rmrk_core::pallet::Call<T>2544 **/2545 PalletRmrkCoreCall: {2546 _enum: {2547 create_collection: {2548 metadata: 'Bytes',2549 max: 'Option<u32>',2550 symbol: 'Bytes',2551 },2552 destroy_collection: {2553 collectionId: 'u32',2554 },2555 change_collection_issuer: {2556 collectionId: 'u32',2557 newIssuer: 'MultiAddress',2558 },2559 lock_collection: {2560 collectionId: 'u32',2561 },2562 mint_nft: {2563 owner: 'Option<AccountId32>',2564 collectionId: 'u32',2565 recipient: 'Option<AccountId32>',2566 royaltyAmount: 'Option<Permill>',2567 metadata: 'Bytes',2568 transferable: 'bool',2569 resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2570 },2571 burn_nft: {2572 collectionId: 'u32',2573 nftId: 'u32',2574 maxBurns: 'u32',2575 },2576 send: {2577 rmrkCollectionId: 'u32',2578 rmrkNftId: 'u32',2579 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2580 },2581 accept_nft: {2582 rmrkCollectionId: 'u32',2583 rmrkNftId: 'u32',2584 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2585 },2586 reject_nft: {2587 rmrkCollectionId: 'u32',2588 rmrkNftId: 'u32',2589 },2590 accept_resource: {2591 rmrkCollectionId: 'u32',2592 rmrkNftId: 'u32',2593 resourceId: 'u32',2594 },2595 accept_resource_removal: {2596 rmrkCollectionId: 'u32',2597 rmrkNftId: 'u32',2598 resourceId: 'u32',2599 },2600 set_property: {2601 rmrkCollectionId: 'Compact<u32>',2602 maybeNftId: 'Option<u32>',2603 key: 'Bytes',2604 value: 'Bytes',2605 },2606 set_priority: {2607 rmrkCollectionId: 'u32',2608 rmrkNftId: 'u32',2609 priorities: 'Vec<u32>',2610 },2611 add_basic_resource: {2612 rmrkCollectionId: 'u32',2613 nftId: 'u32',2614 resource: 'RmrkTraitsResourceBasicResource',2615 },2616 add_composable_resource: {2617 rmrkCollectionId: 'u32',2618 nftId: 'u32',2619 resource: 'RmrkTraitsResourceComposableResource',2620 },2621 add_slot_resource: {2622 rmrkCollectionId: 'u32',2623 nftId: 'u32',2624 resource: 'RmrkTraitsResourceSlotResource',2625 },2626 remove_resource: {2627 rmrkCollectionId: 'u32',2628 nftId: 'u32',2629 resourceId: 'u32'2630 }2631 }2632 },2633 /**2634 * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2635 **/2636 RmrkTraitsResourceResourceTypes: {2637 _enum: {2638 Basic: 'RmrkTraitsResourceBasicResource',2639 Composable: 'RmrkTraitsResourceComposableResource',2640 Slot: 'RmrkTraitsResourceSlotResource'2641 }2642 },2643 /**2644 * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2645 **/2646 RmrkTraitsResourceBasicResource: {2647 src: 'Option<Bytes>',2648 metadata: 'Option<Bytes>',2649 license: 'Option<Bytes>',2650 thumb: 'Option<Bytes>'2651 },2652 /**2653 * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2654 **/2655 RmrkTraitsResourceComposableResource: {2656 parts: 'Vec<u32>',2657 base: 'u32',2658 src: 'Option<Bytes>',2659 metadata: 'Option<Bytes>',2660 license: 'Option<Bytes>',2661 thumb: 'Option<Bytes>'2662 },2663 /**2664 * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2665 **/2666 RmrkTraitsResourceSlotResource: {2667 base: 'u32',2668 src: 'Option<Bytes>',2669 metadata: 'Option<Bytes>',2670 slot: 'u32',2671 license: 'Option<Bytes>',2672 thumb: 'Option<Bytes>'2673 },2674 /**2675 * Lookup304: pallet_rmrk_equip::pallet::Call<T>2676 **/2677 PalletRmrkEquipCall: {2678 _enum: {2679 create_base: {2680 baseType: 'Bytes',2681 symbol: 'Bytes',2682 parts: 'Vec<RmrkTraitsPartPartType>',2683 },2684 theme_add: {2685 baseId: 'u32',2686 theme: 'RmrkTraitsTheme',2687 },2688 equippable: {2689 baseId: 'u32',2690 slotId: 'u32',2691 equippables: 'RmrkTraitsPartEquippableList'2692 }2693 }2694 },2695 /**2696 * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2697 **/2698 RmrkTraitsPartPartType: {2699 _enum: {2700 FixedPart: 'RmrkTraitsPartFixedPart',2701 SlotPart: 'RmrkTraitsPartSlotPart'2702 }2703 },2704 /**2705 * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2706 **/2707 RmrkTraitsPartFixedPart: {2708 id: 'u32',2709 z: 'u32',2710 src: 'Bytes'2711 },2712 /**2713 * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2714 **/2715 RmrkTraitsPartSlotPart: {2716 id: 'u32',2717 equippable: 'RmrkTraitsPartEquippableList',2718 src: 'Bytes',2719 z: 'u32'2720 },2721 /**2722 * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2723 **/2724 RmrkTraitsPartEquippableList: {2725 _enum: {2726 All: 'Null',2727 Empty: 'Null',2728 Custom: 'Vec<u32>'2729 }2730 },2731 /**2732 * Lookup313: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2733 **/2734 RmrkTraitsTheme: {2735 name: 'Bytes',2736 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2737 inherit: 'bool'2738 },2739 /**2740 * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2741 **/2742 RmrkTraitsThemeThemeProperty: {2743 key: 'Bytes',2744 value: 'Bytes'2745 },2746 /**2747 * Lookup317: pallet_app_promotion::pallet::Call<T>2748 **/2749 PalletAppPromotionCall: {2750 _enum: {2751 set_admin_address: {2752 admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2753 },2754 stake: {2755 amount: 'u128',2756 },2757 unstake: 'Null',2758 sponsor_collection: {2759 collectionId: 'u32',2760 },2761 stop_sponsoring_collection: {2762 collectionId: 'u32',2763 },2764 sponsor_contract: {2765 contractId: 'H160',2766 },2767 stop_sponsoring_contract: {2768 contractId: 'H160',2769 },2770 payout_stakers: {2771 stakersNumber: 'Option<u8>'2772 }2773 }2774 },2775 /**2776 * Lookup318: pallet_foreign_assets::module::Call<T>2777 **/2778 PalletForeignAssetsModuleCall: {2779 _enum: {2780 register_foreign_asset: {2781 owner: 'AccountId32',2782 location: 'XcmVersionedMultiLocation',2783 metadata: 'PalletForeignAssetsModuleAssetMetadata',2784 },2785 update_foreign_asset: {2786 foreignAssetId: 'u32',2787 location: 'XcmVersionedMultiLocation',2788 metadata: 'PalletForeignAssetsModuleAssetMetadata'2789 }2790 }2791 },2792 /**2793 * Lookup319: pallet_evm::pallet::Call<T>2794 **/2795 PalletEvmCall: {2796 _enum: {2797 withdraw: {2798 address: 'H160',2799 value: 'u128',2800 },2801 call: {2802 source: 'H160',2803 target: 'H160',2804 input: 'Bytes',2805 value: 'U256',2806 gasLimit: 'u64',2807 maxFeePerGas: 'U256',2808 maxPriorityFeePerGas: 'Option<U256>',2809 nonce: 'Option<U256>',2810 accessList: 'Vec<(H160,Vec<H256>)>',2811 },2812 create: {2813 source: 'H160',2814 init: 'Bytes',2815 value: 'U256',2816 gasLimit: 'u64',2817 maxFeePerGas: 'U256',2818 maxPriorityFeePerGas: 'Option<U256>',2819 nonce: 'Option<U256>',2820 accessList: 'Vec<(H160,Vec<H256>)>',2821 },2822 create2: {2823 source: 'H160',2824 init: 'Bytes',2825 salt: 'H256',2826 value: 'U256',2827 gasLimit: 'u64',2828 maxFeePerGas: 'U256',2829 maxPriorityFeePerGas: 'Option<U256>',2830 nonce: 'Option<U256>',2831 accessList: 'Vec<(H160,Vec<H256>)>'2832 }2833 }2834 },2835 /**2836 * Lookup325: pallet_ethereum::pallet::Call<T>2837 **/2838 PalletEthereumCall: {2839 _enum: {2840 transact: {2841 transaction: 'EthereumTransactionTransactionV2'2842 }2843 }2844 },2845 /**2846 * Lookup326: ethereum::transaction::TransactionV22847 **/2848 EthereumTransactionTransactionV2: {2849 _enum: {2850 Legacy: 'EthereumTransactionLegacyTransaction',2851 EIP2930: 'EthereumTransactionEip2930Transaction',2852 EIP1559: 'EthereumTransactionEip1559Transaction'2853 }2854 },2855 /**2856 * Lookup327: ethereum::transaction::LegacyTransaction2857 **/2858 EthereumTransactionLegacyTransaction: {2859 nonce: 'U256',2860 gasPrice: 'U256',2861 gasLimit: 'U256',2862 action: 'EthereumTransactionTransactionAction',2863 value: 'U256',2864 input: 'Bytes',2865 signature: 'EthereumTransactionTransactionSignature'2866 },2867 /**2868 * Lookup328: ethereum::transaction::TransactionAction2869 **/2870 EthereumTransactionTransactionAction: {2871 _enum: {2872 Call: 'H160',2873 Create: 'Null'2874 }2875 },2876 /**2877 * Lookup329: ethereum::transaction::TransactionSignature2878 **/2879 EthereumTransactionTransactionSignature: {2880 v: 'u64',2881 r: 'H256',2882 s: 'H256'2883 },2884 /**2885 * Lookup331: ethereum::transaction::EIP2930Transaction2886 **/2887 EthereumTransactionEip2930Transaction: {2888 chainId: 'u64',2889 nonce: 'U256',2890 gasPrice: 'U256',2891 gasLimit: 'U256',2892 action: 'EthereumTransactionTransactionAction',2893 value: 'U256',2894 input: 'Bytes',2895 accessList: 'Vec<EthereumTransactionAccessListItem>',2896 oddYParity: 'bool',2897 r: 'H256',2898 s: 'H256'2899 },2900 /**2901 * Lookup333: ethereum::transaction::AccessListItem2902 **/2903 EthereumTransactionAccessListItem: {2904 address: 'H160',2905 storageKeys: 'Vec<H256>'2906 },2907 /**2908 * Lookup334: ethereum::transaction::EIP1559Transaction2909 **/2910 EthereumTransactionEip1559Transaction: {2911 chainId: 'u64',2912 nonce: 'U256',2913 maxPriorityFeePerGas: 'U256',2914 maxFeePerGas: 'U256',2915 gasLimit: 'U256',2916 action: 'EthereumTransactionTransactionAction',2917 value: 'U256',2918 input: 'Bytes',2919 accessList: 'Vec<EthereumTransactionAccessListItem>',2920 oddYParity: 'bool',2921 r: 'H256',2922 s: 'H256'2923 },2924 /**2925 * Lookup335: pallet_evm_migration::pallet::Call<T>2926 **/2927 PalletEvmMigrationCall: {2928 _enum: {2929 begin: {2930 address: 'H160',2931 },2932 set_data: {2933 address: 'H160',2934 data: 'Vec<(H256,H256)>',2935 },2936 finish: {2937 address: 'H160',2938 code: 'Bytes',2939 },2940 insert_eth_logs: {2941 logs: 'Vec<EthereumLog>',2942 },2943 insert_events: {2944 events: 'Vec<Bytes>'2945 }2946 }2947 },2948 /**2949 * Lookup339: pallet_maintenance::pallet::Call<T>2950 **/2951 PalletMaintenanceCall: {2952 _enum: ['enable', 'disable']2953 },2954 /**2955 * Lookup340: pallet_test_utils::pallet::Call<T>2956 **/2957 PalletTestUtilsCall: {2958 _enum: {2959 enable: 'Null',2960 set_test_value: {2961 value: 'u32',2962 },2963 set_test_value_and_rollback: {2964 value: 'u32',2965 },2966 inc_test_value: 'Null',2967 self_canceling_inc: {2968 id: '[u8;32]',2969 maxTestValue: 'u32',2970 },2971 just_take_fee: 'Null',2972 batch_all: {2973 calls: 'Vec<Call>'2974 }2975 }2976 },2977 /**2978 * Lookup342: pallet_sudo::pallet::Error<T>2979 **/2980 PalletSudoError: {2981 _enum: ['RequireSudo']2982 },2983 /**2984 * Lookup344: orml_vesting::module::Error<T>2985 **/2986 OrmlVestingModuleError: {2987 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2988 },2989 /**2990 * Lookup345: orml_xtokens::module::Error<T>2991 **/2992 OrmlXtokensModuleError: {2993 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2994 },2995 /**2996 * Lookup348: orml_tokens::BalanceLock<Balance>2997 **/2998 OrmlTokensBalanceLock: {2999 id: '[u8;8]',3000 amount: 'u128'3001 },3002 /**3003 * Lookup350: orml_tokens::AccountData<Balance>3004 **/3005 OrmlTokensAccountData: {3006 free: 'u128',3007 reserved: 'u128',3008 frozen: 'u128'3009 },3010 /**3011 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>3012 **/3013 OrmlTokensReserveData: {3014 id: 'Null',3015 amount: 'u128'3016 },3017 /**3018 * Lookup354: orml_tokens::module::Error<T>3019 **/3020 OrmlTokensModuleError: {3021 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3022 },3023 /**3024 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails3025 **/3026 CumulusPalletXcmpQueueInboundChannelDetails: {3027 sender: 'u32',3028 state: 'CumulusPalletXcmpQueueInboundState',3029 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3030 },3031 /**3032 * Lookup357: cumulus_pallet_xcmp_queue::InboundState3033 **/3034 CumulusPalletXcmpQueueInboundState: {3035 _enum: ['Ok', 'Suspended']3036 },3037 /**3038 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat3039 **/3040 PolkadotParachainPrimitivesXcmpMessageFormat: {3041 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3042 },3043 /**3044 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails3045 **/3046 CumulusPalletXcmpQueueOutboundChannelDetails: {3047 recipient: 'u32',3048 state: 'CumulusPalletXcmpQueueOutboundState',3049 signalsExist: 'bool',3050 firstIndex: 'u16',3051 lastIndex: 'u16'3052 },3053 /**3054 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState3055 **/3056 CumulusPalletXcmpQueueOutboundState: {3057 _enum: ['Ok', 'Suspended']3058 },3059 /**3060 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData3061 **/3062 CumulusPalletXcmpQueueQueueConfigData: {3063 suspendThreshold: 'u32',3064 dropThreshold: 'u32',3065 resumeThreshold: 'u32',3066 thresholdWeight: 'SpWeightsWeightV2Weight',3067 weightRestrictDecay: 'SpWeightsWeightV2Weight',3068 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3069 },3070 /**3071 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>3072 **/3073 CumulusPalletXcmpQueueError: {3074 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3075 },3076 /**3077 * Lookup369: pallet_xcm::pallet::Error<T>3078 **/3079 PalletXcmError: {3080 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3081 },3082 /**3083 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>3084 **/3085 CumulusPalletXcmError: 'Null',3086 /**3087 * Lookup371: cumulus_pallet_dmp_queue::ConfigData3088 **/3089 CumulusPalletDmpQueueConfigData: {3090 maxIndividual: 'SpWeightsWeightV2Weight'3091 },3092 /**3093 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData3094 **/3095 CumulusPalletDmpQueuePageIndexData: {3096 beginUsed: 'u32',3097 endUsed: 'u32',3098 overweightCount: 'u64'3099 },3100 /**3101 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>3102 **/3103 CumulusPalletDmpQueueError: {3104 _enum: ['Unknown', 'OverLimit']3105 },3106 /**3107 * Lookup379: pallet_unique::Error<T>3108 **/3109 PalletUniqueError: {3110 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3111 },3112 /**3113 * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>3114 **/3115 PalletUniqueSchedulerV2BlockAgenda: {3116 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',3117 freePlaces: 'u32'3118 },3119 /**3120 * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3121 **/3122 PalletUniqueSchedulerV2Scheduled: {3123 maybeId: 'Option<[u8;32]>',3124 priority: 'u8',3125 call: 'PalletUniqueSchedulerV2ScheduledCall',3126 maybePeriodic: 'Option<(u32,u32)>',3127 origin: 'OpalRuntimeOriginCaller'3128 },3129 /**3130 * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>3131 **/3132 PalletUniqueSchedulerV2ScheduledCall: {3133 _enum: {3134 Inline: 'Bytes',3135 PreimageLookup: {3136 _alias: {3137 hash_: 'hash',3138 },3139 hash_: 'H256',3140 unboundedLen: 'u32'3141 }3142 }3143 },3144 /**3145 * Lookup386: opal_runtime::OriginCaller3146 **/3147 OpalRuntimeOriginCaller: {3148 _enum: {3149 system: 'FrameSupportDispatchRawOrigin',3150 __Unused1: 'Null',3151 __Unused2: 'Null',3152 __Unused3: 'Null',3153 Void: 'SpCoreVoid',3154 __Unused5: 'Null',3155 __Unused6: 'Null',3156 __Unused7: 'Null',3157 __Unused8: 'Null',3158 __Unused9: 'Null',3159 __Unused10: 'Null',3160 __Unused11: 'Null',3161 __Unused12: 'Null',3162 __Unused13: 'Null',3163 __Unused14: 'Null',3164 __Unused15: 'Null',3165 __Unused16: 'Null',3166 __Unused17: 'Null',3167 __Unused18: 'Null',3168 __Unused19: 'Null',3169 __Unused20: 'Null',3170 __Unused21: 'Null',3171 __Unused22: 'Null',3172 __Unused23: 'Null',3173 __Unused24: 'Null',3174 __Unused25: 'Null',3175 __Unused26: 'Null',3176 __Unused27: 'Null',3177 __Unused28: 'Null',3178 __Unused29: 'Null',3179 __Unused30: 'Null',3180 __Unused31: 'Null',3181 __Unused32: 'Null',3182 __Unused33: 'Null',3183 __Unused34: 'Null',3184 __Unused35: 'Null',3185 __Unused36: 'Null',3186 __Unused37: 'Null',3187 __Unused38: 'Null',3188 __Unused39: 'Null',3189 __Unused40: 'Null',3190 __Unused41: 'Null',3191 __Unused42: 'Null',3192 __Unused43: 'Null',3193 __Unused44: 'Null',3194 __Unused45: 'Null',3195 __Unused46: 'Null',3196 __Unused47: 'Null',3197 __Unused48: 'Null',3198 __Unused49: 'Null',3199 __Unused50: 'Null',3200 PolkadotXcm: 'PalletXcmOrigin',3201 CumulusXcm: 'CumulusPalletXcmOrigin',3202 __Unused53: 'Null',3203 __Unused54: 'Null',3204 __Unused55: 'Null',3205 __Unused56: 'Null',3206 __Unused57: 'Null',3207 __Unused58: 'Null',3208 __Unused59: 'Null',3209 __Unused60: 'Null',3210 __Unused61: 'Null',3211 __Unused62: 'Null',3212 __Unused63: 'Null',3213 __Unused64: 'Null',3214 __Unused65: 'Null',3215 __Unused66: 'Null',3216 __Unused67: 'Null',3217 __Unused68: 'Null',3218 __Unused69: 'Null',3219 __Unused70: 'Null',3220 __Unused71: 'Null',3221 __Unused72: 'Null',3222 __Unused73: 'Null',3223 __Unused74: 'Null',3224 __Unused75: 'Null',3225 __Unused76: 'Null',3226 __Unused77: 'Null',3227 __Unused78: 'Null',3228 __Unused79: 'Null',3229 __Unused80: 'Null',3230 __Unused81: 'Null',3231 __Unused82: 'Null',3232 __Unused83: 'Null',3233 __Unused84: 'Null',3234 __Unused85: 'Null',3235 __Unused86: 'Null',3236 __Unused87: 'Null',3237 __Unused88: 'Null',3238 __Unused89: 'Null',3239 __Unused90: 'Null',3240 __Unused91: 'Null',3241 __Unused92: 'Null',3242 __Unused93: 'Null',3243 __Unused94: 'Null',3244 __Unused95: 'Null',3245 __Unused96: 'Null',3246 __Unused97: 'Null',3247 __Unused98: 'Null',3248 __Unused99: 'Null',3249 __Unused100: 'Null',3250 Ethereum: 'PalletEthereumRawOrigin'3251 }3252 },3253 /**3254 * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3255 **/3256 FrameSupportDispatchRawOrigin: {3257 _enum: {3258 Root: 'Null',3259 Signed: 'AccountId32',3260 None: 'Null'3261 }3262 },3263 /**3264 * Lookup388: pallet_xcm::pallet::Origin3265 **/3266 PalletXcmOrigin: {3267 _enum: {3268 Xcm: 'XcmV1MultiLocation',3269 Response: 'XcmV1MultiLocation'3270 }3271 },3272 /**3273 * Lookup389: cumulus_pallet_xcm::pallet::Origin3274 **/3275 CumulusPalletXcmOrigin: {3276 _enum: {3277 Relay: 'Null',3278 SiblingParachain: 'u32'3279 }3280 },3281 /**3282 * Lookup390: pallet_ethereum::RawOrigin3283 **/3284 PalletEthereumRawOrigin: {3285 _enum: {3286 EthereumTransaction: 'H160'3287 }3288 },3289 /**3290 * Lookup391: sp_core::Void3291 **/3292 SpCoreVoid: 'Null',3293 /**3294 * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>3295 **/3296 PalletUniqueSchedulerV2Error: {3297 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']3298 },3299 /**3300 * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>3301 **/3302 UpDataStructsCollection: {3303 owner: 'AccountId32',3304 mode: 'UpDataStructsCollectionMode',3305 name: 'Vec<u16>',3306 description: 'Vec<u16>',3307 tokenPrefix: 'Bytes',3308 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3309 limits: 'UpDataStructsCollectionLimits',3310 permissions: 'UpDataStructsCollectionPermissions',3311 flags: '[u8;1]'3312 },3313 /**3314 * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3315 **/3316 UpDataStructsSponsorshipStateAccountId32: {3317 _enum: {3318 Disabled: 'Null',3319 Unconfirmed: 'AccountId32',3320 Confirmed: 'AccountId32'3321 }3322 },3323 /**3324 * Lookup397: up_data_structs::Properties3325 **/3326 UpDataStructsProperties: {3327 map: 'UpDataStructsPropertiesMapBoundedVec',3328 consumedSpace: 'u32',3329 spaceLimit: 'u32'3330 },3331 /**3332 * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3333 **/3334 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3335 /**3336 * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3337 **/3338 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3339 /**3340 * Lookup410: up_data_structs::CollectionStats3341 **/3342 UpDataStructsCollectionStats: {3343 created: 'u32',3344 destroyed: 'u32',3345 alive: 'u32'3346 },3347 /**3348 * Lookup411: up_data_structs::TokenChild3349 **/3350 UpDataStructsTokenChild: {3351 token: 'u32',3352 collection: 'u32'3353 },3354 /**3355 * Lookup412: PhantomType::up_data_structs<T>3356 **/3357 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3358 /**3359 * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3360 **/3361 UpDataStructsTokenData: {3362 properties: 'Vec<UpDataStructsProperty>',3363 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3364 pieces: 'u128'3365 },3366 /**3367 * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3368 **/3369 UpDataStructsRpcCollection: {3370 owner: 'AccountId32',3371 mode: 'UpDataStructsCollectionMode',3372 name: 'Vec<u16>',3373 description: 'Vec<u16>',3374 tokenPrefix: 'Bytes',3375 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3376 limits: 'UpDataStructsCollectionLimits',3377 permissions: 'UpDataStructsCollectionPermissions',3378 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3379 properties: 'Vec<UpDataStructsProperty>',3380 readOnly: 'bool',3381 flags: 'UpDataStructsRpcCollectionFlags'3382 },3383 /**3384 * Lookup417: up_data_structs::RpcCollectionFlags3385 **/3386 UpDataStructsRpcCollectionFlags: {3387 foreign: 'bool',3388 erc721metadata: 'bool'3389 },3390 /**3391 * Lookup418: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3392 **/3393 RmrkTraitsCollectionCollectionInfo: {3394 issuer: 'AccountId32',3395 metadata: 'Bytes',3396 max: 'Option<u32>',3397 symbol: 'Bytes',3398 nftsCount: 'u32'3399 },3400 /**3401 * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3402 **/3403 RmrkTraitsNftNftInfo: {3404 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3405 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3406 metadata: 'Bytes',3407 equipped: 'bool',3408 pending: 'bool'3409 },3410 /**3411 * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3412 **/3413 RmrkTraitsNftRoyaltyInfo: {3414 recipient: 'AccountId32',3415 amount: 'Permill'3416 },3417 /**3418 * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3419 **/3420 RmrkTraitsResourceResourceInfo: {3421 id: 'u32',3422 resource: 'RmrkTraitsResourceResourceTypes',3423 pending: 'bool',3424 pendingRemoval: 'bool'3425 },3426 /**3427 * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3428 **/3429 RmrkTraitsPropertyPropertyInfo: {3430 key: 'Bytes',3431 value: 'Bytes'3432 },3433 /**3434 * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3435 **/3436 RmrkTraitsBaseBaseInfo: {3437 issuer: 'AccountId32',3438 baseType: 'Bytes',3439 symbol: 'Bytes'3440 },3441 /**3442 * Lookup425: rmrk_traits::nft::NftChild3443 **/3444 RmrkTraitsNftNftChild: {3445 collectionId: 'u32',3446 nftId: 'u32'3447 },3448 /**3449 * Lookup427: pallet_common::pallet::Error<T>3450 **/3451 PalletCommonError: {3452 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3453 },3454 /**3455 * Lookup429: pallet_fungible::pallet::Error<T>3456 **/3457 PalletFungibleError: {3458 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3459 },3460 /**3461 * Lookup430: pallet_refungible::ItemData3462 **/3463 PalletRefungibleItemData: {3464 constData: 'Bytes'3465 },3466 /**3467 * Lookup435: pallet_refungible::pallet::Error<T>3468 **/3469 PalletRefungibleError: {3470 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3471 },3472 /**3473 * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3474 **/3475 PalletNonfungibleItemData: {3476 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3477 },3478 /**3479 * Lookup438: up_data_structs::PropertyScope3480 **/3481 UpDataStructsPropertyScope: {3482 _enum: ['None', 'Rmrk']3483 },3484 /**3485 * Lookup440: pallet_nonfungible::pallet::Error<T>3486 **/3487 PalletNonfungibleError: {3488 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3489 },3490 /**3491 * Lookup441: pallet_structure::pallet::Error<T>3492 **/3493 PalletStructureError: {3494 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3495 },3496 /**3497 * Lookup442: pallet_rmrk_core::pallet::Error<T>3498 **/3499 PalletRmrkCoreError: {3500 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3501 },3502 /**3503 * Lookup444: pallet_rmrk_equip::pallet::Error<T>3504 **/3505 PalletRmrkEquipError: {3506 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3507 },3508 /**3509 * Lookup450: pallet_app_promotion::pallet::Error<T>3510 **/3511 PalletAppPromotionError: {3512 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3513 },3514 /**3515 * Lookup451: pallet_foreign_assets::module::Error<T>3516 **/3517 PalletForeignAssetsModuleError: {3518 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3519 },3520 /**3521 * Lookup453: pallet_evm::pallet::Error<T>3522 **/3523 PalletEvmError: {3524 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3525 },3526 /**3527 * Lookup456: fp_rpc::TransactionStatus3528 **/3529 FpRpcTransactionStatus: {3530 transactionHash: 'H256',3531 transactionIndex: 'u32',3532 from: 'H160',3533 to: 'Option<H160>',3534 contractAddress: 'Option<H160>',3535 logs: 'Vec<EthereumLog>',3536 logsBloom: 'EthbloomBloom'3537 },3538 /**3539 * Lookup458: ethbloom::Bloom3540 **/3541 EthbloomBloom: '[u8;256]',3542 /**3543 * Lookup460: ethereum::receipt::ReceiptV33544 **/3545 EthereumReceiptReceiptV3: {3546 _enum: {3547 Legacy: 'EthereumReceiptEip658ReceiptData',3548 EIP2930: 'EthereumReceiptEip658ReceiptData',3549 EIP1559: 'EthereumReceiptEip658ReceiptData'3550 }3551 },3552 /**3553 * Lookup461: ethereum::receipt::EIP658ReceiptData3554 **/3555 EthereumReceiptEip658ReceiptData: {3556 statusCode: 'u8',3557 usedGas: 'U256',3558 logsBloom: 'EthbloomBloom',3559 logs: 'Vec<EthereumLog>'3560 },3561 /**3562 * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>3563 **/3564 EthereumBlock: {3565 header: 'EthereumHeader',3566 transactions: 'Vec<EthereumTransactionTransactionV2>',3567 ommers: 'Vec<EthereumHeader>'3568 },3569 /**3570 * Lookup463: ethereum::header::Header3571 **/3572 EthereumHeader: {3573 parentHash: 'H256',3574 ommersHash: 'H256',3575 beneficiary: 'H160',3576 stateRoot: 'H256',3577 transactionsRoot: 'H256',3578 receiptsRoot: 'H256',3579 logsBloom: 'EthbloomBloom',3580 difficulty: 'U256',3581 number: 'U256',3582 gasLimit: 'U256',3583 gasUsed: 'U256',3584 timestamp: 'u64',3585 extraData: 'Bytes',3586 mixHash: 'H256',3587 nonce: 'EthereumTypesHashH64'3588 },3589 /**3590 * Lookup464: ethereum_types::hash::H643591 **/3592 EthereumTypesHashH64: '[u8;8]',3593 /**3594 * Lookup469: pallet_ethereum::pallet::Error<T>3595 **/3596 PalletEthereumError: {3597 _enum: ['InvalidSignature', 'PreLogExists']3598 },3599 /**3600 * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>3601 **/3602 PalletEvmCoderSubstrateError: {3603 _enum: ['OutOfGas', 'OutOfFund']3604 },3605 /**3606 * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3607 **/3608 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3609 _enum: {3610 Disabled: 'Null',3611 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3612 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3613 }3614 },3615 /**3616 * Lookup472: pallet_evm_contract_helpers::SponsoringModeT3617 **/3618 PalletEvmContractHelpersSponsoringModeT: {3619 _enum: ['Disabled', 'Allowlisted', 'Generous']3620 },3621 /**3622 * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>3623 **/3624 PalletEvmContractHelpersError: {3625 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3626 },3627 /**3628 * Lookup479: pallet_evm_migration::pallet::Error<T>3629 **/3630 PalletEvmMigrationError: {3631 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3632 },3633 /**3634 * Lookup480: pallet_maintenance::pallet::Error<T>3635 **/3636 PalletMaintenanceError: 'Null',3637 /**3638 * Lookup481: pallet_test_utils::pallet::Error<T>3639 **/3640 PalletTestUtilsError: {3641 _enum: ['TestPalletDisabled', 'TriggerRollback']3642 },3643 /**3644 * Lookup483: sp_runtime::MultiSignature3645 **/3646 SpRuntimeMultiSignature: {3647 _enum: {3648 Ed25519: 'SpCoreEd25519Signature',3649 Sr25519: 'SpCoreSr25519Signature',3650 Ecdsa: 'SpCoreEcdsaSignature'3651 }3652 },3653 /**3654 * Lookup484: sp_core::ed25519::Signature3655 **/3656 SpCoreEd25519Signature: '[u8;64]',3657 /**3658 * Lookup486: sp_core::sr25519::Signature3659 **/3660 SpCoreSr25519Signature: '[u8;64]',3661 /**3662 * Lookup487: sp_core::ecdsa::Signature3663 **/3664 SpCoreEcdsaSignature: '[u8;65]',3665 /**3666 * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3667 **/3668 FrameSystemExtensionsCheckSpecVersion: 'Null',3669 /**3670 * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>3671 **/3672 FrameSystemExtensionsCheckTxVersion: 'Null',3673 /**3674 * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>3675 **/3676 FrameSystemExtensionsCheckGenesis: 'Null',3677 /**3678 * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>3679 **/3680 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3681 /**3682 * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>3683 **/3684 FrameSystemExtensionsCheckWeight: 'Null',3685 /**3686 * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance3687 **/3688 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3689 /**3690 * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3691 **/3692 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3693 /**3694 * Lookup499: opal_runtime::Runtime3695 **/3696 OpalRuntimeRuntime: 'Null',3697 /**3698 * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3699 **/3700 PalletEthereumFakeTransactionFinalizer: 'Null'3701};tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -2761,16 +2761,20 @@
readonly asSetMinGasPriceOverride: {
readonly coeff: Option<u64>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+ readonly isSetXcmAllowedLocations: boolean;
+ readonly asSetXcmAllowedLocations: {
+ readonly locations: Option<Vec<XcmV1MultiLocation>>;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
}
- /** @name PalletTemplateTransactionPaymentCall (288) */
+ /** @name PalletTemplateTransactionPaymentCall (291) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (289) */
+ /** @name PalletStructureCall (292) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (290) */
+ /** @name PalletRmrkCoreCall (293) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2876,7 +2880,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (296) */
+ /** @name RmrkTraitsResourceResourceTypes (299) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2887,7 +2891,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (298) */
+ /** @name RmrkTraitsResourceBasicResource (301) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2895,7 +2899,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (300) */
+ /** @name RmrkTraitsResourceComposableResource (303) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2905,7 +2909,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (301) */
+ /** @name RmrkTraitsResourceSlotResource (304) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2915,7 +2919,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (304) */
+ /** @name PalletRmrkEquipCall (307) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2937,7 +2941,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (307) */
+ /** @name RmrkTraitsPartPartType (310) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2946,14 +2950,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (309) */
+ /** @name RmrkTraitsPartFixedPart (312) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (310) */
+ /** @name RmrkTraitsPartSlotPart (313) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2961,7 +2965,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (311) */
+ /** @name RmrkTraitsPartEquippableList (314) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2970,20 +2974,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (313) */
+ /** @name RmrkTraitsTheme (316) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (315) */
+ /** @name RmrkTraitsThemeThemeProperty (318) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (317) */
+ /** @name PalletAppPromotionCall (320) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3017,7 +3021,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (318) */
+ /** @name PalletForeignAssetsModuleCall (321) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3034,7 +3038,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (319) */
+ /** @name PalletEvmCall (322) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3079,7 +3083,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (325) */
+ /** @name PalletEthereumCall (328) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3088,7 +3092,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (326) */
+ /** @name EthereumTransactionTransactionV2 (329) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3099,7 +3103,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (327) */
+ /** @name EthereumTransactionLegacyTransaction (330) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3110,7 +3114,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (328) */
+ /** @name EthereumTransactionTransactionAction (331) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3118,14 +3122,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (329) */
+ /** @name EthereumTransactionTransactionSignature (332) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (331) */
+ /** @name EthereumTransactionEip2930Transaction (334) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3140,13 +3144,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (333) */
+ /** @name EthereumTransactionAccessListItem (336) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (334) */
+ /** @name EthereumTransactionEip1559Transaction (337) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3162,7 +3166,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (335) */
+ /** @name PalletEvmMigrationCall (338) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3189,14 +3193,14 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
- /** @name PalletMaintenanceCall (339) */
+ /** @name PalletMaintenanceCall (342) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
readonly type: 'Enable' | 'Disable';
}
- /** @name PalletTestUtilsCall (340) */
+ /** @name PalletTestUtilsCall (343) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3221,13 +3225,13 @@
readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
}
- /** @name PalletSudoError (342) */
+ /** @name PalletSudoError (345) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (344) */
+ /** @name OrmlVestingModuleError (347) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3238,7 +3242,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (345) */
+ /** @name OrmlXtokensModuleError (348) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3262,26 +3266,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (348) */
+ /** @name OrmlTokensBalanceLock (351) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (350) */
+ /** @name OrmlTokensAccountData (353) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (352) */
+ /** @name OrmlTokensReserveData (355) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (354) */
+ /** @name OrmlTokensModuleError (357) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3294,21 +3298,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (357) */
+ /** @name CumulusPalletXcmpQueueInboundState (360) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3316,7 +3320,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3325,14 +3329,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (364) */
+ /** @name CumulusPalletXcmpQueueOutboundState (367) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (366) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (369) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3342,7 +3346,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (368) */
+ /** @name CumulusPalletXcmpQueueError (371) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3352,7 +3356,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (369) */
+ /** @name PalletXcmError (372) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3370,29 +3374,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (370) */
+ /** @name CumulusPalletXcmError (373) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (371) */
+ /** @name CumulusPalletDmpQueueConfigData (374) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (372) */
+ /** @name CumulusPalletDmpQueuePageIndexData (375) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (375) */
+ /** @name CumulusPalletDmpQueueError (378) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (379) */
+ /** @name PalletUniqueError (382) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isEmptyArgument: boolean;
@@ -3400,13 +3404,13 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerV2BlockAgenda (380) */
+ /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
readonly freePlaces: u32;
}
- /** @name PalletUniqueSchedulerV2Scheduled (383) */
+ /** @name PalletUniqueSchedulerV2Scheduled (386) */
interface PalletUniqueSchedulerV2Scheduled extends Struct {
readonly maybeId: Option<U8aFixed>;
readonly priority: u8;
@@ -3415,7 +3419,7 @@
readonly origin: OpalRuntimeOriginCaller;
}
- /** @name PalletUniqueSchedulerV2ScheduledCall (384) */
+ /** @name PalletUniqueSchedulerV2ScheduledCall (387) */
interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
readonly isInline: boolean;
readonly asInline: Bytes;
@@ -3427,7 +3431,7 @@
readonly type: 'Inline' | 'PreimageLookup';
}
- /** @name OpalRuntimeOriginCaller (386) */
+ /** @name OpalRuntimeOriginCaller (389) */
interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -3441,7 +3445,7 @@
readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
}
- /** @name FrameSupportDispatchRawOrigin (387) */
+ /** @name FrameSupportDispatchRawOrigin (390) */
interface FrameSupportDispatchRawOrigin extends Enum {
readonly isRoot: boolean;
readonly isSigned: boolean;
@@ -3450,7 +3454,7 @@
readonly type: 'Root' | 'Signed' | 'None';
}
- /** @name PalletXcmOrigin (388) */
+ /** @name PalletXcmOrigin (391) */
interface PalletXcmOrigin extends Enum {
readonly isXcm: boolean;
readonly asXcm: XcmV1MultiLocation;
@@ -3459,7 +3463,7 @@
readonly type: 'Xcm' | 'Response';
}
- /** @name CumulusPalletXcmOrigin (389) */
+ /** @name CumulusPalletXcmOrigin (392) */
interface CumulusPalletXcmOrigin extends Enum {
readonly isRelay: boolean;
readonly isSiblingParachain: boolean;
@@ -3467,17 +3471,17 @@
readonly type: 'Relay' | 'SiblingParachain';
}
- /** @name PalletEthereumRawOrigin (390) */
+ /** @name PalletEthereumRawOrigin (393) */
interface PalletEthereumRawOrigin extends Enum {
readonly isEthereumTransaction: boolean;
readonly asEthereumTransaction: H160;
readonly type: 'EthereumTransaction';
}
- /** @name SpCoreVoid (391) */
+ /** @name SpCoreVoid (394) */
type SpCoreVoid = Null;
- /** @name PalletUniqueSchedulerV2Error (393) */
+ /** @name PalletUniqueSchedulerV2Error (396) */
interface PalletUniqueSchedulerV2Error extends Enum {
readonly isFailedToSchedule: boolean;
readonly isAgendaIsExhausted: boolean;
@@ -3490,7 +3494,7 @@
readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
}
- /** @name UpDataStructsCollection (394) */
+ /** @name UpDataStructsCollection (397) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3503,7 +3507,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (395) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (398) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3513,43 +3517,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (397) */
+ /** @name UpDataStructsProperties (400) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (398) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (401) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (403) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (406) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (410) */
+ /** @name UpDataStructsCollectionStats (413) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (411) */
+ /** @name UpDataStructsTokenChild (414) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (412) */
+ /** @name PhantomTypeUpDataStructs (415) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (414) */
+ /** @name UpDataStructsTokenData (417) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (416) */
+ /** @name UpDataStructsRpcCollection (419) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3565,13 +3569,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (417) */
+ /** @name UpDataStructsRpcCollectionFlags (420) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (418) */
+ /** @name RmrkTraitsCollectionCollectionInfo (421) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3580,7 +3584,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (419) */
+ /** @name RmrkTraitsNftNftInfo (422) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3589,13 +3593,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (421) */
+ /** @name RmrkTraitsNftRoyaltyInfo (424) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (422) */
+ /** @name RmrkTraitsResourceResourceInfo (425) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3603,26 +3607,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (423) */
+ /** @name RmrkTraitsPropertyPropertyInfo (426) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (424) */
+ /** @name RmrkTraitsBaseBaseInfo (427) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (425) */
+ /** @name RmrkTraitsNftNftChild (428) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (427) */
+ /** @name PalletCommonError (430) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3663,7 +3667,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (429) */
+ /** @name PalletFungibleError (432) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3674,12 +3678,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
}
- /** @name PalletRefungibleItemData (430) */
+ /** @name PalletRefungibleItemData (433) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (435) */
+ /** @name PalletRefungibleError (438) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3689,19 +3693,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (436) */
+ /** @name PalletNonfungibleItemData (439) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (438) */
+ /** @name UpDataStructsPropertyScope (441) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (440) */
+ /** @name PalletNonfungibleError (443) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3709,7 +3713,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (441) */
+ /** @name PalletStructureError (444) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3718,7 +3722,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (442) */
+ /** @name PalletRmrkCoreError (445) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3742,7 +3746,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (444) */
+ /** @name PalletRmrkEquipError (447) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3754,7 +3758,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (450) */
+ /** @name PalletAppPromotionError (453) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3765,7 +3769,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (451) */
+ /** @name PalletForeignAssetsModuleError (454) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3774,7 +3778,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (453) */
+ /** @name PalletEvmError (456) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3789,7 +3793,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
}
- /** @name FpRpcTransactionStatus (456) */
+ /** @name FpRpcTransactionStatus (459) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3800,10 +3804,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (458) */
+ /** @name EthbloomBloom (461) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (460) */
+ /** @name EthereumReceiptReceiptV3 (463) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3814,7 +3818,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (461) */
+ /** @name EthereumReceiptEip658ReceiptData (464) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3822,14 +3826,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (462) */
+ /** @name EthereumBlock (465) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (463) */
+ /** @name EthereumHeader (466) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3848,24 +3852,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (464) */
+ /** @name EthereumTypesHashH64 (467) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (469) */
+ /** @name PalletEthereumError (472) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (470) */
+ /** @name PalletEvmCoderSubstrateError (473) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3875,7 +3879,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (472) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (475) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3883,7 +3887,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (478) */
+ /** @name PalletEvmContractHelpersError (481) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3891,7 +3895,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (479) */
+ /** @name PalletEvmMigrationError (482) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3899,17 +3903,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (480) */
+ /** @name PalletMaintenanceError (483) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (481) */
+ /** @name PalletTestUtilsError (484) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (483) */
+ /** @name SpRuntimeMultiSignature (486) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3920,40 +3924,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (484) */
+ /** @name SpCoreEd25519Signature (487) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (486) */
+ /** @name SpCoreSr25519Signature (489) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (487) */
+ /** @name SpCoreEcdsaSignature (490) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (490) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (493) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (491) */
+ /** @name FrameSystemExtensionsCheckTxVersion (494) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (492) */
+ /** @name FrameSystemExtensionsCheckGenesis (495) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (495) */
+ /** @name FrameSystemExtensionsCheckNonce (498) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (496) */
+ /** @name FrameSystemExtensionsCheckWeight (499) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (499) */
+ /** @name OpalRuntimeRuntime (502) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (500) */
+ /** @name PalletEthereumFakeTransactionFinalizer (503) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module