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.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -5,25 +5,25 @@
export default {
/**
- * Lookup2: polkadot_primitives::v1::PersistedValidationData<primitive_types::H256, N>
+ * Lookup2: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
- PolkadotPrimitivesV1PersistedValidationData: {
+ PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
relayParentNumber: 'u32',
relayParentStorageRoot: 'H256',
maxPovSize: 'u32'
},
/**
- * Lookup9: polkadot_primitives::v1::UpgradeRestriction
+ * Lookup9: polkadot_primitives::v2::UpgradeRestriction
**/
- PolkadotPrimitivesV1UpgradeRestriction: {
+ PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
* Lookup10: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
- trieNodes: 'Vec<Bytes>'
+ trieNodes: 'BTreeSet<Bytes>'
},
/**
* Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
@@ -31,13 +31,13 @@
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
relayDispatchQueueSize: '(u32,u32)',
- ingressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>',
- egressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>'
+ ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
+ egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup18: polkadot_primitives::v1::AbridgedHrmpChannel
+ * Lookup18: polkadot_primitives::v2::AbridgedHrmpChannel
**/
- PolkadotPrimitivesV1AbridgedHrmpChannel: {
+ PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
maxTotalSize: 'u32',
maxMessageSize: 'u32',
@@ -46,9 +46,9 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup20: polkadot_primitives::v1::AbridgedHostConfiguration
+ * Lookup20: polkadot_primitives::v2::AbridgedHostConfiguration
**/
- PolkadotPrimitivesV1AbridgedHostConfiguration: {
+ PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
maxHeadDataSize: 'u32',
maxUpwardQueueCount: 'u32',
@@ -89,7 +89,7 @@
* Lookup29: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
- validationData: 'PolkadotPrimitivesV1PersistedValidationData',
+ validationData: 'PolkadotPrimitivesV2PersistedValidationData',
relayChainState: 'SpTrieStorageProof',
downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
@@ -1469,7 +1469,7 @@
/**
* Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>
**/
- FrameSupportStorageBoundedBTreeSet: 'Vec<u32>',
+ FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',
/**
* Lookup177: up_data_structs::MetaUpdatePermission
**/
@@ -1754,7 +1754,8 @@
NoProviders: 'Null',
TooManyConsumers: 'Null',
Token: 'SpRuntimeTokenError',
- Arithmetic: 'SpRuntimeArithmeticError'
+ Arithmetic: 'SpRuntimeArithmeticError',
+ Transactional: 'SpRuntimeTransactionalError'
}
},
/**
@@ -1762,7 +1763,7 @@
**/
SpRuntimeModuleError: {
index: 'u8',
- error: 'u8'
+ error: '[u8;4]'
},
/**
* Lookup232: sp_runtime::TokenError
@@ -1777,13 +1778,19 @@
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup234: pallet_sudo::pallet::Error<T>
+ * Lookup234: sp_runtime::TransactionalError
+ **/
+ SpRuntimeTransactionalError: {
+ _enum: ['LimitReached', 'NoLayer']
+ },
+ /**
+ * Lookup235: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup235: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup236: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -1793,7 +1800,7 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup236: frame_support::weights::PerDispatchClass<T>
+ * Lookup237: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU64: {
normal: 'u64',
@@ -1801,13 +1808,13 @@
mandatory: 'u64'
},
/**
- * Lookup237: sp_runtime::generic::digest::Digest
+ * Lookup238: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup239: sp_runtime::generic::digest::DigestItem
+ * Lookup240: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -1823,7 +1830,7 @@
}
},
/**
- * Lookup241: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup242: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1831,7 +1838,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup243: frame_system::pallet::Event<T>
+ * Lookup244: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -1859,7 +1866,7 @@
}
},
/**
- * Lookup244: frame_support::weights::DispatchInfo
+ * Lookup245: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
weight: 'u64',
@@ -1867,19 +1874,19 @@
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup245: frame_support::weights::DispatchClass
+ * Lookup246: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup246: frame_support::weights::Pays
+ * Lookup247: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup247: orml_vesting::module::Event<T>
+ * Lookup248: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -1898,7 +1905,7 @@
}
},
/**
- * Lookup248: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup249: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -1913,7 +1920,7 @@
}
},
/**
- * Lookup249: pallet_xcm::pallet::Event<T>
+ * Lookup250: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -1936,7 +1943,7 @@
}
},
/**
- * Lookup250: xcm::v2::traits::Outcome
+ * Lookup251: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -1946,7 +1953,7 @@
}
},
/**
- * Lookup252: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup253: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -1956,7 +1963,7 @@
}
},
/**
- * Lookup253: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup254: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -1969,7 +1976,7 @@
}
},
/**
- * Lookup254: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup255: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -1991,7 +1998,7 @@
}
},
/**
- * Lookup255: pallet_common::pallet::Event<T>
+ * Lookup256: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -2009,7 +2016,7 @@
}
},
/**
- * Lookup256: pallet_structure::pallet::Event<T>
+ * Lookup257: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -2017,7 +2024,7 @@
}
},
/**
- * Lookup257: pallet_evm::pallet::Event<T>
+ * Lookup258: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -2031,7 +2038,7 @@
}
},
/**
- * Lookup258: ethereum::log::Log
+ * Lookup259: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -2039,7 +2046,7 @@
data: 'Bytes'
},
/**
- * Lookup259: pallet_ethereum::pallet::Event
+ * Lookup260: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -2047,7 +2054,7 @@
}
},
/**
- * Lookup260: evm_core::error::ExitReason
+ * Lookup261: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -2058,13 +2065,13 @@
}
},
/**
- * Lookup261: evm_core::error::ExitSucceed
+ * Lookup262: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup262: evm_core::error::ExitError
+ * Lookup263: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -2076,23 +2083,23 @@
CallTooDeep: 'Null',
CreateCollision: 'Null',
CreateContractLimit: 'Null',
- InvalidCode: 'Null',
OutOfOffset: 'Null',
OutOfGas: 'Null',
OutOfFund: 'Null',
PCUnderflow: 'Null',
CreateEmpty: 'Null',
- Other: 'Text'
+ Other: 'Text',
+ InvalidCode: 'Null'
}
},
/**
- * Lookup265: evm_core::error::ExitRevert
+ * Lookup266: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup266: evm_core::error::ExitFatal
+ * Lookup267: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -2103,7 +2110,7 @@
}
},
/**
- * Lookup267: frame_system::Phase
+ * Lookup268: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -2113,14 +2120,14 @@
}
},
/**
- * Lookup269: frame_system::LastRuntimeUpgradeInfo
+ * Lookup270: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup270: frame_system::limits::BlockWeights
+ * Lookup271: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -2128,7 +2135,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup271: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup272: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2136,7 +2143,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup272: frame_system::limits::WeightsPerClass
+ * Lookup273: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -2145,13 +2152,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup274: frame_system::limits::BlockLength
+ * Lookup275: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup275: frame_support::weights::PerDispatchClass<T>
+ * Lookup276: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -2159,14 +2166,14 @@
mandatory: 'u32'
},
/**
- * Lookup276: frame_support::weights::RuntimeDbWeight
+ * Lookup277: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup277: sp_version::RuntimeVersion
+ * Lookup278: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -2179,19 +2186,19 @@
stateVersion: 'u8'
},
/**
- * Lookup281: frame_system::pallet::Error<T>
+ * Lookup282: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup283: orml_vesting::module::Error<T>
+ * Lookup284: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup285: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup286: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2199,19 +2206,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup286: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup287: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup289: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup290: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup292: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup293: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2221,13 +2228,13 @@
lastIndex: 'u16'
},
/**
- * Lookup293: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup294: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup295: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup296: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2238,29 +2245,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup297: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup298: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup298: pallet_xcm::pallet::Error<T>
+ * Lookup299: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup299: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup300: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup300: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup301: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup301: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup302: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2268,19 +2275,19 @@
overweightCount: 'u64'
},
/**
- * Lookup304: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup305: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup308: pallet_unique::Error<T>
+ * Lookup309: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
},
/**
- * Lookup309: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup310: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -2296,7 +2303,7 @@
metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'
},
/**
- * Lookup310: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup311: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipState: {
_enum: {
@@ -2306,7 +2313,7 @@
}
},
/**
- * Lookup311: up_data_structs::Properties
+ * Lookup312: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'BTreeMap<Bytes, Bytes>',
@@ -2314,13 +2321,13 @@
spaceLimit: 'u32'
},
/**
- * Lookup321: up_data_structs::CollectionField
+ * Lookup322: up_data_structs::CollectionField
**/
UpDataStructsCollectionField: {
_enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']
},
/**
- * Lookup324: up_data_structs::CollectionStats
+ * Lookup325: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2328,11 +2335,11 @@
alive: 'u32'
},
/**
- * Lookup325: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+ * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
**/
- PhantomTypeUpDataStructsTokenData: '[Lookup326;0]',
+ PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
/**
- * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
constData: 'Bytes',
@@ -2340,11 +2347,11 @@
owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
},
/**
- * Lookup329: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+ * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
**/
- PhantomTypeUpDataStructsRpcCollection: '[Lookup330;0]',
+ PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
/**
- * Lookup330: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2363,32 +2370,32 @@
metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'
},
/**
- * Lookup332: pallet_common::pallet::Error<T>
+ * Lookup333: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_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']
},
/**
- * Lookup334: pallet_fungible::pallet::Error<T>
+ * Lookup335: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup335: pallet_refungible::ItemData
+ * Lookup336: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes',
variableData: 'Bytes'
},
/**
- * Lookup339: pallet_refungible::pallet::Error<T>
+ * Lookup340: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup340: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
constData: 'Bytes',
@@ -2396,25 +2403,25 @@
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup341: pallet_nonfungible::pallet::Error<T>
+ * Lookup342: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
},
/**
- * Lookup342: pallet_structure::pallet::Error<T>
+ * Lookup343: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
},
/**
- * Lookup344: pallet_evm::pallet::Error<T>
+ * Lookup345: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup347: fp_rpc::TransactionStatus
+ * Lookup348: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2426,11 +2433,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup350: ethbloom::Bloom
+ * Lookup351: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup352: ethereum::receipt::ReceiptV3
+ * Lookup353: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2440,7 +2447,7 @@
}
},
/**
- * Lookup353: ethereum::receipt::EIP658ReceiptData
+ * Lookup354: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2449,7 +2456,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup354: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2457,7 +2464,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup355: ethereum::header::Header
+ * Lookup356: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2477,41 +2484,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup356: ethereum_types::hash::H64
+ * Lookup357: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup361: pallet_ethereum::pallet::Error<T>
+ * Lookup362: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup362: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup363: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup364: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup365: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup366: pallet_evm_migration::pallet::Error<T>
+ * Lookup367: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup368: sp_runtime::MultiSignature
+ * Lookup369: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2521,39 +2528,39 @@
}
},
/**
- * Lookup369: sp_core::ed25519::Signature
+ * Lookup370: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup371: sp_core::sr25519::Signature
+ * Lookup372: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup372: sp_core::ecdsa::Signature
+ * Lookup373: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup375: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup376: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup379: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup380: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup381: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup382: opal_runtime::Runtime
+ * Lookup383: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null'
};
tests/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.tsdiffbeforeafterboth2/* eslint-disable */2/* eslint-disable */334declare module '@polkadot/types/lookup' {4declare module '@polkadot/types/lookup' {5 import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5 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';6 import type { ITuple } from '@polkadot/types-codec/types';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';8 import type { Event } from '@polkadot/types/interfaces/system';9910 /** @name PolkadotPrimitivesV1PersistedValidationData (2) */10 /** @name PolkadotPrimitivesV2PersistedValidationData (2) */11 export interface PolkadotPrimitivesV1PersistedValidationData extends Struct {11 export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {12 readonly parentHead: Bytes;12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;15 readonly maxPovSize: u32;16 }16 }171718 /** @name PolkadotPrimitivesV1UpgradeRestriction (9) */18 /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV1UpgradeRestriction extends Enum {19 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {20 readonly isPresent: boolean;20 readonly isPresent: boolean;21 readonly type: 'Present';21 readonly type: 'Present';22 }22 }232324 /** @name SpTrieStorageProof (10) */24 /** @name SpTrieStorageProof (10) */25 export interface SpTrieStorageProof extends Struct {25 export interface SpTrieStorageProof extends Struct {26 readonly trieNodes: Vec<Bytes>;26 readonly trieNodes: BTreeSet<Bytes>;27 }27 }282829 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */29 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */30 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {30 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {31 readonly dmqMqcHead: H256;31 readonly dmqMqcHead: H256;32 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;32 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;33 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;33 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;34 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;34 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;35 }35 }363637 /** @name PolkadotPrimitivesV1AbridgedHrmpChannel (18) */37 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */38 export interface PolkadotPrimitivesV1AbridgedHrmpChannel extends Struct {38 export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {39 readonly maxCapacity: u32;39 readonly maxCapacity: u32;40 readonly maxTotalSize: u32;40 readonly maxTotalSize: u32;41 readonly maxMessageSize: u32;41 readonly maxMessageSize: u32;44 readonly mqcHead: Option<H256>;44 readonly mqcHead: Option<H256>;45 }45 }464647 /** @name PolkadotPrimitivesV1AbridgedHostConfiguration (20) */47 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */48 export interface PolkadotPrimitivesV1AbridgedHostConfiguration extends Struct {48 export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {49 readonly maxCodeSize: u32;49 readonly maxCodeSize: u32;50 readonly maxHeadDataSize: u32;50 readonly maxHeadDataSize: u32;51 readonly maxUpwardQueueCount: u32;51 readonly maxUpwardQueueCount: u32;868687 /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */87 /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */88 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {88 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {89 readonly validationData: PolkadotPrimitivesV1PersistedValidationData;89 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;90 readonly relayChainState: SpTrieStorageProof;90 readonly relayChainState: SpTrieStorageProof;91 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;91 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;92 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;92 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1605 }1605 }160616061607 /** @name FrameSupportStorageBoundedBTreeSet (171) */1607 /** @name FrameSupportStorageBoundedBTreeSet (171) */1608 export interface FrameSupportStorageBoundedBTreeSet extends Vec<u32> {}1608 export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}160916091610 /** @name UpDataStructsMetaUpdatePermission (177) */1610 /** @name UpDataStructsMetaUpdatePermission (177) */1611 export interface UpDataStructsMetaUpdatePermission extends Enum {1611 export interface UpDataStructsMetaUpdatePermission extends Enum {1885 readonly asToken: SpRuntimeTokenError;1885 readonly asToken: SpRuntimeTokenError;1886 readonly isArithmetic: boolean;1886 readonly isArithmetic: boolean;1887 readonly asArithmetic: SpRuntimeArithmeticError;1887 readonly asArithmetic: SpRuntimeArithmeticError;1888 readonly isTransactional: boolean;1889 readonly asTransactional: SpRuntimeTransactionalError;1888 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1890 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1889 }1891 }189018921891 /** @name SpRuntimeModuleError (231) */1893 /** @name SpRuntimeModuleError (231) */1892 export interface SpRuntimeModuleError extends Struct {1894 export interface SpRuntimeModuleError extends Struct {1893 readonly index: u8;1895 readonly index: u8;1894 readonly error: u8;1896 readonly error: U8aFixed;1895 }1897 }189618981897 /** @name SpRuntimeTokenError (232) */1899 /** @name SpRuntimeTokenError (232) */1914 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1916 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1915 }1917 }19181919 /** @name SpRuntimeTransactionalError (234) */1920 export interface SpRuntimeTransactionalError extends Enum {1921 readonly isLimitReached: boolean;1922 readonly isNoLayer: boolean;1923 readonly type: 'LimitReached' | 'NoLayer';1924 }191619251917 /** @name PalletSudoError (234) */1926 /** @name PalletSudoError (235) */1918 export interface PalletSudoError extends Enum {1927 export interface PalletSudoError extends Enum {1919 readonly isRequireSudo: boolean;1928 readonly isRequireSudo: boolean;1920 readonly type: 'RequireSudo';1929 readonly type: 'RequireSudo';1921 }1930 }192219311923 /** @name FrameSystemAccountInfo (235) */1932 /** @name FrameSystemAccountInfo (236) */1924 export interface FrameSystemAccountInfo extends Struct {1933 export interface FrameSystemAccountInfo extends Struct {1925 readonly nonce: u32;1934 readonly nonce: u32;1926 readonly consumers: u32;1935 readonly consumers: u32;1929 readonly data: PalletBalancesAccountData;1938 readonly data: PalletBalancesAccountData;1930 }1939 }193119401932 /** @name FrameSupportWeightsPerDispatchClassU64 (236) */1941 /** @name FrameSupportWeightsPerDispatchClassU64 (237) */1933 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1942 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1934 readonly normal: u64;1943 readonly normal: u64;1935 readonly operational: u64;1944 readonly operational: u64;1936 readonly mandatory: u64;1945 readonly mandatory: u64;1937 }1946 }193819471939 /** @name SpRuntimeDigest (237) */1948 /** @name SpRuntimeDigest (238) */1940 export interface SpRuntimeDigest extends Struct {1949 export interface SpRuntimeDigest extends Struct {1941 readonly logs: Vec<SpRuntimeDigestDigestItem>;1950 readonly logs: Vec<SpRuntimeDigestDigestItem>;1942 }1951 }194319521944 /** @name SpRuntimeDigestDigestItem (239) */1953 /** @name SpRuntimeDigestDigestItem (240) */1945 export interface SpRuntimeDigestDigestItem extends Enum {1954 export interface SpRuntimeDigestDigestItem extends Enum {1946 readonly isOther: boolean;1955 readonly isOther: boolean;1947 readonly asOther: Bytes;1956 readonly asOther: Bytes;1955 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1964 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1956 }1965 }195719661958 /** @name FrameSystemEventRecord (241) */1967 /** @name FrameSystemEventRecord (242) */1959 export interface FrameSystemEventRecord extends Struct {1968 export interface FrameSystemEventRecord extends Struct {1960 readonly phase: FrameSystemPhase;1969 readonly phase: FrameSystemPhase;1961 readonly event: Event;1970 readonly event: Event;1962 readonly topics: Vec<H256>;1971 readonly topics: Vec<H256>;1963 }1972 }196419731965 /** @name FrameSystemEvent (243) */1974 /** @name FrameSystemEvent (244) */1966 export interface FrameSystemEvent extends Enum {1975 export interface FrameSystemEvent extends Enum {1967 readonly isExtrinsicSuccess: boolean;1976 readonly isExtrinsicSuccess: boolean;1968 readonly asExtrinsicSuccess: {1977 readonly asExtrinsicSuccess: {1990 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1999 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1991 }2000 }199220011993 /** @name FrameSupportWeightsDispatchInfo (244) */2002 /** @name FrameSupportWeightsDispatchInfo (245) */1994 export interface FrameSupportWeightsDispatchInfo extends Struct {2003 export interface FrameSupportWeightsDispatchInfo extends Struct {1995 readonly weight: u64;2004 readonly weight: u64;1996 readonly class: FrameSupportWeightsDispatchClass;2005 readonly class: FrameSupportWeightsDispatchClass;1997 readonly paysFee: FrameSupportWeightsPays;2006 readonly paysFee: FrameSupportWeightsPays;1998 }2007 }199920082000 /** @name FrameSupportWeightsDispatchClass (245) */2009 /** @name FrameSupportWeightsDispatchClass (246) */2001 export interface FrameSupportWeightsDispatchClass extends Enum {2010 export interface FrameSupportWeightsDispatchClass extends Enum {2002 readonly isNormal: boolean;2011 readonly isNormal: boolean;2003 readonly isOperational: boolean;2012 readonly isOperational: boolean;2004 readonly isMandatory: boolean;2013 readonly isMandatory: boolean;2005 readonly type: 'Normal' | 'Operational' | 'Mandatory';2014 readonly type: 'Normal' | 'Operational' | 'Mandatory';2006 }2015 }200720162008 /** @name FrameSupportWeightsPays (246) */2017 /** @name FrameSupportWeightsPays (247) */2009 export interface FrameSupportWeightsPays extends Enum {2018 export interface FrameSupportWeightsPays extends Enum {2010 readonly isYes: boolean;2019 readonly isYes: boolean;2011 readonly isNo: boolean;2020 readonly isNo: boolean;2012 readonly type: 'Yes' | 'No';2021 readonly type: 'Yes' | 'No';2013 }2022 }201420232015 /** @name OrmlVestingModuleEvent (247) */2024 /** @name OrmlVestingModuleEvent (248) */2016 export interface OrmlVestingModuleEvent extends Enum {2025 export interface OrmlVestingModuleEvent extends Enum {2017 readonly isVestingScheduleAdded: boolean;2026 readonly isVestingScheduleAdded: boolean;2018 readonly asVestingScheduleAdded: {2027 readonly asVestingScheduleAdded: {2032 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2041 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2033 }2042 }203420432035 /** @name CumulusPalletXcmpQueueEvent (248) */2044 /** @name CumulusPalletXcmpQueueEvent (249) */2036 export interface CumulusPalletXcmpQueueEvent extends Enum {2045 export interface CumulusPalletXcmpQueueEvent extends Enum {2037 readonly isSuccess: boolean;2046 readonly isSuccess: boolean;2038 readonly asSuccess: Option<H256>;2047 readonly asSuccess: Option<H256>;2053 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2062 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2054 }2063 }205520642056 /** @name PalletXcmEvent (249) */2065 /** @name PalletXcmEvent (250) */2057 export interface PalletXcmEvent extends Enum {2066 export interface PalletXcmEvent extends Enum {2058 readonly isAttempted: boolean;2067 readonly isAttempted: boolean;2059 readonly asAttempted: XcmV2TraitsOutcome;2068 readonly asAttempted: XcmV2TraitsOutcome;2090 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2099 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2091 }2100 }209221012093 /** @name XcmV2TraitsOutcome (250) */2102 /** @name XcmV2TraitsOutcome (251) */2094 export interface XcmV2TraitsOutcome extends Enum {2103 export interface XcmV2TraitsOutcome extends Enum {2095 readonly isComplete: boolean;2104 readonly isComplete: boolean;2096 readonly asComplete: u64;2105 readonly asComplete: u64;2101 readonly type: 'Complete' | 'Incomplete' | 'Error';2110 readonly type: 'Complete' | 'Incomplete' | 'Error';2102 }2111 }210321122104 /** @name CumulusPalletXcmEvent (252) */2113 /** @name CumulusPalletXcmEvent (253) */2105 export interface CumulusPalletXcmEvent extends Enum {2114 export interface CumulusPalletXcmEvent extends Enum {2106 readonly isInvalidFormat: boolean;2115 readonly isInvalidFormat: boolean;2107 readonly asInvalidFormat: U8aFixed;2116 readonly asInvalidFormat: U8aFixed;2112 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2121 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2113 }2122 }211421232115 /** @name CumulusPalletDmpQueueEvent (253) */2124 /** @name CumulusPalletDmpQueueEvent (254) */2116 export interface CumulusPalletDmpQueueEvent extends Enum {2125 export interface CumulusPalletDmpQueueEvent extends Enum {2117 readonly isInvalidFormat: boolean;2126 readonly isInvalidFormat: boolean;2118 readonly asInvalidFormat: U8aFixed;2127 readonly asInvalidFormat: U8aFixed;2129 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2138 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2130 }2139 }213121402132 /** @name PalletUniqueRawEvent (254) */2141 /** @name PalletUniqueRawEvent (255) */2133 export interface PalletUniqueRawEvent extends Enum {2142 export interface PalletUniqueRawEvent extends Enum {2134 readonly isCollectionSponsorRemoved: boolean;2143 readonly isCollectionSponsorRemoved: boolean;2135 readonly asCollectionSponsorRemoved: u32;2144 readonly asCollectionSponsorRemoved: u32;2164 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2173 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2165 }2174 }216621752167 /** @name PalletCommonEvent (255) */2176 /** @name PalletCommonEvent (256) */2168 export interface PalletCommonEvent extends Enum {2177 export interface PalletCommonEvent extends Enum {2169 readonly isCollectionCreated: boolean;2178 readonly isCollectionCreated: boolean;2170 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2179 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2191 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2200 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2192 }2201 }219322022194 /** @name PalletStructureEvent (256) */2203 /** @name PalletStructureEvent (257) */2195 export interface PalletStructureEvent extends Enum {2204 export interface PalletStructureEvent extends Enum {2196 readonly isExecuted: boolean;2205 readonly isExecuted: boolean;2197 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2206 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2198 readonly type: 'Executed';2207 readonly type: 'Executed';2199 }2208 }220022092201 /** @name PalletEvmEvent (257) */2210 /** @name PalletEvmEvent (258) */2202 export interface PalletEvmEvent extends Enum {2211 export interface PalletEvmEvent extends Enum {2203 readonly isLog: boolean;2212 readonly isLog: boolean;2204 readonly asLog: EthereumLog;2213 readonly asLog: EthereumLog;2217 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2226 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2218 }2227 }221922282220 /** @name EthereumLog (258) */2229 /** @name EthereumLog (259) */2221 export interface EthereumLog extends Struct {2230 export interface EthereumLog extends Struct {2222 readonly address: H160;2231 readonly address: H160;2223 readonly topics: Vec<H256>;2232 readonly topics: Vec<H256>;2224 readonly data: Bytes;2233 readonly data: Bytes;2225 }2234 }222622352227 /** @name PalletEthereumEvent (259) */2236 /** @name PalletEthereumEvent (260) */2228 export interface PalletEthereumEvent extends Enum {2237 export interface PalletEthereumEvent extends Enum {2229 readonly isExecuted: boolean;2238 readonly isExecuted: boolean;2230 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2239 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2231 readonly type: 'Executed';2240 readonly type: 'Executed';2232 }2241 }223322422234 /** @name EvmCoreErrorExitReason (260) */2243 /** @name EvmCoreErrorExitReason (261) */2235 export interface EvmCoreErrorExitReason extends Enum {2244 export interface EvmCoreErrorExitReason extends Enum {2236 readonly isSucceed: boolean;2245 readonly isSucceed: boolean;2237 readonly asSucceed: EvmCoreErrorExitSucceed;2246 readonly asSucceed: EvmCoreErrorExitSucceed;2244 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2253 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2245 }2254 }224622552247 /** @name EvmCoreErrorExitSucceed (261) */2256 /** @name EvmCoreErrorExitSucceed (262) */2248 export interface EvmCoreErrorExitSucceed extends Enum {2257 export interface EvmCoreErrorExitSucceed extends Enum {2249 readonly isStopped: boolean;2258 readonly isStopped: boolean;2250 readonly isReturned: boolean;2259 readonly isReturned: boolean;2251 readonly isSuicided: boolean;2260 readonly isSuicided: boolean;2252 readonly type: 'Stopped' | 'Returned' | 'Suicided';2261 readonly type: 'Stopped' | 'Returned' | 'Suicided';2253 }2262 }225422632255 /** @name EvmCoreErrorExitError (262) */2264 /** @name EvmCoreErrorExitError (263) */2256 export interface EvmCoreErrorExitError extends Enum {2265 export interface EvmCoreErrorExitError extends Enum {2257 readonly isStackUnderflow: boolean;2266 readonly isStackUnderflow: boolean;2258 readonly isStackOverflow: boolean;2267 readonly isStackOverflow: boolean;2262 readonly isCallTooDeep: boolean;2271 readonly isCallTooDeep: boolean;2263 readonly isCreateCollision: boolean;2272 readonly isCreateCollision: boolean;2264 readonly isCreateContractLimit: boolean;2273 readonly isCreateContractLimit: boolean;2265 readonly isInvalidCode: boolean;2266 readonly isOutOfOffset: boolean;2274 readonly isOutOfOffset: boolean;2267 readonly isOutOfGas: boolean;2275 readonly isOutOfGas: boolean;2268 readonly isOutOfFund: boolean;2276 readonly isOutOfFund: boolean;2269 readonly isPcUnderflow: boolean;2277 readonly isPcUnderflow: boolean;2270 readonly isCreateEmpty: boolean;2278 readonly isCreateEmpty: boolean;2271 readonly isOther: boolean;2279 readonly isOther: boolean;2272 readonly asOther: Text;2280 readonly asOther: Text;2281 readonly isInvalidCode: boolean;2273 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';2282 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2274 }2283 }227522842276 /** @name EvmCoreErrorExitRevert (265) */2285 /** @name EvmCoreErrorExitRevert (266) */2277 export interface EvmCoreErrorExitRevert extends Enum {2286 export interface EvmCoreErrorExitRevert extends Enum {2278 readonly isReverted: boolean;2287 readonly isReverted: boolean;2279 readonly type: 'Reverted';2288 readonly type: 'Reverted';2280 }2289 }228122902282 /** @name EvmCoreErrorExitFatal (266) */2291 /** @name EvmCoreErrorExitFatal (267) */2283 export interface EvmCoreErrorExitFatal extends Enum {2292 export interface EvmCoreErrorExitFatal extends Enum {2284 readonly isNotSupported: boolean;2293 readonly isNotSupported: boolean;2285 readonly isUnhandledInterrupt: boolean;2294 readonly isUnhandledInterrupt: boolean;2290 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2299 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2291 }2300 }229223012293 /** @name FrameSystemPhase (267) */2302 /** @name FrameSystemPhase (268) */2294 export interface FrameSystemPhase extends Enum {2303 export interface FrameSystemPhase extends Enum {2295 readonly isApplyExtrinsic: boolean;2304 readonly isApplyExtrinsic: boolean;2296 readonly asApplyExtrinsic: u32;2305 readonly asApplyExtrinsic: u32;2299 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2308 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2300 }2309 }230123102302 /** @name FrameSystemLastRuntimeUpgradeInfo (269) */2311 /** @name FrameSystemLastRuntimeUpgradeInfo (270) */2303 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2312 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2304 readonly specVersion: Compact<u32>;2313 readonly specVersion: Compact<u32>;2305 readonly specName: Text;2314 readonly specName: Text;2306 }2315 }230723162308 /** @name FrameSystemLimitsBlockWeights (270) */2317 /** @name FrameSystemLimitsBlockWeights (271) */2309 export interface FrameSystemLimitsBlockWeights extends Struct {2318 export interface FrameSystemLimitsBlockWeights extends Struct {2310 readonly baseBlock: u64;2319 readonly baseBlock: u64;2311 readonly maxBlock: u64;2320 readonly maxBlock: u64;2312 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2321 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2313 }2322 }231423232315 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (271) */2324 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (272) */2316 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2325 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2317 readonly normal: FrameSystemLimitsWeightsPerClass;2326 readonly normal: FrameSystemLimitsWeightsPerClass;2318 readonly operational: FrameSystemLimitsWeightsPerClass;2327 readonly operational: FrameSystemLimitsWeightsPerClass;2319 readonly mandatory: FrameSystemLimitsWeightsPerClass;2328 readonly mandatory: FrameSystemLimitsWeightsPerClass;2320 }2329 }232123302322 /** @name FrameSystemLimitsWeightsPerClass (272) */2331 /** @name FrameSystemLimitsWeightsPerClass (273) */2323 export interface FrameSystemLimitsWeightsPerClass extends Struct {2332 export interface FrameSystemLimitsWeightsPerClass extends Struct {2324 readonly baseExtrinsic: u64;2333 readonly baseExtrinsic: u64;2325 readonly maxExtrinsic: Option<u64>;2334 readonly maxExtrinsic: Option<u64>;2326 readonly maxTotal: Option<u64>;2335 readonly maxTotal: Option<u64>;2327 readonly reserved: Option<u64>;2336 readonly reserved: Option<u64>;2328 }2337 }232923382330 /** @name FrameSystemLimitsBlockLength (274) */2339 /** @name FrameSystemLimitsBlockLength (275) */2331 export interface FrameSystemLimitsBlockLength extends Struct {2340 export interface FrameSystemLimitsBlockLength extends Struct {2332 readonly max: FrameSupportWeightsPerDispatchClassU32;2341 readonly max: FrameSupportWeightsPerDispatchClassU32;2333 }2342 }233423432335 /** @name FrameSupportWeightsPerDispatchClassU32 (275) */2344 /** @name FrameSupportWeightsPerDispatchClassU32 (276) */2336 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2345 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2337 readonly normal: u32;2346 readonly normal: u32;2338 readonly operational: u32;2347 readonly operational: u32;2339 readonly mandatory: u32;2348 readonly mandatory: u32;2340 }2349 }234123502342 /** @name FrameSupportWeightsRuntimeDbWeight (276) */2351 /** @name FrameSupportWeightsRuntimeDbWeight (277) */2343 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2352 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2344 readonly read: u64;2353 readonly read: u64;2345 readonly write: u64;2354 readonly write: u64;2346 }2355 }234723562348 /** @name SpVersionRuntimeVersion (277) */2357 /** @name SpVersionRuntimeVersion (278) */2349 export interface SpVersionRuntimeVersion extends Struct {2358 export interface SpVersionRuntimeVersion extends Struct {2350 readonly specName: Text;2359 readonly specName: Text;2351 readonly implName: Text;2360 readonly implName: Text;2357 readonly stateVersion: u8;2366 readonly stateVersion: u8;2358 }2367 }235923682360 /** @name FrameSystemError (281) */2369 /** @name FrameSystemError (282) */2361 export interface FrameSystemError extends Enum {2370 export interface FrameSystemError extends Enum {2362 readonly isInvalidSpecName: boolean;2371 readonly isInvalidSpecName: boolean;2363 readonly isSpecVersionNeedsToIncrease: boolean;2372 readonly isSpecVersionNeedsToIncrease: boolean;2368 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2377 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2369 }2378 }237023792371 /** @name OrmlVestingModuleError (283) */2380 /** @name OrmlVestingModuleError (284) */2372 export interface OrmlVestingModuleError extends Enum {2381 export interface OrmlVestingModuleError extends Enum {2373 readonly isZeroVestingPeriod: boolean;2382 readonly isZeroVestingPeriod: boolean;2374 readonly isZeroVestingPeriodCount: boolean;2383 readonly isZeroVestingPeriodCount: boolean;2379 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2388 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2380 }2389 }238123902382 /** @name CumulusPalletXcmpQueueInboundChannelDetails (285) */2391 /** @name CumulusPalletXcmpQueueInboundChannelDetails (286) */2383 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2392 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2384 readonly sender: u32;2393 readonly sender: u32;2385 readonly state: CumulusPalletXcmpQueueInboundState;2394 readonly state: CumulusPalletXcmpQueueInboundState;2386 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2395 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2387 }2396 }238823972389 /** @name CumulusPalletXcmpQueueInboundState (286) */2398 /** @name CumulusPalletXcmpQueueInboundState (287) */2390 export interface CumulusPalletXcmpQueueInboundState extends Enum {2399 export interface CumulusPalletXcmpQueueInboundState extends Enum {2391 readonly isOk: boolean;2400 readonly isOk: boolean;2392 readonly isSuspended: boolean;2401 readonly isSuspended: boolean;2393 readonly type: 'Ok' | 'Suspended';2402 readonly type: 'Ok' | 'Suspended';2394 }2403 }239524042396 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (289) */2405 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (290) */2397 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2406 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2398 readonly isConcatenatedVersionedXcm: boolean;2407 readonly isConcatenatedVersionedXcm: boolean;2399 readonly isConcatenatedEncodedBlob: boolean;2408 readonly isConcatenatedEncodedBlob: boolean;2400 readonly isSignals: boolean;2409 readonly isSignals: boolean;2401 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2410 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2402 }2411 }240324122404 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (292) */2413 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (293) */2405 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2414 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2406 readonly recipient: u32;2415 readonly recipient: u32;2407 readonly state: CumulusPalletXcmpQueueOutboundState;2416 readonly state: CumulusPalletXcmpQueueOutboundState;2410 readonly lastIndex: u16;2419 readonly lastIndex: u16;2411 }2420 }241224212413 /** @name CumulusPalletXcmpQueueOutboundState (293) */2422 /** @name CumulusPalletXcmpQueueOutboundState (294) */2414 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2423 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2415 readonly isOk: boolean;2424 readonly isOk: boolean;2416 readonly isSuspended: boolean;2425 readonly isSuspended: boolean;2417 readonly type: 'Ok' | 'Suspended';2426 readonly type: 'Ok' | 'Suspended';2418 }2427 }241924282420 /** @name CumulusPalletXcmpQueueQueueConfigData (295) */2429 /** @name CumulusPalletXcmpQueueQueueConfigData (296) */2421 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2430 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2422 readonly suspendThreshold: u32;2431 readonly suspendThreshold: u32;2423 readonly dropThreshold: u32;2432 readonly dropThreshold: u32;2427 readonly xcmpMaxIndividualWeight: u64;2436 readonly xcmpMaxIndividualWeight: u64;2428 }2437 }242924382430 /** @name CumulusPalletXcmpQueueError (297) */2439 /** @name CumulusPalletXcmpQueueError (298) */2431 export interface CumulusPalletXcmpQueueError extends Enum {2440 export interface CumulusPalletXcmpQueueError extends Enum {2432 readonly isFailedToSend: boolean;2441 readonly isFailedToSend: boolean;2433 readonly isBadXcmOrigin: boolean;2442 readonly isBadXcmOrigin: boolean;2437 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2446 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2438 }2447 }243924482440 /** @name PalletXcmError (298) */2449 /** @name PalletXcmError (299) */2441 export interface PalletXcmError extends Enum {2450 export interface PalletXcmError extends Enum {2442 readonly isUnreachable: boolean;2451 readonly isUnreachable: boolean;2443 readonly isSendFailure: boolean;2452 readonly isSendFailure: boolean;2455 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2464 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2456 }2465 }245724662458 /** @name CumulusPalletXcmError (299) */2467 /** @name CumulusPalletXcmError (300) */2459 export type CumulusPalletXcmError = Null;2468 export type CumulusPalletXcmError = Null;246024692461 /** @name CumulusPalletDmpQueueConfigData (300) */2470 /** @name CumulusPalletDmpQueueConfigData (301) */2462 export interface CumulusPalletDmpQueueConfigData extends Struct {2471 export interface CumulusPalletDmpQueueConfigData extends Struct {2463 readonly maxIndividual: u64;2472 readonly maxIndividual: u64;2464 }2473 }246524742466 /** @name CumulusPalletDmpQueuePageIndexData (301) */2475 /** @name CumulusPalletDmpQueuePageIndexData (302) */2467 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2476 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2468 readonly beginUsed: u32;2477 readonly beginUsed: u32;2469 readonly endUsed: u32;2478 readonly endUsed: u32;2470 readonly overweightCount: u64;2479 readonly overweightCount: u64;2471 }2480 }247224812473 /** @name CumulusPalletDmpQueueError (304) */2482 /** @name CumulusPalletDmpQueueError (305) */2474 export interface CumulusPalletDmpQueueError extends Enum {2483 export interface CumulusPalletDmpQueueError extends Enum {2475 readonly isUnknown: boolean;2484 readonly isUnknown: boolean;2476 readonly isOverLimit: boolean;2485 readonly isOverLimit: boolean;2477 readonly type: 'Unknown' | 'OverLimit';2486 readonly type: 'Unknown' | 'OverLimit';2478 }2487 }247924882480 /** @name PalletUniqueError (308) */2489 /** @name PalletUniqueError (309) */2481 export interface PalletUniqueError extends Enum {2490 export interface PalletUniqueError extends Enum {2482 readonly isCollectionDecimalPointLimitExceeded: boolean;2491 readonly isCollectionDecimalPointLimitExceeded: boolean;2483 readonly isConfirmUnsetSponsorFail: boolean;2492 readonly isConfirmUnsetSponsorFail: boolean;2484 readonly isEmptyArgument: boolean;2493 readonly isEmptyArgument: boolean;2485 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2494 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2486 }2495 }248724962488 /** @name UpDataStructsCollection (309) */2497 /** @name UpDataStructsCollection (310) */2489 export interface UpDataStructsCollection extends Struct {2498 export interface UpDataStructsCollection extends Struct {2490 readonly owner: AccountId32;2499 readonly owner: AccountId32;2491 readonly mode: UpDataStructsCollectionMode;2500 readonly mode: UpDataStructsCollectionMode;2500 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2509 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2501 }2510 }250225112503 /** @name UpDataStructsSponsorshipState (310) */2512 /** @name UpDataStructsSponsorshipState (311) */2504 export interface UpDataStructsSponsorshipState extends Enum {2513 export interface UpDataStructsSponsorshipState extends Enum {2505 readonly isDisabled: boolean;2514 readonly isDisabled: boolean;2506 readonly isUnconfirmed: boolean;2515 readonly isUnconfirmed: boolean;2510 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2519 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2511 }2520 }251225212513 /** @name UpDataStructsProperties (311) */2522 /** @name UpDataStructsProperties (312) */2514 export interface UpDataStructsProperties extends Struct {2523 export interface UpDataStructsProperties extends Struct {2515 readonly map: BTreeMap<Bytes, Bytes>;2524 readonly map: BTreeMap<Bytes, Bytes>;2516 readonly consumedSpace: u32;2525 readonly consumedSpace: u32;2517 readonly spaceLimit: u32;2526 readonly spaceLimit: u32;2518 }2527 }251925282520 /** @name UpDataStructsCollectionField (321) */2529 /** @name UpDataStructsCollectionField (322) */2521 export interface UpDataStructsCollectionField extends Enum {2530 export interface UpDataStructsCollectionField extends Enum {2522 readonly isVariableOnChainSchema: boolean;2531 readonly isVariableOnChainSchema: boolean;2523 readonly isConstOnChainSchema: boolean;2532 readonly isConstOnChainSchema: boolean;2524 readonly isOffchainSchema: boolean;2533 readonly isOffchainSchema: boolean;2525 readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';2534 readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';2526 }2535 }252725362528 /** @name UpDataStructsCollectionStats (324) */2537 /** @name UpDataStructsCollectionStats (325) */2529 export interface UpDataStructsCollectionStats extends Struct {2538 export interface UpDataStructsCollectionStats extends Struct {2530 readonly created: u32;2539 readonly created: u32;2531 readonly destroyed: u32;2540 readonly destroyed: u32;2532 readonly alive: u32;2541 readonly alive: u32;2533 }2542 }253425432535 /** @name PhantomTypeUpDataStructsTokenData (325) */2544 /** @name PhantomTypeUpDataStructsTokenData (326) */2536 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}2545 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}253725462538 /** @name UpDataStructsTokenData (326) */2547 /** @name UpDataStructsTokenData (327) */2539 export interface UpDataStructsTokenData extends Struct {2548 export interface UpDataStructsTokenData extends Struct {2540 readonly constData: Bytes;2549 readonly constData: Bytes;2541 readonly properties: Vec<UpDataStructsProperty>;2550 readonly properties: Vec<UpDataStructsProperty>;2542 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2551 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2543 }2552 }254425532545 /** @name PhantomTypeUpDataStructsRpcCollection (329) */2554 /** @name PhantomTypeUpDataStructsRpcCollection (330) */2546 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}2555 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}254725562548 /** @name UpDataStructsRpcCollection (330) */2557 /** @name UpDataStructsRpcCollection (331) */2549 export interface UpDataStructsRpcCollection extends Struct {2558 export interface UpDataStructsRpcCollection extends Struct {2550 readonly owner: AccountId32;2559 readonly owner: AccountId32;2551 readonly mode: UpDataStructsCollectionMode;2560 readonly mode: UpDataStructsCollectionMode;2563 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2572 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2564 }2573 }256525742566 /** @name PalletCommonError (332) */2575 /** @name PalletCommonError (333) */2567 export interface PalletCommonError extends Enum {2576 export interface PalletCommonError extends Enum {2568 readonly isCollectionNotFound: boolean;2577 readonly isCollectionNotFound: boolean;2569 readonly isMustBeTokenOwner: boolean;2578 readonly isMustBeTokenOwner: boolean;2598 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';2607 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';2599 }2608 }260026092601 /** @name PalletFungibleError (334) */2610 /** @name PalletFungibleError (335) */2602 export interface PalletFungibleError extends Enum {2611 export interface PalletFungibleError extends Enum {2603 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2612 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2604 readonly isFungibleItemsHaveNoId: boolean;2613 readonly isFungibleItemsHaveNoId: boolean;2608 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2617 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2609 }2618 }261026192611 /** @name PalletRefungibleItemData (335) */2620 /** @name PalletRefungibleItemData (336) */2612 export interface PalletRefungibleItemData extends Struct {2621 export interface PalletRefungibleItemData extends Struct {2613 readonly constData: Bytes;2622 readonly constData: Bytes;2614 readonly variableData: Bytes;2623 readonly variableData: Bytes;2615 }2624 }261626252617 /** @name PalletRefungibleError (339) */2626 /** @name PalletRefungibleError (340) */2618 export interface PalletRefungibleError extends Enum {2627 export interface PalletRefungibleError extends Enum {2619 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2628 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2620 readonly isWrongRefungiblePieces: boolean;2629 readonly isWrongRefungiblePieces: boolean;2623 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2632 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2624 }2633 }262526342626 /** @name PalletNonfungibleItemData (340) */2635 /** @name PalletNonfungibleItemData (341) */2627 export interface PalletNonfungibleItemData extends Struct {2636 export interface PalletNonfungibleItemData extends Struct {2628 readonly constData: Bytes;2637 readonly constData: Bytes;2629 readonly variableData: Bytes;2638 readonly variableData: Bytes;2630 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2639 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2631 }2640 }263226412633 /** @name PalletNonfungibleError (341) */2642 /** @name PalletNonfungibleError (342) */2634 export interface PalletNonfungibleError extends Enum {2643 export interface PalletNonfungibleError extends Enum {2635 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2644 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2636 readonly isNonfungibleItemsHaveNoAmount: boolean;2645 readonly isNonfungibleItemsHaveNoAmount: boolean;2637 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2646 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2638 }2647 }263926482640 /** @name PalletStructureError (342) */2649 /** @name PalletStructureError (343) */2641 export interface PalletStructureError extends Enum {2650 export interface PalletStructureError extends Enum {2642 readonly isOuroborosDetected: boolean;2651 readonly isOuroborosDetected: boolean;2643 readonly isDepthLimit: boolean;2652 readonly isDepthLimit: boolean;2644 readonly isTokenNotFound: boolean;2653 readonly isTokenNotFound: boolean;2645 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2654 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2646 }2655 }264726562648 /** @name PalletEvmError (344) */2657 /** @name PalletEvmError (345) */2649 export interface PalletEvmError extends Enum {2658 export interface PalletEvmError extends Enum {2650 readonly isBalanceLow: boolean;2659 readonly isBalanceLow: boolean;2651 readonly isFeeOverflow: boolean;2660 readonly isFeeOverflow: boolean;2656 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2665 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2657 }2666 }265826672659 /** @name FpRpcTransactionStatus (347) */2668 /** @name FpRpcTransactionStatus (348) */2660 export interface FpRpcTransactionStatus extends Struct {2669 export interface FpRpcTransactionStatus extends Struct {2661 readonly transactionHash: H256;2670 readonly transactionHash: H256;2662 readonly transactionIndex: u32;2671 readonly transactionIndex: u32;2667 readonly logsBloom: EthbloomBloom;2676 readonly logsBloom: EthbloomBloom;2668 }2677 }266926782670 /** @name EthbloomBloom (350) */2679 /** @name EthbloomBloom (351) */2671 export interface EthbloomBloom extends U8aFixed {}2680 export interface EthbloomBloom extends U8aFixed {}267226812673 /** @name EthereumReceiptReceiptV3 (352) */2682 /** @name EthereumReceiptReceiptV3 (353) */2674 export interface EthereumReceiptReceiptV3 extends Enum {2683 export interface EthereumReceiptReceiptV3 extends Enum {2675 readonly isLegacy: boolean;2684 readonly isLegacy: boolean;2676 readonly asLegacy: EthereumReceiptEip658ReceiptData;2685 readonly asLegacy: EthereumReceiptEip658ReceiptData;2681 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2690 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2682 }2691 }268326922684 /** @name EthereumReceiptEip658ReceiptData (353) */2693 /** @name EthereumReceiptEip658ReceiptData (354) */2685 export interface EthereumReceiptEip658ReceiptData extends Struct {2694 export interface EthereumReceiptEip658ReceiptData extends Struct {2686 readonly statusCode: u8;2695 readonly statusCode: u8;2687 readonly usedGas: U256;2696 readonly usedGas: U256;2688 readonly logsBloom: EthbloomBloom;2697 readonly logsBloom: EthbloomBloom;2689 readonly logs: Vec<EthereumLog>;2698 readonly logs: Vec<EthereumLog>;2690 }2699 }269127002692 /** @name EthereumBlock (354) */2701 /** @name EthereumBlock (355) */2693 export interface EthereumBlock extends Struct {2702 export interface EthereumBlock extends Struct {2694 readonly header: EthereumHeader;2703 readonly header: EthereumHeader;2695 readonly transactions: Vec<EthereumTransactionTransactionV2>;2704 readonly transactions: Vec<EthereumTransactionTransactionV2>;2696 readonly ommers: Vec<EthereumHeader>;2705 readonly ommers: Vec<EthereumHeader>;2697 }2706 }269827072699 /** @name EthereumHeader (355) */2708 /** @name EthereumHeader (356) */2700 export interface EthereumHeader extends Struct {2709 export interface EthereumHeader extends Struct {2701 readonly parentHash: H256;2710 readonly parentHash: H256;2702 readonly ommersHash: H256;2711 readonly ommersHash: H256;2715 readonly nonce: EthereumTypesHashH64;2724 readonly nonce: EthereumTypesHashH64;2716 }2725 }271727262718 /** @name EthereumTypesHashH64 (356) */2727 /** @name EthereumTypesHashH64 (357) */2719 export interface EthereumTypesHashH64 extends U8aFixed {}2728 export interface EthereumTypesHashH64 extends U8aFixed {}272027292721 /** @name PalletEthereumError (361) */2730 /** @name PalletEthereumError (362) */2722 export interface PalletEthereumError extends Enum {2731 export interface PalletEthereumError extends Enum {2723 readonly isInvalidSignature: boolean;2732 readonly isInvalidSignature: boolean;2724 readonly isPreLogExists: boolean;2733 readonly isPreLogExists: boolean;2725 readonly type: 'InvalidSignature' | 'PreLogExists';2734 readonly type: 'InvalidSignature' | 'PreLogExists';2726 }2735 }272727362728 /** @name PalletEvmCoderSubstrateError (362) */2737 /** @name PalletEvmCoderSubstrateError (363) */2729 export interface PalletEvmCoderSubstrateError extends Enum {2738 export interface PalletEvmCoderSubstrateError extends Enum {2730 readonly isOutOfGas: boolean;2739 readonly isOutOfGas: boolean;2731 readonly isOutOfFund: boolean;2740 readonly isOutOfFund: boolean;2732 readonly type: 'OutOfGas' | 'OutOfFund';2741 readonly type: 'OutOfGas' | 'OutOfFund';2733 }2742 }273427432735 /** @name PalletEvmContractHelpersSponsoringModeT (363) */2744 /** @name PalletEvmContractHelpersSponsoringModeT (364) */2736 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2745 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2737 readonly isDisabled: boolean;2746 readonly isDisabled: boolean;2738 readonly isAllowlisted: boolean;2747 readonly isAllowlisted: boolean;2739 readonly isGenerous: boolean;2748 readonly isGenerous: boolean;2740 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2749 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2741 }2750 }274227512743 /** @name PalletEvmContractHelpersError (365) */2752 /** @name PalletEvmContractHelpersError (366) */2744 export interface PalletEvmContractHelpersError extends Enum {2753 export interface PalletEvmContractHelpersError extends Enum {2745 readonly isNoPermission: boolean;2754 readonly isNoPermission: boolean;2746 readonly type: 'NoPermission';2755 readonly type: 'NoPermission';2747 }2756 }274827572749 /** @name PalletEvmMigrationError (366) */2758 /** @name PalletEvmMigrationError (367) */2750 export interface PalletEvmMigrationError extends Enum {2759 export interface PalletEvmMigrationError extends Enum {2751 readonly isAccountNotEmpty: boolean;2760 readonly isAccountNotEmpty: boolean;2752 readonly isAccountIsNotMigrating: boolean;2761 readonly isAccountIsNotMigrating: boolean;2753 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2762 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2754 }2763 }275527642756 /** @name SpRuntimeMultiSignature (368) */2765 /** @name SpRuntimeMultiSignature (369) */2757 export interface SpRuntimeMultiSignature extends Enum {2766 export interface SpRuntimeMultiSignature extends Enum {2758 readonly isEd25519: boolean;2767 readonly isEd25519: boolean;2759 readonly asEd25519: SpCoreEd25519Signature;2768 readonly asEd25519: SpCoreEd25519Signature;2764 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2773 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2765 }2774 }276627752767 /** @name SpCoreEd25519Signature (369) */2776 /** @name SpCoreEd25519Signature (370) */2768 export interface SpCoreEd25519Signature extends U8aFixed {}2777 export interface SpCoreEd25519Signature extends U8aFixed {}276927782770 /** @name SpCoreSr25519Signature (371) */2779 /** @name SpCoreSr25519Signature (372) */2771 export interface SpCoreSr25519Signature extends U8aFixed {}2780 export interface SpCoreSr25519Signature extends U8aFixed {}277227812773 /** @name SpCoreEcdsaSignature (372) */2782 /** @name SpCoreEcdsaSignature (373) */2774 export interface SpCoreEcdsaSignature extends U8aFixed {}2783 export interface SpCoreEcdsaSignature extends U8aFixed {}277527842776 /** @name FrameSystemExtensionsCheckSpecVersion (375) */2785 /** @name FrameSystemExtensionsCheckSpecVersion (376) */2777 export type FrameSystemExtensionsCheckSpecVersion = Null;2786 export type FrameSystemExtensionsCheckSpecVersion = Null;277827872779 /** @name FrameSystemExtensionsCheckGenesis (376) */2788 /** @name FrameSystemExtensionsCheckGenesis (377) */2780 export type FrameSystemExtensionsCheckGenesis = Null;2789 export type FrameSystemExtensionsCheckGenesis = Null;278127902782 /** @name FrameSystemExtensionsCheckNonce (379) */2791 /** @name FrameSystemExtensionsCheckNonce (380) */2783 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}2792 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}278427932785 /** @name FrameSystemExtensionsCheckWeight (380) */2794 /** @name FrameSystemExtensionsCheckWeight (381) */2786 export type FrameSystemExtensionsCheckWeight = Null;2795 export type FrameSystemExtensionsCheckWeight = Null;278727962788 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (381) */2797 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (382) */2789 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}2798 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}279027992791 /** @name OpalRuntimeRuntime (382) */2800 /** @name OpalRuntimeRuntime (383) */2792 export type OpalRuntimeRuntime = Null;2801 export type OpalRuntimeRuntime = Null;279328022794} // declare module2803} // declare module