difftreelog
chore regenerate types
in: master
7 files changed
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -5,7 +5,7 @@
import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV1AbridgedHostConfiguration, PolkadotPrimitivesV1PersistedValidationData, PolkadotPrimitivesV1UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
declare module '@polkadot/api-base/types/storage' {
@@ -139,6 +139,10 @@
**/
currentTransactionStatuses: AugmentedQuery<ApiType, () => Observable<Option<Vec<FpRpcTransactionStatus>>>, []> & QueryableStorageEntry<ApiType, []>;
/**
+ * Injected transactions should have unique nonce, here we store current
+ **/
+ injectedNonce: AugmentedQuery<ApiType, () => Observable<U256>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
* Current building block's transactions and receipts.
**/
pending: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[EthereumTransactionTransactionV2, FpRpcTransactionStatus, EthereumReceiptReceiptV3]>>>, []> & QueryableStorageEntry<ApiType, []>;
@@ -267,7 +271,7 @@
*
* This data is also absent from the genesis.
**/
- hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV1AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
+ hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* HRMP messages that were sent in a block.
*
@@ -359,7 +363,7 @@
* relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is
* set after the inherent.
**/
- upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV1UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
+ upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Upward messages that were sent in a block.
*
@@ -371,7 +375,7 @@
* This value is expected to be set only once per block and it's never stored
* in the trie.
**/
- validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV1PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
+ validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
@@ -450,8 +454,11 @@
/**
* Events deposited for the current block.
*
- * NOTE: This storage item is explicitly unbounded since it is never intended to be read
- * from within the runtime.
+ * NOTE: The item is unbound and should therefore never be read on chain.
+ * It could otherwise inflate the PoV size of a block.
+ *
+ * Events have a large in-memory size. Box the events to not go out-of-memory
+ * just in case someone still reads them from within the runtime.
**/
events: AugmentedQuery<ApiType, () => Observable<Vec<FrameSystemEventRecord>>, []> & QueryableStorageEntry<ApiType, []>;
/**
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -13,6 +13,7 @@
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
+import type { BlockStats } from '@polkadot/types/interfaces/dev';
import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
import type { EthAccount, EthCallRequest, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
@@ -22,7 +23,7 @@
import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
import type { AccountId, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
-import type { ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
+import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
import type { ApplyExtrinsicResult, ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo, SyncState } from '@polkadot/types/interfaces/system';
import type { IExtrinsic, Observable } from '@polkadot/types/types';
@@ -156,6 +157,12 @@
**/
uploadCode: AugmentedRpc<(uploadRequest: CodeUploadRequest | { origin?: any; code?: any; storageDepositLimit?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<CodeUploadResult>>;
};
+ dev: {
+ /**
+ * Reexecute the specified `block_hash` and gather statistics while doing so
+ **/
+ getBlockStats: AugmentedRpc<(at: Hash | string | Uint8Array) => Observable<Option<BlockStats>>>;
+ };
engine: {
/**
* Instructs the manual-seal authorship task to create a new block
@@ -334,9 +341,9 @@
};
grandpa: {
/**
- * Prove finality for the range (begin; end] hash.
+ * Prove finality for the given block number, returning the Justification for the last block in the set.
**/
- proveFinality: AugmentedRpc<(begin: BlockHash | string | Uint8Array, end: BlockHash | string | Uint8Array, authoritiesSetId?: u64 | AnyNumber | Uint8Array) => Observable<Option<EncodedFinalityProofs>>>;
+ proveFinality: AugmentedRpc<(blockNumber: BlockNumber | AnyNumber | Uint8Array) => Observable<Option<EncodedFinalityProofs>>>;
/**
* Returns the state of the current best round state as well as the ongoing background rounds
**/
@@ -473,6 +480,10 @@
* Provides a way to trace the re-execution of a single block
**/
traceBlock: AugmentedRpc<(block: Hash | string | Uint8Array, targets: Option<Text> | null | object | string | Uint8Array, storageKeys: Option<Text> | null | object | string | Uint8Array, methods: Option<Text> | null | object | string | Uint8Array) => Observable<TraceBlockResponse>>;
+ /**
+ * Check current migration state
+ **/
+ trieMigrationStatus: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MigrationStatusResult>>;
};
syncstate: {
/**
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -378,7 +378,7 @@
* - Weight of derivative `call` execution + 10,000.
* # </weight>
**/
- sudo: AugmentedSubmittable<(call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
+ sudo: AugmentedSubmittable<(call: Call) => SubmittableExtrinsic<ApiType>, [Call]>;
/**
* Authenticates the sudo key and dispatches a function call with `Signed` origin from
* a given account.
@@ -392,7 +392,7 @@
* - Weight of derivative `call` execution + 10,000.
* # </weight>
**/
- sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
+ sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
/**
* Authenticates the sudo key and dispatches a function call with `Root` origin.
* This function does not check the weight of the call, and instead allows the
@@ -405,7 +405,7 @@
* - The weight of this call is defined by the caller.
* # </weight>
**/
- sudoUncheckedWeight: AugmentedSubmittable<(call: Call | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
+ sudoUncheckedWeight: AugmentedSubmittable<(call: Call, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -23,6 +23,7 @@
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';
+import type { BlockStats } from '@polkadot/types/interfaces/dev';
import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';
import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';
import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';
@@ -51,9 +52,9 @@
import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
-import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
+import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
-import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
+import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
@@ -153,6 +154,7 @@
BlockNumber: BlockNumber;
BlockNumberFor: BlockNumberFor;
BlockNumberOf: BlockNumberOf;
+ BlockStats: BlockStats;
BlockTrace: BlockTrace;
BlockTraceEvent: BlockTraceEvent;
BlockTraceEventData: BlockTraceEventData;
@@ -327,6 +329,7 @@
DispatchClass: DispatchClass;
DispatchError: DispatchError;
DispatchErrorModule: DispatchErrorModule;
+ DispatchErrorModuleU8a: DispatchErrorModuleU8a;
DispatchErrorTo198: DispatchErrorTo198;
DispatchFeePayment: DispatchFeePayment;
DispatchInfo: DispatchInfo;
@@ -658,6 +661,7 @@
MetadataV13: MetadataV13;
MetadataV14: MetadataV14;
MetadataV9: MetadataV9;
+ MigrationStatusResult: MigrationStatusResult;
MmrLeafProof: MmrLeafProof;
MmrRootHash: MmrRootHash;
ModuleConstantMetadataV10: ModuleConstantMetadataV10;
tests/src/interfaces/lookup.tsdiffbeforeafterboth4/* eslint-disable sort-keys */4/* eslint-disable sort-keys */556export default {6export default {7 /**7 /**8 * Lookup2: polkadot_primitives::v1::PersistedValidationData<primitive_types::H256, N>8 * Lookup2: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>9 **/9 **/10 PolkadotPrimitivesV1PersistedValidationData: {10 PolkadotPrimitivesV2PersistedValidationData: {11 parentHead: 'Bytes',11 parentHead: 'Bytes',12 relayParentNumber: 'u32',12 relayParentNumber: 'u32',13 relayParentStorageRoot: 'H256',13 relayParentStorageRoot: 'H256',14 maxPovSize: 'u32'14 maxPovSize: 'u32'15 },15 },16 /**16 /**17 * Lookup9: polkadot_primitives::v1::UpgradeRestriction17 * Lookup9: polkadot_primitives::v2::UpgradeRestriction18 **/18 **/19 PolkadotPrimitivesV1UpgradeRestriction: {19 PolkadotPrimitivesV2UpgradeRestriction: {20 _enum: ['Present']20 _enum: ['Present']21 },21 },22 /**22 /**23 * Lookup10: sp_trie::storage_proof::StorageProof23 * Lookup10: sp_trie::storage_proof::StorageProof24 **/24 **/25 SpTrieStorageProof: {25 SpTrieStorageProof: {26 trieNodes: 'Vec<Bytes>'26 trieNodes: 'BTreeSet<Bytes>'27 },27 },28 /**28 /**29 * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot29 * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot30 **/30 **/31 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {31 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {32 dmqMqcHead: 'H256',32 dmqMqcHead: 'H256',33 relayDispatchQueueSize: '(u32,u32)',33 relayDispatchQueueSize: '(u32,u32)',34 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>',34 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',35 egressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>'35 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'36 },36 },37 /**37 /**38 * Lookup18: polkadot_primitives::v1::AbridgedHrmpChannel38 * Lookup18: polkadot_primitives::v2::AbridgedHrmpChannel39 **/39 **/40 PolkadotPrimitivesV1AbridgedHrmpChannel: {40 PolkadotPrimitivesV2AbridgedHrmpChannel: {41 maxCapacity: 'u32',41 maxCapacity: 'u32',42 maxTotalSize: 'u32',42 maxTotalSize: 'u32',43 maxMessageSize: 'u32',43 maxMessageSize: 'u32',44 msgCount: 'u32',44 msgCount: 'u32',45 totalSize: 'u32',45 totalSize: 'u32',46 mqcHead: 'Option<H256>'46 mqcHead: 'Option<H256>'47 },47 },48 /**48 /**49 * Lookup20: polkadot_primitives::v1::AbridgedHostConfiguration49 * Lookup20: polkadot_primitives::v2::AbridgedHostConfiguration50 **/50 **/51 PolkadotPrimitivesV1AbridgedHostConfiguration: {51 PolkadotPrimitivesV2AbridgedHostConfiguration: {52 maxCodeSize: 'u32',52 maxCodeSize: 'u32',53 maxHeadDataSize: 'u32',53 maxHeadDataSize: 'u32',54 maxUpwardQueueCount: 'u32',54 maxUpwardQueueCount: 'u32',89 * Lookup29: cumulus_primitives_parachain_inherent::ParachainInherentData89 * Lookup29: cumulus_primitives_parachain_inherent::ParachainInherentData90 **/90 **/91 CumulusPrimitivesParachainInherentParachainInherentData: {91 CumulusPrimitivesParachainInherentParachainInherentData: {92 validationData: 'PolkadotPrimitivesV1PersistedValidationData',92 validationData: 'PolkadotPrimitivesV2PersistedValidationData',93 relayChainState: 'SpTrieStorageProof',93 relayChainState: 'SpTrieStorageProof',94 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',94 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',95 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'95 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1469 /**1469 /**1470 * Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>1470 * Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>1471 **/1471 **/1472 FrameSupportStorageBoundedBTreeSet: 'Vec<u32>',1472 FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',1473 /**1473 /**1474 * Lookup177: up_data_structs::MetaUpdatePermission1474 * Lookup177: up_data_structs::MetaUpdatePermission1475 **/1475 **/1754 NoProviders: 'Null',1754 NoProviders: 'Null',1755 TooManyConsumers: 'Null',1755 TooManyConsumers: 'Null',1756 Token: 'SpRuntimeTokenError',1756 Token: 'SpRuntimeTokenError',1757 Arithmetic: 'SpRuntimeArithmeticError'1757 Arithmetic: 'SpRuntimeArithmeticError',1758 Transactional: 'SpRuntimeTransactionalError'1758 }1759 }1759 },1760 },1760 /**1761 /**1761 * Lookup231: sp_runtime::ModuleError1762 * Lookup231: sp_runtime::ModuleError1762 **/1763 **/1763 SpRuntimeModuleError: {1764 SpRuntimeModuleError: {1764 index: 'u8',1765 index: 'u8',1765 error: 'u8'1766 error: '[u8;4]'1766 },1767 },1767 /**1768 /**1768 * Lookup232: sp_runtime::TokenError1769 * Lookup232: sp_runtime::TokenError1776 SpRuntimeArithmeticError: {1777 SpRuntimeArithmeticError: {1777 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1778 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1778 },1779 },1780 /**1781 * Lookup234: sp_runtime::TransactionalError1782 **/1783 SpRuntimeTransactionalError: {1784 _enum: ['LimitReached', 'NoLayer']1785 },1779 /**1786 /**1780 * Lookup234: pallet_sudo::pallet::Error<T>1787 * Lookup235: pallet_sudo::pallet::Error<T>1781 **/1788 **/1782 PalletSudoError: {1789 PalletSudoError: {1783 _enum: ['RequireSudo']1790 _enum: ['RequireSudo']1784 },1791 },1785 /**1792 /**1786 * Lookup235: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1793 * Lookup236: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1787 **/1794 **/1788 FrameSystemAccountInfo: {1795 FrameSystemAccountInfo: {1789 nonce: 'u32',1796 nonce: 'u32',1790 consumers: 'u32',1797 consumers: 'u32',1791 providers: 'u32',1798 providers: 'u32',1792 sufficients: 'u32',1799 sufficients: 'u32',1793 data: 'PalletBalancesAccountData'1800 data: 'PalletBalancesAccountData'1794 },1801 },1795 /**1802 /**1796 * Lookup236: frame_support::weights::PerDispatchClass<T>1803 * Lookup237: frame_support::weights::PerDispatchClass<T>1797 **/1804 **/1798 FrameSupportWeightsPerDispatchClassU64: {1805 FrameSupportWeightsPerDispatchClassU64: {1799 normal: 'u64',1806 normal: 'u64',1800 operational: 'u64',1807 operational: 'u64',1801 mandatory: 'u64'1808 mandatory: 'u64'1802 },1809 },1803 /**1810 /**1804 * Lookup237: sp_runtime::generic::digest::Digest1811 * Lookup238: sp_runtime::generic::digest::Digest1805 **/1812 **/1806 SpRuntimeDigest: {1813 SpRuntimeDigest: {1807 logs: 'Vec<SpRuntimeDigestDigestItem>'1814 logs: 'Vec<SpRuntimeDigestDigestItem>'1808 },1815 },1809 /**1816 /**1810 * Lookup239: sp_runtime::generic::digest::DigestItem1817 * Lookup240: sp_runtime::generic::digest::DigestItem1811 **/1818 **/1812 SpRuntimeDigestDigestItem: {1819 SpRuntimeDigestDigestItem: {1813 _enum: {1820 _enum: {1814 Other: 'Bytes',1821 Other: 'Bytes',1822 RuntimeEnvironmentUpdated: 'Null'1829 RuntimeEnvironmentUpdated: 'Null'1823 }1830 }1824 },1831 },1825 /**1832 /**1826 * Lookup241: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>1833 * Lookup242: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>1827 **/1834 **/1828 FrameSystemEventRecord: {1835 FrameSystemEventRecord: {1829 phase: 'FrameSystemPhase',1836 phase: 'FrameSystemPhase',1830 event: 'Event',1837 event: 'Event',1831 topics: 'Vec<H256>'1838 topics: 'Vec<H256>'1832 },1839 },1833 /**1840 /**1834 * Lookup243: frame_system::pallet::Event<T>1841 * Lookup244: frame_system::pallet::Event<T>1835 **/1842 **/1836 FrameSystemEvent: {1843 FrameSystemEvent: {1837 _enum: {1844 _enum: {1838 ExtrinsicSuccess: {1845 ExtrinsicSuccess: {1858 }1865 }1859 }1866 }1860 },1867 },1861 /**1868 /**1862 * Lookup244: frame_support::weights::DispatchInfo1869 * Lookup245: frame_support::weights::DispatchInfo1863 **/1870 **/1864 FrameSupportWeightsDispatchInfo: {1871 FrameSupportWeightsDispatchInfo: {1865 weight: 'u64',1872 weight: 'u64',1866 class: 'FrameSupportWeightsDispatchClass',1873 class: 'FrameSupportWeightsDispatchClass',1867 paysFee: 'FrameSupportWeightsPays'1874 paysFee: 'FrameSupportWeightsPays'1868 },1875 },1869 /**1876 /**1870 * Lookup245: frame_support::weights::DispatchClass1877 * Lookup246: frame_support::weights::DispatchClass1871 **/1878 **/1872 FrameSupportWeightsDispatchClass: {1879 FrameSupportWeightsDispatchClass: {1873 _enum: ['Normal', 'Operational', 'Mandatory']1880 _enum: ['Normal', 'Operational', 'Mandatory']1874 },1881 },1875 /**1882 /**1876 * Lookup246: frame_support::weights::Pays1883 * Lookup247: frame_support::weights::Pays1877 **/1884 **/1878 FrameSupportWeightsPays: {1885 FrameSupportWeightsPays: {1879 _enum: ['Yes', 'No']1886 _enum: ['Yes', 'No']1880 },1887 },1881 /**1888 /**1882 * Lookup247: orml_vesting::module::Event<T>1889 * Lookup248: orml_vesting::module::Event<T>1883 **/1890 **/1884 OrmlVestingModuleEvent: {1891 OrmlVestingModuleEvent: {1885 _enum: {1892 _enum: {1886 VestingScheduleAdded: {1893 VestingScheduleAdded: {1897 }1904 }1898 }1905 }1899 },1906 },1900 /**1907 /**1901 * Lookup248: cumulus_pallet_xcmp_queue::pallet::Event<T>1908 * Lookup249: cumulus_pallet_xcmp_queue::pallet::Event<T>1902 **/1909 **/1903 CumulusPalletXcmpQueueEvent: {1910 CumulusPalletXcmpQueueEvent: {1904 _enum: {1911 _enum: {1905 Success: 'Option<H256>',1912 Success: 'Option<H256>',1912 OverweightServiced: '(u64,u64)'1919 OverweightServiced: '(u64,u64)'1913 }1920 }1914 },1921 },1915 /**1922 /**1916 * Lookup249: pallet_xcm::pallet::Event<T>1923 * Lookup250: pallet_xcm::pallet::Event<T>1917 **/1924 **/1918 PalletXcmEvent: {1925 PalletXcmEvent: {1919 _enum: {1926 _enum: {1920 Attempted: 'XcmV2TraitsOutcome',1927 Attempted: 'XcmV2TraitsOutcome',1935 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1942 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1936 }1943 }1937 },1944 },1938 /**1945 /**1939 * Lookup250: xcm::v2::traits::Outcome1946 * Lookup251: xcm::v2::traits::Outcome1940 **/1947 **/1941 XcmV2TraitsOutcome: {1948 XcmV2TraitsOutcome: {1942 _enum: {1949 _enum: {1943 Complete: 'u64',1950 Complete: 'u64',1944 Incomplete: '(u64,XcmV2TraitsError)',1951 Incomplete: '(u64,XcmV2TraitsError)',1945 Error: 'XcmV2TraitsError'1952 Error: 'XcmV2TraitsError'1946 }1953 }1947 },1954 },1948 /**1955 /**1949 * Lookup252: cumulus_pallet_xcm::pallet::Event<T>1956 * Lookup253: cumulus_pallet_xcm::pallet::Event<T>1950 **/1957 **/1951 CumulusPalletXcmEvent: {1958 CumulusPalletXcmEvent: {1952 _enum: {1959 _enum: {1953 InvalidFormat: '[u8;8]',1960 InvalidFormat: '[u8;8]',1954 UnsupportedVersion: '[u8;8]',1961 UnsupportedVersion: '[u8;8]',1955 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1962 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1956 }1963 }1957 },1964 },1958 /**1965 /**1959 * Lookup253: cumulus_pallet_dmp_queue::pallet::Event<T>1966 * Lookup254: cumulus_pallet_dmp_queue::pallet::Event<T>1960 **/1967 **/1961 CumulusPalletDmpQueueEvent: {1968 CumulusPalletDmpQueueEvent: {1962 _enum: {1969 _enum: {1963 InvalidFormat: '[u8;32]',1970 InvalidFormat: '[u8;32]',1968 OverweightServiced: '(u64,u64)'1975 OverweightServiced: '(u64,u64)'1969 }1976 }1970 },1977 },1971 /**1978 /**1972 * Lookup254: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1979 * Lookup255: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1973 **/1980 **/1974 PalletUniqueRawEvent: {1981 PalletUniqueRawEvent: {1975 _enum: {1982 _enum: {1976 CollectionSponsorRemoved: 'u32',1983 CollectionSponsorRemoved: 'u32',1990 VariableOnChainSchemaSet: 'u32'1997 VariableOnChainSchemaSet: 'u32'1991 }1998 }1992 },1999 },1993 /**2000 /**1994 * Lookup255: pallet_common::pallet::Event<T>2001 * Lookup256: pallet_common::pallet::Event<T>1995 **/2002 **/1996 PalletCommonEvent: {2003 PalletCommonEvent: {1997 _enum: {2004 _enum: {1998 CollectionCreated: '(u32,u8,AccountId32)',2005 CollectionCreated: '(u32,u8,AccountId32)',2008 PropertyPermissionSet: '(u32,UpDataStructsPropertyKeyPermission)'2015 PropertyPermissionSet: '(u32,UpDataStructsPropertyKeyPermission)'2009 }2016 }2010 },2017 },2011 /**2018 /**2012 * Lookup256: pallet_structure::pallet::Event<T>2019 * Lookup257: pallet_structure::pallet::Event<T>2013 **/2020 **/2014 PalletStructureEvent: {2021 PalletStructureEvent: {2015 _enum: {2022 _enum: {2016 Executed: 'Result<Null, SpRuntimeDispatchError>'2023 Executed: 'Result<Null, SpRuntimeDispatchError>'2017 }2024 }2018 },2025 },2019 /**2026 /**2020 * Lookup257: pallet_evm::pallet::Event<T>2027 * Lookup258: pallet_evm::pallet::Event<T>2021 **/2028 **/2022 PalletEvmEvent: {2029 PalletEvmEvent: {2023 _enum: {2030 _enum: {2024 Log: 'EthereumLog',2031 Log: 'EthereumLog',2030 BalanceWithdraw: '(AccountId32,H160,U256)'2037 BalanceWithdraw: '(AccountId32,H160,U256)'2031 }2038 }2032 },2039 },2033 /**2040 /**2034 * Lookup258: ethereum::log::Log2041 * Lookup259: ethereum::log::Log2035 **/2042 **/2036 EthereumLog: {2043 EthereumLog: {2037 address: 'H160',2044 address: 'H160',2038 topics: 'Vec<H256>',2045 topics: 'Vec<H256>',2039 data: 'Bytes'2046 data: 'Bytes'2040 },2047 },2041 /**2048 /**2042 * Lookup259: pallet_ethereum::pallet::Event2049 * Lookup260: pallet_ethereum::pallet::Event2043 **/2050 **/2044 PalletEthereumEvent: {2051 PalletEthereumEvent: {2045 _enum: {2052 _enum: {2046 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2053 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2047 }2054 }2048 },2055 },2049 /**2056 /**2050 * Lookup260: evm_core::error::ExitReason2057 * Lookup261: evm_core::error::ExitReason2051 **/2058 **/2052 EvmCoreErrorExitReason: {2059 EvmCoreErrorExitReason: {2053 _enum: {2060 _enum: {2054 Succeed: 'EvmCoreErrorExitSucceed',2061 Succeed: 'EvmCoreErrorExitSucceed',2057 Fatal: 'EvmCoreErrorExitFatal'2064 Fatal: 'EvmCoreErrorExitFatal'2058 }2065 }2059 },2066 },2060 /**2067 /**2061 * Lookup261: evm_core::error::ExitSucceed2068 * Lookup262: evm_core::error::ExitSucceed2062 **/2069 **/2063 EvmCoreErrorExitSucceed: {2070 EvmCoreErrorExitSucceed: {2064 _enum: ['Stopped', 'Returned', 'Suicided']2071 _enum: ['Stopped', 'Returned', 'Suicided']2065 },2072 },2066 /**2073 /**2067 * Lookup262: evm_core::error::ExitError2074 * Lookup263: evm_core::error::ExitError2068 **/2075 **/2069 EvmCoreErrorExitError: {2076 EvmCoreErrorExitError: {2070 _enum: {2077 _enum: {2071 StackUnderflow: 'Null',2078 StackUnderflow: 'Null',2076 CallTooDeep: 'Null',2083 CallTooDeep: 'Null',2077 CreateCollision: 'Null',2084 CreateCollision: 'Null',2078 CreateContractLimit: 'Null',2085 CreateContractLimit: 'Null',2079 InvalidCode: 'Null',2080 OutOfOffset: 'Null',2086 OutOfOffset: 'Null',2081 OutOfGas: 'Null',2087 OutOfGas: 'Null',2082 OutOfFund: 'Null',2088 OutOfFund: 'Null',2083 PCUnderflow: 'Null',2089 PCUnderflow: 'Null',2084 CreateEmpty: 'Null',2090 CreateEmpty: 'Null',2085 Other: 'Text'2091 Other: 'Text',2092 InvalidCode: 'Null'2086 }2093 }2087 },2094 },2088 /**2095 /**2089 * Lookup265: evm_core::error::ExitRevert2096 * Lookup266: evm_core::error::ExitRevert2090 **/2097 **/2091 EvmCoreErrorExitRevert: {2098 EvmCoreErrorExitRevert: {2092 _enum: ['Reverted']2099 _enum: ['Reverted']2093 },2100 },2094 /**2101 /**2095 * Lookup266: evm_core::error::ExitFatal2102 * Lookup267: evm_core::error::ExitFatal2096 **/2103 **/2097 EvmCoreErrorExitFatal: {2104 EvmCoreErrorExitFatal: {2098 _enum: {2105 _enum: {2099 NotSupported: 'Null',2106 NotSupported: 'Null',2102 Other: 'Text'2109 Other: 'Text'2103 }2110 }2104 },2111 },2105 /**2112 /**2106 * Lookup267: frame_system::Phase2113 * Lookup268: frame_system::Phase2107 **/2114 **/2108 FrameSystemPhase: {2115 FrameSystemPhase: {2109 _enum: {2116 _enum: {2110 ApplyExtrinsic: 'u32',2117 ApplyExtrinsic: 'u32',2111 Finalization: 'Null',2118 Finalization: 'Null',2112 Initialization: 'Null'2119 Initialization: 'Null'2113 }2120 }2114 },2121 },2115 /**2122 /**2116 * Lookup269: frame_system::LastRuntimeUpgradeInfo2123 * Lookup270: frame_system::LastRuntimeUpgradeInfo2117 **/2124 **/2118 FrameSystemLastRuntimeUpgradeInfo: {2125 FrameSystemLastRuntimeUpgradeInfo: {2119 specVersion: 'Compact<u32>',2126 specVersion: 'Compact<u32>',2120 specName: 'Text'2127 specName: 'Text'2121 },2128 },2122 /**2129 /**2123 * Lookup270: frame_system::limits::BlockWeights2130 * Lookup271: frame_system::limits::BlockWeights2124 **/2131 **/2125 FrameSystemLimitsBlockWeights: {2132 FrameSystemLimitsBlockWeights: {2126 baseBlock: 'u64',2133 baseBlock: 'u64',2127 maxBlock: 'u64',2134 maxBlock: 'u64',2128 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2135 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2129 },2136 },2130 /**2137 /**2131 * Lookup271: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2138 * Lookup272: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2132 **/2139 **/2133 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2140 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2134 normal: 'FrameSystemLimitsWeightsPerClass',2141 normal: 'FrameSystemLimitsWeightsPerClass',2135 operational: 'FrameSystemLimitsWeightsPerClass',2142 operational: 'FrameSystemLimitsWeightsPerClass',2136 mandatory: 'FrameSystemLimitsWeightsPerClass'2143 mandatory: 'FrameSystemLimitsWeightsPerClass'2137 },2144 },2138 /**2145 /**2139 * Lookup272: frame_system::limits::WeightsPerClass2146 * Lookup273: frame_system::limits::WeightsPerClass2140 **/2147 **/2141 FrameSystemLimitsWeightsPerClass: {2148 FrameSystemLimitsWeightsPerClass: {2142 baseExtrinsic: 'u64',2149 baseExtrinsic: 'u64',2143 maxExtrinsic: 'Option<u64>',2150 maxExtrinsic: 'Option<u64>',2144 maxTotal: 'Option<u64>',2151 maxTotal: 'Option<u64>',2145 reserved: 'Option<u64>'2152 reserved: 'Option<u64>'2146 },2153 },2147 /**2154 /**2148 * Lookup274: frame_system::limits::BlockLength2155 * Lookup275: frame_system::limits::BlockLength2149 **/2156 **/2150 FrameSystemLimitsBlockLength: {2157 FrameSystemLimitsBlockLength: {2151 max: 'FrameSupportWeightsPerDispatchClassU32'2158 max: 'FrameSupportWeightsPerDispatchClassU32'2152 },2159 },2153 /**2160 /**2154 * Lookup275: frame_support::weights::PerDispatchClass<T>2161 * Lookup276: frame_support::weights::PerDispatchClass<T>2155 **/2162 **/2156 FrameSupportWeightsPerDispatchClassU32: {2163 FrameSupportWeightsPerDispatchClassU32: {2157 normal: 'u32',2164 normal: 'u32',2158 operational: 'u32',2165 operational: 'u32',2159 mandatory: 'u32'2166 mandatory: 'u32'2160 },2167 },2161 /**2168 /**2162 * Lookup276: frame_support::weights::RuntimeDbWeight2169 * Lookup277: frame_support::weights::RuntimeDbWeight2163 **/2170 **/2164 FrameSupportWeightsRuntimeDbWeight: {2171 FrameSupportWeightsRuntimeDbWeight: {2165 read: 'u64',2172 read: 'u64',2166 write: 'u64'2173 write: 'u64'2167 },2174 },2168 /**2175 /**2169 * Lookup277: sp_version::RuntimeVersion2176 * Lookup278: sp_version::RuntimeVersion2170 **/2177 **/2171 SpVersionRuntimeVersion: {2178 SpVersionRuntimeVersion: {2172 specName: 'Text',2179 specName: 'Text',2173 implName: 'Text',2180 implName: 'Text',2178 transactionVersion: 'u32',2185 transactionVersion: 'u32',2179 stateVersion: 'u8'2186 stateVersion: 'u8'2180 },2187 },2181 /**2188 /**2182 * Lookup281: frame_system::pallet::Error<T>2189 * Lookup282: frame_system::pallet::Error<T>2183 **/2190 **/2184 FrameSystemError: {2191 FrameSystemError: {2185 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2192 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2186 },2193 },2187 /**2194 /**2188 * Lookup283: orml_vesting::module::Error<T>2195 * Lookup284: orml_vesting::module::Error<T>2189 **/2196 **/2190 OrmlVestingModuleError: {2197 OrmlVestingModuleError: {2191 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2198 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2192 },2199 },2193 /**2200 /**2194 * Lookup285: cumulus_pallet_xcmp_queue::InboundChannelDetails2201 * Lookup286: cumulus_pallet_xcmp_queue::InboundChannelDetails2195 **/2202 **/2196 CumulusPalletXcmpQueueInboundChannelDetails: {2203 CumulusPalletXcmpQueueInboundChannelDetails: {2197 sender: 'u32',2204 sender: 'u32',2198 state: 'CumulusPalletXcmpQueueInboundState',2205 state: 'CumulusPalletXcmpQueueInboundState',2199 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2206 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2200 },2207 },2201 /**2208 /**2202 * Lookup286: cumulus_pallet_xcmp_queue::InboundState2209 * Lookup287: cumulus_pallet_xcmp_queue::InboundState2203 **/2210 **/2204 CumulusPalletXcmpQueueInboundState: {2211 CumulusPalletXcmpQueueInboundState: {2205 _enum: ['Ok', 'Suspended']2212 _enum: ['Ok', 'Suspended']2206 },2213 },2207 /**2214 /**2208 * Lookup289: polkadot_parachain::primitives::XcmpMessageFormat2215 * Lookup290: polkadot_parachain::primitives::XcmpMessageFormat2209 **/2216 **/2210 PolkadotParachainPrimitivesXcmpMessageFormat: {2217 PolkadotParachainPrimitivesXcmpMessageFormat: {2211 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2218 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2212 },2219 },2213 /**2220 /**2214 * Lookup292: cumulus_pallet_xcmp_queue::OutboundChannelDetails2221 * Lookup293: cumulus_pallet_xcmp_queue::OutboundChannelDetails2215 **/2222 **/2216 CumulusPalletXcmpQueueOutboundChannelDetails: {2223 CumulusPalletXcmpQueueOutboundChannelDetails: {2217 recipient: 'u32',2224 recipient: 'u32',2218 state: 'CumulusPalletXcmpQueueOutboundState',2225 state: 'CumulusPalletXcmpQueueOutboundState',2219 signalsExist: 'bool',2226 signalsExist: 'bool',2220 firstIndex: 'u16',2227 firstIndex: 'u16',2221 lastIndex: 'u16'2228 lastIndex: 'u16'2222 },2229 },2223 /**2230 /**2224 * Lookup293: cumulus_pallet_xcmp_queue::OutboundState2231 * Lookup294: cumulus_pallet_xcmp_queue::OutboundState2225 **/2232 **/2226 CumulusPalletXcmpQueueOutboundState: {2233 CumulusPalletXcmpQueueOutboundState: {2227 _enum: ['Ok', 'Suspended']2234 _enum: ['Ok', 'Suspended']2228 },2235 },2229 /**2236 /**2230 * Lookup295: cumulus_pallet_xcmp_queue::QueueConfigData2237 * Lookup296: cumulus_pallet_xcmp_queue::QueueConfigData2231 **/2238 **/2232 CumulusPalletXcmpQueueQueueConfigData: {2239 CumulusPalletXcmpQueueQueueConfigData: {2233 suspendThreshold: 'u32',2240 suspendThreshold: 'u32',2234 dropThreshold: 'u32',2241 dropThreshold: 'u32',2237 weightRestrictDecay: 'u64',2244 weightRestrictDecay: 'u64',2238 xcmpMaxIndividualWeight: 'u64'2245 xcmpMaxIndividualWeight: 'u64'2239 },2246 },2240 /**2247 /**2241 * Lookup297: cumulus_pallet_xcmp_queue::pallet::Error<T>2248 * Lookup298: cumulus_pallet_xcmp_queue::pallet::Error<T>2242 **/2249 **/2243 CumulusPalletXcmpQueueError: {2250 CumulusPalletXcmpQueueError: {2244 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2251 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2245 },2252 },2246 /**2253 /**2247 * Lookup298: pallet_xcm::pallet::Error<T>2254 * Lookup299: pallet_xcm::pallet::Error<T>2248 **/2255 **/2249 PalletXcmError: {2256 PalletXcmError: {2250 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2257 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2251 },2258 },2252 /**2259 /**2253 * Lookup299: cumulus_pallet_xcm::pallet::Error<T>2260 * Lookup300: cumulus_pallet_xcm::pallet::Error<T>2254 **/2261 **/2255 CumulusPalletXcmError: 'Null',2262 CumulusPalletXcmError: 'Null',2256 /**2263 /**2257 * Lookup300: cumulus_pallet_dmp_queue::ConfigData2264 * Lookup301: cumulus_pallet_dmp_queue::ConfigData2258 **/2265 **/2259 CumulusPalletDmpQueueConfigData: {2266 CumulusPalletDmpQueueConfigData: {2260 maxIndividual: 'u64'2267 maxIndividual: 'u64'2261 },2268 },2262 /**2269 /**2263 * Lookup301: cumulus_pallet_dmp_queue::PageIndexData2270 * Lookup302: cumulus_pallet_dmp_queue::PageIndexData2264 **/2271 **/2265 CumulusPalletDmpQueuePageIndexData: {2272 CumulusPalletDmpQueuePageIndexData: {2266 beginUsed: 'u32',2273 beginUsed: 'u32',2267 endUsed: 'u32',2274 endUsed: 'u32',2268 overweightCount: 'u64'2275 overweightCount: 'u64'2269 },2276 },2270 /**2277 /**2271 * Lookup304: cumulus_pallet_dmp_queue::pallet::Error<T>2278 * Lookup305: cumulus_pallet_dmp_queue::pallet::Error<T>2272 **/2279 **/2273 CumulusPalletDmpQueueError: {2280 CumulusPalletDmpQueueError: {2274 _enum: ['Unknown', 'OverLimit']2281 _enum: ['Unknown', 'OverLimit']2275 },2282 },2276 /**2283 /**2277 * Lookup308: pallet_unique::Error<T>2284 * Lookup309: pallet_unique::Error<T>2278 **/2285 **/2279 PalletUniqueError: {2286 PalletUniqueError: {2280 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2287 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2281 },2288 },2282 /**2289 /**2283 * Lookup309: up_data_structs::Collection<sp_core::crypto::AccountId32>2290 * Lookup310: up_data_structs::Collection<sp_core::crypto::AccountId32>2284 **/2291 **/2285 UpDataStructsCollection: {2292 UpDataStructsCollection: {2286 owner: 'AccountId32',2293 owner: 'AccountId32',2287 mode: 'UpDataStructsCollectionMode',2294 mode: 'UpDataStructsCollectionMode',2295 limits: 'UpDataStructsCollectionLimits',2302 limits: 'UpDataStructsCollectionLimits',2296 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2303 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2297 },2304 },2298 /**2305 /**2299 * Lookup310: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2306 * Lookup311: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2300 **/2307 **/2301 UpDataStructsSponsorshipState: {2308 UpDataStructsSponsorshipState: {2302 _enum: {2309 _enum: {2303 Disabled: 'Null',2310 Disabled: 'Null',2304 Unconfirmed: 'AccountId32',2311 Unconfirmed: 'AccountId32',2305 Confirmed: 'AccountId32'2312 Confirmed: 'AccountId32'2306 }2313 }2307 },2314 },2308 /**2315 /**2309 * Lookup311: up_data_structs::Properties2316 * Lookup312: up_data_structs::Properties2310 **/2317 **/2311 UpDataStructsProperties: {2318 UpDataStructsProperties: {2312 map: 'BTreeMap<Bytes, Bytes>',2319 map: 'BTreeMap<Bytes, Bytes>',2313 consumedSpace: 'u32',2320 consumedSpace: 'u32',2314 spaceLimit: 'u32'2321 spaceLimit: 'u32'2315 },2322 },2316 /**2323 /**2317 * Lookup321: up_data_structs::CollectionField2324 * Lookup322: up_data_structs::CollectionField2318 **/2325 **/2319 UpDataStructsCollectionField: {2326 UpDataStructsCollectionField: {2320 _enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']2327 _enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']2321 },2328 },2322 /**2329 /**2323 * Lookup324: up_data_structs::CollectionStats2330 * Lookup325: up_data_structs::CollectionStats2324 **/2331 **/2325 UpDataStructsCollectionStats: {2332 UpDataStructsCollectionStats: {2326 created: 'u32',2333 created: 'u32',2327 destroyed: 'u32',2334 destroyed: 'u32',2328 alive: 'u32'2335 alive: 'u32'2329 },2336 },2330 /**2337 /**2331 * Lookup325: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>2338 * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>2332 **/2339 **/2333 PhantomTypeUpDataStructsTokenData: '[Lookup326;0]',2340 PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',2334 /**2341 /**2335 * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2342 * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2336 **/2343 **/2337 UpDataStructsTokenData: {2344 UpDataStructsTokenData: {2338 constData: 'Bytes',2345 constData: 'Bytes',2339 properties: 'Vec<UpDataStructsProperty>',2346 properties: 'Vec<UpDataStructsProperty>',2340 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'2347 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'2341 },2348 },2342 /**2349 /**2343 * Lookup329: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>2350 * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>2344 **/2351 **/2345 PhantomTypeUpDataStructsRpcCollection: '[Lookup330;0]',2352 PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',2346 /**2353 /**2347 * Lookup330: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2354 * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2348 **/2355 **/2349 UpDataStructsRpcCollection: {2356 UpDataStructsRpcCollection: {2350 owner: 'AccountId32',2357 owner: 'AccountId32',2351 mode: 'UpDataStructsCollectionMode',2358 mode: 'UpDataStructsCollectionMode',2362 constOnChainSchema: 'Bytes',2369 constOnChainSchema: 'Bytes',2363 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2370 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2364 },2371 },2365 /**2372 /**2366 * Lookup332: pallet_common::pallet::Error<T>2373 * Lookup333: pallet_common::pallet::Error<T>2367 **/2374 **/2368 PalletCommonError: {2375 PalletCommonError: {2369 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached']2376 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached']2370 },2377 },2371 /**2378 /**2372 * Lookup334: pallet_fungible::pallet::Error<T>2379 * Lookup335: pallet_fungible::pallet::Error<T>2373 **/2380 **/2374 PalletFungibleError: {2381 PalletFungibleError: {2375 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2382 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2376 },2383 },2377 /**2384 /**2378 * Lookup335: pallet_refungible::ItemData2385 * Lookup336: pallet_refungible::ItemData2379 **/2386 **/2380 PalletRefungibleItemData: {2387 PalletRefungibleItemData: {2381 constData: 'Bytes',2388 constData: 'Bytes',2382 variableData: 'Bytes'2389 variableData: 'Bytes'2383 },2390 },2384 /**2391 /**2385 * Lookup339: pallet_refungible::pallet::Error<T>2392 * Lookup340: pallet_refungible::pallet::Error<T>2386 **/2393 **/2387 PalletRefungibleError: {2394 PalletRefungibleError: {2388 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2395 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2389 },2396 },2390 /**2397 /**2391 * Lookup340: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2398 * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2392 **/2399 **/2393 PalletNonfungibleItemData: {2400 PalletNonfungibleItemData: {2394 constData: 'Bytes',2401 constData: 'Bytes',2395 variableData: 'Bytes',2402 variableData: 'Bytes',2396 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2403 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2397 },2404 },2398 /**2405 /**2399 * Lookup341: pallet_nonfungible::pallet::Error<T>2406 * Lookup342: pallet_nonfungible::pallet::Error<T>2400 **/2407 **/2401 PalletNonfungibleError: {2408 PalletNonfungibleError: {2402 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2409 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2403 },2410 },2404 /**2411 /**2405 * Lookup342: pallet_structure::pallet::Error<T>2412 * Lookup343: pallet_structure::pallet::Error<T>2406 **/2413 **/2407 PalletStructureError: {2414 PalletStructureError: {2408 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']2415 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']2409 },2416 },2410 /**2417 /**2411 * Lookup344: pallet_evm::pallet::Error<T>2418 * Lookup345: pallet_evm::pallet::Error<T>2412 **/2419 **/2413 PalletEvmError: {2420 PalletEvmError: {2414 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2421 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2415 },2422 },2416 /**2423 /**2417 * Lookup347: fp_rpc::TransactionStatus2424 * Lookup348: fp_rpc::TransactionStatus2418 **/2425 **/2419 FpRpcTransactionStatus: {2426 FpRpcTransactionStatus: {2420 transactionHash: 'H256',2427 transactionHash: 'H256',2421 transactionIndex: 'u32',2428 transactionIndex: 'u32',2425 logs: 'Vec<EthereumLog>',2432 logs: 'Vec<EthereumLog>',2426 logsBloom: 'EthbloomBloom'2433 logsBloom: 'EthbloomBloom'2427 },2434 },2428 /**2435 /**2429 * Lookup350: ethbloom::Bloom2436 * Lookup351: ethbloom::Bloom2430 **/2437 **/2431 EthbloomBloom: '[u8;256]',2438 EthbloomBloom: '[u8;256]',2432 /**2439 /**2433 * Lookup352: ethereum::receipt::ReceiptV32440 * Lookup353: ethereum::receipt::ReceiptV32434 **/2441 **/2435 EthereumReceiptReceiptV3: {2442 EthereumReceiptReceiptV3: {2436 _enum: {2443 _enum: {2437 Legacy: 'EthereumReceiptEip658ReceiptData',2444 Legacy: 'EthereumReceiptEip658ReceiptData',2438 EIP2930: 'EthereumReceiptEip658ReceiptData',2445 EIP2930: 'EthereumReceiptEip658ReceiptData',2439 EIP1559: 'EthereumReceiptEip658ReceiptData'2446 EIP1559: 'EthereumReceiptEip658ReceiptData'2440 }2447 }2441 },2448 },2442 /**2449 /**2443 * Lookup353: ethereum::receipt::EIP658ReceiptData2450 * Lookup354: ethereum::receipt::EIP658ReceiptData2444 **/2451 **/2445 EthereumReceiptEip658ReceiptData: {2452 EthereumReceiptEip658ReceiptData: {2446 statusCode: 'u8',2453 statusCode: 'u8',2447 usedGas: 'U256',2454 usedGas: 'U256',2448 logsBloom: 'EthbloomBloom',2455 logsBloom: 'EthbloomBloom',2449 logs: 'Vec<EthereumLog>'2456 logs: 'Vec<EthereumLog>'2450 },2457 },2451 /**2458 /**2452 * Lookup354: ethereum::block::Block<ethereum::transaction::TransactionV2>2459 * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>2453 **/2460 **/2454 EthereumBlock: {2461 EthereumBlock: {2455 header: 'EthereumHeader',2462 header: 'EthereumHeader',2456 transactions: 'Vec<EthereumTransactionTransactionV2>',2463 transactions: 'Vec<EthereumTransactionTransactionV2>',2457 ommers: 'Vec<EthereumHeader>'2464 ommers: 'Vec<EthereumHeader>'2458 },2465 },2459 /**2466 /**2460 * Lookup355: ethereum::header::Header2467 * Lookup356: ethereum::header::Header2461 **/2468 **/2462 EthereumHeader: {2469 EthereumHeader: {2463 parentHash: 'H256',2470 parentHash: 'H256',2464 ommersHash: 'H256',2471 ommersHash: 'H256',2476 mixHash: 'H256',2483 mixHash: 'H256',2477 nonce: 'EthereumTypesHashH64'2484 nonce: 'EthereumTypesHashH64'2478 },2485 },2479 /**2486 /**2480 * Lookup356: ethereum_types::hash::H642487 * Lookup357: ethereum_types::hash::H642481 **/2488 **/2482 EthereumTypesHashH64: '[u8;8]',2489 EthereumTypesHashH64: '[u8;8]',2483 /**2490 /**2484 * Lookup361: pallet_ethereum::pallet::Error<T>2491 * Lookup362: pallet_ethereum::pallet::Error<T>2485 **/2492 **/2486 PalletEthereumError: {2493 PalletEthereumError: {2487 _enum: ['InvalidSignature', 'PreLogExists']2494 _enum: ['InvalidSignature', 'PreLogExists']2488 },2495 },2489 /**2496 /**2490 * Lookup362: pallet_evm_coder_substrate::pallet::Error<T>2497 * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>2491 **/2498 **/2492 PalletEvmCoderSubstrateError: {2499 PalletEvmCoderSubstrateError: {2493 _enum: ['OutOfGas', 'OutOfFund']2500 _enum: ['OutOfGas', 'OutOfFund']2494 },2501 },2495 /**2502 /**2496 * Lookup363: pallet_evm_contract_helpers::SponsoringModeT2503 * Lookup364: pallet_evm_contract_helpers::SponsoringModeT2497 **/2504 **/2498 PalletEvmContractHelpersSponsoringModeT: {2505 PalletEvmContractHelpersSponsoringModeT: {2499 _enum: ['Disabled', 'Allowlisted', 'Generous']2506 _enum: ['Disabled', 'Allowlisted', 'Generous']2500 },2507 },2501 /**2508 /**2502 * Lookup365: pallet_evm_contract_helpers::pallet::Error<T>2509 * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>2503 **/2510 **/2504 PalletEvmContractHelpersError: {2511 PalletEvmContractHelpersError: {2505 _enum: ['NoPermission']2512 _enum: ['NoPermission']2506 },2513 },2507 /**2514 /**2508 * Lookup366: pallet_evm_migration::pallet::Error<T>2515 * Lookup367: pallet_evm_migration::pallet::Error<T>2509 **/2516 **/2510 PalletEvmMigrationError: {2517 PalletEvmMigrationError: {2511 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2518 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2512 },2519 },2513 /**2520 /**2514 * Lookup368: sp_runtime::MultiSignature2521 * Lookup369: sp_runtime::MultiSignature2515 **/2522 **/2516 SpRuntimeMultiSignature: {2523 SpRuntimeMultiSignature: {2517 _enum: {2524 _enum: {2518 Ed25519: 'SpCoreEd25519Signature',2525 Ed25519: 'SpCoreEd25519Signature',2519 Sr25519: 'SpCoreSr25519Signature',2526 Sr25519: 'SpCoreSr25519Signature',2520 Ecdsa: 'SpCoreEcdsaSignature'2527 Ecdsa: 'SpCoreEcdsaSignature'2521 }2528 }2522 },2529 },2523 /**2530 /**2524 * Lookup369: sp_core::ed25519::Signature2531 * Lookup370: sp_core::ed25519::Signature2525 **/2532 **/2526 SpCoreEd25519Signature: '[u8;64]',2533 SpCoreEd25519Signature: '[u8;64]',2527 /**2534 /**2528 * Lookup371: sp_core::sr25519::Signature2535 * Lookup372: sp_core::sr25519::Signature2529 **/2536 **/2530 SpCoreSr25519Signature: '[u8;64]',2537 SpCoreSr25519Signature: '[u8;64]',2531 /**2538 /**2532 * Lookup372: sp_core::ecdsa::Signature2539 * Lookup373: sp_core::ecdsa::Signature2533 **/2540 **/2534 SpCoreEcdsaSignature: '[u8;65]',2541 SpCoreEcdsaSignature: '[u8;65]',2535 /**2542 /**2536 * Lookup375: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2543 * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2537 **/2544 **/2538 FrameSystemExtensionsCheckSpecVersion: 'Null',2545 FrameSystemExtensionsCheckSpecVersion: 'Null',2539 /**2546 /**2540 * Lookup376: frame_system::extensions::check_genesis::CheckGenesis<T>2547 * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>2541 **/2548 **/2542 FrameSystemExtensionsCheckGenesis: 'Null',2549 FrameSystemExtensionsCheckGenesis: 'Null',2543 /**2550 /**2544 * Lookup379: frame_system::extensions::check_nonce::CheckNonce<T>2551 * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>2545 **/2552 **/2546 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2553 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2547 /**2554 /**2548 * Lookup380: frame_system::extensions::check_weight::CheckWeight<T>2555 * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>2549 **/2556 **/2550 FrameSystemExtensionsCheckWeight: 'Null',2557 FrameSystemExtensionsCheckWeight: 'Null',2551 /**2558 /**2552 * Lookup381: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>2559 * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>2553 **/2560 **/2554 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2561 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2555 /**2562 /**2556 * Lookup382: opal_runtime::Runtime2563 * Lookup383: opal_runtime::Runtime2557 **/2564 **/2558 OpalRuntimeRuntime: 'Null'2565 OpalRuntimeRuntime: 'Null'2559};2566};25602567tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV1AbridgedHostConfiguration, PolkadotPrimitivesV1AbridgedHrmpChannel, PolkadotPrimitivesV1PersistedValidationData, PolkadotPrimitivesV1UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
export interface InterfaceTypes {
@@ -124,15 +124,16 @@
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
+ PhantomTypeUpDataStructsRpcCollection: PhantomTypeUpDataStructsRpcCollection;
+ PhantomTypeUpDataStructsTokenData: PhantomTypeUpDataStructsTokenData;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
- PolkadotPrimitivesV1AbridgedHostConfiguration: PolkadotPrimitivesV1AbridgedHostConfiguration;
- PolkadotPrimitivesV1AbridgedHrmpChannel: PolkadotPrimitivesV1AbridgedHrmpChannel;
- PolkadotPrimitivesV1PersistedValidationData: PolkadotPrimitivesV1PersistedValidationData;
- PolkadotPrimitivesV1UpgradeRestriction: PolkadotPrimitivesV1UpgradeRestriction;
+ PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;
+ PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
+ PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
+ PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
@@ -143,6 +144,7 @@
SpRuntimeModuleError: SpRuntimeModuleError;
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
+ SpRuntimeTransactionalError: SpRuntimeTransactionalError;
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
UpDataStructsAccessMode: UpDataStructsAccessMode;
@@ -169,6 +171,7 @@
UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;
UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;
+ UpDataStructsTokenData: UpDataStructsTokenData;
XcmDoubleEncoded: XcmDoubleEncoded;
XcmV0Junction: XcmV0Junction;
XcmV0JunctionBodyId: XcmV0JunctionBodyId;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -2,40 +2,40 @@
/* eslint-disable */
declare module '@polkadot/types/lookup' {
- import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+ import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
import type { Event } from '@polkadot/types/interfaces/system';
- /** @name PolkadotPrimitivesV1PersistedValidationData (2) */
- export interface PolkadotPrimitivesV1PersistedValidationData extends Struct {
+ /** @name PolkadotPrimitivesV2PersistedValidationData (2) */
+ export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
readonly relayParentStorageRoot: H256;
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV1UpgradeRestriction (9) */
- export interface PolkadotPrimitivesV1UpgradeRestriction extends Enum {
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */
+ export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
/** @name SpTrieStorageProof (10) */
export interface SpTrieStorageProof extends Struct {
- readonly trieNodes: Vec<Bytes>;
+ readonly trieNodes: BTreeSet<Bytes>;
}
/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */
export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
- readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;
- readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;
+ readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
+ readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV1AbridgedHrmpChannel (18) */
- export interface PolkadotPrimitivesV1AbridgedHrmpChannel extends Struct {
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */
+ export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
readonly maxMessageSize: u32;
@@ -44,8 +44,8 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV1AbridgedHostConfiguration (20) */
- export interface PolkadotPrimitivesV1AbridgedHostConfiguration extends Struct {
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */
+ export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
readonly maxUpwardQueueCount: u32;
@@ -86,7 +86,7 @@
/** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */
export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
- readonly validationData: PolkadotPrimitivesV1PersistedValidationData;
+ readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
@@ -1605,7 +1605,7 @@
}
/** @name FrameSupportStorageBoundedBTreeSet (171) */
- export interface FrameSupportStorageBoundedBTreeSet extends Vec<u32> {}
+ export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}
/** @name UpDataStructsMetaUpdatePermission (177) */
export interface UpDataStructsMetaUpdatePermission extends Enum {
@@ -1885,13 +1885,15 @@
readonly asToken: SpRuntimeTokenError;
readonly isArithmetic: boolean;
readonly asArithmetic: SpRuntimeArithmeticError;
- readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';
+ readonly isTransactional: boolean;
+ readonly asTransactional: SpRuntimeTransactionalError;
+ readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
}
/** @name SpRuntimeModuleError (231) */
export interface SpRuntimeModuleError extends Struct {
readonly index: u8;
- readonly error: u8;
+ readonly error: U8aFixed;
}
/** @name SpRuntimeTokenError (232) */
@@ -1914,13 +1916,20 @@
readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
}
- /** @name PalletSudoError (234) */
+ /** @name SpRuntimeTransactionalError (234) */
+ export interface SpRuntimeTransactionalError extends Enum {
+ readonly isLimitReached: boolean;
+ readonly isNoLayer: boolean;
+ readonly type: 'LimitReached' | 'NoLayer';
+ }
+
+ /** @name PalletSudoError (235) */
export interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name FrameSystemAccountInfo (235) */
+ /** @name FrameSystemAccountInfo (236) */
export interface FrameSystemAccountInfo extends Struct {
readonly nonce: u32;
readonly consumers: u32;
@@ -1929,19 +1938,19 @@
readonly data: PalletBalancesAccountData;
}
- /** @name FrameSupportWeightsPerDispatchClassU64 (236) */
+ /** @name FrameSupportWeightsPerDispatchClassU64 (237) */
export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
readonly normal: u64;
readonly operational: u64;
readonly mandatory: u64;
}
- /** @name SpRuntimeDigest (237) */
+ /** @name SpRuntimeDigest (238) */
export interface SpRuntimeDigest extends Struct {
readonly logs: Vec<SpRuntimeDigestDigestItem>;
}
- /** @name SpRuntimeDigestDigestItem (239) */
+ /** @name SpRuntimeDigestDigestItem (240) */
export interface SpRuntimeDigestDigestItem extends Enum {
readonly isOther: boolean;
readonly asOther: Bytes;
@@ -1955,14 +1964,14 @@
readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
}
- /** @name FrameSystemEventRecord (241) */
+ /** @name FrameSystemEventRecord (242) */
export interface FrameSystemEventRecord extends Struct {
readonly phase: FrameSystemPhase;
readonly event: Event;
readonly topics: Vec<H256>;
}
- /** @name FrameSystemEvent (243) */
+ /** @name FrameSystemEvent (244) */
export interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
@@ -1990,14 +1999,14 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportWeightsDispatchInfo (244) */
+ /** @name FrameSupportWeightsDispatchInfo (245) */
export interface FrameSupportWeightsDispatchInfo extends Struct {
readonly weight: u64;
readonly class: FrameSupportWeightsDispatchClass;
readonly paysFee: FrameSupportWeightsPays;
}
- /** @name FrameSupportWeightsDispatchClass (245) */
+ /** @name FrameSupportWeightsDispatchClass (246) */
export interface FrameSupportWeightsDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
@@ -2005,14 +2014,14 @@
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportWeightsPays (246) */
+ /** @name FrameSupportWeightsPays (247) */
export interface FrameSupportWeightsPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
- /** @name OrmlVestingModuleEvent (247) */
+ /** @name OrmlVestingModuleEvent (248) */
export interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -2032,7 +2041,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name CumulusPalletXcmpQueueEvent (248) */
+ /** @name CumulusPalletXcmpQueueEvent (249) */
export interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: Option<H256>;
@@ -2053,7 +2062,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletXcmEvent (249) */
+ /** @name PalletXcmEvent (250) */
export interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV2TraitsOutcome;
@@ -2090,7 +2099,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
- /** @name XcmV2TraitsOutcome (250) */
+ /** @name XcmV2TraitsOutcome (251) */
export interface XcmV2TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: u64;
@@ -2101,7 +2110,7 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name CumulusPalletXcmEvent (252) */
+ /** @name CumulusPalletXcmEvent (253) */
export interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2112,7 +2121,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (253) */
+ /** @name CumulusPalletDmpQueueEvent (254) */
export interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2129,7 +2138,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletUniqueRawEvent (254) */
+ /** @name PalletUniqueRawEvent (255) */
export interface PalletUniqueRawEvent extends Enum {
readonly isCollectionSponsorRemoved: boolean;
readonly asCollectionSponsorRemoved: u32;
@@ -2164,7 +2173,7 @@
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';
}
- /** @name PalletCommonEvent (255) */
+ /** @name PalletCommonEvent (256) */
export interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2191,14 +2200,14 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
}
- /** @name PalletStructureEvent (256) */
+ /** @name PalletStructureEvent (257) */
export interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletEvmEvent (257) */
+ /** @name PalletEvmEvent (258) */
export interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: EthereumLog;
@@ -2217,21 +2226,21 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
}
- /** @name EthereumLog (258) */
+ /** @name EthereumLog (259) */
export interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (259) */
+ /** @name PalletEthereumEvent (260) */
export interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (260) */
+ /** @name EvmCoreErrorExitReason (261) */
export interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2244,7 +2253,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (261) */
+ /** @name EvmCoreErrorExitSucceed (262) */
export interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -2252,7 +2261,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (262) */
+ /** @name EvmCoreErrorExitError (263) */
export interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -2262,7 +2271,6 @@
readonly isCallTooDeep: boolean;
readonly isCreateCollision: boolean;
readonly isCreateContractLimit: boolean;
- readonly isInvalidCode: boolean;
readonly isOutOfOffset: boolean;
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
@@ -2270,16 +2278,17 @@
readonly isCreateEmpty: boolean;
readonly isOther: boolean;
readonly asOther: Text;
- readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';
+ readonly isInvalidCode: boolean;
+ readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (265) */
+ /** @name EvmCoreErrorExitRevert (266) */
export interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (266) */
+ /** @name EvmCoreErrorExitFatal (267) */
export interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -2290,7 +2299,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name FrameSystemPhase (267) */
+ /** @name FrameSystemPhase (268) */
export interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -2299,27 +2308,27 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (269) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (270) */
export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemLimitsBlockWeights (270) */
+ /** @name FrameSystemLimitsBlockWeights (271) */
export interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: u64;
readonly maxBlock: u64;
readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (271) */
+ /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (272) */
export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (272) */
+ /** @name FrameSystemLimitsWeightsPerClass (273) */
export interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: u64;
readonly maxExtrinsic: Option<u64>;
@@ -2327,25 +2336,25 @@
readonly reserved: Option<u64>;
}
- /** @name FrameSystemLimitsBlockLength (274) */
+ /** @name FrameSystemLimitsBlockLength (275) */
export interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportWeightsPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (275) */
+ /** @name FrameSupportWeightsPerDispatchClassU32 (276) */
export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (276) */
+ /** @name FrameSupportWeightsRuntimeDbWeight (277) */
export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (277) */
+ /** @name SpVersionRuntimeVersion (278) */
export interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -2357,7 +2366,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (281) */
+ /** @name FrameSystemError (282) */
export interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2368,7 +2377,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name OrmlVestingModuleError (283) */
+ /** @name OrmlVestingModuleError (284) */
export interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -2379,21 +2388,21 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (285) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (286) */
export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (286) */
+ /** @name CumulusPalletXcmpQueueInboundState (287) */
export interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (289) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (290) */
export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -2401,7 +2410,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (292) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (293) */
export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2410,14 +2419,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (293) */
+ /** @name CumulusPalletXcmpQueueOutboundState (294) */
export interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (295) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (296) */
export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -2427,7 +2436,7 @@
readonly xcmpMaxIndividualWeight: u64;
}
- /** @name CumulusPalletXcmpQueueError (297) */
+ /** @name CumulusPalletXcmpQueueError (298) */
export interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -2437,7 +2446,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (298) */
+ /** @name PalletXcmError (299) */
export interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -2455,29 +2464,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (299) */
+ /** @name CumulusPalletXcmError (300) */
export type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (300) */
+ /** @name CumulusPalletDmpQueueConfigData (301) */
export interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: u64;
}
- /** @name CumulusPalletDmpQueuePageIndexData (301) */
+ /** @name CumulusPalletDmpQueuePageIndexData (302) */
export interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (304) */
+ /** @name CumulusPalletDmpQueueError (305) */
export interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (308) */
+ /** @name PalletUniqueError (309) */
export interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -2485,7 +2494,7 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
}
- /** @name UpDataStructsCollection (309) */
+ /** @name UpDataStructsCollection (310) */
export interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2500,7 +2509,7 @@
readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
}
- /** @name UpDataStructsSponsorshipState (310) */
+ /** @name UpDataStructsSponsorshipState (311) */
export interface UpDataStructsSponsorshipState extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -2510,14 +2519,14 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (311) */
+ /** @name UpDataStructsProperties (312) */
export interface UpDataStructsProperties extends Struct {
readonly map: BTreeMap<Bytes, Bytes>;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsCollectionField (321) */
+ /** @name UpDataStructsCollectionField (322) */
export interface UpDataStructsCollectionField extends Enum {
readonly isVariableOnChainSchema: boolean;
readonly isConstOnChainSchema: boolean;
@@ -2525,27 +2534,27 @@
readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';
}
- /** @name UpDataStructsCollectionStats (324) */
+ /** @name UpDataStructsCollectionStats (325) */
export interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name PhantomTypeUpDataStructsTokenData (325) */
+ /** @name PhantomTypeUpDataStructsTokenData (326) */
export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}
- /** @name UpDataStructsTokenData (326) */
+ /** @name UpDataStructsTokenData (327) */
export interface UpDataStructsTokenData extends Struct {
readonly constData: Bytes;
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
}
- /** @name PhantomTypeUpDataStructsRpcCollection (329) */
+ /** @name PhantomTypeUpDataStructsRpcCollection (330) */
export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}
- /** @name UpDataStructsRpcCollection (330) */
+ /** @name UpDataStructsRpcCollection (331) */
export interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2563,7 +2572,7 @@
readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
}
- /** @name PalletCommonError (332) */
+ /** @name PalletCommonError (333) */
export interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -2598,7 +2607,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached';
}
- /** @name PalletFungibleError (334) */
+ /** @name PalletFungibleError (335) */
export interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -2608,13 +2617,13 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (335) */
+ /** @name PalletRefungibleItemData (336) */
export interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
}
- /** @name PalletRefungibleError (339) */
+ /** @name PalletRefungibleError (340) */
export interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -2623,21 +2632,21 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (340) */
+ /** @name PalletNonfungibleItemData (341) */
export interface PalletNonfungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name PalletNonfungibleError (341) */
+ /** @name PalletNonfungibleError (342) */
export interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
}
- /** @name PalletStructureError (342) */
+ /** @name PalletStructureError (343) */
export interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -2645,7 +2654,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
}
- /** @name PalletEvmError (344) */
+ /** @name PalletEvmError (345) */
export interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -2656,7 +2665,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (347) */
+ /** @name FpRpcTransactionStatus (348) */
export interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -2667,10 +2676,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (350) */
+ /** @name EthbloomBloom (351) */
export interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (352) */
+ /** @name EthereumReceiptReceiptV3 (353) */
export interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2681,7 +2690,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (353) */
+ /** @name EthereumReceiptEip658ReceiptData (354) */
export interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -2689,14 +2698,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (354) */
+ /** @name EthereumBlock (355) */
export interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (355) */
+ /** @name EthereumHeader (356) */
export interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -2715,24 +2724,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (356) */
+ /** @name EthereumTypesHashH64 (357) */
export interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (361) */
+ /** @name PalletEthereumError (362) */
export interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (362) */
+ /** @name PalletEvmCoderSubstrateError (363) */
export interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (363) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (364) */
export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -2740,20 +2749,20 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (365) */
+ /** @name PalletEvmContractHelpersError (366) */
export interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly type: 'NoPermission';
}
- /** @name PalletEvmMigrationError (366) */
+ /** @name PalletEvmMigrationError (367) */
export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (368) */
+ /** @name SpRuntimeMultiSignature (369) */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -2764,31 +2773,31 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (369) */
+ /** @name SpCoreEd25519Signature (370) */
export interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (371) */
+ /** @name SpCoreSr25519Signature (372) */
export interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (372) */
+ /** @name SpCoreEcdsaSignature (373) */
export interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (375) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (376) */
export type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (376) */
+ /** @name FrameSystemExtensionsCheckGenesis (377) */
export type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (379) */
+ /** @name FrameSystemExtensionsCheckNonce (380) */
export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (380) */
+ /** @name FrameSystemExtensionsCheckWeight (381) */
export type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (381) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (382) */
export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (382) */
+ /** @name OpalRuntimeRuntime (383) */
export type OpalRuntimeRuntime = Null;
} // declare module