difftreelog
chore regenerate types / update yarn.lock
in: master
13 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { Codec } from '@polkadot/types-codec/types';
-import type { H160, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
@@ -110,7 +110,7 @@
/**
* The maximum weight that may be scheduled per block for any dispatchables.
**/
- maximumWeight: Weight & AugmentedConst<ApiType>;
+ maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
/**
* The maximum number of scheduled calls in the queue for a single block.
**/
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -55,7 +55,7 @@
**/
ExistingVestingSchedule: AugmentedError<ApiType>;
/**
- * Balance too low to send value
+ * Balance too low to send value.
**/
InsufficientBalance: AugmentedError<ApiType>;
/**
@@ -386,7 +386,7 @@
**/
NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;
/**
- * Setting approval for all is not allowed.
+ * Setting allowance for all is not allowed.
**/
SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;
/**
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
@@ -188,11 +188,11 @@
/**
* Downward message is overweight and was placed in the overweight queue.
**/
- OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;
+ OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;
/**
* Downward message from the overweight queue was executed.
**/
- OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;
+ OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;
/**
* Downward message is unsupported version of XCM.
**/
@@ -200,7 +200,7 @@
/**
* The weight limit for handling downward messages was reached.
**/
- WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;
+ WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;
/**
* Generic event
**/
@@ -304,7 +304,7 @@
/**
* Downward messages were processed using the given weight.
**/
- DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;
+ DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;
/**
* Some downward messages have been received and will be processed.
**/
@@ -332,6 +332,12 @@
};
polkadotXcm: {
/**
+ * Some assets have been claimed from an asset trap
+ *
+ * \[ hash, origin, assets \]
+ **/
+ AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+ /**
* Some assets have been placed in an asset trap.
*
* \[ hash, origin, assets \]
@@ -392,7 +398,7 @@
*
* \[ id, pallet index, call index, actual weight, max budgeted weight \]
**/
- NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;
+ NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;
/**
* A given location which had a version change subscription was dropped owing to an error
* migrating the location to our new XCM format.
@@ -800,19 +806,19 @@
/**
* Some XCM failed.
**/
- Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;
+ Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;
/**
* An XCM exceeded the individual message weight budget.
**/
- OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;
+ OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;
/**
* An XCM from the overweight queue was executed with the given actual weight used.
**/
- OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;
+ OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;
/**
* Some XCM was executed ok.
**/
- Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;
+ Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;
/**
* An upward message was sent to the relay chain.
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -566,12 +566,12 @@
* The weight we reserve at the beginning of the block for processing DMP messages. This
* overrides the amount set in the Config trait.
**/
- reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;
+ reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<SpWeightsWeightV2Weight>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* The weight we reserve at the beginning of the block for processing XCMP messages. This
* overrides the amount set in the Config trait.
**/
- reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;
+ reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<SpWeightsWeightV2Weight>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* An option which indicates if the relay-chain restricts signalling a validation code upgrade.
* In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the produced
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -16,7 +16,7 @@
import type { BlockHash } from '@polkadot/types/interfaces/chain';
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
-import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
import type { BlockStats } from '@polkadot/types/interfaces/dev';
import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
@@ -24,7 +24,7 @@
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
-import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
@@ -174,7 +174,7 @@
* @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
* Instantiate a new contract
**/
- instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+ instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
/**
* @deprecated Not available in newer versions of the contracts interfaces
* Returns the projected time a given contract will be able to sustain paying its rent
@@ -426,13 +426,15 @@
};
payment: {
/**
+ * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead
* Query the detailed fee of a given encoded extrinsic
**/
queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;
/**
+ * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead
* Retrieves the fee information for an encoded extrinsic
**/
- queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
+ queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
};
rmrk: {
/**
tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -229,7 +229,7 @@
**/
[key: string]: DecoratedCallBase<ApiType>;
};
- /** 0x37c8bb1350a9a2a8/1 */
+ /** 0x37c8bb1350a9a2a8/2 */
transactionPaymentApi: {
/**
* The transaction fee details
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -243,7 +243,7 @@
* Events:
* - `OverweightServiced`: On success.
**/
- serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;
+ serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
/**
* Generic tx
**/
@@ -383,7 +383,7 @@
* NOTE: A successful return to this does *not* imply that the `msg` was executed successfully
* to completion; only that *some* of it was executed.
**/
- execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, Weight]>;
+ execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;
/**
* Set a safe XCM version (the version that XCM should be encoded with if the most recent
* version a destination can accept is unknown).
@@ -953,7 +953,7 @@
* - The weight of this call is defined by the caller.
* # </weight>
**/
- sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Weight]>;
+ sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
/**
* Generic tx
**/
@@ -1759,7 +1759,7 @@
* Events:
* - `OverweightServiced`: On success.
**/
- serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;
+ serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
/**
* Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
*
@@ -1796,7 +1796,7 @@
* - `origin`: Must pass `Root`.
* - `new`: Desired value for `QueueConfigData.threshold_weight`
**/
- updateThresholdWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
+ updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
/**
* Overwrites the speed to which the available weight approaches the maximum weight.
* A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
@@ -1804,7 +1804,7 @@
* - `origin`: Must pass `Root`.
* - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.
**/
- updateWeightRestrictDecay: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
+ updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
/**
* Overwrite the maximum amount of weight any individual message may consume.
* Messages above this weight go into the overweight queue and may only be serviced explicitly.
@@ -1812,7 +1812,7 @@
* - `origin`: Must pass `Root`.
* - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.
**/
- updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
+ updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
/**
* Generic tx
**/
@@ -1822,9 +1822,9 @@
/**
* Transfer native currencies.
*
- * `dest_weight` is the weight for XCM execution on the dest chain, and
- * it would be charged from the transferred assets. If set below
- * requirements, the execution may fail and assets wouldn't be
+ * `dest_weight_limit` is the weight for XCM execution on the dest
+ * chain, and it would be charged from the transferred assets. If set
+ * below requirements, the execution may fail and assets wouldn't be
* received.
*
* It's a no-op if any error on local XCM execution or message sending.
@@ -1833,13 +1833,13 @@
* by the network, and if the receiving chain would handle
* messages correctly.
**/
- transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, u64]>;
+ transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
/**
* Transfer `MultiAsset`.
*
- * `dest_weight` is the weight for XCM execution on the dest chain, and
- * it would be charged from the transferred assets. If set below
- * requirements, the execution may fail and assets wouldn't be
+ * `dest_weight_limit` is the weight for XCM execution on the dest
+ * chain, and it would be charged from the transferred assets. If set
+ * below requirements, the execution may fail and assets wouldn't be
* received.
*
* It's a no-op if any error on local XCM execution or message sending.
@@ -1848,13 +1848,13 @@
* by the network, and if the receiving chain would handle
* messages correctly.
**/
- transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, u64]>;
+ transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
/**
* Transfer several `MultiAsset` specifying the item to be used as fee
*
- * `dest_weight` is the weight for XCM execution on the dest chain, and
- * it would be charged from the transferred assets. If set below
- * requirements, the execution may fail and assets wouldn't be
+ * `dest_weight_limit` is the weight for XCM execution on the dest
+ * chain, and it would be charged from the transferred assets. If set
+ * below requirements, the execution may fail and assets wouldn't be
* received.
*
* `fee_item` is index of the MultiAssets that we want to use for
@@ -1866,13 +1866,13 @@
* by the network, and if the receiving chain would handle
* messages correctly.
**/
- transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, u64]>;
+ transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
/**
* Transfer `MultiAsset` specifying the fee and amount as separate.
*
- * `dest_weight` is the weight for XCM execution on the dest chain, and
- * it would be charged from the transferred assets. If set below
- * requirements, the execution may fail and assets wouldn't be
+ * `dest_weight_limit` is the weight for XCM execution on the dest
+ * chain, and it would be charged from the transferred assets. If set
+ * below requirements, the execution may fail and assets wouldn't be
* received.
*
* `fee` is the multiasset to be spent to pay for execution in
@@ -1890,13 +1890,13 @@
* by the network, and if the receiving chain would handle
* messages correctly.
**/
- transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, u64]>;
+ transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
/**
* Transfer several currencies specifying the item to be used as fee
*
- * `dest_weight` is the weight for XCM execution on the dest chain, and
- * it would be charged from the transferred assets. If set below
- * requirements, the execution may fail and assets wouldn't be
+ * `dest_weight_limit` is the weight for XCM execution on the dest
+ * chain, and it would be charged from the transferred assets. If set
+ * below requirements, the execution may fail and assets wouldn't be
* received.
*
* `fee_item` is index of the currencies tuple that we want to use for
@@ -1908,14 +1908,14 @@
* by the network, and if the receiving chain would handle
* messages correctly.
**/
- transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, u64]>;
+ transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
/**
* Transfer native currencies specifying the fee and amount as
* separate.
*
- * `dest_weight` is the weight for XCM execution on the dest chain, and
- * it would be charged from the transferred assets. If set below
- * requirements, the execution may fail and assets wouldn't be
+ * `dest_weight_limit` is the weight for XCM execution on the dest
+ * chain, and it would be charged from the transferred assets. If set
+ * below requirements, the execution may fail and assets wouldn't be
* received.
*
* `fee` is the amount to be spent to pay for execution in destination
@@ -1932,7 +1932,7 @@
* by the network, and if the receiving chain would handle
* messages correctly.
**/
- transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, u64]>;
+ transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -24,7 +24,7 @@
import type { StatementKind } from '@polkadot/types/interfaces/claims';
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
-import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
+import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
@@ -47,7 +47,7 @@
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
-import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
import type { Approvals } from '@polkadot/types/interfaces/poll';
import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
@@ -273,10 +273,12 @@
ContractExecResultTo255: ContractExecResultTo255;
ContractExecResultTo260: ContractExecResultTo260;
ContractExecResultTo267: ContractExecResultTo267;
+ ContractExecResultU64: ContractExecResultU64;
ContractInfo: ContractInfo;
ContractInstantiateResult: ContractInstantiateResult;
ContractInstantiateResultTo267: ContractInstantiateResultTo267;
ContractInstantiateResultTo299: ContractInstantiateResultTo299;
+ ContractInstantiateResultU64: ContractInstantiateResultU64;
ContractLayoutArray: ContractLayoutArray;
ContractLayoutCell: ContractLayoutCell;
ContractLayoutEnum: ContractLayoutEnum;
@@ -1067,6 +1069,8 @@
RpcMethods: RpcMethods;
RuntimeDbWeight: RuntimeDbWeight;
RuntimeDispatchInfo: RuntimeDispatchInfo;
+ RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
+ RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
RuntimeVersion: RuntimeVersion;
RuntimeVersionApi: RuntimeVersionApi;
RuntimeVersionPartial: RuntimeVersionPartial;
@@ -1198,6 +1202,7 @@
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
+ SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
Sr25519Signature: Sr25519Signature;
StakingLedger: StakingLedger;
StakingLedgerTo223: StakingLedgerTo223;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -3,7 +3,7 @@
import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
import type { Event } from '@polkadot/types/interfaces/system';
/** @name CumulusPalletDmpQueueCall */
@@ -11,14 +11,14 @@
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
readonly index: u64;
- readonly weightLimit: Weight;
+ readonly weightLimit: u64;
} & Struct;
readonly type: 'ServiceOverweight';
}
/** @name CumulusPalletDmpQueueConfigData */
export interface CumulusPalletDmpQueueConfigData extends Struct {
- readonly maxIndividual: Weight;
+ readonly maxIndividual: SpWeightsWeightV2Weight;
}
/** @name CumulusPalletDmpQueueError */
@@ -46,19 +46,19 @@
readonly isWeightExhausted: boolean;
readonly asWeightExhausted: {
readonly messageId: U8aFixed;
- readonly remainingWeight: Weight;
- readonly requiredWeight: Weight;
+ readonly remainingWeight: SpWeightsWeightV2Weight;
+ readonly requiredWeight: SpWeightsWeightV2Weight;
} & Struct;
readonly isOverweightEnqueued: boolean;
readonly asOverweightEnqueued: {
readonly messageId: U8aFixed;
readonly overweightIndex: u64;
- readonly requiredWeight: Weight;
+ readonly requiredWeight: SpWeightsWeightV2Weight;
} & Struct;
readonly isOverweightServiced: boolean;
readonly asOverweightServiced: {
readonly overweightIndex: u64;
- readonly weightUsed: Weight;
+ readonly weightUsed: SpWeightsWeightV2Weight;
} & Struct;
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
@@ -122,7 +122,7 @@
} & Struct;
readonly isDownwardMessagesProcessed: boolean;
readonly asDownwardMessagesProcessed: {
- readonly weightUsed: Weight;
+ readonly weightUsed: SpWeightsWeightV2Weight;
readonly dmqHead: H256;
} & Struct;
readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
@@ -166,7 +166,7 @@
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
readonly index: u64;
- readonly weightLimit: Weight;
+ readonly weightLimit: u64;
} & Struct;
readonly isSuspendXcmExecution: boolean;
readonly isResumeXcmExecution: boolean;
@@ -184,15 +184,15 @@
} & Struct;
readonly isUpdateThresholdWeight: boolean;
readonly asUpdateThresholdWeight: {
- readonly new_: Weight;
+ readonly new_: u64;
} & Struct;
readonly isUpdateWeightRestrictDecay: boolean;
readonly asUpdateWeightRestrictDecay: {
- readonly new_: Weight;
+ readonly new_: u64;
} & Struct;
readonly isUpdateXcmpMaxIndividualWeight: boolean;
readonly asUpdateXcmpMaxIndividualWeight: {
- readonly new_: Weight;
+ readonly new_: u64;
} & Struct;
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
@@ -212,13 +212,13 @@
readonly isSuccess: boolean;
readonly asSuccess: {
readonly messageHash: Option<H256>;
- readonly weight: Weight;
+ readonly weight: SpWeightsWeightV2Weight;
} & Struct;
readonly isFail: boolean;
readonly asFail: {
readonly messageHash: Option<H256>;
readonly error: XcmV2TraitsError;
- readonly weight: Weight;
+ readonly weight: SpWeightsWeightV2Weight;
} & Struct;
readonly isBadVersion: boolean;
readonly asBadVersion: {
@@ -241,12 +241,12 @@
readonly sender: u32;
readonly sentAt: u32;
readonly index: u64;
- readonly required: Weight;
+ readonly required: SpWeightsWeightV2Weight;
} & Struct;
readonly isOverweightServiced: boolean;
readonly asOverweightServiced: {
readonly index: u64;
- readonly used: Weight;
+ readonly used: SpWeightsWeightV2Weight;
} & Struct;
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
@@ -286,9 +286,9 @@
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
readonly resumeThreshold: u32;
- readonly thresholdWeight: Weight;
- readonly weightRestrictDecay: Weight;
- readonly xcmpMaxIndividualWeight: Weight;
+ readonly thresholdWeight: SpWeightsWeightV2Weight;
+ readonly weightRestrictDecay: SpWeightsWeightV2Weight;
+ readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
/** @name CumulusPrimitivesParachainInherentParachainInherentData */
@@ -511,7 +511,7 @@
/** @name FrameSupportDispatchDispatchInfo */
export interface FrameSupportDispatchDispatchInfo extends Struct {
- readonly weight: Weight;
+ readonly weight: SpWeightsWeightV2Weight;
readonly class: FrameSupportDispatchDispatchClass;
readonly paysFee: FrameSupportDispatchPays;
}
@@ -532,9 +532,9 @@
/** @name FrameSupportDispatchPerDispatchClassWeight */
export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
- readonly normal: Weight;
- readonly operational: Weight;
- readonly mandatory: Weight;
+ readonly normal: SpWeightsWeightV2Weight;
+ readonly operational: SpWeightsWeightV2Weight;
+ readonly mandatory: SpWeightsWeightV2Weight;
}
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */
@@ -688,17 +688,17 @@
/** @name FrameSystemLimitsBlockWeights */
export interface FrameSystemLimitsBlockWeights extends Struct {
- readonly baseBlock: Weight;
- readonly maxBlock: Weight;
+ readonly baseBlock: SpWeightsWeightV2Weight;
+ readonly maxBlock: SpWeightsWeightV2Weight;
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
/** @name FrameSystemLimitsWeightsPerClass */
export interface FrameSystemLimitsWeightsPerClass extends Struct {
- readonly baseExtrinsic: Weight;
- readonly maxExtrinsic: Option<Weight>;
- readonly maxTotal: Option<Weight>;
- readonly reserved: Option<Weight>;
+ readonly baseExtrinsic: SpWeightsWeightV2Weight;
+ readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
+ readonly maxTotal: Option<SpWeightsWeightV2Weight>;
+ readonly reserved: Option<SpWeightsWeightV2Weight>;
}
/** @name FrameSystemPhase */
@@ -954,13 +954,13 @@
readonly currencyId: PalletForeignAssetsAssetIds;
readonly amount: u128;
readonly dest: XcmVersionedMultiLocation;
- readonly destWeight: u64;
+ readonly destWeightLimit: XcmV2WeightLimit;
} & Struct;
readonly isTransferMultiasset: boolean;
readonly asTransferMultiasset: {
readonly asset: XcmVersionedMultiAsset;
readonly dest: XcmVersionedMultiLocation;
- readonly destWeight: u64;
+ readonly destWeightLimit: XcmV2WeightLimit;
} & Struct;
readonly isTransferWithFee: boolean;
readonly asTransferWithFee: {
@@ -968,28 +968,28 @@
readonly amount: u128;
readonly fee: u128;
readonly dest: XcmVersionedMultiLocation;
- readonly destWeight: u64;
+ readonly destWeightLimit: XcmV2WeightLimit;
} & Struct;
readonly isTransferMultiassetWithFee: boolean;
readonly asTransferMultiassetWithFee: {
readonly asset: XcmVersionedMultiAsset;
readonly fee: XcmVersionedMultiAsset;
readonly dest: XcmVersionedMultiLocation;
- readonly destWeight: u64;
+ readonly destWeightLimit: XcmV2WeightLimit;
} & Struct;
readonly isTransferMulticurrencies: boolean;
readonly asTransferMulticurrencies: {
readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
readonly feeItem: u32;
readonly dest: XcmVersionedMultiLocation;
- readonly destWeight: u64;
+ readonly destWeightLimit: XcmV2WeightLimit;
} & Struct;
readonly isTransferMultiassets: boolean;
readonly asTransferMultiassets: {
readonly assets: XcmVersionedMultiAssets;
readonly feeItem: u32;
readonly dest: XcmVersionedMultiLocation;
- readonly destWeight: u64;
+ readonly destWeightLimit: XcmV2WeightLimit;
} & Struct;
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
@@ -1960,7 +1960,7 @@
readonly isSudoUncheckedWeight: boolean;
readonly asSudoUncheckedWeight: {
readonly call: Call;
- readonly weight: Weight;
+ readonly weight: SpWeightsWeightV2Weight;
} & Struct;
readonly isSetKey: boolean;
readonly asSetKey: {
@@ -2504,7 +2504,7 @@
readonly isExecute: boolean;
readonly asExecute: {
readonly message: XcmVersionedXcm;
- readonly maxWeight: Weight;
+ readonly maxWeight: u64;
} & Struct;
readonly isForceXcmVersion: boolean;
readonly asForceXcmVersion: {
@@ -2573,7 +2573,7 @@
readonly isNotified: boolean;
readonly asNotified: ITuple<[u64, u8, u8]>;
readonly isNotifyOverweight: boolean;
- readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;
+ readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;
readonly isNotifyDispatchError: boolean;
readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;
readonly isNotifyDecodeFailed: boolean;
@@ -2594,7 +2594,9 @@
readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;
readonly isNotifyTargetMigrationFail: boolean;
readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
- readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
+ readonly isAssetsClaimed: boolean;
+ readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+ readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
}
/** @name PalletXcmOrigin */
@@ -2872,7 +2874,10 @@
readonly asArithmetic: SpRuntimeArithmeticError;
readonly isTransactional: boolean;
readonly asTransactional: SpRuntimeTransactionalError;
- readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
+ readonly isExhausted: boolean;
+ readonly isCorruption: boolean;
+ readonly isUnavailable: boolean;
+ readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
}
/** @name SpRuntimeModuleError */
@@ -2934,6 +2939,12 @@
readonly write: u64;
}
+/** @name SpWeightsWeightV2Weight */
+export interface SpWeightsWeightV2Weight extends Struct {
+ readonly refTime: Compact<u64>;
+ readonly proofSize: Compact<u64>;
+}
+
/** @name UpDataStructsAccessMode */
export interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -27,18 +27,25 @@
* Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
**/
FrameSupportDispatchPerDispatchClassWeight: {
- normal: 'Weight',
- operational: 'Weight',
- mandatory: 'Weight'
+ normal: 'SpWeightsWeightV2Weight',
+ operational: 'SpWeightsWeightV2Weight',
+ mandatory: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup12: sp_runtime::generic::digest::Digest
+ * Lookup8: sp_weights::weight_v2::Weight
**/
+ SpWeightsWeightV2Weight: {
+ refTime: 'Compact<u64>',
+ proofSize: 'Compact<u64>'
+ },
+ /**
+ * Lookup13: sp_runtime::generic::digest::Digest
+ **/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup14: sp_runtime::generic::digest::DigestItem
+ * Lookup15: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -54,7 +61,7 @@
}
},
/**
- * Lookup17: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
+ * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -62,7 +69,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup19: frame_system::pallet::Event<T>
+ * Lookup20: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -90,27 +97,27 @@
}
},
/**
- * Lookup20: frame_support::dispatch::DispatchInfo
+ * Lookup21: frame_support::dispatch::DispatchInfo
**/
FrameSupportDispatchDispatchInfo: {
- weight: 'Weight',
+ weight: 'SpWeightsWeightV2Weight',
class: 'FrameSupportDispatchDispatchClass',
paysFee: 'FrameSupportDispatchPays'
},
/**
- * Lookup21: frame_support::dispatch::DispatchClass
+ * Lookup22: frame_support::dispatch::DispatchClass
**/
FrameSupportDispatchDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup22: frame_support::dispatch::Pays
+ * Lookup23: frame_support::dispatch::Pays
**/
FrameSupportDispatchPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup23: sp_runtime::DispatchError
+ * Lookup24: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -123,36 +130,39 @@
TooManyConsumers: 'Null',
Token: 'SpRuntimeTokenError',
Arithmetic: 'SpRuntimeArithmeticError',
- Transactional: 'SpRuntimeTransactionalError'
+ Transactional: 'SpRuntimeTransactionalError',
+ Exhausted: 'Null',
+ Corruption: 'Null',
+ Unavailable: 'Null'
}
},
/**
- * Lookup24: sp_runtime::ModuleError
+ * Lookup25: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup25: sp_runtime::TokenError
+ * Lookup26: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup26: sp_runtime::ArithmeticError
+ * Lookup27: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup27: sp_runtime::TransactionalError
+ * Lookup28: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup28: cumulus_pallet_parachain_system::pallet::Event<T>
+ * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>
**/
CumulusPalletParachainSystemEvent: {
_enum: {
@@ -168,13 +178,13 @@
count: 'u32',
},
DownwardMessagesProcessed: {
- weightUsed: 'Weight',
+ weightUsed: 'SpWeightsWeightV2Weight',
dmqHead: 'H256'
}
}
},
/**
- * Lookup29: pallet_balances::pallet::Event<T, I>
+ * Lookup30: pallet_balances::pallet::Event<T, I>
**/
PalletBalancesEvent: {
_enum: {
@@ -225,13 +235,13 @@
}
},
/**
- * Lookup30: frame_support::traits::tokens::misc::BalanceStatus
+ * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
**/
FrameSupportTokensMiscBalanceStatus: {
_enum: ['Free', 'Reserved']
},
/**
- * Lookup31: pallet_transaction_payment::pallet::Event<T>
+ * Lookup32: pallet_transaction_payment::pallet::Event<T>
**/
PalletTransactionPaymentEvent: {
_enum: {
@@ -243,7 +253,7 @@
}
},
/**
- * Lookup32: pallet_treasury::pallet::Event<T, I>
+ * Lookup33: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -279,7 +289,7 @@
}
},
/**
- * Lookup33: pallet_sudo::pallet::Event<T>
+ * Lookup34: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -295,7 +305,7 @@
}
},
/**
- * Lookup37: orml_vesting::module::Event<T>
+ * Lookup38: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -314,7 +324,7 @@
}
},
/**
- * Lookup38: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -323,7 +333,7 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup40: orml_xtokens::module::Event<T>
+ * Lookup41: orml_xtokens::module::Event<T>
**/
OrmlXtokensModuleEvent: {
_enum: {
@@ -336,18 +346,18 @@
}
},
/**
- * Lookup41: xcm::v1::multiasset::MultiAssets
+ * Lookup42: xcm::v1::multiasset::MultiAssets
**/
XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
/**
- * Lookup43: xcm::v1::multiasset::MultiAsset
+ * Lookup44: xcm::v1::multiasset::MultiAsset
**/
XcmV1MultiAsset: {
id: 'XcmV1MultiassetAssetId',
fun: 'XcmV1MultiassetFungibility'
},
/**
- * Lookup44: xcm::v1::multiasset::AssetId
+ * Lookup45: xcm::v1::multiasset::AssetId
**/
XcmV1MultiassetAssetId: {
_enum: {
@@ -356,14 +366,14 @@
}
},
/**
- * Lookup45: xcm::v1::multilocation::MultiLocation
+ * Lookup46: xcm::v1::multilocation::MultiLocation
**/
XcmV1MultiLocation: {
parents: 'u8',
interior: 'XcmV1MultilocationJunctions'
},
/**
- * Lookup46: xcm::v1::multilocation::Junctions
+ * Lookup47: xcm::v1::multilocation::Junctions
**/
XcmV1MultilocationJunctions: {
_enum: {
@@ -379,7 +389,7 @@
}
},
/**
- * Lookup47: xcm::v1::junction::Junction
+ * Lookup48: xcm::v1::junction::Junction
**/
XcmV1Junction: {
_enum: {
@@ -407,7 +417,7 @@
}
},
/**
- * Lookup49: xcm::v0::junction::NetworkId
+ * Lookup50: xcm::v0::junction::NetworkId
**/
XcmV0JunctionNetworkId: {
_enum: {
@@ -576,12 +586,12 @@
_enum: {
Success: {
messageHash: 'Option<H256>',
- weight: 'Weight',
+ weight: 'SpWeightsWeightV2Weight',
},
Fail: {
messageHash: 'Option<H256>',
error: 'XcmV2TraitsError',
- weight: 'Weight',
+ weight: 'SpWeightsWeightV2Weight',
},
BadVersion: {
messageHash: 'Option<H256>',
@@ -599,11 +609,11 @@
sender: 'u32',
sentAt: 'u32',
index: 'u64',
- required: 'Weight',
+ required: 'SpWeightsWeightV2Weight',
},
OverweightServiced: {
index: 'u64',
- used: 'Weight'
+ used: 'SpWeightsWeightV2Weight'
}
}
},
@@ -650,7 +660,7 @@
UnexpectedResponse: '(XcmV1MultiLocation,u64)',
ResponseReady: '(u64,XcmV2Response)',
Notified: '(u64,u8,u8)',
- NotifyOverweight: '(u64,u8,u8,Weight,Weight)',
+ NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',
NotifyDispatchError: '(u64,u8,u8)',
NotifyDecodeFailed: '(u64,u8,u8)',
InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',
@@ -660,7 +670,8 @@
VersionChangeNotified: '(XcmV1MultiLocation,u32)',
SupportedVersionChanged: '(XcmV1MultiLocation,u32)',
NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',
- NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'
+ NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',
+ AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'
}
},
/**
@@ -963,17 +974,17 @@
},
WeightExhausted: {
messageId: '[u8;32]',
- remainingWeight: 'Weight',
- requiredWeight: 'Weight',
+ remainingWeight: 'SpWeightsWeightV2Weight',
+ requiredWeight: 'SpWeightsWeightV2Weight',
},
OverweightEnqueued: {
messageId: '[u8;32]',
overweightIndex: 'u64',
- requiredWeight: 'Weight',
+ requiredWeight: 'SpWeightsWeightV2Weight',
},
OverweightServiced: {
overweightIndex: 'u64',
- weightUsed: 'Weight'
+ weightUsed: 'SpWeightsWeightV2Weight'
}
}
},
@@ -1394,8 +1405,8 @@
* Lookup133: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
- baseBlock: 'Weight',
- maxBlock: 'Weight',
+ baseBlock: 'SpWeightsWeightV2Weight',
+ maxBlock: 'SpWeightsWeightV2Weight',
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
@@ -1410,10 +1421,10 @@
* Lookup135: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
- baseExtrinsic: 'Weight',
- maxExtrinsic: 'Option<Weight>',
- maxTotal: 'Option<Weight>',
- reserved: 'Option<Weight>'
+ baseExtrinsic: 'SpWeightsWeightV2Weight',
+ maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
+ maxTotal: 'Option<SpWeightsWeightV2Weight>',
+ reserved: 'Option<SpWeightsWeightV2Weight>'
},
/**
* Lookup137: frame_system::limits::BlockLength
@@ -1700,7 +1711,7 @@
},
sudo_unchecked_weight: {
call: 'Call',
- weight: 'Weight',
+ weight: 'SpWeightsWeightV2Weight',
},
set_key: {
_alias: {
@@ -1742,37 +1753,37 @@
currencyId: 'PalletForeignAssetsAssetIds',
amount: 'u128',
dest: 'XcmVersionedMultiLocation',
- destWeight: 'u64',
+ destWeightLimit: 'XcmV2WeightLimit',
},
transfer_multiasset: {
asset: 'XcmVersionedMultiAsset',
dest: 'XcmVersionedMultiLocation',
- destWeight: 'u64',
+ destWeightLimit: 'XcmV2WeightLimit',
},
transfer_with_fee: {
currencyId: 'PalletForeignAssetsAssetIds',
amount: 'u128',
fee: 'u128',
dest: 'XcmVersionedMultiLocation',
- destWeight: 'u64',
+ destWeightLimit: 'XcmV2WeightLimit',
},
transfer_multiasset_with_fee: {
asset: 'XcmVersionedMultiAsset',
fee: 'XcmVersionedMultiAsset',
dest: 'XcmVersionedMultiLocation',
- destWeight: 'u64',
+ destWeightLimit: 'XcmV2WeightLimit',
},
transfer_multicurrencies: {
currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',
feeItem: 'u32',
dest: 'XcmVersionedMultiLocation',
- destWeight: 'u64',
+ destWeightLimit: 'XcmV2WeightLimit',
},
transfer_multiassets: {
assets: 'XcmVersionedMultiAssets',
feeItem: 'u32',
dest: 'XcmVersionedMultiLocation',
- destWeight: 'u64'
+ destWeightLimit: 'XcmV2WeightLimit'
}
}
},
@@ -1826,7 +1837,7 @@
_enum: {
service_overweight: {
index: 'u64',
- weightLimit: 'Weight',
+ weightLimit: 'u64',
},
suspend_xcm_execution: 'Null',
resume_xcm_execution: 'Null',
@@ -1852,19 +1863,19 @@
_alias: {
new_: 'new',
},
- new_: 'Weight',
+ new_: 'u64',
},
update_weight_restrict_decay: {
_alias: {
new_: 'new',
},
- new_: 'Weight',
+ new_: 'u64',
},
update_xcmp_max_individual_weight: {
_alias: {
new_: 'new',
},
- new_: 'Weight'
+ new_: 'u64'
}
}
},
@@ -1891,7 +1902,7 @@
},
execute: {
message: 'XcmVersionedXcm',
- maxWeight: 'Weight',
+ maxWeight: 'u64',
},
force_xcm_version: {
location: 'XcmV1MultiLocation',
@@ -2161,7 +2172,7 @@
_enum: {
service_overweight: {
index: 'u64',
- weightLimit: 'Weight'
+ weightLimit: 'u64'
}
}
},
@@ -3059,9 +3070,9 @@
suspendThreshold: 'u32',
dropThreshold: 'u32',
resumeThreshold: 'u32',
- thresholdWeight: 'Weight',
- weightRestrictDecay: 'Weight',
- xcmpMaxIndividualWeight: 'Weight'
+ thresholdWeight: 'SpWeightsWeightV2Weight',
+ weightRestrictDecay: 'SpWeightsWeightV2Weight',
+ xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
* Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
@@ -3083,7 +3094,7 @@
* Lookup372: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
- maxIndividual: 'Weight'
+ maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
* Lookup373: cumulus_pallet_dmp_queue::PageIndexData
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -215,6 +215,7 @@
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
+ SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
UpDataStructsAccessMode: UpDataStructsAccessMode;
UpDataStructsCollection: UpDataStructsCollection;
UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: Weight;34 readonly operational: Weight;35 readonly mandatory: Weight;36 }3738 /** @name SpRuntimeDigest (12) */39 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }4243 /** @name SpRuntimeDigestDigestItem (14) */44 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;46 readonly asOther: Bytes;47 readonly isConsensus: boolean;48 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;49 readonly isSeal: boolean;50 readonly asSeal: ITuple<[U8aFixed, Bytes]>;51 readonly isPreRuntime: boolean;52 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;53 readonly isRuntimeEnvironmentUpdated: boolean;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }5657 /** @name FrameSystemEventRecord (17) */58 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;60 readonly event: Event;61 readonly topics: Vec<H256>;62 }6364 /** @name FrameSystemEvent (19) */65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {68 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;69 } & Struct;70 readonly isExtrinsicFailed: boolean;71 readonly asExtrinsicFailed: {72 readonly dispatchError: SpRuntimeDispatchError;73 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;74 } & Struct;75 readonly isCodeUpdated: boolean;76 readonly isNewAccount: boolean;77 readonly asNewAccount: {78 readonly account: AccountId32;79 } & Struct;80 readonly isKilledAccount: boolean;81 readonly asKilledAccount: {82 readonly account: AccountId32;83 } & Struct;84 readonly isRemarked: boolean;85 readonly asRemarked: {86 readonly sender: AccountId32;87 readonly hash_: H256;88 } & Struct;89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }9192 /** @name FrameSupportDispatchDispatchInfo (20) */93 interface FrameSupportDispatchDispatchInfo extends Struct {94 readonly weight: Weight;95 readonly class: FrameSupportDispatchDispatchClass;96 readonly paysFee: FrameSupportDispatchPays;97 }9899 /** @name FrameSupportDispatchDispatchClass (21) */100 interface FrameSupportDispatchDispatchClass extends Enum {101 readonly isNormal: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }106107 /** @name FrameSupportDispatchPays (22) */108 interface FrameSupportDispatchPays extends Enum {109 readonly isYes: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';112 }113114 /** @name SpRuntimeDispatchError (23) */115 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;117 readonly isCannotLookup: boolean;118 readonly isBadOrigin: boolean;119 readonly isModule: boolean;120 readonly asModule: SpRuntimeModuleError;121 readonly isConsumerRemaining: boolean;122 readonly isNoProviders: boolean;123 readonly isTooManyConsumers: boolean;124 readonly isToken: boolean;125 readonly asToken: SpRuntimeTokenError;126 readonly isArithmetic: boolean;127 readonly asArithmetic: SpRuntimeArithmeticError;128 readonly isTransactional: boolean;129 readonly asTransactional: SpRuntimeTransactionalError;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';131 }132133 /** @name SpRuntimeModuleError (24) */134 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;136 readonly error: U8aFixed;137 }138139 /** @name SpRuntimeTokenError (25) */140 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;143 readonly isBelowMinimum: boolean;144 readonly isCannotCreate: boolean;145 readonly isUnknownAsset: boolean;146 readonly isFrozen: boolean;147 readonly isUnsupported: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }150151 /** @name SpRuntimeArithmeticError (26) */152 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }158159 /** @name SpRuntimeTransactionalError (27) */160 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';164 }165166 /** @name CumulusPalletParachainSystemEvent (28) */167 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;170 readonly asValidationFunctionApplied: {171 readonly relayChainBlockNum: u32;172 } & Struct;173 readonly isValidationFunctionDiscarded: boolean;174 readonly isUpgradeAuthorized: boolean;175 readonly asUpgradeAuthorized: {176 readonly codeHash: H256;177 } & Struct;178 readonly isDownwardMessagesReceived: boolean;179 readonly asDownwardMessagesReceived: {180 readonly count: u32;181 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: Weight;185 readonly dmqHead: H256;186 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }189190 /** @name PalletBalancesEvent (29) */191 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;193 readonly asEndowed: {194 readonly account: AccountId32;195 readonly freeBalance: u128;196 } & Struct;197 readonly isDustLost: boolean;198 readonly asDustLost: {199 readonly account: AccountId32;200 readonly amount: u128;201 } & Struct;202 readonly isTransfer: boolean;203 readonly asTransfer: {204 readonly from: AccountId32;205 readonly to: AccountId32;206 readonly amount: u128;207 } & Struct;208 readonly isBalanceSet: boolean;209 readonly asBalanceSet: {210 readonly who: AccountId32;211 readonly free: u128;212 readonly reserved: u128;213 } & Struct;214 readonly isReserved: boolean;215 readonly asReserved: {216 readonly who: AccountId32;217 readonly amount: u128;218 } & Struct;219 readonly isUnreserved: boolean;220 readonly asUnreserved: {221 readonly who: AccountId32;222 readonly amount: u128;223 } & Struct;224 readonly isReserveRepatriated: boolean;225 readonly asReserveRepatriated: {226 readonly from: AccountId32;227 readonly to: AccountId32;228 readonly amount: u128;229 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;230 } & Struct;231 readonly isDeposit: boolean;232 readonly asDeposit: {233 readonly who: AccountId32;234 readonly amount: u128;235 } & Struct;236 readonly isWithdraw: boolean;237 readonly asWithdraw: {238 readonly who: AccountId32;239 readonly amount: u128;240 } & Struct;241 readonly isSlashed: boolean;242 readonly asSlashed: {243 readonly who: AccountId32;244 readonly amount: u128;245 } & Struct;246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }248249 /** @name FrameSupportTokensMiscBalanceStatus (30) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;252 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';254 }255256 /** @name PalletTransactionPaymentEvent (31) */257 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {260 readonly who: AccountId32;261 readonly actualFee: u128;262 readonly tip: u128;263 } & Struct;264 readonly type: 'TransactionFeePaid';265 }266267 /** @name PalletTreasuryEvent (32) */268 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;270 readonly asProposed: {271 readonly proposalIndex: u32;272 } & Struct;273 readonly isSpending: boolean;274 readonly asSpending: {275 readonly budgetRemaining: u128;276 } & Struct;277 readonly isAwarded: boolean;278 readonly asAwarded: {279 readonly proposalIndex: u32;280 readonly award: u128;281 readonly account: AccountId32;282 } & Struct;283 readonly isRejected: boolean;284 readonly asRejected: {285 readonly proposalIndex: u32;286 readonly slashed: u128;287 } & Struct;288 readonly isBurnt: boolean;289 readonly asBurnt: {290 readonly burntFunds: u128;291 } & Struct;292 readonly isRollover: boolean;293 readonly asRollover: {294 readonly rolloverBalance: u128;295 } & Struct;296 readonly isDeposit: boolean;297 readonly asDeposit: {298 readonly value: u128;299 } & Struct;300 readonly isSpendApproved: boolean;301 readonly asSpendApproved: {302 readonly proposalIndex: u32;303 readonly amount: u128;304 readonly beneficiary: AccountId32;305 } & Struct;306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }308309 /** @name PalletSudoEvent (33) */310 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;312 readonly asSudid: {313 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;314 } & Struct;315 readonly isKeyChanged: boolean;316 readonly asKeyChanged: {317 readonly oldSudoer: Option<AccountId32>;318 } & Struct;319 readonly isSudoAsDone: boolean;320 readonly asSudoAsDone: {321 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;322 } & Struct;323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }325326 /** @name OrmlVestingModuleEvent (37) */327 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {330 readonly from: AccountId32;331 readonly to: AccountId32;332 readonly vestingSchedule: OrmlVestingVestingSchedule;333 } & Struct;334 readonly isClaimed: boolean;335 readonly asClaimed: {336 readonly who: AccountId32;337 readonly amount: u128;338 } & Struct;339 readonly isVestingSchedulesUpdated: boolean;340 readonly asVestingSchedulesUpdated: {341 readonly who: AccountId32;342 } & Struct;343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }345346 /** @name OrmlVestingVestingSchedule (38) */347 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;349 readonly period: u32;350 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;352 }353354 /** @name OrmlXtokensModuleEvent (40) */355 interface OrmlXtokensModuleEvent extends Enum {356 readonly isTransferredMultiAssets: boolean;357 readonly asTransferredMultiAssets: {358 readonly sender: AccountId32;359 readonly assets: XcmV1MultiassetMultiAssets;360 readonly fee: XcmV1MultiAsset;361 readonly dest: XcmV1MultiLocation;362 } & Struct;363 readonly type: 'TransferredMultiAssets';364 }365366 /** @name XcmV1MultiassetMultiAssets (41) */367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}368369 /** @name XcmV1MultiAsset (43) */370 interface XcmV1MultiAsset extends Struct {371 readonly id: XcmV1MultiassetAssetId;372 readonly fun: XcmV1MultiassetFungibility;373 }374375 /** @name XcmV1MultiassetAssetId (44) */376 interface XcmV1MultiassetAssetId extends Enum {377 readonly isConcrete: boolean;378 readonly asConcrete: XcmV1MultiLocation;379 readonly isAbstract: boolean;380 readonly asAbstract: Bytes;381 readonly type: 'Concrete' | 'Abstract';382 }383384 /** @name XcmV1MultiLocation (45) */385 interface XcmV1MultiLocation extends Struct {386 readonly parents: u8;387 readonly interior: XcmV1MultilocationJunctions;388 }389390 /** @name XcmV1MultilocationJunctions (46) */391 interface XcmV1MultilocationJunctions extends Enum {392 readonly isHere: boolean;393 readonly isX1: boolean;394 readonly asX1: XcmV1Junction;395 readonly isX2: boolean;396 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;397 readonly isX3: boolean;398 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;399 readonly isX4: boolean;400 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;401 readonly isX5: boolean;402 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;403 readonly isX6: boolean;404 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;405 readonly isX7: boolean;406 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;407 readonly isX8: boolean;408 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';410 }411412 /** @name XcmV1Junction (47) */413 interface XcmV1Junction extends Enum {414 readonly isParachain: boolean;415 readonly asParachain: Compact<u32>;416 readonly isAccountId32: boolean;417 readonly asAccountId32: {418 readonly network: XcmV0JunctionNetworkId;419 readonly id: U8aFixed;420 } & Struct;421 readonly isAccountIndex64: boolean;422 readonly asAccountIndex64: {423 readonly network: XcmV0JunctionNetworkId;424 readonly index: Compact<u64>;425 } & Struct;426 readonly isAccountKey20: boolean;427 readonly asAccountKey20: {428 readonly network: XcmV0JunctionNetworkId;429 readonly key: U8aFixed;430 } & Struct;431 readonly isPalletInstance: boolean;432 readonly asPalletInstance: u8;433 readonly isGeneralIndex: boolean;434 readonly asGeneralIndex: Compact<u128>;435 readonly isGeneralKey: boolean;436 readonly asGeneralKey: Bytes;437 readonly isOnlyChild: boolean;438 readonly isPlurality: boolean;439 readonly asPlurality: {440 readonly id: XcmV0JunctionBodyId;441 readonly part: XcmV0JunctionBodyPart;442 } & Struct;443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';444 }445446 /** @name XcmV0JunctionNetworkId (49) */447 interface XcmV0JunctionNetworkId extends Enum {448 readonly isAny: boolean;449 readonly isNamed: boolean;450 readonly asNamed: Bytes;451 readonly isPolkadot: boolean;452 readonly isKusama: boolean;453 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';454 }455456 /** @name XcmV0JunctionBodyId (53) */457 interface XcmV0JunctionBodyId extends Enum {458 readonly isUnit: boolean;459 readonly isNamed: boolean;460 readonly asNamed: Bytes;461 readonly isIndex: boolean;462 readonly asIndex: Compact<u32>;463 readonly isExecutive: boolean;464 readonly isTechnical: boolean;465 readonly isLegislative: boolean;466 readonly isJudicial: boolean;467 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';468 }469470 /** @name XcmV0JunctionBodyPart (54) */471 interface XcmV0JunctionBodyPart extends Enum {472 readonly isVoice: boolean;473 readonly isMembers: boolean;474 readonly asMembers: {475 readonly count: Compact<u32>;476 } & Struct;477 readonly isFraction: boolean;478 readonly asFraction: {479 readonly nom: Compact<u32>;480 readonly denom: Compact<u32>;481 } & Struct;482 readonly isAtLeastProportion: boolean;483 readonly asAtLeastProportion: {484 readonly nom: Compact<u32>;485 readonly denom: Compact<u32>;486 } & Struct;487 readonly isMoreThanProportion: boolean;488 readonly asMoreThanProportion: {489 readonly nom: Compact<u32>;490 readonly denom: Compact<u32>;491 } & Struct;492 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';493 }494495 /** @name XcmV1MultiassetFungibility (55) */496 interface XcmV1MultiassetFungibility extends Enum {497 readonly isFungible: boolean;498 readonly asFungible: Compact<u128>;499 readonly isNonFungible: boolean;500 readonly asNonFungible: XcmV1MultiassetAssetInstance;501 readonly type: 'Fungible' | 'NonFungible';502 }503504 /** @name XcmV1MultiassetAssetInstance (56) */505 interface XcmV1MultiassetAssetInstance extends Enum {506 readonly isUndefined: boolean;507 readonly isIndex: boolean;508 readonly asIndex: Compact<u128>;509 readonly isArray4: boolean;510 readonly asArray4: U8aFixed;511 readonly isArray8: boolean;512 readonly asArray8: U8aFixed;513 readonly isArray16: boolean;514 readonly asArray16: U8aFixed;515 readonly isArray32: boolean;516 readonly asArray32: U8aFixed;517 readonly isBlob: boolean;518 readonly asBlob: Bytes;519 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';520 }521522 /** @name OrmlTokensModuleEvent (59) */523 interface OrmlTokensModuleEvent extends Enum {524 readonly isEndowed: boolean;525 readonly asEndowed: {526 readonly currencyId: PalletForeignAssetsAssetIds;527 readonly who: AccountId32;528 readonly amount: u128;529 } & Struct;530 readonly isDustLost: boolean;531 readonly asDustLost: {532 readonly currencyId: PalletForeignAssetsAssetIds;533 readonly who: AccountId32;534 readonly amount: u128;535 } & Struct;536 readonly isTransfer: boolean;537 readonly asTransfer: {538 readonly currencyId: PalletForeignAssetsAssetIds;539 readonly from: AccountId32;540 readonly to: AccountId32;541 readonly amount: u128;542 } & Struct;543 readonly isReserved: boolean;544 readonly asReserved: {545 readonly currencyId: PalletForeignAssetsAssetIds;546 readonly who: AccountId32;547 readonly amount: u128;548 } & Struct;549 readonly isUnreserved: boolean;550 readonly asUnreserved: {551 readonly currencyId: PalletForeignAssetsAssetIds;552 readonly who: AccountId32;553 readonly amount: u128;554 } & Struct;555 readonly isReserveRepatriated: boolean;556 readonly asReserveRepatriated: {557 readonly currencyId: PalletForeignAssetsAssetIds;558 readonly from: AccountId32;559 readonly to: AccountId32;560 readonly amount: u128;561 readonly status: FrameSupportTokensMiscBalanceStatus;562 } & Struct;563 readonly isBalanceSet: boolean;564 readonly asBalanceSet: {565 readonly currencyId: PalletForeignAssetsAssetIds;566 readonly who: AccountId32;567 readonly free: u128;568 readonly reserved: u128;569 } & Struct;570 readonly isTotalIssuanceSet: boolean;571 readonly asTotalIssuanceSet: {572 readonly currencyId: PalletForeignAssetsAssetIds;573 readonly amount: u128;574 } & Struct;575 readonly isWithdrawn: boolean;576 readonly asWithdrawn: {577 readonly currencyId: PalletForeignAssetsAssetIds;578 readonly who: AccountId32;579 readonly amount: u128;580 } & Struct;581 readonly isSlashed: boolean;582 readonly asSlashed: {583 readonly currencyId: PalletForeignAssetsAssetIds;584 readonly who: AccountId32;585 readonly freeAmount: u128;586 readonly reservedAmount: u128;587 } & Struct;588 readonly isDeposited: boolean;589 readonly asDeposited: {590 readonly currencyId: PalletForeignAssetsAssetIds;591 readonly who: AccountId32;592 readonly amount: u128;593 } & Struct;594 readonly isLockSet: boolean;595 readonly asLockSet: {596 readonly lockId: U8aFixed;597 readonly currencyId: PalletForeignAssetsAssetIds;598 readonly who: AccountId32;599 readonly amount: u128;600 } & Struct;601 readonly isLockRemoved: boolean;602 readonly asLockRemoved: {603 readonly lockId: U8aFixed;604 readonly currencyId: PalletForeignAssetsAssetIds;605 readonly who: AccountId32;606 } & Struct;607 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';608 }609610 /** @name PalletForeignAssetsAssetIds (60) */611 interface PalletForeignAssetsAssetIds extends Enum {612 readonly isForeignAssetId: boolean;613 readonly asForeignAssetId: u32;614 readonly isNativeAssetId: boolean;615 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;616 readonly type: 'ForeignAssetId' | 'NativeAssetId';617 }618619 /** @name PalletForeignAssetsNativeCurrency (61) */620 interface PalletForeignAssetsNativeCurrency extends Enum {621 readonly isHere: boolean;622 readonly isParent: boolean;623 readonly type: 'Here' | 'Parent';624 }625626 /** @name CumulusPalletXcmpQueueEvent (62) */627 interface CumulusPalletXcmpQueueEvent extends Enum {628 readonly isSuccess: boolean;629 readonly asSuccess: {630 readonly messageHash: Option<H256>;631 readonly weight: Weight;632 } & Struct;633 readonly isFail: boolean;634 readonly asFail: {635 readonly messageHash: Option<H256>;636 readonly error: XcmV2TraitsError;637 readonly weight: Weight;638 } & Struct;639 readonly isBadVersion: boolean;640 readonly asBadVersion: {641 readonly messageHash: Option<H256>;642 } & Struct;643 readonly isBadFormat: boolean;644 readonly asBadFormat: {645 readonly messageHash: Option<H256>;646 } & Struct;647 readonly isUpwardMessageSent: boolean;648 readonly asUpwardMessageSent: {649 readonly messageHash: Option<H256>;650 } & Struct;651 readonly isXcmpMessageSent: boolean;652 readonly asXcmpMessageSent: {653 readonly messageHash: Option<H256>;654 } & Struct;655 readonly isOverweightEnqueued: boolean;656 readonly asOverweightEnqueued: {657 readonly sender: u32;658 readonly sentAt: u32;659 readonly index: u64;660 readonly required: Weight;661 } & Struct;662 readonly isOverweightServiced: boolean;663 readonly asOverweightServiced: {664 readonly index: u64;665 readonly used: Weight;666 } & Struct;667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';668 }669670 /** @name XcmV2TraitsError (64) */671 interface XcmV2TraitsError extends Enum {672 readonly isOverflow: boolean;673 readonly isUnimplemented: boolean;674 readonly isUntrustedReserveLocation: boolean;675 readonly isUntrustedTeleportLocation: boolean;676 readonly isMultiLocationFull: boolean;677 readonly isMultiLocationNotInvertible: boolean;678 readonly isBadOrigin: boolean;679 readonly isInvalidLocation: boolean;680 readonly isAssetNotFound: boolean;681 readonly isFailedToTransactAsset: boolean;682 readonly isNotWithdrawable: boolean;683 readonly isLocationCannotHold: boolean;684 readonly isExceedsMaxMessageSize: boolean;685 readonly isDestinationUnsupported: boolean;686 readonly isTransport: boolean;687 readonly isUnroutable: boolean;688 readonly isUnknownClaim: boolean;689 readonly isFailedToDecode: boolean;690 readonly isMaxWeightInvalid: boolean;691 readonly isNotHoldingFees: boolean;692 readonly isTooExpensive: boolean;693 readonly isTrap: boolean;694 readonly asTrap: u64;695 readonly isUnhandledXcmVersion: boolean;696 readonly isWeightLimitReached: boolean;697 readonly asWeightLimitReached: u64;698 readonly isBarrier: boolean;699 readonly isWeightNotComputable: boolean;700 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';701 }702703 /** @name PalletXcmEvent (66) */704 interface PalletXcmEvent extends Enum {705 readonly isAttempted: boolean;706 readonly asAttempted: XcmV2TraitsOutcome;707 readonly isSent: boolean;708 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;709 readonly isUnexpectedResponse: boolean;710 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;711 readonly isResponseReady: boolean;712 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;713 readonly isNotified: boolean;714 readonly asNotified: ITuple<[u64, u8, u8]>;715 readonly isNotifyOverweight: boolean;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;717 readonly isNotifyDispatchError: boolean;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;719 readonly isNotifyDecodeFailed: boolean;720 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;721 readonly isInvalidResponder: boolean;722 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;723 readonly isInvalidResponderVersion: boolean;724 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;725 readonly isResponseTaken: boolean;726 readonly asResponseTaken: u64;727 readonly isAssetsTrapped: boolean;728 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;729 readonly isVersionChangeNotified: boolean;730 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;731 readonly isSupportedVersionChanged: boolean;732 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;733 readonly isNotifyTargetSendFail: boolean;734 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;735 readonly isNotifyTargetMigrationFail: boolean;736 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';738 }739740 /** @name XcmV2TraitsOutcome (67) */741 interface XcmV2TraitsOutcome extends Enum {742 readonly isComplete: boolean;743 readonly asComplete: u64;744 readonly isIncomplete: boolean;745 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;746 readonly isError: boolean;747 readonly asError: XcmV2TraitsError;748 readonly type: 'Complete' | 'Incomplete' | 'Error';749 }750751 /** @name XcmV2Xcm (68) */752 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}753754 /** @name XcmV2Instruction (70) */755 interface XcmV2Instruction extends Enum {756 readonly isWithdrawAsset: boolean;757 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;758 readonly isReserveAssetDeposited: boolean;759 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;760 readonly isReceiveTeleportedAsset: boolean;761 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;762 readonly isQueryResponse: boolean;763 readonly asQueryResponse: {764 readonly queryId: Compact<u64>;765 readonly response: XcmV2Response;766 readonly maxWeight: Compact<u64>;767 } & Struct;768 readonly isTransferAsset: boolean;769 readonly asTransferAsset: {770 readonly assets: XcmV1MultiassetMultiAssets;771 readonly beneficiary: XcmV1MultiLocation;772 } & Struct;773 readonly isTransferReserveAsset: boolean;774 readonly asTransferReserveAsset: {775 readonly assets: XcmV1MultiassetMultiAssets;776 readonly dest: XcmV1MultiLocation;777 readonly xcm: XcmV2Xcm;778 } & Struct;779 readonly isTransact: boolean;780 readonly asTransact: {781 readonly originType: XcmV0OriginKind;782 readonly requireWeightAtMost: Compact<u64>;783 readonly call: XcmDoubleEncoded;784 } & Struct;785 readonly isHrmpNewChannelOpenRequest: boolean;786 readonly asHrmpNewChannelOpenRequest: {787 readonly sender: Compact<u32>;788 readonly maxMessageSize: Compact<u32>;789 readonly maxCapacity: Compact<u32>;790 } & Struct;791 readonly isHrmpChannelAccepted: boolean;792 readonly asHrmpChannelAccepted: {793 readonly recipient: Compact<u32>;794 } & Struct;795 readonly isHrmpChannelClosing: boolean;796 readonly asHrmpChannelClosing: {797 readonly initiator: Compact<u32>;798 readonly sender: Compact<u32>;799 readonly recipient: Compact<u32>;800 } & Struct;801 readonly isClearOrigin: boolean;802 readonly isDescendOrigin: boolean;803 readonly asDescendOrigin: XcmV1MultilocationJunctions;804 readonly isReportError: boolean;805 readonly asReportError: {806 readonly queryId: Compact<u64>;807 readonly dest: XcmV1MultiLocation;808 readonly maxResponseWeight: Compact<u64>;809 } & Struct;810 readonly isDepositAsset: boolean;811 readonly asDepositAsset: {812 readonly assets: XcmV1MultiassetMultiAssetFilter;813 readonly maxAssets: Compact<u32>;814 readonly beneficiary: XcmV1MultiLocation;815 } & Struct;816 readonly isDepositReserveAsset: boolean;817 readonly asDepositReserveAsset: {818 readonly assets: XcmV1MultiassetMultiAssetFilter;819 readonly maxAssets: Compact<u32>;820 readonly dest: XcmV1MultiLocation;821 readonly xcm: XcmV2Xcm;822 } & Struct;823 readonly isExchangeAsset: boolean;824 readonly asExchangeAsset: {825 readonly give: XcmV1MultiassetMultiAssetFilter;826 readonly receive: XcmV1MultiassetMultiAssets;827 } & Struct;828 readonly isInitiateReserveWithdraw: boolean;829 readonly asInitiateReserveWithdraw: {830 readonly assets: XcmV1MultiassetMultiAssetFilter;831 readonly reserve: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isInitiateTeleport: boolean;835 readonly asInitiateTeleport: {836 readonly assets: XcmV1MultiassetMultiAssetFilter;837 readonly dest: XcmV1MultiLocation;838 readonly xcm: XcmV2Xcm;839 } & Struct;840 readonly isQueryHolding: boolean;841 readonly asQueryHolding: {842 readonly queryId: Compact<u64>;843 readonly dest: XcmV1MultiLocation;844 readonly assets: XcmV1MultiassetMultiAssetFilter;845 readonly maxResponseWeight: Compact<u64>;846 } & Struct;847 readonly isBuyExecution: boolean;848 readonly asBuyExecution: {849 readonly fees: XcmV1MultiAsset;850 readonly weightLimit: XcmV2WeightLimit;851 } & Struct;852 readonly isRefundSurplus: boolean;853 readonly isSetErrorHandler: boolean;854 readonly asSetErrorHandler: XcmV2Xcm;855 readonly isSetAppendix: boolean;856 readonly asSetAppendix: XcmV2Xcm;857 readonly isClearError: boolean;858 readonly isClaimAsset: boolean;859 readonly asClaimAsset: {860 readonly assets: XcmV1MultiassetMultiAssets;861 readonly ticket: XcmV1MultiLocation;862 } & Struct;863 readonly isTrap: boolean;864 readonly asTrap: Compact<u64>;865 readonly isSubscribeVersion: boolean;866 readonly asSubscribeVersion: {867 readonly queryId: Compact<u64>;868 readonly maxResponseWeight: Compact<u64>;869 } & Struct;870 readonly isUnsubscribeVersion: boolean;871 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';872 }873874 /** @name XcmV2Response (71) */875 interface XcmV2Response extends Enum {876 readonly isNull: boolean;877 readonly isAssets: boolean;878 readonly asAssets: XcmV1MultiassetMultiAssets;879 readonly isExecutionResult: boolean;880 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;881 readonly isVersion: boolean;882 readonly asVersion: u32;883 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';884 }885886 /** @name XcmV0OriginKind (74) */887 interface XcmV0OriginKind extends Enum {888 readonly isNative: boolean;889 readonly isSovereignAccount: boolean;890 readonly isSuperuser: boolean;891 readonly isXcm: boolean;892 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';893 }894895 /** @name XcmDoubleEncoded (75) */896 interface XcmDoubleEncoded extends Struct {897 readonly encoded: Bytes;898 }899900 /** @name XcmV1MultiassetMultiAssetFilter (76) */901 interface XcmV1MultiassetMultiAssetFilter extends Enum {902 readonly isDefinite: boolean;903 readonly asDefinite: XcmV1MultiassetMultiAssets;904 readonly isWild: boolean;905 readonly asWild: XcmV1MultiassetWildMultiAsset;906 readonly type: 'Definite' | 'Wild';907 }908909 /** @name XcmV1MultiassetWildMultiAsset (77) */910 interface XcmV1MultiassetWildMultiAsset extends Enum {911 readonly isAll: boolean;912 readonly isAllOf: boolean;913 readonly asAllOf: {914 readonly id: XcmV1MultiassetAssetId;915 readonly fun: XcmV1MultiassetWildFungibility;916 } & Struct;917 readonly type: 'All' | 'AllOf';918 }919920 /** @name XcmV1MultiassetWildFungibility (78) */921 interface XcmV1MultiassetWildFungibility extends Enum {922 readonly isFungible: boolean;923 readonly isNonFungible: boolean;924 readonly type: 'Fungible' | 'NonFungible';925 }926927 /** @name XcmV2WeightLimit (79) */928 interface XcmV2WeightLimit extends Enum {929 readonly isUnlimited: boolean;930 readonly isLimited: boolean;931 readonly asLimited: Compact<u64>;932 readonly type: 'Unlimited' | 'Limited';933 }934935 /** @name XcmVersionedMultiAssets (81) */936 interface XcmVersionedMultiAssets extends Enum {937 readonly isV0: boolean;938 readonly asV0: Vec<XcmV0MultiAsset>;939 readonly isV1: boolean;940 readonly asV1: XcmV1MultiassetMultiAssets;941 readonly type: 'V0' | 'V1';942 }943944 /** @name XcmV0MultiAsset (83) */945 interface XcmV0MultiAsset extends Enum {946 readonly isNone: boolean;947 readonly isAll: boolean;948 readonly isAllFungible: boolean;949 readonly isAllNonFungible: boolean;950 readonly isAllAbstractFungible: boolean;951 readonly asAllAbstractFungible: {952 readonly id: Bytes;953 } & Struct;954 readonly isAllAbstractNonFungible: boolean;955 readonly asAllAbstractNonFungible: {956 readonly class: Bytes;957 } & Struct;958 readonly isAllConcreteFungible: boolean;959 readonly asAllConcreteFungible: {960 readonly id: XcmV0MultiLocation;961 } & Struct;962 readonly isAllConcreteNonFungible: boolean;963 readonly asAllConcreteNonFungible: {964 readonly class: XcmV0MultiLocation;965 } & Struct;966 readonly isAbstractFungible: boolean;967 readonly asAbstractFungible: {968 readonly id: Bytes;969 readonly amount: Compact<u128>;970 } & Struct;971 readonly isAbstractNonFungible: boolean;972 readonly asAbstractNonFungible: {973 readonly class: Bytes;974 readonly instance: XcmV1MultiassetAssetInstance;975 } & Struct;976 readonly isConcreteFungible: boolean;977 readonly asConcreteFungible: {978 readonly id: XcmV0MultiLocation;979 readonly amount: Compact<u128>;980 } & Struct;981 readonly isConcreteNonFungible: boolean;982 readonly asConcreteNonFungible: {983 readonly class: XcmV0MultiLocation;984 readonly instance: XcmV1MultiassetAssetInstance;985 } & Struct;986 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';987 }988989 /** @name XcmV0MultiLocation (84) */990 interface XcmV0MultiLocation extends Enum {991 readonly isNull: boolean;992 readonly isX1: boolean;993 readonly asX1: XcmV0Junction;994 readonly isX2: boolean;995 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;996 readonly isX3: boolean;997 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;998 readonly isX4: boolean;999 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1000 readonly isX5: boolean;1001 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1002 readonly isX6: boolean;1003 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1004 readonly isX7: boolean;1005 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1006 readonly isX8: boolean;1007 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1008 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1009 }10101011 /** @name XcmV0Junction (85) */1012 interface XcmV0Junction extends Enum {1013 readonly isParent: boolean;1014 readonly isParachain: boolean;1015 readonly asParachain: Compact<u32>;1016 readonly isAccountId32: boolean;1017 readonly asAccountId32: {1018 readonly network: XcmV0JunctionNetworkId;1019 readonly id: U8aFixed;1020 } & Struct;1021 readonly isAccountIndex64: boolean;1022 readonly asAccountIndex64: {1023 readonly network: XcmV0JunctionNetworkId;1024 readonly index: Compact<u64>;1025 } & Struct;1026 readonly isAccountKey20: boolean;1027 readonly asAccountKey20: {1028 readonly network: XcmV0JunctionNetworkId;1029 readonly key: U8aFixed;1030 } & Struct;1031 readonly isPalletInstance: boolean;1032 readonly asPalletInstance: u8;1033 readonly isGeneralIndex: boolean;1034 readonly asGeneralIndex: Compact<u128>;1035 readonly isGeneralKey: boolean;1036 readonly asGeneralKey: Bytes;1037 readonly isOnlyChild: boolean;1038 readonly isPlurality: boolean;1039 readonly asPlurality: {1040 readonly id: XcmV0JunctionBodyId;1041 readonly part: XcmV0JunctionBodyPart;1042 } & Struct;1043 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1044 }10451046 /** @name XcmVersionedMultiLocation (86) */1047 interface XcmVersionedMultiLocation extends Enum {1048 readonly isV0: boolean;1049 readonly asV0: XcmV0MultiLocation;1050 readonly isV1: boolean;1051 readonly asV1: XcmV1MultiLocation;1052 readonly type: 'V0' | 'V1';1053 }10541055 /** @name CumulusPalletXcmEvent (87) */1056 interface CumulusPalletXcmEvent extends Enum {1057 readonly isInvalidFormat: boolean;1058 readonly asInvalidFormat: U8aFixed;1059 readonly isUnsupportedVersion: boolean;1060 readonly asUnsupportedVersion: U8aFixed;1061 readonly isExecutedDownward: boolean;1062 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1063 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1064 }10651066 /** @name CumulusPalletDmpQueueEvent (88) */1067 interface CumulusPalletDmpQueueEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: {1070 readonly messageId: U8aFixed;1071 } & Struct;1072 readonly isUnsupportedVersion: boolean;1073 readonly asUnsupportedVersion: {1074 readonly messageId: U8aFixed;1075 } & Struct;1076 readonly isExecutedDownward: boolean;1077 readonly asExecutedDownward: {1078 readonly messageId: U8aFixed;1079 readonly outcome: XcmV2TraitsOutcome;1080 } & Struct;1081 readonly isWeightExhausted: boolean;1082 readonly asWeightExhausted: {1083 readonly messageId: U8aFixed;1084 readonly remainingWeight: Weight;1085 readonly requiredWeight: Weight;1086 } & Struct;1087 readonly isOverweightEnqueued: boolean;1088 readonly asOverweightEnqueued: {1089 readonly messageId: U8aFixed;1090 readonly overweightIndex: u64;1091 readonly requiredWeight: Weight;1092 } & Struct;1093 readonly isOverweightServiced: boolean;1094 readonly asOverweightServiced: {1095 readonly overweightIndex: u64;1096 readonly weightUsed: Weight;1097 } & Struct;1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1099 }11001101 /** @name PalletUniqueRawEvent (89) */1102 interface PalletUniqueRawEvent extends Enum {1103 readonly isCollectionSponsorRemoved: boolean;1104 readonly asCollectionSponsorRemoved: u32;1105 readonly isCollectionAdminAdded: boolean;1106 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1107 readonly isCollectionOwnedChanged: boolean;1108 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1109 readonly isCollectionSponsorSet: boolean;1110 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1111 readonly isSponsorshipConfirmed: boolean;1112 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1113 readonly isCollectionAdminRemoved: boolean;1114 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1115 readonly isAllowListAddressRemoved: boolean;1116 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1117 readonly isAllowListAddressAdded: boolean;1118 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1119 readonly isCollectionLimitSet: boolean;1120 readonly asCollectionLimitSet: u32;1121 readonly isCollectionPermissionSet: boolean;1122 readonly asCollectionPermissionSet: u32;1123 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1124 }11251126 /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */1127 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1128 readonly isSubstrate: boolean;1129 readonly asSubstrate: AccountId32;1130 readonly isEthereum: boolean;1131 readonly asEthereum: H160;1132 readonly type: 'Substrate' | 'Ethereum';1133 }11341135 /** @name PalletUniqueSchedulerV2Event (93) */1136 interface PalletUniqueSchedulerV2Event extends Enum {1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1139 readonly when: u32;1140 readonly index: u32;1141 } & Struct;1142 readonly isCanceled: boolean;1143 readonly asCanceled: {1144 readonly when: u32;1145 readonly index: u32;1146 } & Struct;1147 readonly isDispatched: boolean;1148 readonly asDispatched: {1149 readonly task: ITuple<[u32, u32]>;1150 readonly id: Option<U8aFixed>;1151 readonly result: Result<Null, SpRuntimeDispatchError>;1152 } & Struct;1153 readonly isPriorityChanged: boolean;1154 readonly asPriorityChanged: {1155 readonly task: ITuple<[u32, u32]>;1156 readonly priority: u8;1157 } & Struct;1158 readonly isCallUnavailable: boolean;1159 readonly asCallUnavailable: {1160 readonly task: ITuple<[u32, u32]>;1161 readonly id: Option<U8aFixed>;1162 } & Struct;1163 readonly isPermanentlyOverweight: boolean;1164 readonly asPermanentlyOverweight: {1165 readonly task: ITuple<[u32, u32]>;1166 readonly id: Option<U8aFixed>;1167 } & Struct;1168 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1169 }11701171 /** @name PalletCommonEvent (96) */1172 interface PalletCommonEvent extends Enum {1173 readonly isCollectionCreated: boolean;1174 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1175 readonly isCollectionDestroyed: boolean;1176 readonly asCollectionDestroyed: u32;1177 readonly isItemCreated: boolean;1178 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1179 readonly isItemDestroyed: boolean;1180 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1181 readonly isTransfer: boolean;1182 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1183 readonly isApproved: boolean;1184 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1185 readonly isApprovedForAll: boolean;1186 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1187 readonly isCollectionPropertySet: boolean;1188 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1189 readonly isCollectionPropertyDeleted: boolean;1190 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1191 readonly isTokenPropertySet: boolean;1192 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1193 readonly isTokenPropertyDeleted: boolean;1194 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1195 readonly isPropertyPermissionSet: boolean;1196 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1197 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1198 }11991200 /** @name PalletStructureEvent (100) */1201 interface PalletStructureEvent extends Enum {1202 readonly isExecuted: boolean;1203 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1204 readonly type: 'Executed';1205 }12061207 /** @name PalletRmrkCoreEvent (101) */1208 interface PalletRmrkCoreEvent extends Enum {1209 readonly isCollectionCreated: boolean;1210 readonly asCollectionCreated: {1211 readonly issuer: AccountId32;1212 readonly collectionId: u32;1213 } & Struct;1214 readonly isCollectionDestroyed: boolean;1215 readonly asCollectionDestroyed: {1216 readonly issuer: AccountId32;1217 readonly collectionId: u32;1218 } & Struct;1219 readonly isIssuerChanged: boolean;1220 readonly asIssuerChanged: {1221 readonly oldIssuer: AccountId32;1222 readonly newIssuer: AccountId32;1223 readonly collectionId: u32;1224 } & Struct;1225 readonly isCollectionLocked: boolean;1226 readonly asCollectionLocked: {1227 readonly issuer: AccountId32;1228 readonly collectionId: u32;1229 } & Struct;1230 readonly isNftMinted: boolean;1231 readonly asNftMinted: {1232 readonly owner: AccountId32;1233 readonly collectionId: u32;1234 readonly nftId: u32;1235 } & Struct;1236 readonly isNftBurned: boolean;1237 readonly asNftBurned: {1238 readonly owner: AccountId32;1239 readonly nftId: u32;1240 } & Struct;1241 readonly isNftSent: boolean;1242 readonly asNftSent: {1243 readonly sender: AccountId32;1244 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1245 readonly collectionId: u32;1246 readonly nftId: u32;1247 readonly approvalRequired: bool;1248 } & Struct;1249 readonly isNftAccepted: boolean;1250 readonly asNftAccepted: {1251 readonly sender: AccountId32;1252 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1253 readonly collectionId: u32;1254 readonly nftId: u32;1255 } & Struct;1256 readonly isNftRejected: boolean;1257 readonly asNftRejected: {1258 readonly sender: AccountId32;1259 readonly collectionId: u32;1260 readonly nftId: u32;1261 } & Struct;1262 readonly isPropertySet: boolean;1263 readonly asPropertySet: {1264 readonly collectionId: u32;1265 readonly maybeNftId: Option<u32>;1266 readonly key: Bytes;1267 readonly value: Bytes;1268 } & Struct;1269 readonly isResourceAdded: boolean;1270 readonly asResourceAdded: {1271 readonly nftId: u32;1272 readonly resourceId: u32;1273 } & Struct;1274 readonly isResourceRemoval: boolean;1275 readonly asResourceRemoval: {1276 readonly nftId: u32;1277 readonly resourceId: u32;1278 } & Struct;1279 readonly isResourceAccepted: boolean;1280 readonly asResourceAccepted: {1281 readonly nftId: u32;1282 readonly resourceId: u32;1283 } & Struct;1284 readonly isResourceRemovalAccepted: boolean;1285 readonly asResourceRemovalAccepted: {1286 readonly nftId: u32;1287 readonly resourceId: u32;1288 } & Struct;1289 readonly isPrioritySet: boolean;1290 readonly asPrioritySet: {1291 readonly collectionId: u32;1292 readonly nftId: u32;1293 } & Struct;1294 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1295 }12961297 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1298 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1299 readonly isAccountId: boolean;1300 readonly asAccountId: AccountId32;1301 readonly isCollectionAndNftTuple: boolean;1302 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1303 readonly type: 'AccountId' | 'CollectionAndNftTuple';1304 }13051306 /** @name PalletRmrkEquipEvent (106) */1307 interface PalletRmrkEquipEvent extends Enum {1308 readonly isBaseCreated: boolean;1309 readonly asBaseCreated: {1310 readonly issuer: AccountId32;1311 readonly baseId: u32;1312 } & Struct;1313 readonly isEquippablesUpdated: boolean;1314 readonly asEquippablesUpdated: {1315 readonly baseId: u32;1316 readonly slotId: u32;1317 } & Struct;1318 readonly type: 'BaseCreated' | 'EquippablesUpdated';1319 }13201321 /** @name PalletAppPromotionEvent (107) */1322 interface PalletAppPromotionEvent extends Enum {1323 readonly isStakingRecalculation: boolean;1324 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1325 readonly isStake: boolean;1326 readonly asStake: ITuple<[AccountId32, u128]>;1327 readonly isUnstake: boolean;1328 readonly asUnstake: ITuple<[AccountId32, u128]>;1329 readonly isSetAdmin: boolean;1330 readonly asSetAdmin: AccountId32;1331 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1332 }13331334 /** @name PalletForeignAssetsModuleEvent (108) */1335 interface PalletForeignAssetsModuleEvent extends Enum {1336 readonly isForeignAssetRegistered: boolean;1337 readonly asForeignAssetRegistered: {1338 readonly assetId: u32;1339 readonly assetAddress: XcmV1MultiLocation;1340 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1341 } & Struct;1342 readonly isForeignAssetUpdated: boolean;1343 readonly asForeignAssetUpdated: {1344 readonly assetId: u32;1345 readonly assetAddress: XcmV1MultiLocation;1346 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1347 } & Struct;1348 readonly isAssetRegistered: boolean;1349 readonly asAssetRegistered: {1350 readonly assetId: PalletForeignAssetsAssetIds;1351 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1352 } & Struct;1353 readonly isAssetUpdated: boolean;1354 readonly asAssetUpdated: {1355 readonly assetId: PalletForeignAssetsAssetIds;1356 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1357 } & Struct;1358 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1359 }13601361 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1362 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1363 readonly name: Bytes;1364 readonly symbol: Bytes;1365 readonly decimals: u8;1366 readonly minimalBalance: u128;1367 }13681369 /** @name PalletEvmEvent (110) */1370 interface PalletEvmEvent extends Enum {1371 readonly isLog: boolean;1372 readonly asLog: {1373 readonly log: EthereumLog;1374 } & Struct;1375 readonly isCreated: boolean;1376 readonly asCreated: {1377 readonly address: H160;1378 } & Struct;1379 readonly isCreatedFailed: boolean;1380 readonly asCreatedFailed: {1381 readonly address: H160;1382 } & Struct;1383 readonly isExecuted: boolean;1384 readonly asExecuted: {1385 readonly address: H160;1386 } & Struct;1387 readonly isExecutedFailed: boolean;1388 readonly asExecutedFailed: {1389 readonly address: H160;1390 } & Struct;1391 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1392 }13931394 /** @name EthereumLog (111) */1395 interface EthereumLog extends Struct {1396 readonly address: H160;1397 readonly topics: Vec<H256>;1398 readonly data: Bytes;1399 }14001401 /** @name PalletEthereumEvent (113) */1402 interface PalletEthereumEvent extends Enum {1403 readonly isExecuted: boolean;1404 readonly asExecuted: {1405 readonly from: H160;1406 readonly to: H160;1407 readonly transactionHash: H256;1408 readonly exitReason: EvmCoreErrorExitReason;1409 } & Struct;1410 readonly type: 'Executed';1411 }14121413 /** @name EvmCoreErrorExitReason (114) */1414 interface EvmCoreErrorExitReason extends Enum {1415 readonly isSucceed: boolean;1416 readonly asSucceed: EvmCoreErrorExitSucceed;1417 readonly isError: boolean;1418 readonly asError: EvmCoreErrorExitError;1419 readonly isRevert: boolean;1420 readonly asRevert: EvmCoreErrorExitRevert;1421 readonly isFatal: boolean;1422 readonly asFatal: EvmCoreErrorExitFatal;1423 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1424 }14251426 /** @name EvmCoreErrorExitSucceed (115) */1427 interface EvmCoreErrorExitSucceed extends Enum {1428 readonly isStopped: boolean;1429 readonly isReturned: boolean;1430 readonly isSuicided: boolean;1431 readonly type: 'Stopped' | 'Returned' | 'Suicided';1432 }14331434 /** @name EvmCoreErrorExitError (116) */1435 interface EvmCoreErrorExitError extends Enum {1436 readonly isStackUnderflow: boolean;1437 readonly isStackOverflow: boolean;1438 readonly isInvalidJump: boolean;1439 readonly isInvalidRange: boolean;1440 readonly isDesignatedInvalid: boolean;1441 readonly isCallTooDeep: boolean;1442 readonly isCreateCollision: boolean;1443 readonly isCreateContractLimit: boolean;1444 readonly isOutOfOffset: boolean;1445 readonly isOutOfGas: boolean;1446 readonly isOutOfFund: boolean;1447 readonly isPcUnderflow: boolean;1448 readonly isCreateEmpty: boolean;1449 readonly isOther: boolean;1450 readonly asOther: Text;1451 readonly isInvalidCode: boolean;1452 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1453 }14541455 /** @name EvmCoreErrorExitRevert (119) */1456 interface EvmCoreErrorExitRevert extends Enum {1457 readonly isReverted: boolean;1458 readonly type: 'Reverted';1459 }14601461 /** @name EvmCoreErrorExitFatal (120) */1462 interface EvmCoreErrorExitFatal extends Enum {1463 readonly isNotSupported: boolean;1464 readonly isUnhandledInterrupt: boolean;1465 readonly isCallErrorAsFatal: boolean;1466 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1467 readonly isOther: boolean;1468 readonly asOther: Text;1469 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1470 }14711472 /** @name PalletEvmContractHelpersEvent (121) */1473 interface PalletEvmContractHelpersEvent extends Enum {1474 readonly isContractSponsorSet: boolean;1475 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1476 readonly isContractSponsorshipConfirmed: boolean;1477 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1478 readonly isContractSponsorRemoved: boolean;1479 readonly asContractSponsorRemoved: H160;1480 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1481 }14821483 /** @name PalletEvmMigrationEvent (122) */1484 interface PalletEvmMigrationEvent extends Enum {1485 readonly isTestEvent: boolean;1486 readonly type: 'TestEvent';1487 }14881489 /** @name PalletMaintenanceEvent (123) */1490 interface PalletMaintenanceEvent extends Enum {1491 readonly isMaintenanceEnabled: boolean;1492 readonly isMaintenanceDisabled: boolean;1493 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1494 }14951496 /** @name PalletTestUtilsEvent (124) */1497 interface PalletTestUtilsEvent extends Enum {1498 readonly isValueIsSet: boolean;1499 readonly isShouldRollback: boolean;1500 readonly isBatchCompleted: boolean;1501 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1502 }15031504 /** @name FrameSystemPhase (125) */1505 interface FrameSystemPhase extends Enum {1506 readonly isApplyExtrinsic: boolean;1507 readonly asApplyExtrinsic: u32;1508 readonly isFinalization: boolean;1509 readonly isInitialization: boolean;1510 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1511 }15121513 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1514 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1515 readonly specVersion: Compact<u32>;1516 readonly specName: Text;1517 }15181519 /** @name FrameSystemCall (128) */1520 interface FrameSystemCall extends Enum {1521 readonly isFillBlock: boolean;1522 readonly asFillBlock: {1523 readonly ratio: Perbill;1524 } & Struct;1525 readonly isRemark: boolean;1526 readonly asRemark: {1527 readonly remark: Bytes;1528 } & Struct;1529 readonly isSetHeapPages: boolean;1530 readonly asSetHeapPages: {1531 readonly pages: u64;1532 } & Struct;1533 readonly isSetCode: boolean;1534 readonly asSetCode: {1535 readonly code: Bytes;1536 } & Struct;1537 readonly isSetCodeWithoutChecks: boolean;1538 readonly asSetCodeWithoutChecks: {1539 readonly code: Bytes;1540 } & Struct;1541 readonly isSetStorage: boolean;1542 readonly asSetStorage: {1543 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1544 } & Struct;1545 readonly isKillStorage: boolean;1546 readonly asKillStorage: {1547 readonly keys_: Vec<Bytes>;1548 } & Struct;1549 readonly isKillPrefix: boolean;1550 readonly asKillPrefix: {1551 readonly prefix: Bytes;1552 readonly subkeys: u32;1553 } & Struct;1554 readonly isRemarkWithEvent: boolean;1555 readonly asRemarkWithEvent: {1556 readonly remark: Bytes;1557 } & Struct;1558 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1559 }15601561 /** @name FrameSystemLimitsBlockWeights (133) */1562 interface FrameSystemLimitsBlockWeights extends Struct {1563 readonly baseBlock: Weight;1564 readonly maxBlock: Weight;1565 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1566 }15671568 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */1569 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1570 readonly normal: FrameSystemLimitsWeightsPerClass;1571 readonly operational: FrameSystemLimitsWeightsPerClass;1572 readonly mandatory: FrameSystemLimitsWeightsPerClass;1573 }15741575 /** @name FrameSystemLimitsWeightsPerClass (135) */1576 interface FrameSystemLimitsWeightsPerClass extends Struct {1577 readonly baseExtrinsic: Weight;1578 readonly maxExtrinsic: Option<Weight>;1579 readonly maxTotal: Option<Weight>;1580 readonly reserved: Option<Weight>;1581 }15821583 /** @name FrameSystemLimitsBlockLength (137) */1584 interface FrameSystemLimitsBlockLength extends Struct {1585 readonly max: FrameSupportDispatchPerDispatchClassU32;1586 }15871588 /** @name FrameSupportDispatchPerDispatchClassU32 (138) */1589 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1590 readonly normal: u32;1591 readonly operational: u32;1592 readonly mandatory: u32;1593 }15941595 /** @name SpWeightsRuntimeDbWeight (139) */1596 interface SpWeightsRuntimeDbWeight extends Struct {1597 readonly read: u64;1598 readonly write: u64;1599 }16001601 /** @name SpVersionRuntimeVersion (140) */1602 interface SpVersionRuntimeVersion extends Struct {1603 readonly specName: Text;1604 readonly implName: Text;1605 readonly authoringVersion: u32;1606 readonly specVersion: u32;1607 readonly implVersion: u32;1608 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1609 readonly transactionVersion: u32;1610 readonly stateVersion: u8;1611 }16121613 /** @name FrameSystemError (145) */1614 interface FrameSystemError extends Enum {1615 readonly isInvalidSpecName: boolean;1616 readonly isSpecVersionNeedsToIncrease: boolean;1617 readonly isFailedToExtractRuntimeVersion: boolean;1618 readonly isNonDefaultComposite: boolean;1619 readonly isNonZeroRefCount: boolean;1620 readonly isCallFiltered: boolean;1621 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1622 }16231624 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1625 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1626 readonly parentHead: Bytes;1627 readonly relayParentNumber: u32;1628 readonly relayParentStorageRoot: H256;1629 readonly maxPovSize: u32;1630 }16311632 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1633 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1634 readonly isPresent: boolean;1635 readonly type: 'Present';1636 }16371638 /** @name SpTrieStorageProof (150) */1639 interface SpTrieStorageProof extends Struct {1640 readonly trieNodes: BTreeSet<Bytes>;1641 }16421643 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1644 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1645 readonly dmqMqcHead: H256;1646 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1647 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1648 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1649 }16501651 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1652 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1653 readonly maxCapacity: u32;1654 readonly maxTotalSize: u32;1655 readonly maxMessageSize: u32;1656 readonly msgCount: u32;1657 readonly totalSize: u32;1658 readonly mqcHead: Option<H256>;1659 }16601661 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1662 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1663 readonly maxCodeSize: u32;1664 readonly maxHeadDataSize: u32;1665 readonly maxUpwardQueueCount: u32;1666 readonly maxUpwardQueueSize: u32;1667 readonly maxUpwardMessageSize: u32;1668 readonly maxUpwardMessageNumPerCandidate: u32;1669 readonly hrmpMaxMessageNumPerCandidate: u32;1670 readonly validationUpgradeCooldown: u32;1671 readonly validationUpgradeDelay: u32;1672 }16731674 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1675 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1676 readonly recipient: u32;1677 readonly data: Bytes;1678 }16791680 /** @name CumulusPalletParachainSystemCall (163) */1681 interface CumulusPalletParachainSystemCall extends Enum {1682 readonly isSetValidationData: boolean;1683 readonly asSetValidationData: {1684 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1685 } & Struct;1686 readonly isSudoSendUpwardMessage: boolean;1687 readonly asSudoSendUpwardMessage: {1688 readonly message: Bytes;1689 } & Struct;1690 readonly isAuthorizeUpgrade: boolean;1691 readonly asAuthorizeUpgrade: {1692 readonly codeHash: H256;1693 } & Struct;1694 readonly isEnactAuthorizedUpgrade: boolean;1695 readonly asEnactAuthorizedUpgrade: {1696 readonly code: Bytes;1697 } & Struct;1698 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1699 }17001701 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1702 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1703 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1704 readonly relayChainState: SpTrieStorageProof;1705 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1706 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1707 }17081709 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1710 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1711 readonly sentAt: u32;1712 readonly msg: Bytes;1713 }17141715 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1716 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1717 readonly sentAt: u32;1718 readonly data: Bytes;1719 }17201721 /** @name CumulusPalletParachainSystemError (172) */1722 interface CumulusPalletParachainSystemError extends Enum {1723 readonly isOverlappingUpgrades: boolean;1724 readonly isProhibitedByPolkadot: boolean;1725 readonly isTooBig: boolean;1726 readonly isValidationDataNotAvailable: boolean;1727 readonly isHostConfigurationNotAvailable: boolean;1728 readonly isNotScheduled: boolean;1729 readonly isNothingAuthorized: boolean;1730 readonly isUnauthorized: boolean;1731 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1732 }17331734 /** @name PalletBalancesBalanceLock (174) */1735 interface PalletBalancesBalanceLock extends Struct {1736 readonly id: U8aFixed;1737 readonly amount: u128;1738 readonly reasons: PalletBalancesReasons;1739 }17401741 /** @name PalletBalancesReasons (175) */1742 interface PalletBalancesReasons extends Enum {1743 readonly isFee: boolean;1744 readonly isMisc: boolean;1745 readonly isAll: boolean;1746 readonly type: 'Fee' | 'Misc' | 'All';1747 }17481749 /** @name PalletBalancesReserveData (178) */1750 interface PalletBalancesReserveData extends Struct {1751 readonly id: U8aFixed;1752 readonly amount: u128;1753 }17541755 /** @name PalletBalancesReleases (180) */1756 interface PalletBalancesReleases extends Enum {1757 readonly isV100: boolean;1758 readonly isV200: boolean;1759 readonly type: 'V100' | 'V200';1760 }17611762 /** @name PalletBalancesCall (181) */1763 interface PalletBalancesCall extends Enum {1764 readonly isTransfer: boolean;1765 readonly asTransfer: {1766 readonly dest: MultiAddress;1767 readonly value: Compact<u128>;1768 } & Struct;1769 readonly isSetBalance: boolean;1770 readonly asSetBalance: {1771 readonly who: MultiAddress;1772 readonly newFree: Compact<u128>;1773 readonly newReserved: Compact<u128>;1774 } & Struct;1775 readonly isForceTransfer: boolean;1776 readonly asForceTransfer: {1777 readonly source: MultiAddress;1778 readonly dest: MultiAddress;1779 readonly value: Compact<u128>;1780 } & Struct;1781 readonly isTransferKeepAlive: boolean;1782 readonly asTransferKeepAlive: {1783 readonly dest: MultiAddress;1784 readonly value: Compact<u128>;1785 } & Struct;1786 readonly isTransferAll: boolean;1787 readonly asTransferAll: {1788 readonly dest: MultiAddress;1789 readonly keepAlive: bool;1790 } & Struct;1791 readonly isForceUnreserve: boolean;1792 readonly asForceUnreserve: {1793 readonly who: MultiAddress;1794 readonly amount: u128;1795 } & Struct;1796 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1797 }17981799 /** @name PalletBalancesError (184) */1800 interface PalletBalancesError extends Enum {1801 readonly isVestingBalance: boolean;1802 readonly isLiquidityRestrictions: boolean;1803 readonly isInsufficientBalance: boolean;1804 readonly isExistentialDeposit: boolean;1805 readonly isKeepAlive: boolean;1806 readonly isExistingVestingSchedule: boolean;1807 readonly isDeadAccount: boolean;1808 readonly isTooManyReserves: boolean;1809 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1810 }18111812 /** @name PalletTimestampCall (186) */1813 interface PalletTimestampCall extends Enum {1814 readonly isSet: boolean;1815 readonly asSet: {1816 readonly now: Compact<u64>;1817 } & Struct;1818 readonly type: 'Set';1819 }18201821 /** @name PalletTransactionPaymentReleases (188) */1822 interface PalletTransactionPaymentReleases extends Enum {1823 readonly isV1Ancient: boolean;1824 readonly isV2: boolean;1825 readonly type: 'V1Ancient' | 'V2';1826 }18271828 /** @name PalletTreasuryProposal (189) */1829 interface PalletTreasuryProposal extends Struct {1830 readonly proposer: AccountId32;1831 readonly value: u128;1832 readonly beneficiary: AccountId32;1833 readonly bond: u128;1834 }18351836 /** @name PalletTreasuryCall (192) */1837 interface PalletTreasuryCall extends Enum {1838 readonly isProposeSpend: boolean;1839 readonly asProposeSpend: {1840 readonly value: Compact<u128>;1841 readonly beneficiary: MultiAddress;1842 } & Struct;1843 readonly isRejectProposal: boolean;1844 readonly asRejectProposal: {1845 readonly proposalId: Compact<u32>;1846 } & Struct;1847 readonly isApproveProposal: boolean;1848 readonly asApproveProposal: {1849 readonly proposalId: Compact<u32>;1850 } & Struct;1851 readonly isSpend: boolean;1852 readonly asSpend: {1853 readonly amount: Compact<u128>;1854 readonly beneficiary: MultiAddress;1855 } & Struct;1856 readonly isRemoveApproval: boolean;1857 readonly asRemoveApproval: {1858 readonly proposalId: Compact<u32>;1859 } & Struct;1860 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1861 }18621863 /** @name FrameSupportPalletId (195) */1864 interface FrameSupportPalletId extends U8aFixed {}18651866 /** @name PalletTreasuryError (196) */1867 interface PalletTreasuryError extends Enum {1868 readonly isInsufficientProposersBalance: boolean;1869 readonly isInvalidIndex: boolean;1870 readonly isTooManyApprovals: boolean;1871 readonly isInsufficientPermission: boolean;1872 readonly isProposalNotApproved: boolean;1873 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1874 }18751876 /** @name PalletSudoCall (197) */1877 interface PalletSudoCall extends Enum {1878 readonly isSudo: boolean;1879 readonly asSudo: {1880 readonly call: Call;1881 } & Struct;1882 readonly isSudoUncheckedWeight: boolean;1883 readonly asSudoUncheckedWeight: {1884 readonly call: Call;1885 readonly weight: Weight;1886 } & Struct;1887 readonly isSetKey: boolean;1888 readonly asSetKey: {1889 readonly new_: MultiAddress;1890 } & Struct;1891 readonly isSudoAs: boolean;1892 readonly asSudoAs: {1893 readonly who: MultiAddress;1894 readonly call: Call;1895 } & Struct;1896 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1897 }18981899 /** @name OrmlVestingModuleCall (199) */1900 interface OrmlVestingModuleCall extends Enum {1901 readonly isClaim: boolean;1902 readonly isVestedTransfer: boolean;1903 readonly asVestedTransfer: {1904 readonly dest: MultiAddress;1905 readonly schedule: OrmlVestingVestingSchedule;1906 } & Struct;1907 readonly isUpdateVestingSchedules: boolean;1908 readonly asUpdateVestingSchedules: {1909 readonly who: MultiAddress;1910 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1911 } & Struct;1912 readonly isClaimFor: boolean;1913 readonly asClaimFor: {1914 readonly dest: MultiAddress;1915 } & Struct;1916 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1917 }19181919 /** @name OrmlXtokensModuleCall (201) */1920 interface OrmlXtokensModuleCall extends Enum {1921 readonly isTransfer: boolean;1922 readonly asTransfer: {1923 readonly currencyId: PalletForeignAssetsAssetIds;1924 readonly amount: u128;1925 readonly dest: XcmVersionedMultiLocation;1926 readonly destWeight: u64;1927 } & Struct;1928 readonly isTransferMultiasset: boolean;1929 readonly asTransferMultiasset: {1930 readonly asset: XcmVersionedMultiAsset;1931 readonly dest: XcmVersionedMultiLocation;1932 readonly destWeight: u64;1933 } & Struct;1934 readonly isTransferWithFee: boolean;1935 readonly asTransferWithFee: {1936 readonly currencyId: PalletForeignAssetsAssetIds;1937 readonly amount: u128;1938 readonly fee: u128;1939 readonly dest: XcmVersionedMultiLocation;1940 readonly destWeight: u64;1941 } & Struct;1942 readonly isTransferMultiassetWithFee: boolean;1943 readonly asTransferMultiassetWithFee: {1944 readonly asset: XcmVersionedMultiAsset;1945 readonly fee: XcmVersionedMultiAsset;1946 readonly dest: XcmVersionedMultiLocation;1947 readonly destWeight: u64;1948 } & Struct;1949 readonly isTransferMulticurrencies: boolean;1950 readonly asTransferMulticurrencies: {1951 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1952 readonly feeItem: u32;1953 readonly dest: XcmVersionedMultiLocation;1954 readonly destWeight: u64;1955 } & Struct;1956 readonly isTransferMultiassets: boolean;1957 readonly asTransferMultiassets: {1958 readonly assets: XcmVersionedMultiAssets;1959 readonly feeItem: u32;1960 readonly dest: XcmVersionedMultiLocation;1961 readonly destWeight: u64;1962 } & Struct;1963 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1964 }19651966 /** @name XcmVersionedMultiAsset (202) */1967 interface XcmVersionedMultiAsset extends Enum {1968 readonly isV0: boolean;1969 readonly asV0: XcmV0MultiAsset;1970 readonly isV1: boolean;1971 readonly asV1: XcmV1MultiAsset;1972 readonly type: 'V0' | 'V1';1973 }19741975 /** @name OrmlTokensModuleCall (205) */1976 interface OrmlTokensModuleCall extends Enum {1977 readonly isTransfer: boolean;1978 readonly asTransfer: {1979 readonly dest: MultiAddress;1980 readonly currencyId: PalletForeignAssetsAssetIds;1981 readonly amount: Compact<u128>;1982 } & Struct;1983 readonly isTransferAll: boolean;1984 readonly asTransferAll: {1985 readonly dest: MultiAddress;1986 readonly currencyId: PalletForeignAssetsAssetIds;1987 readonly keepAlive: bool;1988 } & Struct;1989 readonly isTransferKeepAlive: boolean;1990 readonly asTransferKeepAlive: {1991 readonly dest: MultiAddress;1992 readonly currencyId: PalletForeignAssetsAssetIds;1993 readonly amount: Compact<u128>;1994 } & Struct;1995 readonly isForceTransfer: boolean;1996 readonly asForceTransfer: {1997 readonly source: MultiAddress;1998 readonly dest: MultiAddress;1999 readonly currencyId: PalletForeignAssetsAssetIds;2000 readonly amount: Compact<u128>;2001 } & Struct;2002 readonly isSetBalance: boolean;2003 readonly asSetBalance: {2004 readonly who: MultiAddress;2005 readonly currencyId: PalletForeignAssetsAssetIds;2006 readonly newFree: Compact<u128>;2007 readonly newReserved: Compact<u128>;2008 } & Struct;2009 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2010 }20112012 /** @name CumulusPalletXcmpQueueCall (206) */2013 interface CumulusPalletXcmpQueueCall extends Enum {2014 readonly isServiceOverweight: boolean;2015 readonly asServiceOverweight: {2016 readonly index: u64;2017 readonly weightLimit: Weight;2018 } & Struct;2019 readonly isSuspendXcmExecution: boolean;2020 readonly isResumeXcmExecution: boolean;2021 readonly isUpdateSuspendThreshold: boolean;2022 readonly asUpdateSuspendThreshold: {2023 readonly new_: u32;2024 } & Struct;2025 readonly isUpdateDropThreshold: boolean;2026 readonly asUpdateDropThreshold: {2027 readonly new_: u32;2028 } & Struct;2029 readonly isUpdateResumeThreshold: boolean;2030 readonly asUpdateResumeThreshold: {2031 readonly new_: u32;2032 } & Struct;2033 readonly isUpdateThresholdWeight: boolean;2034 readonly asUpdateThresholdWeight: {2035 readonly new_: Weight;2036 } & Struct;2037 readonly isUpdateWeightRestrictDecay: boolean;2038 readonly asUpdateWeightRestrictDecay: {2039 readonly new_: Weight;2040 } & Struct;2041 readonly isUpdateXcmpMaxIndividualWeight: boolean;2042 readonly asUpdateXcmpMaxIndividualWeight: {2043 readonly new_: Weight;2044 } & Struct;2045 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2046 }20472048 /** @name PalletXcmCall (207) */2049 interface PalletXcmCall extends Enum {2050 readonly isSend: boolean;2051 readonly asSend: {2052 readonly dest: XcmVersionedMultiLocation;2053 readonly message: XcmVersionedXcm;2054 } & Struct;2055 readonly isTeleportAssets: boolean;2056 readonly asTeleportAssets: {2057 readonly dest: XcmVersionedMultiLocation;2058 readonly beneficiary: XcmVersionedMultiLocation;2059 readonly assets: XcmVersionedMultiAssets;2060 readonly feeAssetItem: u32;2061 } & Struct;2062 readonly isReserveTransferAssets: boolean;2063 readonly asReserveTransferAssets: {2064 readonly dest: XcmVersionedMultiLocation;2065 readonly beneficiary: XcmVersionedMultiLocation;2066 readonly assets: XcmVersionedMultiAssets;2067 readonly feeAssetItem: u32;2068 } & Struct;2069 readonly isExecute: boolean;2070 readonly asExecute: {2071 readonly message: XcmVersionedXcm;2072 readonly maxWeight: Weight;2073 } & Struct;2074 readonly isForceXcmVersion: boolean;2075 readonly asForceXcmVersion: {2076 readonly location: XcmV1MultiLocation;2077 readonly xcmVersion: u32;2078 } & Struct;2079 readonly isForceDefaultXcmVersion: boolean;2080 readonly asForceDefaultXcmVersion: {2081 readonly maybeXcmVersion: Option<u32>;2082 } & Struct;2083 readonly isForceSubscribeVersionNotify: boolean;2084 readonly asForceSubscribeVersionNotify: {2085 readonly location: XcmVersionedMultiLocation;2086 } & Struct;2087 readonly isForceUnsubscribeVersionNotify: boolean;2088 readonly asForceUnsubscribeVersionNotify: {2089 readonly location: XcmVersionedMultiLocation;2090 } & Struct;2091 readonly isLimitedReserveTransferAssets: boolean;2092 readonly asLimitedReserveTransferAssets: {2093 readonly dest: XcmVersionedMultiLocation;2094 readonly beneficiary: XcmVersionedMultiLocation;2095 readonly assets: XcmVersionedMultiAssets;2096 readonly feeAssetItem: u32;2097 readonly weightLimit: XcmV2WeightLimit;2098 } & Struct;2099 readonly isLimitedTeleportAssets: boolean;2100 readonly asLimitedTeleportAssets: {2101 readonly dest: XcmVersionedMultiLocation;2102 readonly beneficiary: XcmVersionedMultiLocation;2103 readonly assets: XcmVersionedMultiAssets;2104 readonly feeAssetItem: u32;2105 readonly weightLimit: XcmV2WeightLimit;2106 } & Struct;2107 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2108 }21092110 /** @name XcmVersionedXcm (208) */2111 interface XcmVersionedXcm extends Enum {2112 readonly isV0: boolean;2113 readonly asV0: XcmV0Xcm;2114 readonly isV1: boolean;2115 readonly asV1: XcmV1Xcm;2116 readonly isV2: boolean;2117 readonly asV2: XcmV2Xcm;2118 readonly type: 'V0' | 'V1' | 'V2';2119 }21202121 /** @name XcmV0Xcm (209) */2122 interface XcmV0Xcm extends Enum {2123 readonly isWithdrawAsset: boolean;2124 readonly asWithdrawAsset: {2125 readonly assets: Vec<XcmV0MultiAsset>;2126 readonly effects: Vec<XcmV0Order>;2127 } & Struct;2128 readonly isReserveAssetDeposit: boolean;2129 readonly asReserveAssetDeposit: {2130 readonly assets: Vec<XcmV0MultiAsset>;2131 readonly effects: Vec<XcmV0Order>;2132 } & Struct;2133 readonly isTeleportAsset: boolean;2134 readonly asTeleportAsset: {2135 readonly assets: Vec<XcmV0MultiAsset>;2136 readonly effects: Vec<XcmV0Order>;2137 } & Struct;2138 readonly isQueryResponse: boolean;2139 readonly asQueryResponse: {2140 readonly queryId: Compact<u64>;2141 readonly response: XcmV0Response;2142 } & Struct;2143 readonly isTransferAsset: boolean;2144 readonly asTransferAsset: {2145 readonly assets: Vec<XcmV0MultiAsset>;2146 readonly dest: XcmV0MultiLocation;2147 } & Struct;2148 readonly isTransferReserveAsset: boolean;2149 readonly asTransferReserveAsset: {2150 readonly assets: Vec<XcmV0MultiAsset>;2151 readonly dest: XcmV0MultiLocation;2152 readonly effects: Vec<XcmV0Order>;2153 } & Struct;2154 readonly isTransact: boolean;2155 readonly asTransact: {2156 readonly originType: XcmV0OriginKind;2157 readonly requireWeightAtMost: u64;2158 readonly call: XcmDoubleEncoded;2159 } & Struct;2160 readonly isHrmpNewChannelOpenRequest: boolean;2161 readonly asHrmpNewChannelOpenRequest: {2162 readonly sender: Compact<u32>;2163 readonly maxMessageSize: Compact<u32>;2164 readonly maxCapacity: Compact<u32>;2165 } & Struct;2166 readonly isHrmpChannelAccepted: boolean;2167 readonly asHrmpChannelAccepted: {2168 readonly recipient: Compact<u32>;2169 } & Struct;2170 readonly isHrmpChannelClosing: boolean;2171 readonly asHrmpChannelClosing: {2172 readonly initiator: Compact<u32>;2173 readonly sender: Compact<u32>;2174 readonly recipient: Compact<u32>;2175 } & Struct;2176 readonly isRelayedFrom: boolean;2177 readonly asRelayedFrom: {2178 readonly who: XcmV0MultiLocation;2179 readonly message: XcmV0Xcm;2180 } & Struct;2181 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2182 }21832184 /** @name XcmV0Order (211) */2185 interface XcmV0Order extends Enum {2186 readonly isNull: boolean;2187 readonly isDepositAsset: boolean;2188 readonly asDepositAsset: {2189 readonly assets: Vec<XcmV0MultiAsset>;2190 readonly dest: XcmV0MultiLocation;2191 } & Struct;2192 readonly isDepositReserveAsset: boolean;2193 readonly asDepositReserveAsset: {2194 readonly assets: Vec<XcmV0MultiAsset>;2195 readonly dest: XcmV0MultiLocation;2196 readonly effects: Vec<XcmV0Order>;2197 } & Struct;2198 readonly isExchangeAsset: boolean;2199 readonly asExchangeAsset: {2200 readonly give: Vec<XcmV0MultiAsset>;2201 readonly receive: Vec<XcmV0MultiAsset>;2202 } & Struct;2203 readonly isInitiateReserveWithdraw: boolean;2204 readonly asInitiateReserveWithdraw: {2205 readonly assets: Vec<XcmV0MultiAsset>;2206 readonly reserve: XcmV0MultiLocation;2207 readonly effects: Vec<XcmV0Order>;2208 } & Struct;2209 readonly isInitiateTeleport: boolean;2210 readonly asInitiateTeleport: {2211 readonly assets: Vec<XcmV0MultiAsset>;2212 readonly dest: XcmV0MultiLocation;2213 readonly effects: Vec<XcmV0Order>;2214 } & Struct;2215 readonly isQueryHolding: boolean;2216 readonly asQueryHolding: {2217 readonly queryId: Compact<u64>;2218 readonly dest: XcmV0MultiLocation;2219 readonly assets: Vec<XcmV0MultiAsset>;2220 } & Struct;2221 readonly isBuyExecution: boolean;2222 readonly asBuyExecution: {2223 readonly fees: XcmV0MultiAsset;2224 readonly weight: u64;2225 readonly debt: u64;2226 readonly haltOnError: bool;2227 readonly xcm: Vec<XcmV0Xcm>;2228 } & Struct;2229 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2230 }22312232 /** @name XcmV0Response (213) */2233 interface XcmV0Response extends Enum {2234 readonly isAssets: boolean;2235 readonly asAssets: Vec<XcmV0MultiAsset>;2236 readonly type: 'Assets';2237 }22382239 /** @name XcmV1Xcm (214) */2240 interface XcmV1Xcm extends Enum {2241 readonly isWithdrawAsset: boolean;2242 readonly asWithdrawAsset: {2243 readonly assets: XcmV1MultiassetMultiAssets;2244 readonly effects: Vec<XcmV1Order>;2245 } & Struct;2246 readonly isReserveAssetDeposited: boolean;2247 readonly asReserveAssetDeposited: {2248 readonly assets: XcmV1MultiassetMultiAssets;2249 readonly effects: Vec<XcmV1Order>;2250 } & Struct;2251 readonly isReceiveTeleportedAsset: boolean;2252 readonly asReceiveTeleportedAsset: {2253 readonly assets: XcmV1MultiassetMultiAssets;2254 readonly effects: Vec<XcmV1Order>;2255 } & Struct;2256 readonly isQueryResponse: boolean;2257 readonly asQueryResponse: {2258 readonly queryId: Compact<u64>;2259 readonly response: XcmV1Response;2260 } & Struct;2261 readonly isTransferAsset: boolean;2262 readonly asTransferAsset: {2263 readonly assets: XcmV1MultiassetMultiAssets;2264 readonly beneficiary: XcmV1MultiLocation;2265 } & Struct;2266 readonly isTransferReserveAsset: boolean;2267 readonly asTransferReserveAsset: {2268 readonly assets: XcmV1MultiassetMultiAssets;2269 readonly dest: XcmV1MultiLocation;2270 readonly effects: Vec<XcmV1Order>;2271 } & Struct;2272 readonly isTransact: boolean;2273 readonly asTransact: {2274 readonly originType: XcmV0OriginKind;2275 readonly requireWeightAtMost: u64;2276 readonly call: XcmDoubleEncoded;2277 } & Struct;2278 readonly isHrmpNewChannelOpenRequest: boolean;2279 readonly asHrmpNewChannelOpenRequest: {2280 readonly sender: Compact<u32>;2281 readonly maxMessageSize: Compact<u32>;2282 readonly maxCapacity: Compact<u32>;2283 } & Struct;2284 readonly isHrmpChannelAccepted: boolean;2285 readonly asHrmpChannelAccepted: {2286 readonly recipient: Compact<u32>;2287 } & Struct;2288 readonly isHrmpChannelClosing: boolean;2289 readonly asHrmpChannelClosing: {2290 readonly initiator: Compact<u32>;2291 readonly sender: Compact<u32>;2292 readonly recipient: Compact<u32>;2293 } & Struct;2294 readonly isRelayedFrom: boolean;2295 readonly asRelayedFrom: {2296 readonly who: XcmV1MultilocationJunctions;2297 readonly message: XcmV1Xcm;2298 } & Struct;2299 readonly isSubscribeVersion: boolean;2300 readonly asSubscribeVersion: {2301 readonly queryId: Compact<u64>;2302 readonly maxResponseWeight: Compact<u64>;2303 } & Struct;2304 readonly isUnsubscribeVersion: boolean;2305 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2306 }23072308 /** @name XcmV1Order (216) */2309 interface XcmV1Order extends Enum {2310 readonly isNoop: boolean;2311 readonly isDepositAsset: boolean;2312 readonly asDepositAsset: {2313 readonly assets: XcmV1MultiassetMultiAssetFilter;2314 readonly maxAssets: u32;2315 readonly beneficiary: XcmV1MultiLocation;2316 } & Struct;2317 readonly isDepositReserveAsset: boolean;2318 readonly asDepositReserveAsset: {2319 readonly assets: XcmV1MultiassetMultiAssetFilter;2320 readonly maxAssets: u32;2321 readonly dest: XcmV1MultiLocation;2322 readonly effects: Vec<XcmV1Order>;2323 } & Struct;2324 readonly isExchangeAsset: boolean;2325 readonly asExchangeAsset: {2326 readonly give: XcmV1MultiassetMultiAssetFilter;2327 readonly receive: XcmV1MultiassetMultiAssets;2328 } & Struct;2329 readonly isInitiateReserveWithdraw: boolean;2330 readonly asInitiateReserveWithdraw: {2331 readonly assets: XcmV1MultiassetMultiAssetFilter;2332 readonly reserve: XcmV1MultiLocation;2333 readonly effects: Vec<XcmV1Order>;2334 } & Struct;2335 readonly isInitiateTeleport: boolean;2336 readonly asInitiateTeleport: {2337 readonly assets: XcmV1MultiassetMultiAssetFilter;2338 readonly dest: XcmV1MultiLocation;2339 readonly effects: Vec<XcmV1Order>;2340 } & Struct;2341 readonly isQueryHolding: boolean;2342 readonly asQueryHolding: {2343 readonly queryId: Compact<u64>;2344 readonly dest: XcmV1MultiLocation;2345 readonly assets: XcmV1MultiassetMultiAssetFilter;2346 } & Struct;2347 readonly isBuyExecution: boolean;2348 readonly asBuyExecution: {2349 readonly fees: XcmV1MultiAsset;2350 readonly weight: u64;2351 readonly debt: u64;2352 readonly haltOnError: bool;2353 readonly instructions: Vec<XcmV1Xcm>;2354 } & Struct;2355 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2356 }23572358 /** @name XcmV1Response (218) */2359 interface XcmV1Response extends Enum {2360 readonly isAssets: boolean;2361 readonly asAssets: XcmV1MultiassetMultiAssets;2362 readonly isVersion: boolean;2363 readonly asVersion: u32;2364 readonly type: 'Assets' | 'Version';2365 }23662367 /** @name CumulusPalletXcmCall (232) */2368 type CumulusPalletXcmCall = Null;23692370 /** @name CumulusPalletDmpQueueCall (233) */2371 interface CumulusPalletDmpQueueCall extends Enum {2372 readonly isServiceOverweight: boolean;2373 readonly asServiceOverweight: {2374 readonly index: u64;2375 readonly weightLimit: Weight;2376 } & Struct;2377 readonly type: 'ServiceOverweight';2378 }23792380 /** @name PalletInflationCall (234) */2381 interface PalletInflationCall extends Enum {2382 readonly isStartInflation: boolean;2383 readonly asStartInflation: {2384 readonly inflationStartRelayBlock: u32;2385 } & Struct;2386 readonly type: 'StartInflation';2387 }23882389 /** @name PalletUniqueCall (235) */2390 interface PalletUniqueCall extends Enum {2391 readonly isCreateCollection: boolean;2392 readonly asCreateCollection: {2393 readonly collectionName: Vec<u16>;2394 readonly collectionDescription: Vec<u16>;2395 readonly tokenPrefix: Bytes;2396 readonly mode: UpDataStructsCollectionMode;2397 } & Struct;2398 readonly isCreateCollectionEx: boolean;2399 readonly asCreateCollectionEx: {2400 readonly data: UpDataStructsCreateCollectionData;2401 } & Struct;2402 readonly isDestroyCollection: boolean;2403 readonly asDestroyCollection: {2404 readonly collectionId: u32;2405 } & Struct;2406 readonly isAddToAllowList: boolean;2407 readonly asAddToAllowList: {2408 readonly collectionId: u32;2409 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2410 } & Struct;2411 readonly isRemoveFromAllowList: boolean;2412 readonly asRemoveFromAllowList: {2413 readonly collectionId: u32;2414 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2415 } & Struct;2416 readonly isChangeCollectionOwner: boolean;2417 readonly asChangeCollectionOwner: {2418 readonly collectionId: u32;2419 readonly newOwner: AccountId32;2420 } & Struct;2421 readonly isAddCollectionAdmin: boolean;2422 readonly asAddCollectionAdmin: {2423 readonly collectionId: u32;2424 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2425 } & Struct;2426 readonly isRemoveCollectionAdmin: boolean;2427 readonly asRemoveCollectionAdmin: {2428 readonly collectionId: u32;2429 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2430 } & Struct;2431 readonly isSetCollectionSponsor: boolean;2432 readonly asSetCollectionSponsor: {2433 readonly collectionId: u32;2434 readonly newSponsor: AccountId32;2435 } & Struct;2436 readonly isConfirmSponsorship: boolean;2437 readonly asConfirmSponsorship: {2438 readonly collectionId: u32;2439 } & Struct;2440 readonly isRemoveCollectionSponsor: boolean;2441 readonly asRemoveCollectionSponsor: {2442 readonly collectionId: u32;2443 } & Struct;2444 readonly isCreateItem: boolean;2445 readonly asCreateItem: {2446 readonly collectionId: u32;2447 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2448 readonly data: UpDataStructsCreateItemData;2449 } & Struct;2450 readonly isCreateMultipleItems: boolean;2451 readonly asCreateMultipleItems: {2452 readonly collectionId: u32;2453 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2454 readonly itemsData: Vec<UpDataStructsCreateItemData>;2455 } & Struct;2456 readonly isSetCollectionProperties: boolean;2457 readonly asSetCollectionProperties: {2458 readonly collectionId: u32;2459 readonly properties: Vec<UpDataStructsProperty>;2460 } & Struct;2461 readonly isDeleteCollectionProperties: boolean;2462 readonly asDeleteCollectionProperties: {2463 readonly collectionId: u32;2464 readonly propertyKeys: Vec<Bytes>;2465 } & Struct;2466 readonly isSetTokenProperties: boolean;2467 readonly asSetTokenProperties: {2468 readonly collectionId: u32;2469 readonly tokenId: u32;2470 readonly properties: Vec<UpDataStructsProperty>;2471 } & Struct;2472 readonly isDeleteTokenProperties: boolean;2473 readonly asDeleteTokenProperties: {2474 readonly collectionId: u32;2475 readonly tokenId: u32;2476 readonly propertyKeys: Vec<Bytes>;2477 } & Struct;2478 readonly isSetTokenPropertyPermissions: boolean;2479 readonly asSetTokenPropertyPermissions: {2480 readonly collectionId: u32;2481 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2482 } & Struct;2483 readonly isCreateMultipleItemsEx: boolean;2484 readonly asCreateMultipleItemsEx: {2485 readonly collectionId: u32;2486 readonly data: UpDataStructsCreateItemExData;2487 } & Struct;2488 readonly isSetTransfersEnabledFlag: boolean;2489 readonly asSetTransfersEnabledFlag: {2490 readonly collectionId: u32;2491 readonly value: bool;2492 } & Struct;2493 readonly isBurnItem: boolean;2494 readonly asBurnItem: {2495 readonly collectionId: u32;2496 readonly itemId: u32;2497 readonly value: u128;2498 } & Struct;2499 readonly isBurnFrom: boolean;2500 readonly asBurnFrom: {2501 readonly collectionId: u32;2502 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2503 readonly itemId: u32;2504 readonly value: u128;2505 } & Struct;2506 readonly isTransfer: boolean;2507 readonly asTransfer: {2508 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2509 readonly collectionId: u32;2510 readonly itemId: u32;2511 readonly value: u128;2512 } & Struct;2513 readonly isApprove: boolean;2514 readonly asApprove: {2515 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2516 readonly collectionId: u32;2517 readonly itemId: u32;2518 readonly amount: u128;2519 } & Struct;2520 readonly isTransferFrom: boolean;2521 readonly asTransferFrom: {2522 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2523 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2524 readonly collectionId: u32;2525 readonly itemId: u32;2526 readonly value: u128;2527 } & Struct;2528 readonly isSetCollectionLimits: boolean;2529 readonly asSetCollectionLimits: {2530 readonly collectionId: u32;2531 readonly newLimit: UpDataStructsCollectionLimits;2532 } & Struct;2533 readonly isSetCollectionPermissions: boolean;2534 readonly asSetCollectionPermissions: {2535 readonly collectionId: u32;2536 readonly newPermission: UpDataStructsCollectionPermissions;2537 } & Struct;2538 readonly isRepartition: boolean;2539 readonly asRepartition: {2540 readonly collectionId: u32;2541 readonly tokenId: u32;2542 readonly amount: u128;2543 } & Struct;2544 readonly isSetAllowanceForAll: boolean;2545 readonly asSetAllowanceForAll: {2546 readonly collectionId: u32;2547 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2548 readonly approve: bool;2549 } & Struct;2550 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2551 }25522553 /** @name UpDataStructsCollectionMode (240) */2554 interface UpDataStructsCollectionMode extends Enum {2555 readonly isNft: boolean;2556 readonly isFungible: boolean;2557 readonly asFungible: u8;2558 readonly isReFungible: boolean;2559 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2560 }25612562 /** @name UpDataStructsCreateCollectionData (241) */2563 interface UpDataStructsCreateCollectionData extends Struct {2564 readonly mode: UpDataStructsCollectionMode;2565 readonly access: Option<UpDataStructsAccessMode>;2566 readonly name: Vec<u16>;2567 readonly description: Vec<u16>;2568 readonly tokenPrefix: Bytes;2569 readonly pendingSponsor: Option<AccountId32>;2570 readonly limits: Option<UpDataStructsCollectionLimits>;2571 readonly permissions: Option<UpDataStructsCollectionPermissions>;2572 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2573 readonly properties: Vec<UpDataStructsProperty>;2574 }25752576 /** @name UpDataStructsAccessMode (243) */2577 interface UpDataStructsAccessMode extends Enum {2578 readonly isNormal: boolean;2579 readonly isAllowList: boolean;2580 readonly type: 'Normal' | 'AllowList';2581 }25822583 /** @name UpDataStructsCollectionLimits (245) */2584 interface UpDataStructsCollectionLimits extends Struct {2585 readonly accountTokenOwnershipLimit: Option<u32>;2586 readonly sponsoredDataSize: Option<u32>;2587 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2588 readonly tokenLimit: Option<u32>;2589 readonly sponsorTransferTimeout: Option<u32>;2590 readonly sponsorApproveTimeout: Option<u32>;2591 readonly ownerCanTransfer: Option<bool>;2592 readonly ownerCanDestroy: Option<bool>;2593 readonly transfersEnabled: Option<bool>;2594 }25952596 /** @name UpDataStructsSponsoringRateLimit (247) */2597 interface UpDataStructsSponsoringRateLimit extends Enum {2598 readonly isSponsoringDisabled: boolean;2599 readonly isBlocks: boolean;2600 readonly asBlocks: u32;2601 readonly type: 'SponsoringDisabled' | 'Blocks';2602 }26032604 /** @name UpDataStructsCollectionPermissions (250) */2605 interface UpDataStructsCollectionPermissions extends Struct {2606 readonly access: Option<UpDataStructsAccessMode>;2607 readonly mintMode: Option<bool>;2608 readonly nesting: Option<UpDataStructsNestingPermissions>;2609 }26102611 /** @name UpDataStructsNestingPermissions (252) */2612 interface UpDataStructsNestingPermissions extends Struct {2613 readonly tokenOwner: bool;2614 readonly collectionAdmin: bool;2615 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2616 }26172618 /** @name UpDataStructsOwnerRestrictedSet (254) */2619 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26202621 /** @name UpDataStructsPropertyKeyPermission (259) */2622 interface UpDataStructsPropertyKeyPermission extends Struct {2623 readonly key: Bytes;2624 readonly permission: UpDataStructsPropertyPermission;2625 }26262627 /** @name UpDataStructsPropertyPermission (260) */2628 interface UpDataStructsPropertyPermission extends Struct {2629 readonly mutable: bool;2630 readonly collectionAdmin: bool;2631 readonly tokenOwner: bool;2632 }26332634 /** @name UpDataStructsProperty (263) */2635 interface UpDataStructsProperty extends Struct {2636 readonly key: Bytes;2637 readonly value: Bytes;2638 }26392640 /** @name UpDataStructsCreateItemData (266) */2641 interface UpDataStructsCreateItemData extends Enum {2642 readonly isNft: boolean;2643 readonly asNft: UpDataStructsCreateNftData;2644 readonly isFungible: boolean;2645 readonly asFungible: UpDataStructsCreateFungibleData;2646 readonly isReFungible: boolean;2647 readonly asReFungible: UpDataStructsCreateReFungibleData;2648 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2649 }26502651 /** @name UpDataStructsCreateNftData (267) */2652 interface UpDataStructsCreateNftData extends Struct {2653 readonly properties: Vec<UpDataStructsProperty>;2654 }26552656 /** @name UpDataStructsCreateFungibleData (268) */2657 interface UpDataStructsCreateFungibleData extends Struct {2658 readonly value: u128;2659 }26602661 /** @name UpDataStructsCreateReFungibleData (269) */2662 interface UpDataStructsCreateReFungibleData extends Struct {2663 readonly pieces: u128;2664 readonly properties: Vec<UpDataStructsProperty>;2665 }26662667 /** @name UpDataStructsCreateItemExData (272) */2668 interface UpDataStructsCreateItemExData extends Enum {2669 readonly isNft: boolean;2670 readonly asNft: Vec<UpDataStructsCreateNftExData>;2671 readonly isFungible: boolean;2672 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2673 readonly isRefungibleMultipleItems: boolean;2674 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2675 readonly isRefungibleMultipleOwners: boolean;2676 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2677 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2678 }26792680 /** @name UpDataStructsCreateNftExData (274) */2681 interface UpDataStructsCreateNftExData extends Struct {2682 readonly properties: Vec<UpDataStructsProperty>;2683 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2684 }26852686 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2687 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2688 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2689 readonly pieces: u128;2690 readonly properties: Vec<UpDataStructsProperty>;2691 }26922693 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2694 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2695 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2696 readonly properties: Vec<UpDataStructsProperty>;2697 }26982699 /** @name PalletUniqueSchedulerV2Call (284) */2700 interface PalletUniqueSchedulerV2Call extends Enum {2701 readonly isSchedule: boolean;2702 readonly asSchedule: {2703 readonly when: u32;2704 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2705 readonly priority: Option<u8>;2706 readonly call: Call;2707 } & Struct;2708 readonly isCancel: boolean;2709 readonly asCancel: {2710 readonly when: u32;2711 readonly index: u32;2712 } & Struct;2713 readonly isScheduleNamed: boolean;2714 readonly asScheduleNamed: {2715 readonly id: U8aFixed;2716 readonly when: u32;2717 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2718 readonly priority: Option<u8>;2719 readonly call: Call;2720 } & Struct;2721 readonly isCancelNamed: boolean;2722 readonly asCancelNamed: {2723 readonly id: U8aFixed;2724 } & Struct;2725 readonly isScheduleAfter: boolean;2726 readonly asScheduleAfter: {2727 readonly after: u32;2728 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2729 readonly priority: Option<u8>;2730 readonly call: Call;2731 } & Struct;2732 readonly isScheduleNamedAfter: boolean;2733 readonly asScheduleNamedAfter: {2734 readonly id: U8aFixed;2735 readonly after: u32;2736 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2737 readonly priority: Option<u8>;2738 readonly call: Call;2739 } & Struct;2740 readonly isChangeNamedPriority: boolean;2741 readonly asChangeNamedPriority: {2742 readonly id: U8aFixed;2743 readonly priority: u8;2744 } & Struct;2745 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2746 }27472748 /** @name PalletConfigurationCall (287) */2749 interface PalletConfigurationCall extends Enum {2750 readonly isSetWeightToFeeCoefficientOverride: boolean;2751 readonly asSetWeightToFeeCoefficientOverride: {2752 readonly coeff: Option<u32>;2753 } & Struct;2754 readonly isSetMinGasPriceOverride: boolean;2755 readonly asSetMinGasPriceOverride: {2756 readonly coeff: Option<u64>;2757 } & Struct;2758 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2759 }27602761 /** @name PalletTemplateTransactionPaymentCall (289) */2762 type PalletTemplateTransactionPaymentCall = Null;27632764 /** @name PalletStructureCall (290) */2765 type PalletStructureCall = Null;27662767 /** @name PalletRmrkCoreCall (291) */2768 interface PalletRmrkCoreCall extends Enum {2769 readonly isCreateCollection: boolean;2770 readonly asCreateCollection: {2771 readonly metadata: Bytes;2772 readonly max: Option<u32>;2773 readonly symbol: Bytes;2774 } & Struct;2775 readonly isDestroyCollection: boolean;2776 readonly asDestroyCollection: {2777 readonly collectionId: u32;2778 } & Struct;2779 readonly isChangeCollectionIssuer: boolean;2780 readonly asChangeCollectionIssuer: {2781 readonly collectionId: u32;2782 readonly newIssuer: MultiAddress;2783 } & Struct;2784 readonly isLockCollection: boolean;2785 readonly asLockCollection: {2786 readonly collectionId: u32;2787 } & Struct;2788 readonly isMintNft: boolean;2789 readonly asMintNft: {2790 readonly owner: Option<AccountId32>;2791 readonly collectionId: u32;2792 readonly recipient: Option<AccountId32>;2793 readonly royaltyAmount: Option<Permill>;2794 readonly metadata: Bytes;2795 readonly transferable: bool;2796 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2797 } & Struct;2798 readonly isBurnNft: boolean;2799 readonly asBurnNft: {2800 readonly collectionId: u32;2801 readonly nftId: u32;2802 readonly maxBurns: u32;2803 } & Struct;2804 readonly isSend: boolean;2805 readonly asSend: {2806 readonly rmrkCollectionId: u32;2807 readonly rmrkNftId: u32;2808 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2809 } & Struct;2810 readonly isAcceptNft: boolean;2811 readonly asAcceptNft: {2812 readonly rmrkCollectionId: u32;2813 readonly rmrkNftId: u32;2814 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2815 } & Struct;2816 readonly isRejectNft: boolean;2817 readonly asRejectNft: {2818 readonly rmrkCollectionId: u32;2819 readonly rmrkNftId: u32;2820 } & Struct;2821 readonly isAcceptResource: boolean;2822 readonly asAcceptResource: {2823 readonly rmrkCollectionId: u32;2824 readonly rmrkNftId: u32;2825 readonly resourceId: u32;2826 } & Struct;2827 readonly isAcceptResourceRemoval: boolean;2828 readonly asAcceptResourceRemoval: {2829 readonly rmrkCollectionId: u32;2830 readonly rmrkNftId: u32;2831 readonly resourceId: u32;2832 } & Struct;2833 readonly isSetProperty: boolean;2834 readonly asSetProperty: {2835 readonly rmrkCollectionId: Compact<u32>;2836 readonly maybeNftId: Option<u32>;2837 readonly key: Bytes;2838 readonly value: Bytes;2839 } & Struct;2840 readonly isSetPriority: boolean;2841 readonly asSetPriority: {2842 readonly rmrkCollectionId: u32;2843 readonly rmrkNftId: u32;2844 readonly priorities: Vec<u32>;2845 } & Struct;2846 readonly isAddBasicResource: boolean;2847 readonly asAddBasicResource: {2848 readonly rmrkCollectionId: u32;2849 readonly nftId: u32;2850 readonly resource: RmrkTraitsResourceBasicResource;2851 } & Struct;2852 readonly isAddComposableResource: boolean;2853 readonly asAddComposableResource: {2854 readonly rmrkCollectionId: u32;2855 readonly nftId: u32;2856 readonly resource: RmrkTraitsResourceComposableResource;2857 } & Struct;2858 readonly isAddSlotResource: boolean;2859 readonly asAddSlotResource: {2860 readonly rmrkCollectionId: u32;2861 readonly nftId: u32;2862 readonly resource: RmrkTraitsResourceSlotResource;2863 } & Struct;2864 readonly isRemoveResource: boolean;2865 readonly asRemoveResource: {2866 readonly rmrkCollectionId: u32;2867 readonly nftId: u32;2868 readonly resourceId: u32;2869 } & Struct;2870 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2871 }28722873 /** @name RmrkTraitsResourceResourceTypes (297) */2874 interface RmrkTraitsResourceResourceTypes extends Enum {2875 readonly isBasic: boolean;2876 readonly asBasic: RmrkTraitsResourceBasicResource;2877 readonly isComposable: boolean;2878 readonly asComposable: RmrkTraitsResourceComposableResource;2879 readonly isSlot: boolean;2880 readonly asSlot: RmrkTraitsResourceSlotResource;2881 readonly type: 'Basic' | 'Composable' | 'Slot';2882 }28832884 /** @name RmrkTraitsResourceBasicResource (299) */2885 interface RmrkTraitsResourceBasicResource extends Struct {2886 readonly src: Option<Bytes>;2887 readonly metadata: Option<Bytes>;2888 readonly license: Option<Bytes>;2889 readonly thumb: Option<Bytes>;2890 }28912892 /** @name RmrkTraitsResourceComposableResource (301) */2893 interface RmrkTraitsResourceComposableResource extends Struct {2894 readonly parts: Vec<u32>;2895 readonly base: u32;2896 readonly src: Option<Bytes>;2897 readonly metadata: Option<Bytes>;2898 readonly license: Option<Bytes>;2899 readonly thumb: Option<Bytes>;2900 }29012902 /** @name RmrkTraitsResourceSlotResource (302) */2903 interface RmrkTraitsResourceSlotResource extends Struct {2904 readonly base: u32;2905 readonly src: Option<Bytes>;2906 readonly metadata: Option<Bytes>;2907 readonly slot: u32;2908 readonly license: Option<Bytes>;2909 readonly thumb: Option<Bytes>;2910 }29112912 /** @name PalletRmrkEquipCall (305) */2913 interface PalletRmrkEquipCall extends Enum {2914 readonly isCreateBase: boolean;2915 readonly asCreateBase: {2916 readonly baseType: Bytes;2917 readonly symbol: Bytes;2918 readonly parts: Vec<RmrkTraitsPartPartType>;2919 } & Struct;2920 readonly isThemeAdd: boolean;2921 readonly asThemeAdd: {2922 readonly baseId: u32;2923 readonly theme: RmrkTraitsTheme;2924 } & Struct;2925 readonly isEquippable: boolean;2926 readonly asEquippable: {2927 readonly baseId: u32;2928 readonly slotId: u32;2929 readonly equippables: RmrkTraitsPartEquippableList;2930 } & Struct;2931 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2932 }29332934 /** @name RmrkTraitsPartPartType (308) */2935 interface RmrkTraitsPartPartType extends Enum {2936 readonly isFixedPart: boolean;2937 readonly asFixedPart: RmrkTraitsPartFixedPart;2938 readonly isSlotPart: boolean;2939 readonly asSlotPart: RmrkTraitsPartSlotPart;2940 readonly type: 'FixedPart' | 'SlotPart';2941 }29422943 /** @name RmrkTraitsPartFixedPart (310) */2944 interface RmrkTraitsPartFixedPart extends Struct {2945 readonly id: u32;2946 readonly z: u32;2947 readonly src: Bytes;2948 }29492950 /** @name RmrkTraitsPartSlotPart (311) */2951 interface RmrkTraitsPartSlotPart extends Struct {2952 readonly id: u32;2953 readonly equippable: RmrkTraitsPartEquippableList;2954 readonly src: Bytes;2955 readonly z: u32;2956 }29572958 /** @name RmrkTraitsPartEquippableList (312) */2959 interface RmrkTraitsPartEquippableList extends Enum {2960 readonly isAll: boolean;2961 readonly isEmpty: boolean;2962 readonly isCustom: boolean;2963 readonly asCustom: Vec<u32>;2964 readonly type: 'All' | 'Empty' | 'Custom';2965 }29662967 /** @name RmrkTraitsTheme (314) */2968 interface RmrkTraitsTheme extends Struct {2969 readonly name: Bytes;2970 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2971 readonly inherit: bool;2972 }29732974 /** @name RmrkTraitsThemeThemeProperty (316) */2975 interface RmrkTraitsThemeThemeProperty extends Struct {2976 readonly key: Bytes;2977 readonly value: Bytes;2978 }29792980 /** @name PalletAppPromotionCall (318) */2981 interface PalletAppPromotionCall extends Enum {2982 readonly isSetAdminAddress: boolean;2983 readonly asSetAdminAddress: {2984 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2985 } & Struct;2986 readonly isStake: boolean;2987 readonly asStake: {2988 readonly amount: u128;2989 } & Struct;2990 readonly isUnstake: boolean;2991 readonly isSponsorCollection: boolean;2992 readonly asSponsorCollection: {2993 readonly collectionId: u32;2994 } & Struct;2995 readonly isStopSponsoringCollection: boolean;2996 readonly asStopSponsoringCollection: {2997 readonly collectionId: u32;2998 } & Struct;2999 readonly isSponsorContract: boolean;3000 readonly asSponsorContract: {3001 readonly contractId: H160;3002 } & Struct;3003 readonly isStopSponsoringContract: boolean;3004 readonly asStopSponsoringContract: {3005 readonly contractId: H160;3006 } & Struct;3007 readonly isPayoutStakers: boolean;3008 readonly asPayoutStakers: {3009 readonly stakersNumber: Option<u8>;3010 } & Struct;3011 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3012 }30133014 /** @name PalletForeignAssetsModuleCall (319) */3015 interface PalletForeignAssetsModuleCall extends Enum {3016 readonly isRegisterForeignAsset: boolean;3017 readonly asRegisterForeignAsset: {3018 readonly owner: AccountId32;3019 readonly location: XcmVersionedMultiLocation;3020 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3021 } & Struct;3022 readonly isUpdateForeignAsset: boolean;3023 readonly asUpdateForeignAsset: {3024 readonly foreignAssetId: u32;3025 readonly location: XcmVersionedMultiLocation;3026 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3027 } & Struct;3028 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3029 }30303031 /** @name PalletEvmCall (320) */3032 interface PalletEvmCall extends Enum {3033 readonly isWithdraw: boolean;3034 readonly asWithdraw: {3035 readonly address: H160;3036 readonly value: u128;3037 } & Struct;3038 readonly isCall: boolean;3039 readonly asCall: {3040 readonly source: H160;3041 readonly target: H160;3042 readonly input: Bytes;3043 readonly value: U256;3044 readonly gasLimit: u64;3045 readonly maxFeePerGas: U256;3046 readonly maxPriorityFeePerGas: Option<U256>;3047 readonly nonce: Option<U256>;3048 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3049 } & Struct;3050 readonly isCreate: boolean;3051 readonly asCreate: {3052 readonly source: H160;3053 readonly init: Bytes;3054 readonly value: U256;3055 readonly gasLimit: u64;3056 readonly maxFeePerGas: U256;3057 readonly maxPriorityFeePerGas: Option<U256>;3058 readonly nonce: Option<U256>;3059 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3060 } & Struct;3061 readonly isCreate2: boolean;3062 readonly asCreate2: {3063 readonly source: H160;3064 readonly init: Bytes;3065 readonly salt: H256;3066 readonly value: U256;3067 readonly gasLimit: u64;3068 readonly maxFeePerGas: U256;3069 readonly maxPriorityFeePerGas: Option<U256>;3070 readonly nonce: Option<U256>;3071 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3072 } & Struct;3073 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3074 }30753076 /** @name PalletEthereumCall (326) */3077 interface PalletEthereumCall extends Enum {3078 readonly isTransact: boolean;3079 readonly asTransact: {3080 readonly transaction: EthereumTransactionTransactionV2;3081 } & Struct;3082 readonly type: 'Transact';3083 }30843085 /** @name EthereumTransactionTransactionV2 (327) */3086 interface EthereumTransactionTransactionV2 extends Enum {3087 readonly isLegacy: boolean;3088 readonly asLegacy: EthereumTransactionLegacyTransaction;3089 readonly isEip2930: boolean;3090 readonly asEip2930: EthereumTransactionEip2930Transaction;3091 readonly isEip1559: boolean;3092 readonly asEip1559: EthereumTransactionEip1559Transaction;3093 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3094 }30953096 /** @name EthereumTransactionLegacyTransaction (328) */3097 interface EthereumTransactionLegacyTransaction extends Struct {3098 readonly nonce: U256;3099 readonly gasPrice: U256;3100 readonly gasLimit: U256;3101 readonly action: EthereumTransactionTransactionAction;3102 readonly value: U256;3103 readonly input: Bytes;3104 readonly signature: EthereumTransactionTransactionSignature;3105 }31063107 /** @name EthereumTransactionTransactionAction (329) */3108 interface EthereumTransactionTransactionAction extends Enum {3109 readonly isCall: boolean;3110 readonly asCall: H160;3111 readonly isCreate: boolean;3112 readonly type: 'Call' | 'Create';3113 }31143115 /** @name EthereumTransactionTransactionSignature (330) */3116 interface EthereumTransactionTransactionSignature extends Struct {3117 readonly v: u64;3118 readonly r: H256;3119 readonly s: H256;3120 }31213122 /** @name EthereumTransactionEip2930Transaction (332) */3123 interface EthereumTransactionEip2930Transaction extends Struct {3124 readonly chainId: u64;3125 readonly nonce: U256;3126 readonly gasPrice: U256;3127 readonly gasLimit: U256;3128 readonly action: EthereumTransactionTransactionAction;3129 readonly value: U256;3130 readonly input: Bytes;3131 readonly accessList: Vec<EthereumTransactionAccessListItem>;3132 readonly oddYParity: bool;3133 readonly r: H256;3134 readonly s: H256;3135 }31363137 /** @name EthereumTransactionAccessListItem (334) */3138 interface EthereumTransactionAccessListItem extends Struct {3139 readonly address: H160;3140 readonly storageKeys: Vec<H256>;3141 }31423143 /** @name EthereumTransactionEip1559Transaction (335) */3144 interface EthereumTransactionEip1559Transaction extends Struct {3145 readonly chainId: u64;3146 readonly nonce: U256;3147 readonly maxPriorityFeePerGas: U256;3148 readonly maxFeePerGas: U256;3149 readonly gasLimit: U256;3150 readonly action: EthereumTransactionTransactionAction;3151 readonly value: U256;3152 readonly input: Bytes;3153 readonly accessList: Vec<EthereumTransactionAccessListItem>;3154 readonly oddYParity: bool;3155 readonly r: H256;3156 readonly s: H256;3157 }31583159 /** @name PalletEvmMigrationCall (336) */3160 interface PalletEvmMigrationCall extends Enum {3161 readonly isBegin: boolean;3162 readonly asBegin: {3163 readonly address: H160;3164 } & Struct;3165 readonly isSetData: boolean;3166 readonly asSetData: {3167 readonly address: H160;3168 readonly data: Vec<ITuple<[H256, H256]>>;3169 } & Struct;3170 readonly isFinish: boolean;3171 readonly asFinish: {3172 readonly address: H160;3173 readonly code: Bytes;3174 } & Struct;3175 readonly isInsertEthLogs: boolean;3176 readonly asInsertEthLogs: {3177 readonly logs: Vec<EthereumLog>;3178 } & Struct;3179 readonly isInsertEvents: boolean;3180 readonly asInsertEvents: {3181 readonly events: Vec<Bytes>;3182 } & Struct;3183 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3184 }31853186 /** @name PalletMaintenanceCall (340) */3187 interface PalletMaintenanceCall extends Enum {3188 readonly isEnable: boolean;3189 readonly isDisable: boolean;3190 readonly type: 'Enable' | 'Disable';3191 }31923193 /** @name PalletTestUtilsCall (341) */3194 interface PalletTestUtilsCall extends Enum {3195 readonly isEnable: boolean;3196 readonly isSetTestValue: boolean;3197 readonly asSetTestValue: {3198 readonly value: u32;3199 } & Struct;3200 readonly isSetTestValueAndRollback: boolean;3201 readonly asSetTestValueAndRollback: {3202 readonly value: u32;3203 } & Struct;3204 readonly isIncTestValue: boolean;3205 readonly isSelfCancelingInc: boolean;3206 readonly asSelfCancelingInc: {3207 readonly id: U8aFixed;3208 readonly maxTestValue: u32;3209 } & Struct;3210 readonly isJustTakeFee: boolean;3211 readonly isBatchAll: boolean;3212 readonly asBatchAll: {3213 readonly calls: Vec<Call>;3214 } & Struct;3215 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3216 }32173218 /** @name PalletSudoError (343) */3219 interface PalletSudoError extends Enum {3220 readonly isRequireSudo: boolean;3221 readonly type: 'RequireSudo';3222 }32233224 /** @name OrmlVestingModuleError (345) */3225 interface OrmlVestingModuleError extends Enum {3226 readonly isZeroVestingPeriod: boolean;3227 readonly isZeroVestingPeriodCount: boolean;3228 readonly isInsufficientBalanceToLock: boolean;3229 readonly isTooManyVestingSchedules: boolean;3230 readonly isAmountLow: boolean;3231 readonly isMaxVestingSchedulesExceeded: boolean;3232 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3233 }32343235 /** @name OrmlXtokensModuleError (346) */3236 interface OrmlXtokensModuleError extends Enum {3237 readonly isAssetHasNoReserve: boolean;3238 readonly isNotCrossChainTransfer: boolean;3239 readonly isInvalidDest: boolean;3240 readonly isNotCrossChainTransferableCurrency: boolean;3241 readonly isUnweighableMessage: boolean;3242 readonly isXcmExecutionFailed: boolean;3243 readonly isCannotReanchor: boolean;3244 readonly isInvalidAncestry: boolean;3245 readonly isInvalidAsset: boolean;3246 readonly isDestinationNotInvertible: boolean;3247 readonly isBadVersion: boolean;3248 readonly isDistinctReserveForAssetAndFee: boolean;3249 readonly isZeroFee: boolean;3250 readonly isZeroAmount: boolean;3251 readonly isTooManyAssetsBeingSent: boolean;3252 readonly isAssetIndexNonExistent: boolean;3253 readonly isFeeNotEnough: boolean;3254 readonly isNotSupportedMultiLocation: boolean;3255 readonly isMinXcmFeeNotDefined: boolean;3256 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3257 }32583259 /** @name OrmlTokensBalanceLock (349) */3260 interface OrmlTokensBalanceLock extends Struct {3261 readonly id: U8aFixed;3262 readonly amount: u128;3263 }32643265 /** @name OrmlTokensAccountData (351) */3266 interface OrmlTokensAccountData extends Struct {3267 readonly free: u128;3268 readonly reserved: u128;3269 readonly frozen: u128;3270 }32713272 /** @name OrmlTokensReserveData (353) */3273 interface OrmlTokensReserveData extends Struct {3274 readonly id: Null;3275 readonly amount: u128;3276 }32773278 /** @name OrmlTokensModuleError (355) */3279 interface OrmlTokensModuleError extends Enum {3280 readonly isBalanceTooLow: boolean;3281 readonly isAmountIntoBalanceFailed: boolean;3282 readonly isLiquidityRestrictions: boolean;3283 readonly isMaxLocksExceeded: boolean;3284 readonly isKeepAlive: boolean;3285 readonly isExistentialDeposit: boolean;3286 readonly isDeadAccount: boolean;3287 readonly isTooManyReserves: boolean;3288 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3289 }32903291 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3292 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3293 readonly sender: u32;3294 readonly state: CumulusPalletXcmpQueueInboundState;3295 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3296 }32973298 /** @name CumulusPalletXcmpQueueInboundState (358) */3299 interface CumulusPalletXcmpQueueInboundState extends Enum {3300 readonly isOk: boolean;3301 readonly isSuspended: boolean;3302 readonly type: 'Ok' | 'Suspended';3303 }33043305 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3306 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3307 readonly isConcatenatedVersionedXcm: boolean;3308 readonly isConcatenatedEncodedBlob: boolean;3309 readonly isSignals: boolean;3310 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3311 }33123313 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3314 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3315 readonly recipient: u32;3316 readonly state: CumulusPalletXcmpQueueOutboundState;3317 readonly signalsExist: bool;3318 readonly firstIndex: u16;3319 readonly lastIndex: u16;3320 }33213322 /** @name CumulusPalletXcmpQueueOutboundState (365) */3323 interface CumulusPalletXcmpQueueOutboundState extends Enum {3324 readonly isOk: boolean;3325 readonly isSuspended: boolean;3326 readonly type: 'Ok' | 'Suspended';3327 }33283329 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3330 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3331 readonly suspendThreshold: u32;3332 readonly dropThreshold: u32;3333 readonly resumeThreshold: u32;3334 readonly thresholdWeight: Weight;3335 readonly weightRestrictDecay: Weight;3336 readonly xcmpMaxIndividualWeight: Weight;3337 }33383339 /** @name CumulusPalletXcmpQueueError (369) */3340 interface CumulusPalletXcmpQueueError extends Enum {3341 readonly isFailedToSend: boolean;3342 readonly isBadXcmOrigin: boolean;3343 readonly isBadXcm: boolean;3344 readonly isBadOverweightIndex: boolean;3345 readonly isWeightOverLimit: boolean;3346 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3347 }33483349 /** @name PalletXcmError (370) */3350 interface PalletXcmError extends Enum {3351 readonly isUnreachable: boolean;3352 readonly isSendFailure: boolean;3353 readonly isFiltered: boolean;3354 readonly isUnweighableMessage: boolean;3355 readonly isDestinationNotInvertible: boolean;3356 readonly isEmpty: boolean;3357 readonly isCannotReanchor: boolean;3358 readonly isTooManyAssets: boolean;3359 readonly isInvalidOrigin: boolean;3360 readonly isBadVersion: boolean;3361 readonly isBadLocation: boolean;3362 readonly isNoSubscription: boolean;3363 readonly isAlreadySubscribed: boolean;3364 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3365 }33663367 /** @name CumulusPalletXcmError (371) */3368 type CumulusPalletXcmError = Null;33693370 /** @name CumulusPalletDmpQueueConfigData (372) */3371 interface CumulusPalletDmpQueueConfigData extends Struct {3372 readonly maxIndividual: Weight;3373 }33743375 /** @name CumulusPalletDmpQueuePageIndexData (373) */3376 interface CumulusPalletDmpQueuePageIndexData extends Struct {3377 readonly beginUsed: u32;3378 readonly endUsed: u32;3379 readonly overweightCount: u64;3380 }33813382 /** @name CumulusPalletDmpQueueError (376) */3383 interface CumulusPalletDmpQueueError extends Enum {3384 readonly isUnknown: boolean;3385 readonly isOverLimit: boolean;3386 readonly type: 'Unknown' | 'OverLimit';3387 }33883389 /** @name PalletUniqueError (380) */3390 interface PalletUniqueError extends Enum {3391 readonly isCollectionDecimalPointLimitExceeded: boolean;3392 readonly isConfirmUnsetSponsorFail: boolean;3393 readonly isEmptyArgument: boolean;3394 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3395 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3396 }33973398 /** @name PalletUniqueSchedulerV2BlockAgenda (381) */3399 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3400 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3401 readonly freePlaces: u32;3402 }34033404 /** @name PalletUniqueSchedulerV2Scheduled (384) */3405 interface PalletUniqueSchedulerV2Scheduled extends Struct {3406 readonly maybeId: Option<U8aFixed>;3407 readonly priority: u8;3408 readonly call: PalletUniqueSchedulerV2ScheduledCall;3409 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3410 readonly origin: OpalRuntimeOriginCaller;3411 }34123413 /** @name PalletUniqueSchedulerV2ScheduledCall (385) */3414 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3415 readonly isInline: boolean;3416 readonly asInline: Bytes;3417 readonly isPreimageLookup: boolean;3418 readonly asPreimageLookup: {3419 readonly hash_: H256;3420 readonly unboundedLen: u32;3421 } & Struct;3422 readonly type: 'Inline' | 'PreimageLookup';3423 }34243425 /** @name OpalRuntimeOriginCaller (387) */3426 interface OpalRuntimeOriginCaller extends Enum {3427 readonly isSystem: boolean;3428 readonly asSystem: FrameSupportDispatchRawOrigin;3429 readonly isVoid: boolean;3430 readonly isPolkadotXcm: boolean;3431 readonly asPolkadotXcm: PalletXcmOrigin;3432 readonly isCumulusXcm: boolean;3433 readonly asCumulusXcm: CumulusPalletXcmOrigin;3434 readonly isEthereum: boolean;3435 readonly asEthereum: PalletEthereumRawOrigin;3436 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3437 }34383439 /** @name FrameSupportDispatchRawOrigin (388) */3440 interface FrameSupportDispatchRawOrigin extends Enum {3441 readonly isRoot: boolean;3442 readonly isSigned: boolean;3443 readonly asSigned: AccountId32;3444 readonly isNone: boolean;3445 readonly type: 'Root' | 'Signed' | 'None';3446 }34473448 /** @name PalletXcmOrigin (389) */3449 interface PalletXcmOrigin extends Enum {3450 readonly isXcm: boolean;3451 readonly asXcm: XcmV1MultiLocation;3452 readonly isResponse: boolean;3453 readonly asResponse: XcmV1MultiLocation;3454 readonly type: 'Xcm' | 'Response';3455 }34563457 /** @name CumulusPalletXcmOrigin (390) */3458 interface CumulusPalletXcmOrigin extends Enum {3459 readonly isRelay: boolean;3460 readonly isSiblingParachain: boolean;3461 readonly asSiblingParachain: u32;3462 readonly type: 'Relay' | 'SiblingParachain';3463 }34643465 /** @name PalletEthereumRawOrigin (391) */3466 interface PalletEthereumRawOrigin extends Enum {3467 readonly isEthereumTransaction: boolean;3468 readonly asEthereumTransaction: H160;3469 readonly type: 'EthereumTransaction';3470 }34713472 /** @name SpCoreVoid (392) */3473 type SpCoreVoid = Null;34743475 /** @name PalletUniqueSchedulerV2Error (394) */3476 interface PalletUniqueSchedulerV2Error extends Enum {3477 readonly isFailedToSchedule: boolean;3478 readonly isAgendaIsExhausted: boolean;3479 readonly isScheduledCallCorrupted: boolean;3480 readonly isPreimageNotFound: boolean;3481 readonly isTooBigScheduledCall: boolean;3482 readonly isNotFound: boolean;3483 readonly isTargetBlockNumberInPast: boolean;3484 readonly isNamed: boolean;3485 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3486 }34873488 /** @name UpDataStructsCollection (395) */3489 interface UpDataStructsCollection extends Struct {3490 readonly owner: AccountId32;3491 readonly mode: UpDataStructsCollectionMode;3492 readonly name: Vec<u16>;3493 readonly description: Vec<u16>;3494 readonly tokenPrefix: Bytes;3495 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3496 readonly limits: UpDataStructsCollectionLimits;3497 readonly permissions: UpDataStructsCollectionPermissions;3498 readonly flags: U8aFixed;3499 }35003501 /** @name UpDataStructsSponsorshipStateAccountId32 (396) */3502 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3503 readonly isDisabled: boolean;3504 readonly isUnconfirmed: boolean;3505 readonly asUnconfirmed: AccountId32;3506 readonly isConfirmed: boolean;3507 readonly asConfirmed: AccountId32;3508 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3509 }35103511 /** @name UpDataStructsProperties (398) */3512 interface UpDataStructsProperties extends Struct {3513 readonly map: UpDataStructsPropertiesMapBoundedVec;3514 readonly consumedSpace: u32;3515 readonly spaceLimit: u32;3516 }35173518 /** @name UpDataStructsPropertiesMapBoundedVec (399) */3519 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35203521 /** @name UpDataStructsPropertiesMapPropertyPermission (404) */3522 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35233524 /** @name UpDataStructsCollectionStats (411) */3525 interface UpDataStructsCollectionStats extends Struct {3526 readonly created: u32;3527 readonly destroyed: u32;3528 readonly alive: u32;3529 }35303531 /** @name UpDataStructsTokenChild (412) */3532 interface UpDataStructsTokenChild extends Struct {3533 readonly token: u32;3534 readonly collection: u32;3535 }35363537 /** @name PhantomTypeUpDataStructs (413) */3538 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35393540 /** @name UpDataStructsTokenData (415) */3541 interface UpDataStructsTokenData extends Struct {3542 readonly properties: Vec<UpDataStructsProperty>;3543 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3544 readonly pieces: u128;3545 }35463547 /** @name UpDataStructsRpcCollection (417) */3548 interface UpDataStructsRpcCollection extends Struct {3549 readonly owner: AccountId32;3550 readonly mode: UpDataStructsCollectionMode;3551 readonly name: Vec<u16>;3552 readonly description: Vec<u16>;3553 readonly tokenPrefix: Bytes;3554 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3555 readonly limits: UpDataStructsCollectionLimits;3556 readonly permissions: UpDataStructsCollectionPermissions;3557 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3558 readonly properties: Vec<UpDataStructsProperty>;3559 readonly readOnly: bool;3560 readonly flags: UpDataStructsRpcCollectionFlags;3561 }35623563 /** @name UpDataStructsRpcCollectionFlags (418) */3564 interface UpDataStructsRpcCollectionFlags extends Struct {3565 readonly foreign: bool;3566 readonly erc721metadata: bool;3567 }35683569 /** @name RmrkTraitsCollectionCollectionInfo (419) */3570 interface RmrkTraitsCollectionCollectionInfo extends Struct {3571 readonly issuer: AccountId32;3572 readonly metadata: Bytes;3573 readonly max: Option<u32>;3574 readonly symbol: Bytes;3575 readonly nftsCount: u32;3576 }35773578 /** @name RmrkTraitsNftNftInfo (420) */3579 interface RmrkTraitsNftNftInfo extends Struct {3580 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3581 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3582 readonly metadata: Bytes;3583 readonly equipped: bool;3584 readonly pending: bool;3585 }35863587 /** @name RmrkTraitsNftRoyaltyInfo (422) */3588 interface RmrkTraitsNftRoyaltyInfo extends Struct {3589 readonly recipient: AccountId32;3590 readonly amount: Permill;3591 }35923593 /** @name RmrkTraitsResourceResourceInfo (423) */3594 interface RmrkTraitsResourceResourceInfo extends Struct {3595 readonly id: u32;3596 readonly resource: RmrkTraitsResourceResourceTypes;3597 readonly pending: bool;3598 readonly pendingRemoval: bool;3599 }36003601 /** @name RmrkTraitsPropertyPropertyInfo (424) */3602 interface RmrkTraitsPropertyPropertyInfo extends Struct {3603 readonly key: Bytes;3604 readonly value: Bytes;3605 }36063607 /** @name RmrkTraitsBaseBaseInfo (425) */3608 interface RmrkTraitsBaseBaseInfo extends Struct {3609 readonly issuer: AccountId32;3610 readonly baseType: Bytes;3611 readonly symbol: Bytes;3612 }36133614 /** @name RmrkTraitsNftNftChild (426) */3615 interface RmrkTraitsNftNftChild extends Struct {3616 readonly collectionId: u32;3617 readonly nftId: u32;3618 }36193620 /** @name PalletCommonError (428) */3621 interface PalletCommonError extends Enum {3622 readonly isCollectionNotFound: boolean;3623 readonly isMustBeTokenOwner: boolean;3624 readonly isNoPermission: boolean;3625 readonly isCantDestroyNotEmptyCollection: boolean;3626 readonly isPublicMintingNotAllowed: boolean;3627 readonly isAddressNotInAllowlist: boolean;3628 readonly isCollectionNameLimitExceeded: boolean;3629 readonly isCollectionDescriptionLimitExceeded: boolean;3630 readonly isCollectionTokenPrefixLimitExceeded: boolean;3631 readonly isTotalCollectionsLimitExceeded: boolean;3632 readonly isCollectionAdminCountExceeded: boolean;3633 readonly isCollectionLimitBoundsExceeded: boolean;3634 readonly isOwnerPermissionsCantBeReverted: boolean;3635 readonly isTransferNotAllowed: boolean;3636 readonly isAccountTokenLimitExceeded: boolean;3637 readonly isCollectionTokenLimitExceeded: boolean;3638 readonly isMetadataFlagFrozen: boolean;3639 readonly isTokenNotFound: boolean;3640 readonly isTokenValueTooLow: boolean;3641 readonly isApprovedValueTooLow: boolean;3642 readonly isCantApproveMoreThanOwned: boolean;3643 readonly isAddressIsZero: boolean;3644 readonly isUnsupportedOperation: boolean;3645 readonly isNotSufficientFounds: boolean;3646 readonly isUserIsNotAllowedToNest: boolean;3647 readonly isSourceCollectionIsNotAllowedToNest: boolean;3648 readonly isCollectionFieldSizeExceeded: boolean;3649 readonly isNoSpaceForProperty: boolean;3650 readonly isPropertyLimitReached: boolean;3651 readonly isPropertyKeyIsTooLong: boolean;3652 readonly isInvalidCharacterInPropertyKey: boolean;3653 readonly isEmptyPropertyKey: boolean;3654 readonly isCollectionIsExternal: boolean;3655 readonly isCollectionIsInternal: boolean;3656 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3657 }36583659 /** @name PalletFungibleError (430) */3660 interface PalletFungibleError extends Enum {3661 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3662 readonly isFungibleItemsHaveNoId: boolean;3663 readonly isFungibleItemsDontHaveData: boolean;3664 readonly isFungibleDisallowsNesting: boolean;3665 readonly isSettingPropertiesNotAllowed: boolean;3666 readonly isSettingAllowanceForAllNotAllowed: boolean;3667 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3668 }36693670 /** @name PalletRefungibleItemData (431) */3671 interface PalletRefungibleItemData extends Struct {3672 readonly constData: Bytes;3673 }36743675 /** @name PalletRefungibleError (436) */3676 interface PalletRefungibleError extends Enum {3677 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3678 readonly isWrongRefungiblePieces: boolean;3679 readonly isRepartitionWhileNotOwningAllPieces: boolean;3680 readonly isRefungibleDisallowsNesting: boolean;3681 readonly isSettingPropertiesNotAllowed: boolean;3682 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3683 }36843685 /** @name PalletNonfungibleItemData (437) */3686 interface PalletNonfungibleItemData extends Struct {3687 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3688 }36893690 /** @name UpDataStructsPropertyScope (439) */3691 interface UpDataStructsPropertyScope extends Enum {3692 readonly isNone: boolean;3693 readonly isRmrk: boolean;3694 readonly type: 'None' | 'Rmrk';3695 }36963697 /** @name PalletNonfungibleError (441) */3698 interface PalletNonfungibleError extends Enum {3699 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3700 readonly isNonfungibleItemsHaveNoAmount: boolean;3701 readonly isCantBurnNftWithChildren: boolean;3702 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3703 }37043705 /** @name PalletStructureError (442) */3706 interface PalletStructureError extends Enum {3707 readonly isOuroborosDetected: boolean;3708 readonly isDepthLimit: boolean;3709 readonly isBreadthLimit: boolean;3710 readonly isTokenNotFound: boolean;3711 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3712 }37133714 /** @name PalletRmrkCoreError (443) */3715 interface PalletRmrkCoreError extends Enum {3716 readonly isCorruptedCollectionType: boolean;3717 readonly isRmrkPropertyKeyIsTooLong: boolean;3718 readonly isRmrkPropertyValueIsTooLong: boolean;3719 readonly isRmrkPropertyIsNotFound: boolean;3720 readonly isUnableToDecodeRmrkData: boolean;3721 readonly isCollectionNotEmpty: boolean;3722 readonly isNoAvailableCollectionId: boolean;3723 readonly isNoAvailableNftId: boolean;3724 readonly isCollectionUnknown: boolean;3725 readonly isNoPermission: boolean;3726 readonly isNonTransferable: boolean;3727 readonly isCollectionFullOrLocked: boolean;3728 readonly isResourceDoesntExist: boolean;3729 readonly isCannotSendToDescendentOrSelf: boolean;3730 readonly isCannotAcceptNonOwnedNft: boolean;3731 readonly isCannotRejectNonOwnedNft: boolean;3732 readonly isCannotRejectNonPendingNft: boolean;3733 readonly isResourceNotPending: boolean;3734 readonly isNoAvailableResourceId: boolean;3735 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3736 }37373738 /** @name PalletRmrkEquipError (445) */3739 interface PalletRmrkEquipError extends Enum {3740 readonly isPermissionError: boolean;3741 readonly isNoAvailableBaseId: boolean;3742 readonly isNoAvailablePartId: boolean;3743 readonly isBaseDoesntExist: boolean;3744 readonly isNeedsDefaultThemeFirst: boolean;3745 readonly isPartDoesntExist: boolean;3746 readonly isNoEquippableOnFixedPart: boolean;3747 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3748 }37493750 /** @name PalletAppPromotionError (451) */3751 interface PalletAppPromotionError extends Enum {3752 readonly isAdminNotSet: boolean;3753 readonly isNoPermission: boolean;3754 readonly isNotSufficientFunds: boolean;3755 readonly isPendingForBlockOverflow: boolean;3756 readonly isSponsorNotSet: boolean;3757 readonly isIncorrectLockedBalanceOperation: boolean;3758 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3759 }37603761 /** @name PalletForeignAssetsModuleError (452) */3762 interface PalletForeignAssetsModuleError extends Enum {3763 readonly isBadLocation: boolean;3764 readonly isMultiLocationExisted: boolean;3765 readonly isAssetIdNotExists: boolean;3766 readonly isAssetIdExisted: boolean;3767 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3768 }37693770 /** @name PalletEvmError (454) */3771 interface PalletEvmError extends Enum {3772 readonly isBalanceLow: boolean;3773 readonly isFeeOverflow: boolean;3774 readonly isPaymentOverflow: boolean;3775 readonly isWithdrawFailed: boolean;3776 readonly isGasPriceTooLow: boolean;3777 readonly isInvalidNonce: boolean;3778 readonly isGasLimitTooLow: boolean;3779 readonly isGasLimitTooHigh: boolean;3780 readonly isUndefined: boolean;3781 readonly isReentrancy: boolean;3782 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3783 }37843785 /** @name FpRpcTransactionStatus (457) */3786 interface FpRpcTransactionStatus extends Struct {3787 readonly transactionHash: H256;3788 readonly transactionIndex: u32;3789 readonly from: H160;3790 readonly to: Option<H160>;3791 readonly contractAddress: Option<H160>;3792 readonly logs: Vec<EthereumLog>;3793 readonly logsBloom: EthbloomBloom;3794 }37953796 /** @name EthbloomBloom (459) */3797 interface EthbloomBloom extends U8aFixed {}37983799 /** @name EthereumReceiptReceiptV3 (461) */3800 interface EthereumReceiptReceiptV3 extends Enum {3801 readonly isLegacy: boolean;3802 readonly asLegacy: EthereumReceiptEip658ReceiptData;3803 readonly isEip2930: boolean;3804 readonly asEip2930: EthereumReceiptEip658ReceiptData;3805 readonly isEip1559: boolean;3806 readonly asEip1559: EthereumReceiptEip658ReceiptData;3807 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3808 }38093810 /** @name EthereumReceiptEip658ReceiptData (462) */3811 interface EthereumReceiptEip658ReceiptData extends Struct {3812 readonly statusCode: u8;3813 readonly usedGas: U256;3814 readonly logsBloom: EthbloomBloom;3815 readonly logs: Vec<EthereumLog>;3816 }38173818 /** @name EthereumBlock (463) */3819 interface EthereumBlock extends Struct {3820 readonly header: EthereumHeader;3821 readonly transactions: Vec<EthereumTransactionTransactionV2>;3822 readonly ommers: Vec<EthereumHeader>;3823 }38243825 /** @name EthereumHeader (464) */3826 interface EthereumHeader extends Struct {3827 readonly parentHash: H256;3828 readonly ommersHash: H256;3829 readonly beneficiary: H160;3830 readonly stateRoot: H256;3831 readonly transactionsRoot: H256;3832 readonly receiptsRoot: H256;3833 readonly logsBloom: EthbloomBloom;3834 readonly difficulty: U256;3835 readonly number: U256;3836 readonly gasLimit: U256;3837 readonly gasUsed: U256;3838 readonly timestamp: u64;3839 readonly extraData: Bytes;3840 readonly mixHash: H256;3841 readonly nonce: EthereumTypesHashH64;3842 }38433844 /** @name EthereumTypesHashH64 (465) */3845 interface EthereumTypesHashH64 extends U8aFixed {}38463847 /** @name PalletEthereumError (470) */3848 interface PalletEthereumError extends Enum {3849 readonly isInvalidSignature: boolean;3850 readonly isPreLogExists: boolean;3851 readonly type: 'InvalidSignature' | 'PreLogExists';3852 }38533854 /** @name PalletEvmCoderSubstrateError (471) */3855 interface PalletEvmCoderSubstrateError extends Enum {3856 readonly isOutOfGas: boolean;3857 readonly isOutOfFund: boolean;3858 readonly type: 'OutOfGas' | 'OutOfFund';3859 }38603861 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */3862 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3863 readonly isDisabled: boolean;3864 readonly isUnconfirmed: boolean;3865 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3866 readonly isConfirmed: boolean;3867 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3868 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3869 }38703871 /** @name PalletEvmContractHelpersSponsoringModeT (473) */3872 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3873 readonly isDisabled: boolean;3874 readonly isAllowlisted: boolean;3875 readonly isGenerous: boolean;3876 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3877 }38783879 /** @name PalletEvmContractHelpersError (479) */3880 interface PalletEvmContractHelpersError extends Enum {3881 readonly isNoPermission: boolean;3882 readonly isNoPendingSponsor: boolean;3883 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3884 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3885 }38863887 /** @name PalletEvmMigrationError (480) */3888 interface PalletEvmMigrationError extends Enum {3889 readonly isAccountNotEmpty: boolean;3890 readonly isAccountIsNotMigrating: boolean;3891 readonly isBadEvent: boolean;3892 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3893 }38943895 /** @name PalletMaintenanceError (481) */3896 type PalletMaintenanceError = Null;38973898 /** @name PalletTestUtilsError (482) */3899 interface PalletTestUtilsError extends Enum {3900 readonly isTestPalletDisabled: boolean;3901 readonly isTriggerRollback: boolean;3902 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3903 }39043905 /** @name SpRuntimeMultiSignature (484) */3906 interface SpRuntimeMultiSignature extends Enum {3907 readonly isEd25519: boolean;3908 readonly asEd25519: SpCoreEd25519Signature;3909 readonly isSr25519: boolean;3910 readonly asSr25519: SpCoreSr25519Signature;3911 readonly isEcdsa: boolean;3912 readonly asEcdsa: SpCoreEcdsaSignature;3913 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3914 }39153916 /** @name SpCoreEd25519Signature (485) */3917 interface SpCoreEd25519Signature extends U8aFixed {}39183919 /** @name SpCoreSr25519Signature (487) */3920 interface SpCoreSr25519Signature extends U8aFixed {}39213922 /** @name SpCoreEcdsaSignature (488) */3923 interface SpCoreEcdsaSignature extends U8aFixed {}39243925 /** @name FrameSystemExtensionsCheckSpecVersion (491) */3926 type FrameSystemExtensionsCheckSpecVersion = Null;39273928 /** @name FrameSystemExtensionsCheckTxVersion (492) */3929 type FrameSystemExtensionsCheckTxVersion = Null;39303931 /** @name FrameSystemExtensionsCheckGenesis (493) */3932 type FrameSystemExtensionsCheckGenesis = Null;39333934 /** @name FrameSystemExtensionsCheckNonce (496) */3935 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39363937 /** @name FrameSystemExtensionsCheckWeight (497) */3938 type FrameSystemExtensionsCheckWeight = Null;39393940 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */3941 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39423943 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */3944 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39453946 /** @name OpalRuntimeRuntime (500) */3947 type OpalRuntimeRuntime = Null;39483949 /** @name PalletEthereumFakeTransactionFinalizer (501) */3950 type PalletEthereumFakeTransactionFinalizer = Null;39513952} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletUniqueRawEvent (89) */1113 interface PalletUniqueRawEvent extends Enum {1114 readonly isCollectionSponsorRemoved: boolean;1115 readonly asCollectionSponsorRemoved: u32;1116 readonly isCollectionAdminAdded: boolean;1117 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1118 readonly isCollectionOwnedChanged: boolean;1119 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1120 readonly isCollectionSponsorSet: boolean;1121 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1122 readonly isSponsorshipConfirmed: boolean;1123 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1124 readonly isCollectionAdminRemoved: boolean;1125 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1126 readonly isAllowListAddressRemoved: boolean;1127 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1128 readonly isAllowListAddressAdded: boolean;1129 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1130 readonly isCollectionLimitSet: boolean;1131 readonly asCollectionLimitSet: u32;1132 readonly isCollectionPermissionSet: boolean;1133 readonly asCollectionPermissionSet: u32;1134 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1135 }11361137 /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */1138 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1139 readonly isSubstrate: boolean;1140 readonly asSubstrate: AccountId32;1141 readonly isEthereum: boolean;1142 readonly asEthereum: H160;1143 readonly type: 'Substrate' | 'Ethereum';1144 }11451146 /** @name PalletUniqueSchedulerV2Event (93) */1147 interface PalletUniqueSchedulerV2Event extends Enum {1148 readonly isScheduled: boolean;1149 readonly asScheduled: {1150 readonly when: u32;1151 readonly index: u32;1152 } & Struct;1153 readonly isCanceled: boolean;1154 readonly asCanceled: {1155 readonly when: u32;1156 readonly index: u32;1157 } & Struct;1158 readonly isDispatched: boolean;1159 readonly asDispatched: {1160 readonly task: ITuple<[u32, u32]>;1161 readonly id: Option<U8aFixed>;1162 readonly result: Result<Null, SpRuntimeDispatchError>;1163 } & Struct;1164 readonly isPriorityChanged: boolean;1165 readonly asPriorityChanged: {1166 readonly task: ITuple<[u32, u32]>;1167 readonly priority: u8;1168 } & Struct;1169 readonly isCallUnavailable: boolean;1170 readonly asCallUnavailable: {1171 readonly task: ITuple<[u32, u32]>;1172 readonly id: Option<U8aFixed>;1173 } & Struct;1174 readonly isPermanentlyOverweight: boolean;1175 readonly asPermanentlyOverweight: {1176 readonly task: ITuple<[u32, u32]>;1177 readonly id: Option<U8aFixed>;1178 } & Struct;1179 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1180 }11811182 /** @name PalletCommonEvent (96) */1183 interface PalletCommonEvent extends Enum {1184 readonly isCollectionCreated: boolean;1185 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1186 readonly isCollectionDestroyed: boolean;1187 readonly asCollectionDestroyed: u32;1188 readonly isItemCreated: boolean;1189 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1190 readonly isItemDestroyed: boolean;1191 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1192 readonly isTransfer: boolean;1193 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1194 readonly isApproved: boolean;1195 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1196 readonly isApprovedForAll: boolean;1197 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1198 readonly isCollectionPropertySet: boolean;1199 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1200 readonly isCollectionPropertyDeleted: boolean;1201 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1202 readonly isTokenPropertySet: boolean;1203 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1204 readonly isTokenPropertyDeleted: boolean;1205 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1206 readonly isPropertyPermissionSet: boolean;1207 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1208 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1209 }12101211 /** @name PalletStructureEvent (100) */1212 interface PalletStructureEvent extends Enum {1213 readonly isExecuted: boolean;1214 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1215 readonly type: 'Executed';1216 }12171218 /** @name PalletRmrkCoreEvent (101) */1219 interface PalletRmrkCoreEvent extends Enum {1220 readonly isCollectionCreated: boolean;1221 readonly asCollectionCreated: {1222 readonly issuer: AccountId32;1223 readonly collectionId: u32;1224 } & Struct;1225 readonly isCollectionDestroyed: boolean;1226 readonly asCollectionDestroyed: {1227 readonly issuer: AccountId32;1228 readonly collectionId: u32;1229 } & Struct;1230 readonly isIssuerChanged: boolean;1231 readonly asIssuerChanged: {1232 readonly oldIssuer: AccountId32;1233 readonly newIssuer: AccountId32;1234 readonly collectionId: u32;1235 } & Struct;1236 readonly isCollectionLocked: boolean;1237 readonly asCollectionLocked: {1238 readonly issuer: AccountId32;1239 readonly collectionId: u32;1240 } & Struct;1241 readonly isNftMinted: boolean;1242 readonly asNftMinted: {1243 readonly owner: AccountId32;1244 readonly collectionId: u32;1245 readonly nftId: u32;1246 } & Struct;1247 readonly isNftBurned: boolean;1248 readonly asNftBurned: {1249 readonly owner: AccountId32;1250 readonly nftId: u32;1251 } & Struct;1252 readonly isNftSent: boolean;1253 readonly asNftSent: {1254 readonly sender: AccountId32;1255 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1256 readonly collectionId: u32;1257 readonly nftId: u32;1258 readonly approvalRequired: bool;1259 } & Struct;1260 readonly isNftAccepted: boolean;1261 readonly asNftAccepted: {1262 readonly sender: AccountId32;1263 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1264 readonly collectionId: u32;1265 readonly nftId: u32;1266 } & Struct;1267 readonly isNftRejected: boolean;1268 readonly asNftRejected: {1269 readonly sender: AccountId32;1270 readonly collectionId: u32;1271 readonly nftId: u32;1272 } & Struct;1273 readonly isPropertySet: boolean;1274 readonly asPropertySet: {1275 readonly collectionId: u32;1276 readonly maybeNftId: Option<u32>;1277 readonly key: Bytes;1278 readonly value: Bytes;1279 } & Struct;1280 readonly isResourceAdded: boolean;1281 readonly asResourceAdded: {1282 readonly nftId: u32;1283 readonly resourceId: u32;1284 } & Struct;1285 readonly isResourceRemoval: boolean;1286 readonly asResourceRemoval: {1287 readonly nftId: u32;1288 readonly resourceId: u32;1289 } & Struct;1290 readonly isResourceAccepted: boolean;1291 readonly asResourceAccepted: {1292 readonly nftId: u32;1293 readonly resourceId: u32;1294 } & Struct;1295 readonly isResourceRemovalAccepted: boolean;1296 readonly asResourceRemovalAccepted: {1297 readonly nftId: u32;1298 readonly resourceId: u32;1299 } & Struct;1300 readonly isPrioritySet: boolean;1301 readonly asPrioritySet: {1302 readonly collectionId: u32;1303 readonly nftId: u32;1304 } & Struct;1305 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1306 }13071308 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1309 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1310 readonly isAccountId: boolean;1311 readonly asAccountId: AccountId32;1312 readonly isCollectionAndNftTuple: boolean;1313 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1314 readonly type: 'AccountId' | 'CollectionAndNftTuple';1315 }13161317 /** @name PalletRmrkEquipEvent (106) */1318 interface PalletRmrkEquipEvent extends Enum {1319 readonly isBaseCreated: boolean;1320 readonly asBaseCreated: {1321 readonly issuer: AccountId32;1322 readonly baseId: u32;1323 } & Struct;1324 readonly isEquippablesUpdated: boolean;1325 readonly asEquippablesUpdated: {1326 readonly baseId: u32;1327 readonly slotId: u32;1328 } & Struct;1329 readonly type: 'BaseCreated' | 'EquippablesUpdated';1330 }13311332 /** @name PalletAppPromotionEvent (107) */1333 interface PalletAppPromotionEvent extends Enum {1334 readonly isStakingRecalculation: boolean;1335 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1336 readonly isStake: boolean;1337 readonly asStake: ITuple<[AccountId32, u128]>;1338 readonly isUnstake: boolean;1339 readonly asUnstake: ITuple<[AccountId32, u128]>;1340 readonly isSetAdmin: boolean;1341 readonly asSetAdmin: AccountId32;1342 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1343 }13441345 /** @name PalletForeignAssetsModuleEvent (108) */1346 interface PalletForeignAssetsModuleEvent extends Enum {1347 readonly isForeignAssetRegistered: boolean;1348 readonly asForeignAssetRegistered: {1349 readonly assetId: u32;1350 readonly assetAddress: XcmV1MultiLocation;1351 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1352 } & Struct;1353 readonly isForeignAssetUpdated: boolean;1354 readonly asForeignAssetUpdated: {1355 readonly assetId: u32;1356 readonly assetAddress: XcmV1MultiLocation;1357 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1358 } & Struct;1359 readonly isAssetRegistered: boolean;1360 readonly asAssetRegistered: {1361 readonly assetId: PalletForeignAssetsAssetIds;1362 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1363 } & Struct;1364 readonly isAssetUpdated: boolean;1365 readonly asAssetUpdated: {1366 readonly assetId: PalletForeignAssetsAssetIds;1367 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1368 } & Struct;1369 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1370 }13711372 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1373 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1374 readonly name: Bytes;1375 readonly symbol: Bytes;1376 readonly decimals: u8;1377 readonly minimalBalance: u128;1378 }13791380 /** @name PalletEvmEvent (110) */1381 interface PalletEvmEvent extends Enum {1382 readonly isLog: boolean;1383 readonly asLog: {1384 readonly log: EthereumLog;1385 } & Struct;1386 readonly isCreated: boolean;1387 readonly asCreated: {1388 readonly address: H160;1389 } & Struct;1390 readonly isCreatedFailed: boolean;1391 readonly asCreatedFailed: {1392 readonly address: H160;1393 } & Struct;1394 readonly isExecuted: boolean;1395 readonly asExecuted: {1396 readonly address: H160;1397 } & Struct;1398 readonly isExecutedFailed: boolean;1399 readonly asExecutedFailed: {1400 readonly address: H160;1401 } & Struct;1402 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1403 }14041405 /** @name EthereumLog (111) */1406 interface EthereumLog extends Struct {1407 readonly address: H160;1408 readonly topics: Vec<H256>;1409 readonly data: Bytes;1410 }14111412 /** @name PalletEthereumEvent (113) */1413 interface PalletEthereumEvent extends Enum {1414 readonly isExecuted: boolean;1415 readonly asExecuted: {1416 readonly from: H160;1417 readonly to: H160;1418 readonly transactionHash: H256;1419 readonly exitReason: EvmCoreErrorExitReason;1420 } & Struct;1421 readonly type: 'Executed';1422 }14231424 /** @name EvmCoreErrorExitReason (114) */1425 interface EvmCoreErrorExitReason extends Enum {1426 readonly isSucceed: boolean;1427 readonly asSucceed: EvmCoreErrorExitSucceed;1428 readonly isError: boolean;1429 readonly asError: EvmCoreErrorExitError;1430 readonly isRevert: boolean;1431 readonly asRevert: EvmCoreErrorExitRevert;1432 readonly isFatal: boolean;1433 readonly asFatal: EvmCoreErrorExitFatal;1434 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1435 }14361437 /** @name EvmCoreErrorExitSucceed (115) */1438 interface EvmCoreErrorExitSucceed extends Enum {1439 readonly isStopped: boolean;1440 readonly isReturned: boolean;1441 readonly isSuicided: boolean;1442 readonly type: 'Stopped' | 'Returned' | 'Suicided';1443 }14441445 /** @name EvmCoreErrorExitError (116) */1446 interface EvmCoreErrorExitError extends Enum {1447 readonly isStackUnderflow: boolean;1448 readonly isStackOverflow: boolean;1449 readonly isInvalidJump: boolean;1450 readonly isInvalidRange: boolean;1451 readonly isDesignatedInvalid: boolean;1452 readonly isCallTooDeep: boolean;1453 readonly isCreateCollision: boolean;1454 readonly isCreateContractLimit: boolean;1455 readonly isOutOfOffset: boolean;1456 readonly isOutOfGas: boolean;1457 readonly isOutOfFund: boolean;1458 readonly isPcUnderflow: boolean;1459 readonly isCreateEmpty: boolean;1460 readonly isOther: boolean;1461 readonly asOther: Text;1462 readonly isInvalidCode: boolean;1463 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1464 }14651466 /** @name EvmCoreErrorExitRevert (119) */1467 interface EvmCoreErrorExitRevert extends Enum {1468 readonly isReverted: boolean;1469 readonly type: 'Reverted';1470 }14711472 /** @name EvmCoreErrorExitFatal (120) */1473 interface EvmCoreErrorExitFatal extends Enum {1474 readonly isNotSupported: boolean;1475 readonly isUnhandledInterrupt: boolean;1476 readonly isCallErrorAsFatal: boolean;1477 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1478 readonly isOther: boolean;1479 readonly asOther: Text;1480 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1481 }14821483 /** @name PalletEvmContractHelpersEvent (121) */1484 interface PalletEvmContractHelpersEvent extends Enum {1485 readonly isContractSponsorSet: boolean;1486 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1487 readonly isContractSponsorshipConfirmed: boolean;1488 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1489 readonly isContractSponsorRemoved: boolean;1490 readonly asContractSponsorRemoved: H160;1491 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1492 }14931494 /** @name PalletEvmMigrationEvent (122) */1495 interface PalletEvmMigrationEvent extends Enum {1496 readonly isTestEvent: boolean;1497 readonly type: 'TestEvent';1498 }14991500 /** @name PalletMaintenanceEvent (123) */1501 interface PalletMaintenanceEvent extends Enum {1502 readonly isMaintenanceEnabled: boolean;1503 readonly isMaintenanceDisabled: boolean;1504 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1505 }15061507 /** @name PalletTestUtilsEvent (124) */1508 interface PalletTestUtilsEvent extends Enum {1509 readonly isValueIsSet: boolean;1510 readonly isShouldRollback: boolean;1511 readonly isBatchCompleted: boolean;1512 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1513 }15141515 /** @name FrameSystemPhase (125) */1516 interface FrameSystemPhase extends Enum {1517 readonly isApplyExtrinsic: boolean;1518 readonly asApplyExtrinsic: u32;1519 readonly isFinalization: boolean;1520 readonly isInitialization: boolean;1521 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1522 }15231524 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1525 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1526 readonly specVersion: Compact<u32>;1527 readonly specName: Text;1528 }15291530 /** @name FrameSystemCall (128) */1531 interface FrameSystemCall extends Enum {1532 readonly isFillBlock: boolean;1533 readonly asFillBlock: {1534 readonly ratio: Perbill;1535 } & Struct;1536 readonly isRemark: boolean;1537 readonly asRemark: {1538 readonly remark: Bytes;1539 } & Struct;1540 readonly isSetHeapPages: boolean;1541 readonly asSetHeapPages: {1542 readonly pages: u64;1543 } & Struct;1544 readonly isSetCode: boolean;1545 readonly asSetCode: {1546 readonly code: Bytes;1547 } & Struct;1548 readonly isSetCodeWithoutChecks: boolean;1549 readonly asSetCodeWithoutChecks: {1550 readonly code: Bytes;1551 } & Struct;1552 readonly isSetStorage: boolean;1553 readonly asSetStorage: {1554 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1555 } & Struct;1556 readonly isKillStorage: boolean;1557 readonly asKillStorage: {1558 readonly keys_: Vec<Bytes>;1559 } & Struct;1560 readonly isKillPrefix: boolean;1561 readonly asKillPrefix: {1562 readonly prefix: Bytes;1563 readonly subkeys: u32;1564 } & Struct;1565 readonly isRemarkWithEvent: boolean;1566 readonly asRemarkWithEvent: {1567 readonly remark: Bytes;1568 } & Struct;1569 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1570 }15711572 /** @name FrameSystemLimitsBlockWeights (133) */1573 interface FrameSystemLimitsBlockWeights extends Struct {1574 readonly baseBlock: SpWeightsWeightV2Weight;1575 readonly maxBlock: SpWeightsWeightV2Weight;1576 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1577 }15781579 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */1580 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1581 readonly normal: FrameSystemLimitsWeightsPerClass;1582 readonly operational: FrameSystemLimitsWeightsPerClass;1583 readonly mandatory: FrameSystemLimitsWeightsPerClass;1584 }15851586 /** @name FrameSystemLimitsWeightsPerClass (135) */1587 interface FrameSystemLimitsWeightsPerClass extends Struct {1588 readonly baseExtrinsic: SpWeightsWeightV2Weight;1589 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1590 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1591 readonly reserved: Option<SpWeightsWeightV2Weight>;1592 }15931594 /** @name FrameSystemLimitsBlockLength (137) */1595 interface FrameSystemLimitsBlockLength extends Struct {1596 readonly max: FrameSupportDispatchPerDispatchClassU32;1597 }15981599 /** @name FrameSupportDispatchPerDispatchClassU32 (138) */1600 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1601 readonly normal: u32;1602 readonly operational: u32;1603 readonly mandatory: u32;1604 }16051606 /** @name SpWeightsRuntimeDbWeight (139) */1607 interface SpWeightsRuntimeDbWeight extends Struct {1608 readonly read: u64;1609 readonly write: u64;1610 }16111612 /** @name SpVersionRuntimeVersion (140) */1613 interface SpVersionRuntimeVersion extends Struct {1614 readonly specName: Text;1615 readonly implName: Text;1616 readonly authoringVersion: u32;1617 readonly specVersion: u32;1618 readonly implVersion: u32;1619 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1620 readonly transactionVersion: u32;1621 readonly stateVersion: u8;1622 }16231624 /** @name FrameSystemError (145) */1625 interface FrameSystemError extends Enum {1626 readonly isInvalidSpecName: boolean;1627 readonly isSpecVersionNeedsToIncrease: boolean;1628 readonly isFailedToExtractRuntimeVersion: boolean;1629 readonly isNonDefaultComposite: boolean;1630 readonly isNonZeroRefCount: boolean;1631 readonly isCallFiltered: boolean;1632 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1633 }16341635 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1636 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1637 readonly parentHead: Bytes;1638 readonly relayParentNumber: u32;1639 readonly relayParentStorageRoot: H256;1640 readonly maxPovSize: u32;1641 }16421643 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1644 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1645 readonly isPresent: boolean;1646 readonly type: 'Present';1647 }16481649 /** @name SpTrieStorageProof (150) */1650 interface SpTrieStorageProof extends Struct {1651 readonly trieNodes: BTreeSet<Bytes>;1652 }16531654 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1655 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1656 readonly dmqMqcHead: H256;1657 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1658 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1659 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1660 }16611662 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1663 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1664 readonly maxCapacity: u32;1665 readonly maxTotalSize: u32;1666 readonly maxMessageSize: u32;1667 readonly msgCount: u32;1668 readonly totalSize: u32;1669 readonly mqcHead: Option<H256>;1670 }16711672 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1673 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1674 readonly maxCodeSize: u32;1675 readonly maxHeadDataSize: u32;1676 readonly maxUpwardQueueCount: u32;1677 readonly maxUpwardQueueSize: u32;1678 readonly maxUpwardMessageSize: u32;1679 readonly maxUpwardMessageNumPerCandidate: u32;1680 readonly hrmpMaxMessageNumPerCandidate: u32;1681 readonly validationUpgradeCooldown: u32;1682 readonly validationUpgradeDelay: u32;1683 }16841685 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1686 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1687 readonly recipient: u32;1688 readonly data: Bytes;1689 }16901691 /** @name CumulusPalletParachainSystemCall (163) */1692 interface CumulusPalletParachainSystemCall extends Enum {1693 readonly isSetValidationData: boolean;1694 readonly asSetValidationData: {1695 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1696 } & Struct;1697 readonly isSudoSendUpwardMessage: boolean;1698 readonly asSudoSendUpwardMessage: {1699 readonly message: Bytes;1700 } & Struct;1701 readonly isAuthorizeUpgrade: boolean;1702 readonly asAuthorizeUpgrade: {1703 readonly codeHash: H256;1704 } & Struct;1705 readonly isEnactAuthorizedUpgrade: boolean;1706 readonly asEnactAuthorizedUpgrade: {1707 readonly code: Bytes;1708 } & Struct;1709 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1710 }17111712 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1713 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1714 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1715 readonly relayChainState: SpTrieStorageProof;1716 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1717 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1718 }17191720 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1721 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1722 readonly sentAt: u32;1723 readonly msg: Bytes;1724 }17251726 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1727 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1728 readonly sentAt: u32;1729 readonly data: Bytes;1730 }17311732 /** @name CumulusPalletParachainSystemError (172) */1733 interface CumulusPalletParachainSystemError extends Enum {1734 readonly isOverlappingUpgrades: boolean;1735 readonly isProhibitedByPolkadot: boolean;1736 readonly isTooBig: boolean;1737 readonly isValidationDataNotAvailable: boolean;1738 readonly isHostConfigurationNotAvailable: boolean;1739 readonly isNotScheduled: boolean;1740 readonly isNothingAuthorized: boolean;1741 readonly isUnauthorized: boolean;1742 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1743 }17441745 /** @name PalletBalancesBalanceLock (174) */1746 interface PalletBalancesBalanceLock extends Struct {1747 readonly id: U8aFixed;1748 readonly amount: u128;1749 readonly reasons: PalletBalancesReasons;1750 }17511752 /** @name PalletBalancesReasons (175) */1753 interface PalletBalancesReasons extends Enum {1754 readonly isFee: boolean;1755 readonly isMisc: boolean;1756 readonly isAll: boolean;1757 readonly type: 'Fee' | 'Misc' | 'All';1758 }17591760 /** @name PalletBalancesReserveData (178) */1761 interface PalletBalancesReserveData extends Struct {1762 readonly id: U8aFixed;1763 readonly amount: u128;1764 }17651766 /** @name PalletBalancesReleases (180) */1767 interface PalletBalancesReleases extends Enum {1768 readonly isV100: boolean;1769 readonly isV200: boolean;1770 readonly type: 'V100' | 'V200';1771 }17721773 /** @name PalletBalancesCall (181) */1774 interface PalletBalancesCall extends Enum {1775 readonly isTransfer: boolean;1776 readonly asTransfer: {1777 readonly dest: MultiAddress;1778 readonly value: Compact<u128>;1779 } & Struct;1780 readonly isSetBalance: boolean;1781 readonly asSetBalance: {1782 readonly who: MultiAddress;1783 readonly newFree: Compact<u128>;1784 readonly newReserved: Compact<u128>;1785 } & Struct;1786 readonly isForceTransfer: boolean;1787 readonly asForceTransfer: {1788 readonly source: MultiAddress;1789 readonly dest: MultiAddress;1790 readonly value: Compact<u128>;1791 } & Struct;1792 readonly isTransferKeepAlive: boolean;1793 readonly asTransferKeepAlive: {1794 readonly dest: MultiAddress;1795 readonly value: Compact<u128>;1796 } & Struct;1797 readonly isTransferAll: boolean;1798 readonly asTransferAll: {1799 readonly dest: MultiAddress;1800 readonly keepAlive: bool;1801 } & Struct;1802 readonly isForceUnreserve: boolean;1803 readonly asForceUnreserve: {1804 readonly who: MultiAddress;1805 readonly amount: u128;1806 } & Struct;1807 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1808 }18091810 /** @name PalletBalancesError (184) */1811 interface PalletBalancesError extends Enum {1812 readonly isVestingBalance: boolean;1813 readonly isLiquidityRestrictions: boolean;1814 readonly isInsufficientBalance: boolean;1815 readonly isExistentialDeposit: boolean;1816 readonly isKeepAlive: boolean;1817 readonly isExistingVestingSchedule: boolean;1818 readonly isDeadAccount: boolean;1819 readonly isTooManyReserves: boolean;1820 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1821 }18221823 /** @name PalletTimestampCall (186) */1824 interface PalletTimestampCall extends Enum {1825 readonly isSet: boolean;1826 readonly asSet: {1827 readonly now: Compact<u64>;1828 } & Struct;1829 readonly type: 'Set';1830 }18311832 /** @name PalletTransactionPaymentReleases (188) */1833 interface PalletTransactionPaymentReleases extends Enum {1834 readonly isV1Ancient: boolean;1835 readonly isV2: boolean;1836 readonly type: 'V1Ancient' | 'V2';1837 }18381839 /** @name PalletTreasuryProposal (189) */1840 interface PalletTreasuryProposal extends Struct {1841 readonly proposer: AccountId32;1842 readonly value: u128;1843 readonly beneficiary: AccountId32;1844 readonly bond: u128;1845 }18461847 /** @name PalletTreasuryCall (192) */1848 interface PalletTreasuryCall extends Enum {1849 readonly isProposeSpend: boolean;1850 readonly asProposeSpend: {1851 readonly value: Compact<u128>;1852 readonly beneficiary: MultiAddress;1853 } & Struct;1854 readonly isRejectProposal: boolean;1855 readonly asRejectProposal: {1856 readonly proposalId: Compact<u32>;1857 } & Struct;1858 readonly isApproveProposal: boolean;1859 readonly asApproveProposal: {1860 readonly proposalId: Compact<u32>;1861 } & Struct;1862 readonly isSpend: boolean;1863 readonly asSpend: {1864 readonly amount: Compact<u128>;1865 readonly beneficiary: MultiAddress;1866 } & Struct;1867 readonly isRemoveApproval: boolean;1868 readonly asRemoveApproval: {1869 readonly proposalId: Compact<u32>;1870 } & Struct;1871 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1872 }18731874 /** @name FrameSupportPalletId (195) */1875 interface FrameSupportPalletId extends U8aFixed {}18761877 /** @name PalletTreasuryError (196) */1878 interface PalletTreasuryError extends Enum {1879 readonly isInsufficientProposersBalance: boolean;1880 readonly isInvalidIndex: boolean;1881 readonly isTooManyApprovals: boolean;1882 readonly isInsufficientPermission: boolean;1883 readonly isProposalNotApproved: boolean;1884 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1885 }18861887 /** @name PalletSudoCall (197) */1888 interface PalletSudoCall extends Enum {1889 readonly isSudo: boolean;1890 readonly asSudo: {1891 readonly call: Call;1892 } & Struct;1893 readonly isSudoUncheckedWeight: boolean;1894 readonly asSudoUncheckedWeight: {1895 readonly call: Call;1896 readonly weight: SpWeightsWeightV2Weight;1897 } & Struct;1898 readonly isSetKey: boolean;1899 readonly asSetKey: {1900 readonly new_: MultiAddress;1901 } & Struct;1902 readonly isSudoAs: boolean;1903 readonly asSudoAs: {1904 readonly who: MultiAddress;1905 readonly call: Call;1906 } & Struct;1907 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1908 }19091910 /** @name OrmlVestingModuleCall (199) */1911 interface OrmlVestingModuleCall extends Enum {1912 readonly isClaim: boolean;1913 readonly isVestedTransfer: boolean;1914 readonly asVestedTransfer: {1915 readonly dest: MultiAddress;1916 readonly schedule: OrmlVestingVestingSchedule;1917 } & Struct;1918 readonly isUpdateVestingSchedules: boolean;1919 readonly asUpdateVestingSchedules: {1920 readonly who: MultiAddress;1921 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1922 } & Struct;1923 readonly isClaimFor: boolean;1924 readonly asClaimFor: {1925 readonly dest: MultiAddress;1926 } & Struct;1927 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1928 }19291930 /** @name OrmlXtokensModuleCall (201) */1931 interface OrmlXtokensModuleCall extends Enum {1932 readonly isTransfer: boolean;1933 readonly asTransfer: {1934 readonly currencyId: PalletForeignAssetsAssetIds;1935 readonly amount: u128;1936 readonly dest: XcmVersionedMultiLocation;1937 readonly destWeightLimit: XcmV2WeightLimit;1938 } & Struct;1939 readonly isTransferMultiasset: boolean;1940 readonly asTransferMultiasset: {1941 readonly asset: XcmVersionedMultiAsset;1942 readonly dest: XcmVersionedMultiLocation;1943 readonly destWeightLimit: XcmV2WeightLimit;1944 } & Struct;1945 readonly isTransferWithFee: boolean;1946 readonly asTransferWithFee: {1947 readonly currencyId: PalletForeignAssetsAssetIds;1948 readonly amount: u128;1949 readonly fee: u128;1950 readonly dest: XcmVersionedMultiLocation;1951 readonly destWeightLimit: XcmV2WeightLimit;1952 } & Struct;1953 readonly isTransferMultiassetWithFee: boolean;1954 readonly asTransferMultiassetWithFee: {1955 readonly asset: XcmVersionedMultiAsset;1956 readonly fee: XcmVersionedMultiAsset;1957 readonly dest: XcmVersionedMultiLocation;1958 readonly destWeightLimit: XcmV2WeightLimit;1959 } & Struct;1960 readonly isTransferMulticurrencies: boolean;1961 readonly asTransferMulticurrencies: {1962 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1963 readonly feeItem: u32;1964 readonly dest: XcmVersionedMultiLocation;1965 readonly destWeightLimit: XcmV2WeightLimit;1966 } & Struct;1967 readonly isTransferMultiassets: boolean;1968 readonly asTransferMultiassets: {1969 readonly assets: XcmVersionedMultiAssets;1970 readonly feeItem: u32;1971 readonly dest: XcmVersionedMultiLocation;1972 readonly destWeightLimit: XcmV2WeightLimit;1973 } & Struct;1974 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1975 }19761977 /** @name XcmVersionedMultiAsset (202) */1978 interface XcmVersionedMultiAsset extends Enum {1979 readonly isV0: boolean;1980 readonly asV0: XcmV0MultiAsset;1981 readonly isV1: boolean;1982 readonly asV1: XcmV1MultiAsset;1983 readonly type: 'V0' | 'V1';1984 }19851986 /** @name OrmlTokensModuleCall (205) */1987 interface OrmlTokensModuleCall extends Enum {1988 readonly isTransfer: boolean;1989 readonly asTransfer: {1990 readonly dest: MultiAddress;1991 readonly currencyId: PalletForeignAssetsAssetIds;1992 readonly amount: Compact<u128>;1993 } & Struct;1994 readonly isTransferAll: boolean;1995 readonly asTransferAll: {1996 readonly dest: MultiAddress;1997 readonly currencyId: PalletForeignAssetsAssetIds;1998 readonly keepAlive: bool;1999 } & Struct;2000 readonly isTransferKeepAlive: boolean;2001 readonly asTransferKeepAlive: {2002 readonly dest: MultiAddress;2003 readonly currencyId: PalletForeignAssetsAssetIds;2004 readonly amount: Compact<u128>;2005 } & Struct;2006 readonly isForceTransfer: boolean;2007 readonly asForceTransfer: {2008 readonly source: MultiAddress;2009 readonly dest: MultiAddress;2010 readonly currencyId: PalletForeignAssetsAssetIds;2011 readonly amount: Compact<u128>;2012 } & Struct;2013 readonly isSetBalance: boolean;2014 readonly asSetBalance: {2015 readonly who: MultiAddress;2016 readonly currencyId: PalletForeignAssetsAssetIds;2017 readonly newFree: Compact<u128>;2018 readonly newReserved: Compact<u128>;2019 } & Struct;2020 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2021 }20222023 /** @name CumulusPalletXcmpQueueCall (206) */2024 interface CumulusPalletXcmpQueueCall extends Enum {2025 readonly isServiceOverweight: boolean;2026 readonly asServiceOverweight: {2027 readonly index: u64;2028 readonly weightLimit: u64;2029 } & Struct;2030 readonly isSuspendXcmExecution: boolean;2031 readonly isResumeXcmExecution: boolean;2032 readonly isUpdateSuspendThreshold: boolean;2033 readonly asUpdateSuspendThreshold: {2034 readonly new_: u32;2035 } & Struct;2036 readonly isUpdateDropThreshold: boolean;2037 readonly asUpdateDropThreshold: {2038 readonly new_: u32;2039 } & Struct;2040 readonly isUpdateResumeThreshold: boolean;2041 readonly asUpdateResumeThreshold: {2042 readonly new_: u32;2043 } & Struct;2044 readonly isUpdateThresholdWeight: boolean;2045 readonly asUpdateThresholdWeight: {2046 readonly new_: u64;2047 } & Struct;2048 readonly isUpdateWeightRestrictDecay: boolean;2049 readonly asUpdateWeightRestrictDecay: {2050 readonly new_: u64;2051 } & Struct;2052 readonly isUpdateXcmpMaxIndividualWeight: boolean;2053 readonly asUpdateXcmpMaxIndividualWeight: {2054 readonly new_: u64;2055 } & Struct;2056 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2057 }20582059 /** @name PalletXcmCall (207) */2060 interface PalletXcmCall extends Enum {2061 readonly isSend: boolean;2062 readonly asSend: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly message: XcmVersionedXcm;2065 } & Struct;2066 readonly isTeleportAssets: boolean;2067 readonly asTeleportAssets: {2068 readonly dest: XcmVersionedMultiLocation;2069 readonly beneficiary: XcmVersionedMultiLocation;2070 readonly assets: XcmVersionedMultiAssets;2071 readonly feeAssetItem: u32;2072 } & Struct;2073 readonly isReserveTransferAssets: boolean;2074 readonly asReserveTransferAssets: {2075 readonly dest: XcmVersionedMultiLocation;2076 readonly beneficiary: XcmVersionedMultiLocation;2077 readonly assets: XcmVersionedMultiAssets;2078 readonly feeAssetItem: u32;2079 } & Struct;2080 readonly isExecute: boolean;2081 readonly asExecute: {2082 readonly message: XcmVersionedXcm;2083 readonly maxWeight: u64;2084 } & Struct;2085 readonly isForceXcmVersion: boolean;2086 readonly asForceXcmVersion: {2087 readonly location: XcmV1MultiLocation;2088 readonly xcmVersion: u32;2089 } & Struct;2090 readonly isForceDefaultXcmVersion: boolean;2091 readonly asForceDefaultXcmVersion: {2092 readonly maybeXcmVersion: Option<u32>;2093 } & Struct;2094 readonly isForceSubscribeVersionNotify: boolean;2095 readonly asForceSubscribeVersionNotify: {2096 readonly location: XcmVersionedMultiLocation;2097 } & Struct;2098 readonly isForceUnsubscribeVersionNotify: boolean;2099 readonly asForceUnsubscribeVersionNotify: {2100 readonly location: XcmVersionedMultiLocation;2101 } & Struct;2102 readonly isLimitedReserveTransferAssets: boolean;2103 readonly asLimitedReserveTransferAssets: {2104 readonly dest: XcmVersionedMultiLocation;2105 readonly beneficiary: XcmVersionedMultiLocation;2106 readonly assets: XcmVersionedMultiAssets;2107 readonly feeAssetItem: u32;2108 readonly weightLimit: XcmV2WeightLimit;2109 } & Struct;2110 readonly isLimitedTeleportAssets: boolean;2111 readonly asLimitedTeleportAssets: {2112 readonly dest: XcmVersionedMultiLocation;2113 readonly beneficiary: XcmVersionedMultiLocation;2114 readonly assets: XcmVersionedMultiAssets;2115 readonly feeAssetItem: u32;2116 readonly weightLimit: XcmV2WeightLimit;2117 } & Struct;2118 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2119 }21202121 /** @name XcmVersionedXcm (208) */2122 interface XcmVersionedXcm extends Enum {2123 readonly isV0: boolean;2124 readonly asV0: XcmV0Xcm;2125 readonly isV1: boolean;2126 readonly asV1: XcmV1Xcm;2127 readonly isV2: boolean;2128 readonly asV2: XcmV2Xcm;2129 readonly type: 'V0' | 'V1' | 'V2';2130 }21312132 /** @name XcmV0Xcm (209) */2133 interface XcmV0Xcm extends Enum {2134 readonly isWithdrawAsset: boolean;2135 readonly asWithdrawAsset: {2136 readonly assets: Vec<XcmV0MultiAsset>;2137 readonly effects: Vec<XcmV0Order>;2138 } & Struct;2139 readonly isReserveAssetDeposit: boolean;2140 readonly asReserveAssetDeposit: {2141 readonly assets: Vec<XcmV0MultiAsset>;2142 readonly effects: Vec<XcmV0Order>;2143 } & Struct;2144 readonly isTeleportAsset: boolean;2145 readonly asTeleportAsset: {2146 readonly assets: Vec<XcmV0MultiAsset>;2147 readonly effects: Vec<XcmV0Order>;2148 } & Struct;2149 readonly isQueryResponse: boolean;2150 readonly asQueryResponse: {2151 readonly queryId: Compact<u64>;2152 readonly response: XcmV0Response;2153 } & Struct;2154 readonly isTransferAsset: boolean;2155 readonly asTransferAsset: {2156 readonly assets: Vec<XcmV0MultiAsset>;2157 readonly dest: XcmV0MultiLocation;2158 } & Struct;2159 readonly isTransferReserveAsset: boolean;2160 readonly asTransferReserveAsset: {2161 readonly assets: Vec<XcmV0MultiAsset>;2162 readonly dest: XcmV0MultiLocation;2163 readonly effects: Vec<XcmV0Order>;2164 } & Struct;2165 readonly isTransact: boolean;2166 readonly asTransact: {2167 readonly originType: XcmV0OriginKind;2168 readonly requireWeightAtMost: u64;2169 readonly call: XcmDoubleEncoded;2170 } & Struct;2171 readonly isHrmpNewChannelOpenRequest: boolean;2172 readonly asHrmpNewChannelOpenRequest: {2173 readonly sender: Compact<u32>;2174 readonly maxMessageSize: Compact<u32>;2175 readonly maxCapacity: Compact<u32>;2176 } & Struct;2177 readonly isHrmpChannelAccepted: boolean;2178 readonly asHrmpChannelAccepted: {2179 readonly recipient: Compact<u32>;2180 } & Struct;2181 readonly isHrmpChannelClosing: boolean;2182 readonly asHrmpChannelClosing: {2183 readonly initiator: Compact<u32>;2184 readonly sender: Compact<u32>;2185 readonly recipient: Compact<u32>;2186 } & Struct;2187 readonly isRelayedFrom: boolean;2188 readonly asRelayedFrom: {2189 readonly who: XcmV0MultiLocation;2190 readonly message: XcmV0Xcm;2191 } & Struct;2192 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2193 }21942195 /** @name XcmV0Order (211) */2196 interface XcmV0Order extends Enum {2197 readonly isNull: boolean;2198 readonly isDepositAsset: boolean;2199 readonly asDepositAsset: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly dest: XcmV0MultiLocation;2202 } & Struct;2203 readonly isDepositReserveAsset: boolean;2204 readonly asDepositReserveAsset: {2205 readonly assets: Vec<XcmV0MultiAsset>;2206 readonly dest: XcmV0MultiLocation;2207 readonly effects: Vec<XcmV0Order>;2208 } & Struct;2209 readonly isExchangeAsset: boolean;2210 readonly asExchangeAsset: {2211 readonly give: Vec<XcmV0MultiAsset>;2212 readonly receive: Vec<XcmV0MultiAsset>;2213 } & Struct;2214 readonly isInitiateReserveWithdraw: boolean;2215 readonly asInitiateReserveWithdraw: {2216 readonly assets: Vec<XcmV0MultiAsset>;2217 readonly reserve: XcmV0MultiLocation;2218 readonly effects: Vec<XcmV0Order>;2219 } & Struct;2220 readonly isInitiateTeleport: boolean;2221 readonly asInitiateTeleport: {2222 readonly assets: Vec<XcmV0MultiAsset>;2223 readonly dest: XcmV0MultiLocation;2224 readonly effects: Vec<XcmV0Order>;2225 } & Struct;2226 readonly isQueryHolding: boolean;2227 readonly asQueryHolding: {2228 readonly queryId: Compact<u64>;2229 readonly dest: XcmV0MultiLocation;2230 readonly assets: Vec<XcmV0MultiAsset>;2231 } & Struct;2232 readonly isBuyExecution: boolean;2233 readonly asBuyExecution: {2234 readonly fees: XcmV0MultiAsset;2235 readonly weight: u64;2236 readonly debt: u64;2237 readonly haltOnError: bool;2238 readonly xcm: Vec<XcmV0Xcm>;2239 } & Struct;2240 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2241 }22422243 /** @name XcmV0Response (213) */2244 interface XcmV0Response extends Enum {2245 readonly isAssets: boolean;2246 readonly asAssets: Vec<XcmV0MultiAsset>;2247 readonly type: 'Assets';2248 }22492250 /** @name XcmV1Xcm (214) */2251 interface XcmV1Xcm extends Enum {2252 readonly isWithdrawAsset: boolean;2253 readonly asWithdrawAsset: {2254 readonly assets: XcmV1MultiassetMultiAssets;2255 readonly effects: Vec<XcmV1Order>;2256 } & Struct;2257 readonly isReserveAssetDeposited: boolean;2258 readonly asReserveAssetDeposited: {2259 readonly assets: XcmV1MultiassetMultiAssets;2260 readonly effects: Vec<XcmV1Order>;2261 } & Struct;2262 readonly isReceiveTeleportedAsset: boolean;2263 readonly asReceiveTeleportedAsset: {2264 readonly assets: XcmV1MultiassetMultiAssets;2265 readonly effects: Vec<XcmV1Order>;2266 } & Struct;2267 readonly isQueryResponse: boolean;2268 readonly asQueryResponse: {2269 readonly queryId: Compact<u64>;2270 readonly response: XcmV1Response;2271 } & Struct;2272 readonly isTransferAsset: boolean;2273 readonly asTransferAsset: {2274 readonly assets: XcmV1MultiassetMultiAssets;2275 readonly beneficiary: XcmV1MultiLocation;2276 } & Struct;2277 readonly isTransferReserveAsset: boolean;2278 readonly asTransferReserveAsset: {2279 readonly assets: XcmV1MultiassetMultiAssets;2280 readonly dest: XcmV1MultiLocation;2281 readonly effects: Vec<XcmV1Order>;2282 } & Struct;2283 readonly isTransact: boolean;2284 readonly asTransact: {2285 readonly originType: XcmV0OriginKind;2286 readonly requireWeightAtMost: u64;2287 readonly call: XcmDoubleEncoded;2288 } & Struct;2289 readonly isHrmpNewChannelOpenRequest: boolean;2290 readonly asHrmpNewChannelOpenRequest: {2291 readonly sender: Compact<u32>;2292 readonly maxMessageSize: Compact<u32>;2293 readonly maxCapacity: Compact<u32>;2294 } & Struct;2295 readonly isHrmpChannelAccepted: boolean;2296 readonly asHrmpChannelAccepted: {2297 readonly recipient: Compact<u32>;2298 } & Struct;2299 readonly isHrmpChannelClosing: boolean;2300 readonly asHrmpChannelClosing: {2301 readonly initiator: Compact<u32>;2302 readonly sender: Compact<u32>;2303 readonly recipient: Compact<u32>;2304 } & Struct;2305 readonly isRelayedFrom: boolean;2306 readonly asRelayedFrom: {2307 readonly who: XcmV1MultilocationJunctions;2308 readonly message: XcmV1Xcm;2309 } & Struct;2310 readonly isSubscribeVersion: boolean;2311 readonly asSubscribeVersion: {2312 readonly queryId: Compact<u64>;2313 readonly maxResponseWeight: Compact<u64>;2314 } & Struct;2315 readonly isUnsubscribeVersion: boolean;2316 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2317 }23182319 /** @name XcmV1Order (216) */2320 interface XcmV1Order extends Enum {2321 readonly isNoop: boolean;2322 readonly isDepositAsset: boolean;2323 readonly asDepositAsset: {2324 readonly assets: XcmV1MultiassetMultiAssetFilter;2325 readonly maxAssets: u32;2326 readonly beneficiary: XcmV1MultiLocation;2327 } & Struct;2328 readonly isDepositReserveAsset: boolean;2329 readonly asDepositReserveAsset: {2330 readonly assets: XcmV1MultiassetMultiAssetFilter;2331 readonly maxAssets: u32;2332 readonly dest: XcmV1MultiLocation;2333 readonly effects: Vec<XcmV1Order>;2334 } & Struct;2335 readonly isExchangeAsset: boolean;2336 readonly asExchangeAsset: {2337 readonly give: XcmV1MultiassetMultiAssetFilter;2338 readonly receive: XcmV1MultiassetMultiAssets;2339 } & Struct;2340 readonly isInitiateReserveWithdraw: boolean;2341 readonly asInitiateReserveWithdraw: {2342 readonly assets: XcmV1MultiassetMultiAssetFilter;2343 readonly reserve: XcmV1MultiLocation;2344 readonly effects: Vec<XcmV1Order>;2345 } & Struct;2346 readonly isInitiateTeleport: boolean;2347 readonly asInitiateTeleport: {2348 readonly assets: XcmV1MultiassetMultiAssetFilter;2349 readonly dest: XcmV1MultiLocation;2350 readonly effects: Vec<XcmV1Order>;2351 } & Struct;2352 readonly isQueryHolding: boolean;2353 readonly asQueryHolding: {2354 readonly queryId: Compact<u64>;2355 readonly dest: XcmV1MultiLocation;2356 readonly assets: XcmV1MultiassetMultiAssetFilter;2357 } & Struct;2358 readonly isBuyExecution: boolean;2359 readonly asBuyExecution: {2360 readonly fees: XcmV1MultiAsset;2361 readonly weight: u64;2362 readonly debt: u64;2363 readonly haltOnError: bool;2364 readonly instructions: Vec<XcmV1Xcm>;2365 } & Struct;2366 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2367 }23682369 /** @name XcmV1Response (218) */2370 interface XcmV1Response extends Enum {2371 readonly isAssets: boolean;2372 readonly asAssets: XcmV1MultiassetMultiAssets;2373 readonly isVersion: boolean;2374 readonly asVersion: u32;2375 readonly type: 'Assets' | 'Version';2376 }23772378 /** @name CumulusPalletXcmCall (232) */2379 type CumulusPalletXcmCall = Null;23802381 /** @name CumulusPalletDmpQueueCall (233) */2382 interface CumulusPalletDmpQueueCall extends Enum {2383 readonly isServiceOverweight: boolean;2384 readonly asServiceOverweight: {2385 readonly index: u64;2386 readonly weightLimit: u64;2387 } & Struct;2388 readonly type: 'ServiceOverweight';2389 }23902391 /** @name PalletInflationCall (234) */2392 interface PalletInflationCall extends Enum {2393 readonly isStartInflation: boolean;2394 readonly asStartInflation: {2395 readonly inflationStartRelayBlock: u32;2396 } & Struct;2397 readonly type: 'StartInflation';2398 }23992400 /** @name PalletUniqueCall (235) */2401 interface PalletUniqueCall extends Enum {2402 readonly isCreateCollection: boolean;2403 readonly asCreateCollection: {2404 readonly collectionName: Vec<u16>;2405 readonly collectionDescription: Vec<u16>;2406 readonly tokenPrefix: Bytes;2407 readonly mode: UpDataStructsCollectionMode;2408 } & Struct;2409 readonly isCreateCollectionEx: boolean;2410 readonly asCreateCollectionEx: {2411 readonly data: UpDataStructsCreateCollectionData;2412 } & Struct;2413 readonly isDestroyCollection: boolean;2414 readonly asDestroyCollection: {2415 readonly collectionId: u32;2416 } & Struct;2417 readonly isAddToAllowList: boolean;2418 readonly asAddToAllowList: {2419 readonly collectionId: u32;2420 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2421 } & Struct;2422 readonly isRemoveFromAllowList: boolean;2423 readonly asRemoveFromAllowList: {2424 readonly collectionId: u32;2425 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2426 } & Struct;2427 readonly isChangeCollectionOwner: boolean;2428 readonly asChangeCollectionOwner: {2429 readonly collectionId: u32;2430 readonly newOwner: AccountId32;2431 } & Struct;2432 readonly isAddCollectionAdmin: boolean;2433 readonly asAddCollectionAdmin: {2434 readonly collectionId: u32;2435 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2436 } & Struct;2437 readonly isRemoveCollectionAdmin: boolean;2438 readonly asRemoveCollectionAdmin: {2439 readonly collectionId: u32;2440 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2441 } & Struct;2442 readonly isSetCollectionSponsor: boolean;2443 readonly asSetCollectionSponsor: {2444 readonly collectionId: u32;2445 readonly newSponsor: AccountId32;2446 } & Struct;2447 readonly isConfirmSponsorship: boolean;2448 readonly asConfirmSponsorship: {2449 readonly collectionId: u32;2450 } & Struct;2451 readonly isRemoveCollectionSponsor: boolean;2452 readonly asRemoveCollectionSponsor: {2453 readonly collectionId: u32;2454 } & Struct;2455 readonly isCreateItem: boolean;2456 readonly asCreateItem: {2457 readonly collectionId: u32;2458 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2459 readonly data: UpDataStructsCreateItemData;2460 } & Struct;2461 readonly isCreateMultipleItems: boolean;2462 readonly asCreateMultipleItems: {2463 readonly collectionId: u32;2464 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2465 readonly itemsData: Vec<UpDataStructsCreateItemData>;2466 } & Struct;2467 readonly isSetCollectionProperties: boolean;2468 readonly asSetCollectionProperties: {2469 readonly collectionId: u32;2470 readonly properties: Vec<UpDataStructsProperty>;2471 } & Struct;2472 readonly isDeleteCollectionProperties: boolean;2473 readonly asDeleteCollectionProperties: {2474 readonly collectionId: u32;2475 readonly propertyKeys: Vec<Bytes>;2476 } & Struct;2477 readonly isSetTokenProperties: boolean;2478 readonly asSetTokenProperties: {2479 readonly collectionId: u32;2480 readonly tokenId: u32;2481 readonly properties: Vec<UpDataStructsProperty>;2482 } & Struct;2483 readonly isDeleteTokenProperties: boolean;2484 readonly asDeleteTokenProperties: {2485 readonly collectionId: u32;2486 readonly tokenId: u32;2487 readonly propertyKeys: Vec<Bytes>;2488 } & Struct;2489 readonly isSetTokenPropertyPermissions: boolean;2490 readonly asSetTokenPropertyPermissions: {2491 readonly collectionId: u32;2492 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2493 } & Struct;2494 readonly isCreateMultipleItemsEx: boolean;2495 readonly asCreateMultipleItemsEx: {2496 readonly collectionId: u32;2497 readonly data: UpDataStructsCreateItemExData;2498 } & Struct;2499 readonly isSetTransfersEnabledFlag: boolean;2500 readonly asSetTransfersEnabledFlag: {2501 readonly collectionId: u32;2502 readonly value: bool;2503 } & Struct;2504 readonly isBurnItem: boolean;2505 readonly asBurnItem: {2506 readonly collectionId: u32;2507 readonly itemId: u32;2508 readonly value: u128;2509 } & Struct;2510 readonly isBurnFrom: boolean;2511 readonly asBurnFrom: {2512 readonly collectionId: u32;2513 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2514 readonly itemId: u32;2515 readonly value: u128;2516 } & Struct;2517 readonly isTransfer: boolean;2518 readonly asTransfer: {2519 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2520 readonly collectionId: u32;2521 readonly itemId: u32;2522 readonly value: u128;2523 } & Struct;2524 readonly isApprove: boolean;2525 readonly asApprove: {2526 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2527 readonly collectionId: u32;2528 readonly itemId: u32;2529 readonly amount: u128;2530 } & Struct;2531 readonly isTransferFrom: boolean;2532 readonly asTransferFrom: {2533 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2534 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2535 readonly collectionId: u32;2536 readonly itemId: u32;2537 readonly value: u128;2538 } & Struct;2539 readonly isSetCollectionLimits: boolean;2540 readonly asSetCollectionLimits: {2541 readonly collectionId: u32;2542 readonly newLimit: UpDataStructsCollectionLimits;2543 } & Struct;2544 readonly isSetCollectionPermissions: boolean;2545 readonly asSetCollectionPermissions: {2546 readonly collectionId: u32;2547 readonly newPermission: UpDataStructsCollectionPermissions;2548 } & Struct;2549 readonly isRepartition: boolean;2550 readonly asRepartition: {2551 readonly collectionId: u32;2552 readonly tokenId: u32;2553 readonly amount: u128;2554 } & Struct;2555 readonly isSetAllowanceForAll: boolean;2556 readonly asSetAllowanceForAll: {2557 readonly collectionId: u32;2558 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2559 readonly approve: bool;2560 } & Struct;2561 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2562 }25632564 /** @name UpDataStructsCollectionMode (240) */2565 interface UpDataStructsCollectionMode extends Enum {2566 readonly isNft: boolean;2567 readonly isFungible: boolean;2568 readonly asFungible: u8;2569 readonly isReFungible: boolean;2570 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2571 }25722573 /** @name UpDataStructsCreateCollectionData (241) */2574 interface UpDataStructsCreateCollectionData extends Struct {2575 readonly mode: UpDataStructsCollectionMode;2576 readonly access: Option<UpDataStructsAccessMode>;2577 readonly name: Vec<u16>;2578 readonly description: Vec<u16>;2579 readonly tokenPrefix: Bytes;2580 readonly pendingSponsor: Option<AccountId32>;2581 readonly limits: Option<UpDataStructsCollectionLimits>;2582 readonly permissions: Option<UpDataStructsCollectionPermissions>;2583 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2584 readonly properties: Vec<UpDataStructsProperty>;2585 }25862587 /** @name UpDataStructsAccessMode (243) */2588 interface UpDataStructsAccessMode extends Enum {2589 readonly isNormal: boolean;2590 readonly isAllowList: boolean;2591 readonly type: 'Normal' | 'AllowList';2592 }25932594 /** @name UpDataStructsCollectionLimits (245) */2595 interface UpDataStructsCollectionLimits extends Struct {2596 readonly accountTokenOwnershipLimit: Option<u32>;2597 readonly sponsoredDataSize: Option<u32>;2598 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2599 readonly tokenLimit: Option<u32>;2600 readonly sponsorTransferTimeout: Option<u32>;2601 readonly sponsorApproveTimeout: Option<u32>;2602 readonly ownerCanTransfer: Option<bool>;2603 readonly ownerCanDestroy: Option<bool>;2604 readonly transfersEnabled: Option<bool>;2605 }26062607 /** @name UpDataStructsSponsoringRateLimit (247) */2608 interface UpDataStructsSponsoringRateLimit extends Enum {2609 readonly isSponsoringDisabled: boolean;2610 readonly isBlocks: boolean;2611 readonly asBlocks: u32;2612 readonly type: 'SponsoringDisabled' | 'Blocks';2613 }26142615 /** @name UpDataStructsCollectionPermissions (250) */2616 interface UpDataStructsCollectionPermissions extends Struct {2617 readonly access: Option<UpDataStructsAccessMode>;2618 readonly mintMode: Option<bool>;2619 readonly nesting: Option<UpDataStructsNestingPermissions>;2620 }26212622 /** @name UpDataStructsNestingPermissions (252) */2623 interface UpDataStructsNestingPermissions extends Struct {2624 readonly tokenOwner: bool;2625 readonly collectionAdmin: bool;2626 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2627 }26282629 /** @name UpDataStructsOwnerRestrictedSet (254) */2630 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26312632 /** @name UpDataStructsPropertyKeyPermission (259) */2633 interface UpDataStructsPropertyKeyPermission extends Struct {2634 readonly key: Bytes;2635 readonly permission: UpDataStructsPropertyPermission;2636 }26372638 /** @name UpDataStructsPropertyPermission (260) */2639 interface UpDataStructsPropertyPermission extends Struct {2640 readonly mutable: bool;2641 readonly collectionAdmin: bool;2642 readonly tokenOwner: bool;2643 }26442645 /** @name UpDataStructsProperty (263) */2646 interface UpDataStructsProperty extends Struct {2647 readonly key: Bytes;2648 readonly value: Bytes;2649 }26502651 /** @name UpDataStructsCreateItemData (266) */2652 interface UpDataStructsCreateItemData extends Enum {2653 readonly isNft: boolean;2654 readonly asNft: UpDataStructsCreateNftData;2655 readonly isFungible: boolean;2656 readonly asFungible: UpDataStructsCreateFungibleData;2657 readonly isReFungible: boolean;2658 readonly asReFungible: UpDataStructsCreateReFungibleData;2659 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2660 }26612662 /** @name UpDataStructsCreateNftData (267) */2663 interface UpDataStructsCreateNftData extends Struct {2664 readonly properties: Vec<UpDataStructsProperty>;2665 }26662667 /** @name UpDataStructsCreateFungibleData (268) */2668 interface UpDataStructsCreateFungibleData extends Struct {2669 readonly value: u128;2670 }26712672 /** @name UpDataStructsCreateReFungibleData (269) */2673 interface UpDataStructsCreateReFungibleData extends Struct {2674 readonly pieces: u128;2675 readonly properties: Vec<UpDataStructsProperty>;2676 }26772678 /** @name UpDataStructsCreateItemExData (272) */2679 interface UpDataStructsCreateItemExData extends Enum {2680 readonly isNft: boolean;2681 readonly asNft: Vec<UpDataStructsCreateNftExData>;2682 readonly isFungible: boolean;2683 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2684 readonly isRefungibleMultipleItems: boolean;2685 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2686 readonly isRefungibleMultipleOwners: boolean;2687 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2688 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2689 }26902691 /** @name UpDataStructsCreateNftExData (274) */2692 interface UpDataStructsCreateNftExData extends Struct {2693 readonly properties: Vec<UpDataStructsProperty>;2694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2695 }26962697 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2698 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2699 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2700 readonly pieces: u128;2701 readonly properties: Vec<UpDataStructsProperty>;2702 }27032704 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2705 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2706 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2707 readonly properties: Vec<UpDataStructsProperty>;2708 }27092710 /** @name PalletUniqueSchedulerV2Call (284) */2711 interface PalletUniqueSchedulerV2Call extends Enum {2712 readonly isSchedule: boolean;2713 readonly asSchedule: {2714 readonly when: u32;2715 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2716 readonly priority: Option<u8>;2717 readonly call: Call;2718 } & Struct;2719 readonly isCancel: boolean;2720 readonly asCancel: {2721 readonly when: u32;2722 readonly index: u32;2723 } & Struct;2724 readonly isScheduleNamed: boolean;2725 readonly asScheduleNamed: {2726 readonly id: U8aFixed;2727 readonly when: u32;2728 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2729 readonly priority: Option<u8>;2730 readonly call: Call;2731 } & Struct;2732 readonly isCancelNamed: boolean;2733 readonly asCancelNamed: {2734 readonly id: U8aFixed;2735 } & Struct;2736 readonly isScheduleAfter: boolean;2737 readonly asScheduleAfter: {2738 readonly after: u32;2739 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2740 readonly priority: Option<u8>;2741 readonly call: Call;2742 } & Struct;2743 readonly isScheduleNamedAfter: boolean;2744 readonly asScheduleNamedAfter: {2745 readonly id: U8aFixed;2746 readonly after: u32;2747 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2748 readonly priority: Option<u8>;2749 readonly call: Call;2750 } & Struct;2751 readonly isChangeNamedPriority: boolean;2752 readonly asChangeNamedPriority: {2753 readonly id: U8aFixed;2754 readonly priority: u8;2755 } & Struct;2756 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2757 }27582759 /** @name PalletConfigurationCall (287) */2760 interface PalletConfigurationCall extends Enum {2761 readonly isSetWeightToFeeCoefficientOverride: boolean;2762 readonly asSetWeightToFeeCoefficientOverride: {2763 readonly coeff: Option<u32>;2764 } & Struct;2765 readonly isSetMinGasPriceOverride: boolean;2766 readonly asSetMinGasPriceOverride: {2767 readonly coeff: Option<u64>;2768 } & Struct;2769 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2770 }27712772 /** @name PalletTemplateTransactionPaymentCall (289) */2773 type PalletTemplateTransactionPaymentCall = Null;27742775 /** @name PalletStructureCall (290) */2776 type PalletStructureCall = Null;27772778 /** @name PalletRmrkCoreCall (291) */2779 interface PalletRmrkCoreCall extends Enum {2780 readonly isCreateCollection: boolean;2781 readonly asCreateCollection: {2782 readonly metadata: Bytes;2783 readonly max: Option<u32>;2784 readonly symbol: Bytes;2785 } & Struct;2786 readonly isDestroyCollection: boolean;2787 readonly asDestroyCollection: {2788 readonly collectionId: u32;2789 } & Struct;2790 readonly isChangeCollectionIssuer: boolean;2791 readonly asChangeCollectionIssuer: {2792 readonly collectionId: u32;2793 readonly newIssuer: MultiAddress;2794 } & Struct;2795 readonly isLockCollection: boolean;2796 readonly asLockCollection: {2797 readonly collectionId: u32;2798 } & Struct;2799 readonly isMintNft: boolean;2800 readonly asMintNft: {2801 readonly owner: Option<AccountId32>;2802 readonly collectionId: u32;2803 readonly recipient: Option<AccountId32>;2804 readonly royaltyAmount: Option<Permill>;2805 readonly metadata: Bytes;2806 readonly transferable: bool;2807 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2808 } & Struct;2809 readonly isBurnNft: boolean;2810 readonly asBurnNft: {2811 readonly collectionId: u32;2812 readonly nftId: u32;2813 readonly maxBurns: u32;2814 } & Struct;2815 readonly isSend: boolean;2816 readonly asSend: {2817 readonly rmrkCollectionId: u32;2818 readonly rmrkNftId: u32;2819 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2820 } & Struct;2821 readonly isAcceptNft: boolean;2822 readonly asAcceptNft: {2823 readonly rmrkCollectionId: u32;2824 readonly rmrkNftId: u32;2825 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2826 } & Struct;2827 readonly isRejectNft: boolean;2828 readonly asRejectNft: {2829 readonly rmrkCollectionId: u32;2830 readonly rmrkNftId: u32;2831 } & Struct;2832 readonly isAcceptResource: boolean;2833 readonly asAcceptResource: {2834 readonly rmrkCollectionId: u32;2835 readonly rmrkNftId: u32;2836 readonly resourceId: u32;2837 } & Struct;2838 readonly isAcceptResourceRemoval: boolean;2839 readonly asAcceptResourceRemoval: {2840 readonly rmrkCollectionId: u32;2841 readonly rmrkNftId: u32;2842 readonly resourceId: u32;2843 } & Struct;2844 readonly isSetProperty: boolean;2845 readonly asSetProperty: {2846 readonly rmrkCollectionId: Compact<u32>;2847 readonly maybeNftId: Option<u32>;2848 readonly key: Bytes;2849 readonly value: Bytes;2850 } & Struct;2851 readonly isSetPriority: boolean;2852 readonly asSetPriority: {2853 readonly rmrkCollectionId: u32;2854 readonly rmrkNftId: u32;2855 readonly priorities: Vec<u32>;2856 } & Struct;2857 readonly isAddBasicResource: boolean;2858 readonly asAddBasicResource: {2859 readonly rmrkCollectionId: u32;2860 readonly nftId: u32;2861 readonly resource: RmrkTraitsResourceBasicResource;2862 } & Struct;2863 readonly isAddComposableResource: boolean;2864 readonly asAddComposableResource: {2865 readonly rmrkCollectionId: u32;2866 readonly nftId: u32;2867 readonly resource: RmrkTraitsResourceComposableResource;2868 } & Struct;2869 readonly isAddSlotResource: boolean;2870 readonly asAddSlotResource: {2871 readonly rmrkCollectionId: u32;2872 readonly nftId: u32;2873 readonly resource: RmrkTraitsResourceSlotResource;2874 } & Struct;2875 readonly isRemoveResource: boolean;2876 readonly asRemoveResource: {2877 readonly rmrkCollectionId: u32;2878 readonly nftId: u32;2879 readonly resourceId: u32;2880 } & Struct;2881 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2882 }28832884 /** @name RmrkTraitsResourceResourceTypes (297) */2885 interface RmrkTraitsResourceResourceTypes extends Enum {2886 readonly isBasic: boolean;2887 readonly asBasic: RmrkTraitsResourceBasicResource;2888 readonly isComposable: boolean;2889 readonly asComposable: RmrkTraitsResourceComposableResource;2890 readonly isSlot: boolean;2891 readonly asSlot: RmrkTraitsResourceSlotResource;2892 readonly type: 'Basic' | 'Composable' | 'Slot';2893 }28942895 /** @name RmrkTraitsResourceBasicResource (299) */2896 interface RmrkTraitsResourceBasicResource extends Struct {2897 readonly src: Option<Bytes>;2898 readonly metadata: Option<Bytes>;2899 readonly license: Option<Bytes>;2900 readonly thumb: Option<Bytes>;2901 }29022903 /** @name RmrkTraitsResourceComposableResource (301) */2904 interface RmrkTraitsResourceComposableResource extends Struct {2905 readonly parts: Vec<u32>;2906 readonly base: u32;2907 readonly src: Option<Bytes>;2908 readonly metadata: Option<Bytes>;2909 readonly license: Option<Bytes>;2910 readonly thumb: Option<Bytes>;2911 }29122913 /** @name RmrkTraitsResourceSlotResource (302) */2914 interface RmrkTraitsResourceSlotResource extends Struct {2915 readonly base: u32;2916 readonly src: Option<Bytes>;2917 readonly metadata: Option<Bytes>;2918 readonly slot: u32;2919 readonly license: Option<Bytes>;2920 readonly thumb: Option<Bytes>;2921 }29222923 /** @name PalletRmrkEquipCall (305) */2924 interface PalletRmrkEquipCall extends Enum {2925 readonly isCreateBase: boolean;2926 readonly asCreateBase: {2927 readonly baseType: Bytes;2928 readonly symbol: Bytes;2929 readonly parts: Vec<RmrkTraitsPartPartType>;2930 } & Struct;2931 readonly isThemeAdd: boolean;2932 readonly asThemeAdd: {2933 readonly baseId: u32;2934 readonly theme: RmrkTraitsTheme;2935 } & Struct;2936 readonly isEquippable: boolean;2937 readonly asEquippable: {2938 readonly baseId: u32;2939 readonly slotId: u32;2940 readonly equippables: RmrkTraitsPartEquippableList;2941 } & Struct;2942 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2943 }29442945 /** @name RmrkTraitsPartPartType (308) */2946 interface RmrkTraitsPartPartType extends Enum {2947 readonly isFixedPart: boolean;2948 readonly asFixedPart: RmrkTraitsPartFixedPart;2949 readonly isSlotPart: boolean;2950 readonly asSlotPart: RmrkTraitsPartSlotPart;2951 readonly type: 'FixedPart' | 'SlotPart';2952 }29532954 /** @name RmrkTraitsPartFixedPart (310) */2955 interface RmrkTraitsPartFixedPart extends Struct {2956 readonly id: u32;2957 readonly z: u32;2958 readonly src: Bytes;2959 }29602961 /** @name RmrkTraitsPartSlotPart (311) */2962 interface RmrkTraitsPartSlotPart extends Struct {2963 readonly id: u32;2964 readonly equippable: RmrkTraitsPartEquippableList;2965 readonly src: Bytes;2966 readonly z: u32;2967 }29682969 /** @name RmrkTraitsPartEquippableList (312) */2970 interface RmrkTraitsPartEquippableList extends Enum {2971 readonly isAll: boolean;2972 readonly isEmpty: boolean;2973 readonly isCustom: boolean;2974 readonly asCustom: Vec<u32>;2975 readonly type: 'All' | 'Empty' | 'Custom';2976 }29772978 /** @name RmrkTraitsTheme (314) */2979 interface RmrkTraitsTheme extends Struct {2980 readonly name: Bytes;2981 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2982 readonly inherit: bool;2983 }29842985 /** @name RmrkTraitsThemeThemeProperty (316) */2986 interface RmrkTraitsThemeThemeProperty extends Struct {2987 readonly key: Bytes;2988 readonly value: Bytes;2989 }29902991 /** @name PalletAppPromotionCall (318) */2992 interface PalletAppPromotionCall extends Enum {2993 readonly isSetAdminAddress: boolean;2994 readonly asSetAdminAddress: {2995 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2996 } & Struct;2997 readonly isStake: boolean;2998 readonly asStake: {2999 readonly amount: u128;3000 } & Struct;3001 readonly isUnstake: boolean;3002 readonly isSponsorCollection: boolean;3003 readonly asSponsorCollection: {3004 readonly collectionId: u32;3005 } & Struct;3006 readonly isStopSponsoringCollection: boolean;3007 readonly asStopSponsoringCollection: {3008 readonly collectionId: u32;3009 } & Struct;3010 readonly isSponsorContract: boolean;3011 readonly asSponsorContract: {3012 readonly contractId: H160;3013 } & Struct;3014 readonly isStopSponsoringContract: boolean;3015 readonly asStopSponsoringContract: {3016 readonly contractId: H160;3017 } & Struct;3018 readonly isPayoutStakers: boolean;3019 readonly asPayoutStakers: {3020 readonly stakersNumber: Option<u8>;3021 } & Struct;3022 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3023 }30243025 /** @name PalletForeignAssetsModuleCall (319) */3026 interface PalletForeignAssetsModuleCall extends Enum {3027 readonly isRegisterForeignAsset: boolean;3028 readonly asRegisterForeignAsset: {3029 readonly owner: AccountId32;3030 readonly location: XcmVersionedMultiLocation;3031 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3032 } & Struct;3033 readonly isUpdateForeignAsset: boolean;3034 readonly asUpdateForeignAsset: {3035 readonly foreignAssetId: u32;3036 readonly location: XcmVersionedMultiLocation;3037 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3038 } & Struct;3039 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3040 }30413042 /** @name PalletEvmCall (320) */3043 interface PalletEvmCall extends Enum {3044 readonly isWithdraw: boolean;3045 readonly asWithdraw: {3046 readonly address: H160;3047 readonly value: u128;3048 } & Struct;3049 readonly isCall: boolean;3050 readonly asCall: {3051 readonly source: H160;3052 readonly target: H160;3053 readonly input: Bytes;3054 readonly value: U256;3055 readonly gasLimit: u64;3056 readonly maxFeePerGas: U256;3057 readonly maxPriorityFeePerGas: Option<U256>;3058 readonly nonce: Option<U256>;3059 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3060 } & Struct;3061 readonly isCreate: boolean;3062 readonly asCreate: {3063 readonly source: H160;3064 readonly init: Bytes;3065 readonly value: U256;3066 readonly gasLimit: u64;3067 readonly maxFeePerGas: U256;3068 readonly maxPriorityFeePerGas: Option<U256>;3069 readonly nonce: Option<U256>;3070 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3071 } & Struct;3072 readonly isCreate2: boolean;3073 readonly asCreate2: {3074 readonly source: H160;3075 readonly init: Bytes;3076 readonly salt: H256;3077 readonly value: U256;3078 readonly gasLimit: u64;3079 readonly maxFeePerGas: U256;3080 readonly maxPriorityFeePerGas: Option<U256>;3081 readonly nonce: Option<U256>;3082 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3083 } & Struct;3084 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3085 }30863087 /** @name PalletEthereumCall (326) */3088 interface PalletEthereumCall extends Enum {3089 readonly isTransact: boolean;3090 readonly asTransact: {3091 readonly transaction: EthereumTransactionTransactionV2;3092 } & Struct;3093 readonly type: 'Transact';3094 }30953096 /** @name EthereumTransactionTransactionV2 (327) */3097 interface EthereumTransactionTransactionV2 extends Enum {3098 readonly isLegacy: boolean;3099 readonly asLegacy: EthereumTransactionLegacyTransaction;3100 readonly isEip2930: boolean;3101 readonly asEip2930: EthereumTransactionEip2930Transaction;3102 readonly isEip1559: boolean;3103 readonly asEip1559: EthereumTransactionEip1559Transaction;3104 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3105 }31063107 /** @name EthereumTransactionLegacyTransaction (328) */3108 interface EthereumTransactionLegacyTransaction extends Struct {3109 readonly nonce: U256;3110 readonly gasPrice: U256;3111 readonly gasLimit: U256;3112 readonly action: EthereumTransactionTransactionAction;3113 readonly value: U256;3114 readonly input: Bytes;3115 readonly signature: EthereumTransactionTransactionSignature;3116 }31173118 /** @name EthereumTransactionTransactionAction (329) */3119 interface EthereumTransactionTransactionAction extends Enum {3120 readonly isCall: boolean;3121 readonly asCall: H160;3122 readonly isCreate: boolean;3123 readonly type: 'Call' | 'Create';3124 }31253126 /** @name EthereumTransactionTransactionSignature (330) */3127 interface EthereumTransactionTransactionSignature extends Struct {3128 readonly v: u64;3129 readonly r: H256;3130 readonly s: H256;3131 }31323133 /** @name EthereumTransactionEip2930Transaction (332) */3134 interface EthereumTransactionEip2930Transaction extends Struct {3135 readonly chainId: u64;3136 readonly nonce: U256;3137 readonly gasPrice: U256;3138 readonly gasLimit: U256;3139 readonly action: EthereumTransactionTransactionAction;3140 readonly value: U256;3141 readonly input: Bytes;3142 readonly accessList: Vec<EthereumTransactionAccessListItem>;3143 readonly oddYParity: bool;3144 readonly r: H256;3145 readonly s: H256;3146 }31473148 /** @name EthereumTransactionAccessListItem (334) */3149 interface EthereumTransactionAccessListItem extends Struct {3150 readonly address: H160;3151 readonly storageKeys: Vec<H256>;3152 }31533154 /** @name EthereumTransactionEip1559Transaction (335) */3155 interface EthereumTransactionEip1559Transaction extends Struct {3156 readonly chainId: u64;3157 readonly nonce: U256;3158 readonly maxPriorityFeePerGas: U256;3159 readonly maxFeePerGas: U256;3160 readonly gasLimit: U256;3161 readonly action: EthereumTransactionTransactionAction;3162 readonly value: U256;3163 readonly input: Bytes;3164 readonly accessList: Vec<EthereumTransactionAccessListItem>;3165 readonly oddYParity: bool;3166 readonly r: H256;3167 readonly s: H256;3168 }31693170 /** @name PalletEvmMigrationCall (336) */3171 interface PalletEvmMigrationCall extends Enum {3172 readonly isBegin: boolean;3173 readonly asBegin: {3174 readonly address: H160;3175 } & Struct;3176 readonly isSetData: boolean;3177 readonly asSetData: {3178 readonly address: H160;3179 readonly data: Vec<ITuple<[H256, H256]>>;3180 } & Struct;3181 readonly isFinish: boolean;3182 readonly asFinish: {3183 readonly address: H160;3184 readonly code: Bytes;3185 } & Struct;3186 readonly isInsertEthLogs: boolean;3187 readonly asInsertEthLogs: {3188 readonly logs: Vec<EthereumLog>;3189 } & Struct;3190 readonly isInsertEvents: boolean;3191 readonly asInsertEvents: {3192 readonly events: Vec<Bytes>;3193 } & Struct;3194 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3195 }31963197 /** @name PalletMaintenanceCall (340) */3198 interface PalletMaintenanceCall extends Enum {3199 readonly isEnable: boolean;3200 readonly isDisable: boolean;3201 readonly type: 'Enable' | 'Disable';3202 }32033204 /** @name PalletTestUtilsCall (341) */3205 interface PalletTestUtilsCall extends Enum {3206 readonly isEnable: boolean;3207 readonly isSetTestValue: boolean;3208 readonly asSetTestValue: {3209 readonly value: u32;3210 } & Struct;3211 readonly isSetTestValueAndRollback: boolean;3212 readonly asSetTestValueAndRollback: {3213 readonly value: u32;3214 } & Struct;3215 readonly isIncTestValue: boolean;3216 readonly isSelfCancelingInc: boolean;3217 readonly asSelfCancelingInc: {3218 readonly id: U8aFixed;3219 readonly maxTestValue: u32;3220 } & Struct;3221 readonly isJustTakeFee: boolean;3222 readonly isBatchAll: boolean;3223 readonly asBatchAll: {3224 readonly calls: Vec<Call>;3225 } & Struct;3226 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3227 }32283229 /** @name PalletSudoError (343) */3230 interface PalletSudoError extends Enum {3231 readonly isRequireSudo: boolean;3232 readonly type: 'RequireSudo';3233 }32343235 /** @name OrmlVestingModuleError (345) */3236 interface OrmlVestingModuleError extends Enum {3237 readonly isZeroVestingPeriod: boolean;3238 readonly isZeroVestingPeriodCount: boolean;3239 readonly isInsufficientBalanceToLock: boolean;3240 readonly isTooManyVestingSchedules: boolean;3241 readonly isAmountLow: boolean;3242 readonly isMaxVestingSchedulesExceeded: boolean;3243 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3244 }32453246 /** @name OrmlXtokensModuleError (346) */3247 interface OrmlXtokensModuleError extends Enum {3248 readonly isAssetHasNoReserve: boolean;3249 readonly isNotCrossChainTransfer: boolean;3250 readonly isInvalidDest: boolean;3251 readonly isNotCrossChainTransferableCurrency: boolean;3252 readonly isUnweighableMessage: boolean;3253 readonly isXcmExecutionFailed: boolean;3254 readonly isCannotReanchor: boolean;3255 readonly isInvalidAncestry: boolean;3256 readonly isInvalidAsset: boolean;3257 readonly isDestinationNotInvertible: boolean;3258 readonly isBadVersion: boolean;3259 readonly isDistinctReserveForAssetAndFee: boolean;3260 readonly isZeroFee: boolean;3261 readonly isZeroAmount: boolean;3262 readonly isTooManyAssetsBeingSent: boolean;3263 readonly isAssetIndexNonExistent: boolean;3264 readonly isFeeNotEnough: boolean;3265 readonly isNotSupportedMultiLocation: boolean;3266 readonly isMinXcmFeeNotDefined: boolean;3267 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3268 }32693270 /** @name OrmlTokensBalanceLock (349) */3271 interface OrmlTokensBalanceLock extends Struct {3272 readonly id: U8aFixed;3273 readonly amount: u128;3274 }32753276 /** @name OrmlTokensAccountData (351) */3277 interface OrmlTokensAccountData extends Struct {3278 readonly free: u128;3279 readonly reserved: u128;3280 readonly frozen: u128;3281 }32823283 /** @name OrmlTokensReserveData (353) */3284 interface OrmlTokensReserveData extends Struct {3285 readonly id: Null;3286 readonly amount: u128;3287 }32883289 /** @name OrmlTokensModuleError (355) */3290 interface OrmlTokensModuleError extends Enum {3291 readonly isBalanceTooLow: boolean;3292 readonly isAmountIntoBalanceFailed: boolean;3293 readonly isLiquidityRestrictions: boolean;3294 readonly isMaxLocksExceeded: boolean;3295 readonly isKeepAlive: boolean;3296 readonly isExistentialDeposit: boolean;3297 readonly isDeadAccount: boolean;3298 readonly isTooManyReserves: boolean;3299 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3300 }33013302 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3303 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3304 readonly sender: u32;3305 readonly state: CumulusPalletXcmpQueueInboundState;3306 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3307 }33083309 /** @name CumulusPalletXcmpQueueInboundState (358) */3310 interface CumulusPalletXcmpQueueInboundState extends Enum {3311 readonly isOk: boolean;3312 readonly isSuspended: boolean;3313 readonly type: 'Ok' | 'Suspended';3314 }33153316 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3317 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3318 readonly isConcatenatedVersionedXcm: boolean;3319 readonly isConcatenatedEncodedBlob: boolean;3320 readonly isSignals: boolean;3321 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3322 }33233324 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3325 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3326 readonly recipient: u32;3327 readonly state: CumulusPalletXcmpQueueOutboundState;3328 readonly signalsExist: bool;3329 readonly firstIndex: u16;3330 readonly lastIndex: u16;3331 }33323333 /** @name CumulusPalletXcmpQueueOutboundState (365) */3334 interface CumulusPalletXcmpQueueOutboundState extends Enum {3335 readonly isOk: boolean;3336 readonly isSuspended: boolean;3337 readonly type: 'Ok' | 'Suspended';3338 }33393340 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3341 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3342 readonly suspendThreshold: u32;3343 readonly dropThreshold: u32;3344 readonly resumeThreshold: u32;3345 readonly thresholdWeight: SpWeightsWeightV2Weight;3346 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3347 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3348 }33493350 /** @name CumulusPalletXcmpQueueError (369) */3351 interface CumulusPalletXcmpQueueError extends Enum {3352 readonly isFailedToSend: boolean;3353 readonly isBadXcmOrigin: boolean;3354 readonly isBadXcm: boolean;3355 readonly isBadOverweightIndex: boolean;3356 readonly isWeightOverLimit: boolean;3357 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3358 }33593360 /** @name PalletXcmError (370) */3361 interface PalletXcmError extends Enum {3362 readonly isUnreachable: boolean;3363 readonly isSendFailure: boolean;3364 readonly isFiltered: boolean;3365 readonly isUnweighableMessage: boolean;3366 readonly isDestinationNotInvertible: boolean;3367 readonly isEmpty: boolean;3368 readonly isCannotReanchor: boolean;3369 readonly isTooManyAssets: boolean;3370 readonly isInvalidOrigin: boolean;3371 readonly isBadVersion: boolean;3372 readonly isBadLocation: boolean;3373 readonly isNoSubscription: boolean;3374 readonly isAlreadySubscribed: boolean;3375 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3376 }33773378 /** @name CumulusPalletXcmError (371) */3379 type CumulusPalletXcmError = Null;33803381 /** @name CumulusPalletDmpQueueConfigData (372) */3382 interface CumulusPalletDmpQueueConfigData extends Struct {3383 readonly maxIndividual: SpWeightsWeightV2Weight;3384 }33853386 /** @name CumulusPalletDmpQueuePageIndexData (373) */3387 interface CumulusPalletDmpQueuePageIndexData extends Struct {3388 readonly beginUsed: u32;3389 readonly endUsed: u32;3390 readonly overweightCount: u64;3391 }33923393 /** @name CumulusPalletDmpQueueError (376) */3394 interface CumulusPalletDmpQueueError extends Enum {3395 readonly isUnknown: boolean;3396 readonly isOverLimit: boolean;3397 readonly type: 'Unknown' | 'OverLimit';3398 }33993400 /** @name PalletUniqueError (380) */3401 interface PalletUniqueError extends Enum {3402 readonly isCollectionDecimalPointLimitExceeded: boolean;3403 readonly isConfirmUnsetSponsorFail: boolean;3404 readonly isEmptyArgument: boolean;3405 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3406 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3407 }34083409 /** @name PalletUniqueSchedulerV2BlockAgenda (381) */3410 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3411 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3412 readonly freePlaces: u32;3413 }34143415 /** @name PalletUniqueSchedulerV2Scheduled (384) */3416 interface PalletUniqueSchedulerV2Scheduled extends Struct {3417 readonly maybeId: Option<U8aFixed>;3418 readonly priority: u8;3419 readonly call: PalletUniqueSchedulerV2ScheduledCall;3420 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3421 readonly origin: OpalRuntimeOriginCaller;3422 }34233424 /** @name PalletUniqueSchedulerV2ScheduledCall (385) */3425 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3426 readonly isInline: boolean;3427 readonly asInline: Bytes;3428 readonly isPreimageLookup: boolean;3429 readonly asPreimageLookup: {3430 readonly hash_: H256;3431 readonly unboundedLen: u32;3432 } & Struct;3433 readonly type: 'Inline' | 'PreimageLookup';3434 }34353436 /** @name OpalRuntimeOriginCaller (387) */3437 interface OpalRuntimeOriginCaller extends Enum {3438 readonly isSystem: boolean;3439 readonly asSystem: FrameSupportDispatchRawOrigin;3440 readonly isVoid: boolean;3441 readonly isPolkadotXcm: boolean;3442 readonly asPolkadotXcm: PalletXcmOrigin;3443 readonly isCumulusXcm: boolean;3444 readonly asCumulusXcm: CumulusPalletXcmOrigin;3445 readonly isEthereum: boolean;3446 readonly asEthereum: PalletEthereumRawOrigin;3447 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3448 }34493450 /** @name FrameSupportDispatchRawOrigin (388) */3451 interface FrameSupportDispatchRawOrigin extends Enum {3452 readonly isRoot: boolean;3453 readonly isSigned: boolean;3454 readonly asSigned: AccountId32;3455 readonly isNone: boolean;3456 readonly type: 'Root' | 'Signed' | 'None';3457 }34583459 /** @name PalletXcmOrigin (389) */3460 interface PalletXcmOrigin extends Enum {3461 readonly isXcm: boolean;3462 readonly asXcm: XcmV1MultiLocation;3463 readonly isResponse: boolean;3464 readonly asResponse: XcmV1MultiLocation;3465 readonly type: 'Xcm' | 'Response';3466 }34673468 /** @name CumulusPalletXcmOrigin (390) */3469 interface CumulusPalletXcmOrigin extends Enum {3470 readonly isRelay: boolean;3471 readonly isSiblingParachain: boolean;3472 readonly asSiblingParachain: u32;3473 readonly type: 'Relay' | 'SiblingParachain';3474 }34753476 /** @name PalletEthereumRawOrigin (391) */3477 interface PalletEthereumRawOrigin extends Enum {3478 readonly isEthereumTransaction: boolean;3479 readonly asEthereumTransaction: H160;3480 readonly type: 'EthereumTransaction';3481 }34823483 /** @name SpCoreVoid (392) */3484 type SpCoreVoid = Null;34853486 /** @name PalletUniqueSchedulerV2Error (394) */3487 interface PalletUniqueSchedulerV2Error extends Enum {3488 readonly isFailedToSchedule: boolean;3489 readonly isAgendaIsExhausted: boolean;3490 readonly isScheduledCallCorrupted: boolean;3491 readonly isPreimageNotFound: boolean;3492 readonly isTooBigScheduledCall: boolean;3493 readonly isNotFound: boolean;3494 readonly isTargetBlockNumberInPast: boolean;3495 readonly isNamed: boolean;3496 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3497 }34983499 /** @name UpDataStructsCollection (395) */3500 interface UpDataStructsCollection extends Struct {3501 readonly owner: AccountId32;3502 readonly mode: UpDataStructsCollectionMode;3503 readonly name: Vec<u16>;3504 readonly description: Vec<u16>;3505 readonly tokenPrefix: Bytes;3506 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3507 readonly limits: UpDataStructsCollectionLimits;3508 readonly permissions: UpDataStructsCollectionPermissions;3509 readonly flags: U8aFixed;3510 }35113512 /** @name UpDataStructsSponsorshipStateAccountId32 (396) */3513 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3514 readonly isDisabled: boolean;3515 readonly isUnconfirmed: boolean;3516 readonly asUnconfirmed: AccountId32;3517 readonly isConfirmed: boolean;3518 readonly asConfirmed: AccountId32;3519 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3520 }35213522 /** @name UpDataStructsProperties (398) */3523 interface UpDataStructsProperties extends Struct {3524 readonly map: UpDataStructsPropertiesMapBoundedVec;3525 readonly consumedSpace: u32;3526 readonly spaceLimit: u32;3527 }35283529 /** @name UpDataStructsPropertiesMapBoundedVec (399) */3530 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35313532 /** @name UpDataStructsPropertiesMapPropertyPermission (404) */3533 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35343535 /** @name UpDataStructsCollectionStats (411) */3536 interface UpDataStructsCollectionStats extends Struct {3537 readonly created: u32;3538 readonly destroyed: u32;3539 readonly alive: u32;3540 }35413542 /** @name UpDataStructsTokenChild (412) */3543 interface UpDataStructsTokenChild extends Struct {3544 readonly token: u32;3545 readonly collection: u32;3546 }35473548 /** @name PhantomTypeUpDataStructs (413) */3549 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35503551 /** @name UpDataStructsTokenData (415) */3552 interface UpDataStructsTokenData extends Struct {3553 readonly properties: Vec<UpDataStructsProperty>;3554 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3555 readonly pieces: u128;3556 }35573558 /** @name UpDataStructsRpcCollection (417) */3559 interface UpDataStructsRpcCollection extends Struct {3560 readonly owner: AccountId32;3561 readonly mode: UpDataStructsCollectionMode;3562 readonly name: Vec<u16>;3563 readonly description: Vec<u16>;3564 readonly tokenPrefix: Bytes;3565 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3566 readonly limits: UpDataStructsCollectionLimits;3567 readonly permissions: UpDataStructsCollectionPermissions;3568 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3569 readonly properties: Vec<UpDataStructsProperty>;3570 readonly readOnly: bool;3571 readonly flags: UpDataStructsRpcCollectionFlags;3572 }35733574 /** @name UpDataStructsRpcCollectionFlags (418) */3575 interface UpDataStructsRpcCollectionFlags extends Struct {3576 readonly foreign: bool;3577 readonly erc721metadata: bool;3578 }35793580 /** @name RmrkTraitsCollectionCollectionInfo (419) */3581 interface RmrkTraitsCollectionCollectionInfo extends Struct {3582 readonly issuer: AccountId32;3583 readonly metadata: Bytes;3584 readonly max: Option<u32>;3585 readonly symbol: Bytes;3586 readonly nftsCount: u32;3587 }35883589 /** @name RmrkTraitsNftNftInfo (420) */3590 interface RmrkTraitsNftNftInfo extends Struct {3591 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3592 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3593 readonly metadata: Bytes;3594 readonly equipped: bool;3595 readonly pending: bool;3596 }35973598 /** @name RmrkTraitsNftRoyaltyInfo (422) */3599 interface RmrkTraitsNftRoyaltyInfo extends Struct {3600 readonly recipient: AccountId32;3601 readonly amount: Permill;3602 }36033604 /** @name RmrkTraitsResourceResourceInfo (423) */3605 interface RmrkTraitsResourceResourceInfo extends Struct {3606 readonly id: u32;3607 readonly resource: RmrkTraitsResourceResourceTypes;3608 readonly pending: bool;3609 readonly pendingRemoval: bool;3610 }36113612 /** @name RmrkTraitsPropertyPropertyInfo (424) */3613 interface RmrkTraitsPropertyPropertyInfo extends Struct {3614 readonly key: Bytes;3615 readonly value: Bytes;3616 }36173618 /** @name RmrkTraitsBaseBaseInfo (425) */3619 interface RmrkTraitsBaseBaseInfo extends Struct {3620 readonly issuer: AccountId32;3621 readonly baseType: Bytes;3622 readonly symbol: Bytes;3623 }36243625 /** @name RmrkTraitsNftNftChild (426) */3626 interface RmrkTraitsNftNftChild extends Struct {3627 readonly collectionId: u32;3628 readonly nftId: u32;3629 }36303631 /** @name PalletCommonError (428) */3632 interface PalletCommonError extends Enum {3633 readonly isCollectionNotFound: boolean;3634 readonly isMustBeTokenOwner: boolean;3635 readonly isNoPermission: boolean;3636 readonly isCantDestroyNotEmptyCollection: boolean;3637 readonly isPublicMintingNotAllowed: boolean;3638 readonly isAddressNotInAllowlist: boolean;3639 readonly isCollectionNameLimitExceeded: boolean;3640 readonly isCollectionDescriptionLimitExceeded: boolean;3641 readonly isCollectionTokenPrefixLimitExceeded: boolean;3642 readonly isTotalCollectionsLimitExceeded: boolean;3643 readonly isCollectionAdminCountExceeded: boolean;3644 readonly isCollectionLimitBoundsExceeded: boolean;3645 readonly isOwnerPermissionsCantBeReverted: boolean;3646 readonly isTransferNotAllowed: boolean;3647 readonly isAccountTokenLimitExceeded: boolean;3648 readonly isCollectionTokenLimitExceeded: boolean;3649 readonly isMetadataFlagFrozen: boolean;3650 readonly isTokenNotFound: boolean;3651 readonly isTokenValueTooLow: boolean;3652 readonly isApprovedValueTooLow: boolean;3653 readonly isCantApproveMoreThanOwned: boolean;3654 readonly isAddressIsZero: boolean;3655 readonly isUnsupportedOperation: boolean;3656 readonly isNotSufficientFounds: boolean;3657 readonly isUserIsNotAllowedToNest: boolean;3658 readonly isSourceCollectionIsNotAllowedToNest: boolean;3659 readonly isCollectionFieldSizeExceeded: boolean;3660 readonly isNoSpaceForProperty: boolean;3661 readonly isPropertyLimitReached: boolean;3662 readonly isPropertyKeyIsTooLong: boolean;3663 readonly isInvalidCharacterInPropertyKey: boolean;3664 readonly isEmptyPropertyKey: boolean;3665 readonly isCollectionIsExternal: boolean;3666 readonly isCollectionIsInternal: boolean;3667 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3668 }36693670 /** @name PalletFungibleError (430) */3671 interface PalletFungibleError extends Enum {3672 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3673 readonly isFungibleItemsHaveNoId: boolean;3674 readonly isFungibleItemsDontHaveData: boolean;3675 readonly isFungibleDisallowsNesting: boolean;3676 readonly isSettingPropertiesNotAllowed: boolean;3677 readonly isSettingAllowanceForAllNotAllowed: boolean;3678 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3679 }36803681 /** @name PalletRefungibleItemData (431) */3682 interface PalletRefungibleItemData extends Struct {3683 readonly constData: Bytes;3684 }36853686 /** @name PalletRefungibleError (436) */3687 interface PalletRefungibleError extends Enum {3688 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3689 readonly isWrongRefungiblePieces: boolean;3690 readonly isRepartitionWhileNotOwningAllPieces: boolean;3691 readonly isRefungibleDisallowsNesting: boolean;3692 readonly isSettingPropertiesNotAllowed: boolean;3693 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3694 }36953696 /** @name PalletNonfungibleItemData (437) */3697 interface PalletNonfungibleItemData extends Struct {3698 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3699 }37003701 /** @name UpDataStructsPropertyScope (439) */3702 interface UpDataStructsPropertyScope extends Enum {3703 readonly isNone: boolean;3704 readonly isRmrk: boolean;3705 readonly type: 'None' | 'Rmrk';3706 }37073708 /** @name PalletNonfungibleError (441) */3709 interface PalletNonfungibleError extends Enum {3710 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3711 readonly isNonfungibleItemsHaveNoAmount: boolean;3712 readonly isCantBurnNftWithChildren: boolean;3713 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3714 }37153716 /** @name PalletStructureError (442) */3717 interface PalletStructureError extends Enum {3718 readonly isOuroborosDetected: boolean;3719 readonly isDepthLimit: boolean;3720 readonly isBreadthLimit: boolean;3721 readonly isTokenNotFound: boolean;3722 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3723 }37243725 /** @name PalletRmrkCoreError (443) */3726 interface PalletRmrkCoreError extends Enum {3727 readonly isCorruptedCollectionType: boolean;3728 readonly isRmrkPropertyKeyIsTooLong: boolean;3729 readonly isRmrkPropertyValueIsTooLong: boolean;3730 readonly isRmrkPropertyIsNotFound: boolean;3731 readonly isUnableToDecodeRmrkData: boolean;3732 readonly isCollectionNotEmpty: boolean;3733 readonly isNoAvailableCollectionId: boolean;3734 readonly isNoAvailableNftId: boolean;3735 readonly isCollectionUnknown: boolean;3736 readonly isNoPermission: boolean;3737 readonly isNonTransferable: boolean;3738 readonly isCollectionFullOrLocked: boolean;3739 readonly isResourceDoesntExist: boolean;3740 readonly isCannotSendToDescendentOrSelf: boolean;3741 readonly isCannotAcceptNonOwnedNft: boolean;3742 readonly isCannotRejectNonOwnedNft: boolean;3743 readonly isCannotRejectNonPendingNft: boolean;3744 readonly isResourceNotPending: boolean;3745 readonly isNoAvailableResourceId: boolean;3746 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3747 }37483749 /** @name PalletRmrkEquipError (445) */3750 interface PalletRmrkEquipError extends Enum {3751 readonly isPermissionError: boolean;3752 readonly isNoAvailableBaseId: boolean;3753 readonly isNoAvailablePartId: boolean;3754 readonly isBaseDoesntExist: boolean;3755 readonly isNeedsDefaultThemeFirst: boolean;3756 readonly isPartDoesntExist: boolean;3757 readonly isNoEquippableOnFixedPart: boolean;3758 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3759 }37603761 /** @name PalletAppPromotionError (451) */3762 interface PalletAppPromotionError extends Enum {3763 readonly isAdminNotSet: boolean;3764 readonly isNoPermission: boolean;3765 readonly isNotSufficientFunds: boolean;3766 readonly isPendingForBlockOverflow: boolean;3767 readonly isSponsorNotSet: boolean;3768 readonly isIncorrectLockedBalanceOperation: boolean;3769 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3770 }37713772 /** @name PalletForeignAssetsModuleError (452) */3773 interface PalletForeignAssetsModuleError extends Enum {3774 readonly isBadLocation: boolean;3775 readonly isMultiLocationExisted: boolean;3776 readonly isAssetIdNotExists: boolean;3777 readonly isAssetIdExisted: boolean;3778 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3779 }37803781 /** @name PalletEvmError (454) */3782 interface PalletEvmError extends Enum {3783 readonly isBalanceLow: boolean;3784 readonly isFeeOverflow: boolean;3785 readonly isPaymentOverflow: boolean;3786 readonly isWithdrawFailed: boolean;3787 readonly isGasPriceTooLow: boolean;3788 readonly isInvalidNonce: boolean;3789 readonly isGasLimitTooLow: boolean;3790 readonly isGasLimitTooHigh: boolean;3791 readonly isUndefined: boolean;3792 readonly isReentrancy: boolean;3793 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3794 }37953796 /** @name FpRpcTransactionStatus (457) */3797 interface FpRpcTransactionStatus extends Struct {3798 readonly transactionHash: H256;3799 readonly transactionIndex: u32;3800 readonly from: H160;3801 readonly to: Option<H160>;3802 readonly contractAddress: Option<H160>;3803 readonly logs: Vec<EthereumLog>;3804 readonly logsBloom: EthbloomBloom;3805 }38063807 /** @name EthbloomBloom (459) */3808 interface EthbloomBloom extends U8aFixed {}38093810 /** @name EthereumReceiptReceiptV3 (461) */3811 interface EthereumReceiptReceiptV3 extends Enum {3812 readonly isLegacy: boolean;3813 readonly asLegacy: EthereumReceiptEip658ReceiptData;3814 readonly isEip2930: boolean;3815 readonly asEip2930: EthereumReceiptEip658ReceiptData;3816 readonly isEip1559: boolean;3817 readonly asEip1559: EthereumReceiptEip658ReceiptData;3818 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3819 }38203821 /** @name EthereumReceiptEip658ReceiptData (462) */3822 interface EthereumReceiptEip658ReceiptData extends Struct {3823 readonly statusCode: u8;3824 readonly usedGas: U256;3825 readonly logsBloom: EthbloomBloom;3826 readonly logs: Vec<EthereumLog>;3827 }38283829 /** @name EthereumBlock (463) */3830 interface EthereumBlock extends Struct {3831 readonly header: EthereumHeader;3832 readonly transactions: Vec<EthereumTransactionTransactionV2>;3833 readonly ommers: Vec<EthereumHeader>;3834 }38353836 /** @name EthereumHeader (464) */3837 interface EthereumHeader extends Struct {3838 readonly parentHash: H256;3839 readonly ommersHash: H256;3840 readonly beneficiary: H160;3841 readonly stateRoot: H256;3842 readonly transactionsRoot: H256;3843 readonly receiptsRoot: H256;3844 readonly logsBloom: EthbloomBloom;3845 readonly difficulty: U256;3846 readonly number: U256;3847 readonly gasLimit: U256;3848 readonly gasUsed: U256;3849 readonly timestamp: u64;3850 readonly extraData: Bytes;3851 readonly mixHash: H256;3852 readonly nonce: EthereumTypesHashH64;3853 }38543855 /** @name EthereumTypesHashH64 (465) */3856 interface EthereumTypesHashH64 extends U8aFixed {}38573858 /** @name PalletEthereumError (470) */3859 interface PalletEthereumError extends Enum {3860 readonly isInvalidSignature: boolean;3861 readonly isPreLogExists: boolean;3862 readonly type: 'InvalidSignature' | 'PreLogExists';3863 }38643865 /** @name PalletEvmCoderSubstrateError (471) */3866 interface PalletEvmCoderSubstrateError extends Enum {3867 readonly isOutOfGas: boolean;3868 readonly isOutOfFund: boolean;3869 readonly type: 'OutOfGas' | 'OutOfFund';3870 }38713872 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */3873 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3874 readonly isDisabled: boolean;3875 readonly isUnconfirmed: boolean;3876 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3877 readonly isConfirmed: boolean;3878 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3879 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3880 }38813882 /** @name PalletEvmContractHelpersSponsoringModeT (473) */3883 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3884 readonly isDisabled: boolean;3885 readonly isAllowlisted: boolean;3886 readonly isGenerous: boolean;3887 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3888 }38893890 /** @name PalletEvmContractHelpersError (479) */3891 interface PalletEvmContractHelpersError extends Enum {3892 readonly isNoPermission: boolean;3893 readonly isNoPendingSponsor: boolean;3894 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3895 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3896 }38973898 /** @name PalletEvmMigrationError (480) */3899 interface PalletEvmMigrationError extends Enum {3900 readonly isAccountNotEmpty: boolean;3901 readonly isAccountIsNotMigrating: boolean;3902 readonly isBadEvent: boolean;3903 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3904 }39053906 /** @name PalletMaintenanceError (481) */3907 type PalletMaintenanceError = Null;39083909 /** @name PalletTestUtilsError (482) */3910 interface PalletTestUtilsError extends Enum {3911 readonly isTestPalletDisabled: boolean;3912 readonly isTriggerRollback: boolean;3913 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3914 }39153916 /** @name SpRuntimeMultiSignature (484) */3917 interface SpRuntimeMultiSignature extends Enum {3918 readonly isEd25519: boolean;3919 readonly asEd25519: SpCoreEd25519Signature;3920 readonly isSr25519: boolean;3921 readonly asSr25519: SpCoreSr25519Signature;3922 readonly isEcdsa: boolean;3923 readonly asEcdsa: SpCoreEcdsaSignature;3924 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3925 }39263927 /** @name SpCoreEd25519Signature (485) */3928 interface SpCoreEd25519Signature extends U8aFixed {}39293930 /** @name SpCoreSr25519Signature (487) */3931 interface SpCoreSr25519Signature extends U8aFixed {}39323933 /** @name SpCoreEcdsaSignature (488) */3934 interface SpCoreEcdsaSignature extends U8aFixed {}39353936 /** @name FrameSystemExtensionsCheckSpecVersion (491) */3937 type FrameSystemExtensionsCheckSpecVersion = Null;39383939 /** @name FrameSystemExtensionsCheckTxVersion (492) */3940 type FrameSystemExtensionsCheckTxVersion = Null;39413942 /** @name FrameSystemExtensionsCheckGenesis (493) */3943 type FrameSystemExtensionsCheckGenesis = Null;39443945 /** @name FrameSystemExtensionsCheckNonce (496) */3946 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39473948 /** @name FrameSystemExtensionsCheckWeight (497) */3949 type FrameSystemExtensionsCheckWeight = Null;39503951 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */3952 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39533954 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */3955 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39563957 /** @name OpalRuntimeRuntime (500) */3958 type OpalRuntimeRuntime = Null;39593960 /** @name PalletEthereumFakeTransactionFinalizer (501) */3961 type PalletEthereumFakeTransactionFinalizer = Null;39623963} // declare moduletests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -17,47 +17,47 @@
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.19.3":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747"
- integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==
+"@babel/compat-data@^7.20.0":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
+ integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
-"@babel/core@^7.19.3":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f"
- integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==
+"@babel/core@^7.20.2":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
+ integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.6"
- "@babel/helper-compilation-targets" "^7.19.3"
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helpers" "^7.19.4"
- "@babel/parser" "^7.19.6"
+ "@babel/generator" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.0"
+ "@babel/helper-module-transforms" "^7.20.2"
+ "@babel/helpers" "^7.20.5"
+ "@babel/parser" "^7.20.5"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.6"
- "@babel/types" "^7.19.4"
+ "@babel/traverse" "^7.20.5"
+ "@babel/types" "^7.20.5"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/generator@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.6.tgz#9e481a3fe9ca6261c972645ae3904ec0f9b34a1d"
- integrity sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==
+"@babel/generator@^7.20.5":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"
+ integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==
dependencies:
- "@babel/types" "^7.19.4"
+ "@babel/types" "^7.20.5"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/helper-compilation-targets@^7.19.3":
- version "7.19.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca"
- integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==
+"@babel/helper-compilation-targets@^7.20.0":
+ version "7.20.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
+ integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
dependencies:
- "@babel/compat-data" "^7.19.3"
+ "@babel/compat-data" "^7.20.0"
"@babel/helper-validator-option" "^7.18.6"
browserslist "^4.21.3"
semver "^6.3.0"
@@ -89,26 +89,26 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-module-transforms@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f"
- integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==
+"@babel/helper-module-transforms@^7.20.2":
+ version "7.20.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
+ integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.19.4"
+ "@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.6"
- "@babel/types" "^7.19.4"
+ "@babel/traverse" "^7.20.1"
+ "@babel/types" "^7.20.2"
-"@babel/helper-simple-access@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"
- integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==
+"@babel/helper-simple-access@^7.20.2":
+ version "7.20.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
+ integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
dependencies:
- "@babel/types" "^7.19.4"
+ "@babel/types" "^7.20.2"
"@babel/helper-split-export-declaration@^7.18.6":
version "7.18.6"
@@ -132,14 +132,14 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-"@babel/helpers@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5"
- integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==
+"@babel/helpers@^7.20.5":
+ version "7.20.6"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763"
+ integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==
dependencies:
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.4"
- "@babel/types" "^7.19.4"
+ "@babel/traverse" "^7.20.5"
+ "@babel/types" "^7.20.5"
"@babel/highlight@^7.18.6":
version "7.18.6"
@@ -150,11 +150,16 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.18.10", "@babel/parser@^7.19.6":
+"@babel/parser@^7.18.10":
version "7.19.6"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"
integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==
+"@babel/parser@^7.20.5":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
+ integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
+
"@babel/register@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"
@@ -166,12 +171,12 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.18.9", "@babel/runtime@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"
- integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==
+"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":
+ version "7.20.6"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
+ integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
dependencies:
- regenerator-runtime "^0.13.4"
+ regenerator-runtime "^0.13.11"
"@babel/template@^7.18.10":
version "7.18.10"
@@ -182,23 +187,23 @@
"@babel/parser" "^7.18.10"
"@babel/types" "^7.18.10"
-"@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.6.tgz#7b4c865611df6d99cb131eec2e8ac71656a490dc"
- integrity sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==
+"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
+ integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.6"
+ "@babel/generator" "^7.20.5"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.19.6"
- "@babel/types" "^7.19.4"
+ "@babel/parser" "^7.20.5"
+ "@babel/types" "^7.20.5"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4":
+"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":
version "7.19.4"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
@@ -207,6 +212,15 @@
"@babel/helper-validator-identifier" "^7.19.1"
to-fast-properties "^2.0.0"
+"@babel/types@^7.20.2", "@babel/types@^7.20.5":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
+ integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
+ dependencies:
+ "@babel/helper-string-parser" "^7.19.4"
+ "@babel/helper-validator-identifier" "^7.19.1"
+ to-fast-properties "^2.0.0"
+
"@cspotcode/source-map-support@^0.8.0":
version "0.8.1"
resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
@@ -520,352 +534,352 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@polkadot/api-augment@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.5.2.tgz#55168dd112517028fea5f2ab9c54ea627e43ac3a"
- integrity sha512-dH6QMY8Z3zI6CrgSU3eSe6f0KWDb5PYGztg/FXGPrjh7Vjic7syWZ1LD6zaHJAFWDp80BEdEXfqr4lConrCKGg==
+"@polkadot/api-augment@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"
+ integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/api-base" "9.5.2"
- "@polkadot/rpc-augment" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-augment" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/api-base" "9.9.4"
+ "@polkadot/rpc-augment" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-augment" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/util" "^10.1.14"
-"@polkadot/api-base@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.5.2.tgz#ac0a6b5546a54bcc753ac55c9f033caa9f8b4e5c"
- integrity sha512-BBsH9SLB1FHgjdiU32cZX1puL3Eh8IjOJHjRsO/5SdttciQhF5g/u/m/mM/55qnlXmffI9s2Jre18G0XtVU9Aw==
+"@polkadot/api-base@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"
+ integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/rpc-core" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/rpc-core" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/util" "^10.1.14"
rxjs "^7.5.7"
-"@polkadot/api-derive@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.5.2.tgz#c0412cfc13fa71f93b315d126b12b5ab38e6438c"
- integrity sha512-kWn12dlqfIES1trNLd3O1i2qa4T97v/co1VMCgVstICwCt3+mGZgpxkMqQqPiWHagKEVeBNoAn+h8eOiQlbujA==
+"@polkadot/api-derive@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"
+ integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/api" "9.5.2"
- "@polkadot/api-augment" "9.5.2"
- "@polkadot/api-base" "9.5.2"
- "@polkadot/rpc-core" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/util" "^10.1.11"
- "@polkadot/util-crypto" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/api" "9.9.4"
+ "@polkadot/api-augment" "9.9.4"
+ "@polkadot/api-base" "9.9.4"
+ "@polkadot/rpc-core" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/util" "^10.1.14"
+ "@polkadot/util-crypto" "^10.1.14"
rxjs "^7.5.7"
-"@polkadot/api@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.5.2.tgz#cef83928e47c393fbebf2788bc86841b6ab37a41"
- integrity sha512-iEF/E8vQan3fHmIEl3bX7Yn/1jQLlvSDwPOxiQdj4tIcF36HX6vCbkdhQKRif0CNYES58TA9EKFiCNg81k+kXw==
+"@polkadot/api@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"
+ integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/api-augment" "9.5.2"
- "@polkadot/api-base" "9.5.2"
- "@polkadot/api-derive" "9.5.2"
- "@polkadot/keyring" "^10.1.11"
- "@polkadot/rpc-augment" "9.5.2"
- "@polkadot/rpc-core" "9.5.2"
- "@polkadot/rpc-provider" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-augment" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/types-create" "9.5.2"
- "@polkadot/types-known" "9.5.2"
- "@polkadot/util" "^10.1.11"
- "@polkadot/util-crypto" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/api-augment" "9.9.4"
+ "@polkadot/api-base" "9.9.4"
+ "@polkadot/api-derive" "9.9.4"
+ "@polkadot/keyring" "^10.1.14"
+ "@polkadot/rpc-augment" "9.9.4"
+ "@polkadot/rpc-core" "9.9.4"
+ "@polkadot/rpc-provider" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-augment" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/types-create" "9.9.4"
+ "@polkadot/types-known" "9.9.4"
+ "@polkadot/util" "^10.1.14"
+ "@polkadot/util-crypto" "^10.1.14"
eventemitter3 "^4.0.7"
rxjs "^7.5.7"
-"@polkadot/keyring@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.11.tgz#a3fed011b0c8826ea2097e04f7189e9be66fbf98"
- integrity sha512-Nv8cZaOA/KbdslDMTklJ58+y+UPpic3+oMQoozuq48Ccjv7WeW2BX47XM/RNE8nYFg6EHa6Whfm4IFaFb8s7ag==
+"@polkadot/keyring@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"
+ integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/util" "10.1.11"
- "@polkadot/util-crypto" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "10.2.1"
+ "@polkadot/util-crypto" "10.2.1"
-"@polkadot/networks@10.1.11", "@polkadot/networks@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.11.tgz#96a5d6c80228f4beada9154cca0f60a63198e7f4"
- integrity sha512-4FfOVETXwh6PL6wd6fYJMkRSQKm+xUw3vR5rHqcAnB696FpMFPPErc6asgZ9lYMyzNJRY3yG86HQpFhtCv1nGA==
+"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"
+ integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/util" "10.1.11"
- "@substrate/ss58-registry" "^1.33.0"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "10.2.1"
+ "@substrate/ss58-registry" "^1.35.0"
-"@polkadot/rpc-augment@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.5.2.tgz#739cc3ed2f86f4318432e38381a2cc780dc64f1e"
- integrity sha512-QAcunC7p/T4xy6e4m0Q1c9tiVYxnm+S9o10tmtx0K4qXzrc/4I2/tsw3nEGi3BzJhvMpFondSQGcJ3gyLwpmVA==
+"@polkadot/rpc-augment@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"
+ integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/rpc-core" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/rpc-core" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/util" "^10.1.14"
-"@polkadot/rpc-core@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.5.2.tgz#1a00868038b6c07fe8f58bd0a6cc9519d14001cc"
- integrity sha512-4PbNz0GEp3FXYOnsS7mDHZy9DNVBOl56fq8vs09rLkEkrrvGkHmCvabEEWL7OPbwBzwzsCxdgI+IdkVTUKXPkQ==
+"@polkadot/rpc-core@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"
+ integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/rpc-augment" "9.5.2"
- "@polkadot/rpc-provider" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/rpc-augment" "9.9.4"
+ "@polkadot/rpc-provider" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/util" "^10.1.14"
rxjs "^7.5.7"
-"@polkadot/rpc-provider@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.5.2.tgz#3e38ea4c3639180f12270b6fe8cbcabf728aaf1d"
- integrity sha512-Sn2jfvAsvQcl35o0up8JR/XbDMS/3YVDEN2sFuzXtiD77W2njukItbZT+BolfAW+biAUs3bNomump5k/YLiLKg==
+"@polkadot/rpc-provider@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"
+ integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/keyring" "^10.1.11"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-support" "9.5.2"
- "@polkadot/util" "^10.1.11"
- "@polkadot/util-crypto" "^10.1.11"
- "@polkadot/x-fetch" "^10.1.11"
- "@polkadot/x-global" "^10.1.11"
- "@polkadot/x-ws" "^10.1.11"
- "@substrate/connect" "0.7.14"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/keyring" "^10.1.14"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-support" "9.9.4"
+ "@polkadot/util" "^10.1.14"
+ "@polkadot/util-crypto" "^10.1.14"
+ "@polkadot/x-fetch" "^10.1.14"
+ "@polkadot/x-global" "^10.1.14"
+ "@polkadot/x-ws" "^10.1.14"
+ "@substrate/connect" "0.7.17"
eventemitter3 "^4.0.7"
mock-socket "^9.1.5"
nock "^13.2.9"
-"@polkadot/typegen@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.5.2.tgz#b4f3b5eca69c70cc496c8cd3b7804df32282c336"
- integrity sha512-DIiicI3VzbqkfjthvHhLYCaElkaKB/qM+P0mGDmb3+NgttJQsH2Sqy/zsT/mjr07hAB1gXf4dhCmj0QQBiR1og==
+"@polkadot/typegen@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"
+ integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==
dependencies:
- "@babel/core" "^7.19.3"
+ "@babel/core" "^7.20.2"
"@babel/register" "^7.18.9"
- "@babel/runtime" "^7.19.4"
- "@polkadot/api" "9.5.2"
- "@polkadot/api-augment" "9.5.2"
- "@polkadot/rpc-augment" "9.5.2"
- "@polkadot/rpc-provider" "9.5.2"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-augment" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/types-create" "9.5.2"
- "@polkadot/types-support" "9.5.2"
- "@polkadot/util" "^10.1.11"
- "@polkadot/util-crypto" "^10.1.11"
- "@polkadot/x-ws" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/api" "9.9.4"
+ "@polkadot/api-augment" "9.9.4"
+ "@polkadot/rpc-augment" "9.9.4"
+ "@polkadot/rpc-provider" "9.9.4"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-augment" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/types-create" "9.9.4"
+ "@polkadot/types-support" "9.9.4"
+ "@polkadot/util" "^10.1.14"
+ "@polkadot/util-crypto" "^10.1.14"
+ "@polkadot/x-ws" "^10.1.14"
handlebars "^4.7.7"
websocket "^1.0.34"
- yargs "^17.6.0"
+ yargs "^17.6.2"
-"@polkadot/types-augment@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.5.2.tgz#d9e77756b0e36455d708f5af8265ef011ddf8d91"
- integrity sha512-LDJdv/84sECwA0R5lK85/orxjoozJe3+2jeLjRiKr8S6qm9XRfz0wLCSF866kpSGBZ4B1dYBUhzjoSu95y2Jug==
+"@polkadot/types-augment@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"
+ integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/util" "^10.1.14"
-"@polkadot/types-codec@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.5.2.tgz#345c38ccef17651b8cabd159a42810893b5e7e44"
- integrity sha512-FJPjE3ceTGTcadeC8d5C+aSR8SLKuQrXKIBmMNBky+WwzEo0vufRqxFWcPLxAOEeeUPgBXS967tP15+UU4psGA==
+"@polkadot/types-codec@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"
+ integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/util" "^10.1.11"
- "@polkadot/x-bigint" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/util" "^10.1.14"
+ "@polkadot/x-bigint" "^10.1.14"
-"@polkadot/types-create@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.5.2.tgz#a85dcb794ea11e5d528baa34b65e57cfafc905cf"
- integrity sha512-YbplL8K0LqUEHoV3FgZ5B83oVV67KGbLXsWHVVaUZBPsmtXJXrbBfSyJgl/80I2n4lXEBmg3sFAYMbaSTvL05A==
+"@polkadot/types-create@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"
+ integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/util" "^10.1.14"
-"@polkadot/types-known@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.5.2.tgz#a71fd08932b1643bbf346321472ed48ab1ade215"
- integrity sha512-iNaGOF6dGiTvy3Ns8Z7WNjYD1SGnZiapDAKPH4brPuJqMpN6/FxYpfPSSOKx+IJEamsdINcaggb87eWyPxH8CA==
+"@polkadot/types-known@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"
+ integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/networks" "^10.1.11"
- "@polkadot/types" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/types-create" "9.5.2"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/networks" "^10.1.14"
+ "@polkadot/types" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/types-create" "9.9.4"
+ "@polkadot/util" "^10.1.14"
-"@polkadot/types-support@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.5.2.tgz#f2990d19cbd78c24e5b7116466fb1d89f93a8ca7"
- integrity sha512-Zdbl5fvGQjUkyE1r67vhyPEqLUwlZ35GCnkoobY9MgN6gylhSjNue/shpG4uGsEjWVQL7GkFkrPiwtzDArVilg==
+"@polkadot/types-support@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"
+ integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/util" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/util" "^10.1.14"
-"@polkadot/types@9.5.2":
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.5.2.tgz#33ab2caea08f084141a01038adbe53ed69ab7d9c"
- integrity sha512-6C5xzOrMK+fu0JMOlSO+8dPDhpwKPOaKMv3v5BMvBEWtDNKM81/QQoAoYT7DSVXq/V16icSFxPs9IWC+6Qq5ag==
+"@polkadot/types@9.9.4":
+ version "9.9.4"
+ resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"
+ integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/keyring" "^10.1.11"
- "@polkadot/types-augment" "9.5.2"
- "@polkadot/types-codec" "9.5.2"
- "@polkadot/types-create" "9.5.2"
- "@polkadot/util" "^10.1.11"
- "@polkadot/util-crypto" "^10.1.11"
+ "@babel/runtime" "^7.20.1"
+ "@polkadot/keyring" "^10.1.14"
+ "@polkadot/types-augment" "9.9.4"
+ "@polkadot/types-codec" "9.9.4"
+ "@polkadot/types-create" "9.9.4"
+ "@polkadot/util" "^10.1.14"
+ "@polkadot/util-crypto" "^10.1.14"
rxjs "^7.5.7"
-"@polkadot/util-crypto@10.1.11", "@polkadot/util-crypto@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.11.tgz#e59bdc8e1e2bd98a115e2e2ed45461e68a14a48c"
- integrity sha512-wG63frIMAR5T/HXGM0SFNzZZdk7qDBsfLXfn6PIZiXCCCsdEYPzS5WltB7fkhicYpbePJ7VgdCAddj1l4IcGyg==
+"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"
+ integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==
dependencies:
- "@babel/runtime" "^7.19.4"
+ "@babel/runtime" "^7.20.6"
"@noble/hashes" "1.1.3"
"@noble/secp256k1" "1.7.0"
- "@polkadot/networks" "10.1.11"
- "@polkadot/util" "10.1.11"
- "@polkadot/wasm-crypto" "^6.3.1"
- "@polkadot/x-bigint" "10.1.11"
- "@polkadot/x-randomvalues" "10.1.11"
+ "@polkadot/networks" "10.2.1"
+ "@polkadot/util" "10.2.1"
+ "@polkadot/wasm-crypto" "^6.4.1"
+ "@polkadot/x-bigint" "10.2.1"
+ "@polkadot/x-randomvalues" "10.2.1"
"@scure/base" "1.1.1"
ed2curve "^0.3.0"
tweetnacl "^1.0.3"
-"@polkadot/util@10.1.11", "@polkadot/util@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.11.tgz#22bcdabbd7a0d266417f6569cc655f516d371a82"
- integrity sha512-6m51lw6g6ilqO/k4BQY7rD0lYM9NCnC4FiM7CEEUc7j8q86qxdcZ88zdNldkhNsTIQnfmCtkK3GRzZW6VYrbUw==
+"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"
+ integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-bigint" "10.1.11"
- "@polkadot/x-global" "10.1.11"
- "@polkadot/x-textdecoder" "10.1.11"
- "@polkadot/x-textencoder" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-bigint" "10.2.1"
+ "@polkadot/x-global" "10.2.1"
+ "@polkadot/x-textdecoder" "10.2.1"
+ "@polkadot/x-textencoder" "10.2.1"
"@types/bn.js" "^5.1.1"
bn.js "^5.2.1"
-"@polkadot/wasm-bridge@6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.3.1.tgz#439fa78e80947a7cb695443e1f64b25c30bb1487"
- integrity sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==
+"@polkadot/wasm-bridge@6.4.1":
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.4.1.tgz#e97915dd67ba543ec3381299c2a5b9330686e27e"
+ integrity sha512-QZDvz6dsUlbYsaMV5biZgZWkYH9BC5AfhT0f0/knv8+LrbAoQdP3Asbvddw8vyU9sbpuCHXrd4bDLBwUCRfrBQ==
dependencies:
- "@babel/runtime" "^7.18.9"
+ "@babel/runtime" "^7.20.6"
-"@polkadot/wasm-crypto-asmjs@6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.3.1.tgz#e8f469c9cf4a7709c8131a96f857291953f3e30a"
- integrity sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==
+"@polkadot/wasm-crypto-asmjs@6.4.1":
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.4.1.tgz#3cc76bbda5ea4a7a860982c64f9565907b312253"
+ integrity sha512-UxZTwuBZlnODGIQdCsE2Sn/jU0O2xrNQ/TkhRFELfkZXEXTNu4lw6NpaKq7Iey4L+wKd8h4lT3VPVkMcPBLOvA==
dependencies:
- "@babel/runtime" "^7.18.9"
+ "@babel/runtime" "^7.20.6"
-"@polkadot/wasm-crypto-init@6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.3.1.tgz#b590220c53c94b9a54d5dc236d0cbe943db76706"
- integrity sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==
+"@polkadot/wasm-crypto-init@6.4.1":
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.4.1.tgz#4d9ab0030db52cf177bf707ef8e77aa4ca721668"
+ integrity sha512-1ALagSi/nfkyFaH6JDYfy/QbicVbSn99K8PV9rctDUfxc7P06R7CoqbjGQ4OMPX6w1WYVPU7B4jPHGLYBlVuMw==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/wasm-bridge" "6.3.1"
- "@polkadot/wasm-crypto-asmjs" "6.3.1"
- "@polkadot/wasm-crypto-wasm" "6.3.1"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/wasm-bridge" "6.4.1"
+ "@polkadot/wasm-crypto-asmjs" "6.4.1"
+ "@polkadot/wasm-crypto-wasm" "6.4.1"
-"@polkadot/wasm-crypto-wasm@6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.3.1.tgz#67f720e7f9694fef096abe9d60abbac02e032383"
- integrity sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==
+"@polkadot/wasm-crypto-wasm@6.4.1":
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.4.1.tgz#97180f80583b18f6a13c1054fa5f7e8da40b1028"
+ integrity sha512-3VV9ZGzh0ZY3SmkkSw+0TRXxIpiO0nB8lFwlRgcwaCihwrvLfRnH9GI8WE12mKsHVjWTEVR3ogzILJxccAUjDA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/wasm-util" "6.3.1"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/wasm-util" "6.4.1"
-"@polkadot/wasm-crypto@^6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.3.1.tgz#63f5798aca2b2ff0696f190e6862d9781d8f280c"
- integrity sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==
+"@polkadot/wasm-crypto@^6.4.1":
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.4.1.tgz#79310e23ad1ca62362ba893db6a8567154c2536a"
+ integrity sha512-FH+dcDPdhSLJvwL0pMLtn/LIPd62QDPODZRCmDyw+pFjLOMaRBc7raomWUOqyRWJTnqVf/iscc2rLVLNMyt7ag==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/wasm-bridge" "6.3.1"
- "@polkadot/wasm-crypto-asmjs" "6.3.1"
- "@polkadot/wasm-crypto-init" "6.3.1"
- "@polkadot/wasm-crypto-wasm" "6.3.1"
- "@polkadot/wasm-util" "6.3.1"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/wasm-bridge" "6.4.1"
+ "@polkadot/wasm-crypto-asmjs" "6.4.1"
+ "@polkadot/wasm-crypto-init" "6.4.1"
+ "@polkadot/wasm-crypto-wasm" "6.4.1"
+ "@polkadot/wasm-util" "6.4.1"
-"@polkadot/wasm-util@6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.3.1.tgz#439ebb68a436317af388ed6438b8f879df3afcda"
- integrity sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==
+"@polkadot/wasm-util@6.4.1":
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.4.1.tgz#74aecc85bec427a9225d9874685944ea3dc3ab76"
+ integrity sha512-Uwo+WpEsDmFExWC5kTNvsVhvqXMZEKf4gUHXFn4c6Xz4lmieRT5g+1bO1KJ21pl4msuIgdV3Bksfs/oiqMFqlw==
dependencies:
- "@babel/runtime" "^7.18.9"
+ "@babel/runtime" "^7.20.6"
-"@polkadot/x-bigint@10.1.11", "@polkadot/x-bigint@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.11.tgz#7d62ce10cccd55b86a415342db95b9feeb099776"
- integrity sha512-TC4KZ+ni/SJhcf/LIwD49C/kwvACu0nCchETNO+sAfJ7COXZwHDUJXVXmwN5PgkQxwsWsKKuJmzR/Fi1bgMWnQ==
+"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"
+ integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-global" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-global" "10.2.1"
-"@polkadot/x-fetch@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.11.tgz#8f579bb166096c977acff91a40b3848fb5581900"
- integrity sha512-WtyUr9itVD9BLnxCUloJ1iwrXOY/lnlEShEYKHcSm6MIHtbJolePd3v1+o5mOX+bdDbHXhPZnH8anCCqDNDRqg==
+"@polkadot/x-fetch@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"
+ integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-global" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-global" "10.2.1"
"@types/node-fetch" "^2.6.2"
- node-fetch "^3.2.10"
+ node-fetch "^3.3.0"
-"@polkadot/x-global@10.1.11", "@polkadot/x-global@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.11.tgz#37dda3ef1cebfd14c68c69279ae6521957817866"
- integrity sha512-bWz5gdcELy6+xfr27R1GE5MPX4nfVlchzHQH+DR6OBbSi9g/PeycQAvFB6IkTmP+YEbNNtIpxnSP37zoUaG3xw==
+"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"
+ integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==
dependencies:
- "@babel/runtime" "^7.19.4"
+ "@babel/runtime" "^7.20.6"
-"@polkadot/x-randomvalues@10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.11.tgz#f9e088f8b400770d3e53ba9e0c0f0d464047f89e"
- integrity sha512-V2V37f5hoM5B32eCpGw87Lwstin2+ArXhOZ8ENKncbQLXzbF9yTODueDoA5Vt0MJCs2CDP9cyiCYykcanqVkxg==
+"@polkadot/x-randomvalues@10.2.1":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.2.1.tgz#1c463625c0b7cf775e94594f522eb21a5229b42e"
+ integrity sha512-bEwG6j/+HMZ5LIkyzRbTB0N1Wz2lHyxP25pPFgHFqGqon/KZoRN5kxOwEJ1DpPJIv+9PVn5tt7bc4R3qsaZ93g==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-global" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-global" "10.2.1"
-"@polkadot/x-textdecoder@10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.11.tgz#314c79e27545a41fe0494a26196bf2dff5cfcb5d"
- integrity sha512-QZqie04SR6pAj260PaLBfZUGXWKI357t4ROVJhpaj06qc1zrk1V8Mwkr49+WzjAPFEOqo70HWnzXmPNCH4dQiw==
+"@polkadot/x-textdecoder@10.2.1":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.2.1.tgz#c1778ef35e2aa8db8f11bbe31a5bbf5e46017d7d"
+ integrity sha512-hpFmrdv/rrSM4UNaV8TJBgMtwXsYlNgBTSUmnKWwJIN3PhOUeYxl1qIbPchxGbJBc35WviJCZe7rlLja9JvFcw==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-global" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-global" "10.2.1"
-"@polkadot/x-textencoder@10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.11.tgz#23b18b3ffbc649572728aa37d7787432bb3a03b5"
- integrity sha512-UX+uV9AbDID81waaG/NvTkkf7ZNVW7HSHaddgbWjQEVW2Ex4ByccBarY5jEi6cErEPKfzCamKhgXflu0aV9LWw==
+"@polkadot/x-textencoder@10.2.1":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.2.1.tgz#c09562c73a44659243075d43b007b5c1b39c57a8"
+ integrity sha512-4gMyY6DCH34KA++bawu/zlUJ0/8+aZJsurwjRBbkdfOS2uLo0K+vJ5GBevAhl0VSznM36ptfh/MpkIBKK/6R0g==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-global" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-global" "10.2.1"
-"@polkadot/x-ws@^10.1.11":
- version "10.1.11"
- resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.11.tgz#7431ad72064d56519d4293278f03ae97b9ea9271"
- integrity sha512-EUbL/R1A/NxYf6Rnb1M7U9yeTuo5r4y2vcQllE5aBLaQ0cFnRykHzlmZlVX1E7O5uy3lYVdxWC7sNgxItIWkWA==
+"@polkadot/x-ws@^10.1.14":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"
+ integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==
dependencies:
- "@babel/runtime" "^7.19.4"
- "@polkadot/x-global" "10.1.11"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/x-global" "10.2.1"
"@types/websocket" "^1.0.5"
websocket "^1.0.34"
@@ -884,27 +898,27 @@
resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"
integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==
-"@substrate/connect@0.7.14":
- version "0.7.14"
- resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.14.tgz#c090e952e9cdd93185a94d24fbc424ea20fe7bbe"
- integrity sha512-uW5uBmihpivshmmmw+rsg7qOV0KqVSep4rWOXFMP8aFQinvmqw4JqxP21og4H/7JZxttYUBFQVsdtXHGKJ0aVQ==
+"@substrate/connect@0.7.17":
+ version "0.7.17"
+ resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.17.tgz#b76ce23d24255e89028db81b3cb280c7f86db72e"
+ integrity sha512-s0XBmGpUCFWZFa+TS0TEvOKtWjJP2uT4xKmvzApH8INB5xbz79wqWFX6WWh3AlK/X1P0Smt+RVEH7HQiLJAYAw==
dependencies:
"@substrate/connect-extension-protocol" "^1.0.1"
- "@substrate/smoldot-light" "0.6.34"
+ "@substrate/smoldot-light" "0.7.7"
eventemitter3 "^4.0.7"
-"@substrate/smoldot-light@0.6.34":
- version "0.6.34"
- resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.34.tgz#273dba622102281fd0fdb0e375198bff2ec584c3"
- integrity sha512-+HK9MaJ0HelJmpf4YYR+salJ7dhVBltmhGlyz5l8OXS9DW18fe0Z2wxEo8P5kX9CUxlCXEb8J9JBRQAYBPHbwQ==
+"@substrate/smoldot-light@0.7.7":
+ version "0.7.7"
+ resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.7.7.tgz#ee5f89bb25af64d2014d97548b959b7da4c67f08"
+ integrity sha512-ksxeAed6dIUtYSl0f8ehgWQjwXnpDGTIJt+WVRIGt3OObZkA96ZdBWx0xP7GrXZtj37u4n/Y1z7TyTm4bwQvrw==
dependencies:
pako "^2.0.4"
ws "^8.8.1"
-"@substrate/ss58-registry@^1.33.0":
- version "1.33.0"
- resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.33.0.tgz#b93218fc86405769716b02f0ce5e61df221b37ae"
- integrity sha512-DztMuMcEfu+tJrtIQIIp5gO8/XJZ8N8UwPObDCSNgrp7trtSkPJAUFB9qXaReXtN9UvTcVBMTWk6VPfFi04Wkg==
+"@substrate/ss58-registry@^1.35.0":
+ version "1.36.0"
+ resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.36.0.tgz#22b59fa85cacc0bdf40aa5d8131a377c1b5a8dd8"
+ integrity sha512-YfQIpe2bIvGg/XWNByycznbOiAknMvpYaUpQJ2sLmNT/OwPx7XjEXk7dLShccuiQDoOQt3trTtF3Frz/Tjv6Fg==
"@szmarczak/http-timer@^4.0.5":
version "4.0.6"
@@ -3679,10 +3693,10 @@
dependencies:
whatwg-url "^5.0.0"
-node-fetch@^3.2.10:
- version "3.2.10"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8"
- integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==
+node-fetch@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.0.tgz#37e71db4ecc257057af828d523a7243d651d91e4"
+ integrity sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==
dependencies:
data-uri-to-buffer "^4.0.0"
fetch-blob "^3.1.4"
@@ -4078,10 +4092,10 @@
dependencies:
picomatch "^2.2.1"
-regenerator-runtime@^0.13.4:
- version "0.13.10"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee"
- integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==
+regenerator-runtime@^0.13.11:
+ version "0.13.11"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
regexp.prototype.flags@^1.4.3:
version "1.4.3"
@@ -5170,7 +5184,7 @@
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
-yargs-parser@^21.0.0:
+yargs-parser@^21.1.1:
version "21.1.1"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
@@ -5198,10 +5212,10 @@
y18n "^5.0.5"
yargs-parser "^20.2.2"
-yargs@^17.6.0:
- version "17.6.0"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c"
- integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==
+yargs@^17.6.2:
+ version "17.6.2"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541"
+ integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==
dependencies:
cliui "^8.0.1"
escalade "^3.1.1"
@@ -5209,7 +5223,7 @@
require-directory "^2.1.1"
string-width "^4.2.3"
y18n "^5.0.5"
- yargs-parser "^21.0.0"
+ yargs-parser "^21.1.1"
yn@3.1.1:
version "3.1.1"