difftreelog
test update to fixed typegen
in: master
11 files changed
tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -4,9 +4,9 @@
"description": "Unique Chain Tests",
"main": "",
"devDependencies": {
- "@polkadot/dev": "0.66.17",
+ "@polkadot/dev": "0.66.21",
"@polkadot/ts": "0.4.22",
- "@polkadot/typegen": "8.3.1",
+ "@polkadot/typegen": "8.3.3-12",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
@@ -83,9 +83,9 @@
"license": "SEE LICENSE IN ../LICENSE",
"homepage": "",
"dependencies": {
- "@polkadot/api": "8.3.1",
- "@polkadot/api-contract": "8.3.1",
- "@polkadot/util-crypto": "^9.1.1",
+ "@polkadot/api": "8.3.3-12",
+ "@polkadot/api-contract": "8.3.3-12",
+ "@polkadot/util-crypto": "9.1.2-11",
"bignumber.js": "^9.0.2",
"chai-as-promised": "^7.1.1",
"find-process": "^1.4.7",
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -97,6 +97,14 @@
**/
CollectionTokenPrefixLimitExceeded: AugmentedError<ApiType>;
/**
+ * Empty property keys are forbidden
+ **/
+ EmptyPropertyKey: AugmentedError<ApiType>;
+ /**
+ * Only ASCII letters, digits, and '_', '-' are allowed
+ **/
+ InvalidCharacterInPropertyKey: AugmentedError<ApiType>;
+ /**
* Metadata flag frozen
**/
MetadataFlagFrozen: AugmentedError<ApiType>;
@@ -112,6 +120,9 @@
* No permission to perform action
**/
NoPermission: AugmentedError<ApiType>;
+ /**
+ * Tried to store more property data than allowed
+ **/
NoSpaceForProperty: AugmentedError<ApiType>;
/**
* Not sufficient founds to perform action
@@ -125,6 +136,9 @@
* Tried to enable permissions which are only permitted to be disabled
**/
OwnerPermissionsCantBeReverted: AugmentedError<ApiType>;
+ /**
+ * Tried to store more property keys than allowed
+ **/
PropertyLimitReached: AugmentedError<ApiType>;
/**
* Collection is not in mint mode.
@@ -155,6 +169,10 @@
**/
TransferNotAllowed: AugmentedError<ApiType>;
/**
+ * Unable to read array of unbounded keys
+ **/
+ UnableToReadUnboundedKeys: AugmentedError<ApiType>;
+ /**
* Target collection doesn't supports this operation
**/
UnsupportedOperation: 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
@@ -4,7 +4,7 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, u128, u32, u64, u8 } from '@polkadot/types-codec';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, UpDataStructsAccessMode, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, UpDataStructsAccessMode, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/events' {
export interface AugmentedEvents<ApiType extends ApiTypes> {
@@ -90,7 +90,7 @@
**/
CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;
CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;
- CollectionPropertySet: AugmentedEvent<ApiType, [u32, UpDataStructsProperty]>;
+ CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;
/**
* New item was created.
*
@@ -119,9 +119,9 @@
* * amount: Always 1 for NFT
**/
ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
- PropertyPermissionSet: AugmentedEvent<ApiType, [u32, UpDataStructsPropertyKeyPermission]>;
+ PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;
TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
- TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, UpDataStructsProperty]>;
+ TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
/**
* Item was transferred
*
@@ -617,14 +617,6 @@
* * sponsor: New sponsor address.
**/
SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;
- /**
- * Variable on chain schema was set
- *
- * # Arguments
- *
- * * collection_id: Globally unique collection identifier.
- **/
- VariableOnChainSchemaSet: AugmentedEvent<ApiType, [u32]>;
/**
* Generic event
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -5,7 +5,7 @@
import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
declare module '@polkadot/api-base/types/storage' {
@@ -81,7 +81,7 @@
/**
* Large variable-size collection fields are extracted here
**/
- collectionData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: UpDataStructsCollectionField | 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema' | number | Uint8Array) => Observable<Bytes>, [u32, UpDataStructsCollectionField]> & QueryableStorageEntry<ApiType, [u32, UpDataStructsCollectionField]>;
+ collectionData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: UpDataStructsCollectionField | 'ConstOnChainSchema' | 'OffchainSchema' | number | Uint8Array) => Observable<Bytes>, [u32, UpDataStructsCollectionField]> & QueryableStorageEntry<ApiType, [u32, UpDataStructsCollectionField]>;
/**
* Collection properties
**/
@@ -155,6 +155,11 @@
accountCodes: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<Bytes>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
accountStorages: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H256 | string | Uint8Array) => Observable<H256>, [H160, H256]> & QueryableStorageEntry<ApiType, [H160, H256]>;
/**
+ * Written on log, reset after transaction
+ * Should be empty between transactions
+ **/
+ currentLogs: AugmentedQuery<ApiType, () => Observable<Vec<EthereumLog>>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
* Generic query
**/
[key: string]: QueryableStorageEntry<ApiType>;
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -3,7 +3,7 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
-import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
+import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsMetaUpdatePermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
@@ -378,7 +378,7 @@
* - Weight of derivative `call` execution + 10,000.
* # </weight>
**/
- sudo: AugmentedSubmittable<(call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
+ sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
/**
* Authenticates the sudo key and dispatches a function call with `Signed` origin from
* a given account.
@@ -392,7 +392,7 @@
* - Weight of derivative `call` execution + 10,000.
* # </weight>
**/
- sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
+ sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
/**
* Authenticates the sudo key and dispatches a function call with `Root` origin.
* This function does not check the weight of the call, and instead allows the
@@ -405,7 +405,7 @@
* - The weight of this call is defined by the caller.
* # </weight>
**/
- sudoUncheckedWeight: AugmentedSubmittable<(call: Call | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
+ sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
/**
* Generic tx
**/
@@ -679,7 +679,7 @@
*
* Prefer it to deprecated [`created_collection`] method
**/
- createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; variableOnChainSchema?: any; constOnChainSchema?: any; metaUpdatePermission?: any; tokenPropertyPermissions?: any; properties?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;
+ createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; constOnChainSchema?: any; metaUpdatePermission?: any; tokenPropertyPermissions?: any; properties?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;
/**
* This method creates a concrete instance of NFT Collection created with CreateCollection method.
*
@@ -915,21 +915,6 @@
* * schema: String representing the offchain data schema.
**/
setVariableMetaData: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, data: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes]>;
- /**
- * Set variable on-chain data schema.
- *
- * # Permissions
- *
- * * Collection Owner
- * * Collection Admin
- *
- * # Arguments
- *
- * * collection_id.
- *
- * * schema: String representing the variable on-chain data schema.
- **/
- setVariableOnChainSchema: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, schema: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Bytes]>;
/**
* Change ownership of the token.
*
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, 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';
@@ -478,7 +478,6 @@
ForkTreePendingChangeNode: ForkTreePendingChangeNode;
FpRpcTransactionStatus: FpRpcTransactionStatus;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -1184,6 +1183,8 @@
UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
UpDataStructsNestingRule: UpDataStructsNestingRule;
UpDataStructsProperties: UpDataStructsProperties;
+ UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;
+ UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;
UpDataStructsProperty: UpDataStructsProperty;
UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1381,10 +1381,6 @@
collectionId: 'u32',
schema: 'Bytes',
},
- set_variable_on_chain_schema: {
- collectionId: 'u32',
- schema: 'Bytes',
- },
set_collection_limits: {
collectionId: 'u32',
newLimit: 'UpDataStructsCollectionLimits'
@@ -1414,7 +1410,6 @@
schemaVersion: 'Option<UpDataStructsSchemaVersion>',
pendingSponsor: 'Option<AccountId32>',
limits: 'Option<UpDataStructsCollectionLimits>',
- variableOnChainSchema: 'Bytes',
constOnChainSchema: 'Bytes',
metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>',
tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
@@ -1463,14 +1458,10 @@
_enum: {
Disabled: 'Null',
Owner: 'Null',
- OwnerRestricted: 'FrameSupportStorageBoundedBTreeSet'
+ OwnerRestricted: 'BTreeSet<u32>'
}
},
/**
- * Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>
- **/
- FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',
- /**
* Lookup177: up_data_structs::MetaUpdatePermission
**/
UpDataStructsMetaUpdatePermission: {
@@ -1993,8 +1984,7 @@
MintPermissionSet: 'u32',
OffchainSchemaSet: 'u32',
PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',
- SchemaVersionSet: 'u32',
- VariableOnChainSchemaSet: 'u32'
+ SchemaVersionSet: 'u32'
}
},
/**
@@ -2008,11 +1998,11 @@
ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
- CollectionPropertySet: '(u32,UpDataStructsProperty)',
+ CollectionPropertySet: '(u32,Bytes)',
CollectionPropertyDeleted: '(u32,Bytes)',
- TokenPropertySet: '(u32,u32,UpDataStructsProperty)',
+ TokenPropertySet: '(u32,u32,Bytes)',
TokenPropertyDeleted: '(u32,u32,Bytes)',
- PropertyPermissionSet: '(u32,UpDataStructsPropertyKeyPermission)'
+ PropertyPermissionSet: '(u32,Bytes)'
}
},
/**
@@ -2316,18 +2306,26 @@
* Lookup312: up_data_structs::Properties
**/
UpDataStructsProperties: {
- map: 'BTreeMap<Bytes, Bytes>',
+ map: 'UpDataStructsPropertiesMapBoundedVec',
consumedSpace: 'u32',
spaceLimit: 'u32'
},
/**
- * Lookup322: up_data_structs::CollectionField
+ * Lookup313: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ **/
+ UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
+ /**
+ * Lookup318: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ **/
+ UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
+ /**
+ * Lookup324: up_data_structs::CollectionField
**/
UpDataStructsCollectionField: {
- _enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']
+ _enum: ['ConstOnChainSchema', 'OffchainSchema']
},
/**
- * Lookup325: up_data_structs::CollectionStats
+ * Lookup327: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2335,11 +2333,11 @@
alive: 'u32'
},
/**
- * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+ * Lookup328: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
**/
- PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
+ PhantomTypeUpDataStructsTokenData: '[Lookup329;0]',
/**
- * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup329: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
constData: 'Bytes',
@@ -2347,11 +2345,11 @@
owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
},
/**
- * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+ * Lookup332: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
**/
- PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
+ PhantomTypeUpDataStructsRpcCollection: '[Lookup333;0]',
/**
- * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup333: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2365,39 +2363,38 @@
schemaVersion: 'UpDataStructsSchemaVersion',
sponsorship: 'UpDataStructsSponsorshipState',
limits: 'UpDataStructsCollectionLimits',
- variableOnChainSchema: 'Bytes',
constOnChainSchema: 'Bytes',
metaUpdatePermission: 'UpDataStructsMetaUpdatePermission',
tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup333: pallet_common::pallet::Error<T>
+ * Lookup335: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
- _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached']
+ _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'UnableToReadUnboundedKeys', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
},
/**
- * Lookup335: pallet_fungible::pallet::Error<T>
+ * Lookup337: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup336: pallet_refungible::ItemData
+ * Lookup338: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes',
variableData: 'Bytes'
},
/**
- * Lookup340: pallet_refungible::pallet::Error<T>
+ * Lookup342: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup343: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
constData: 'Bytes',
@@ -2405,25 +2402,25 @@
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup342: pallet_nonfungible::pallet::Error<T>
+ * Lookup344: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
},
/**
- * Lookup343: pallet_structure::pallet::Error<T>
+ * Lookup345: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
},
/**
- * Lookup345: pallet_evm::pallet::Error<T>
+ * Lookup348: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup348: fp_rpc::TransactionStatus
+ * Lookup351: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2435,11 +2432,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup351: ethbloom::Bloom
+ * Lookup353: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup353: ethereum::receipt::ReceiptV3
+ * Lookup355: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2449,7 +2446,7 @@
}
},
/**
- * Lookup354: ethereum::receipt::EIP658ReceiptData
+ * Lookup356: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2458,7 +2455,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup357: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2466,7 +2463,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup356: ethereum::header::Header
+ * Lookup358: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2486,41 +2483,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup357: ethereum_types::hash::H64
+ * Lookup359: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup362: pallet_ethereum::pallet::Error<T>
+ * Lookup364: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup365: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup364: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup366: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup368: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup367: pallet_evm_migration::pallet::Error<T>
+ * Lookup369: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup369: sp_runtime::MultiSignature
+ * Lookup371: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2530,39 +2527,39 @@
}
},
/**
- * Lookup370: sp_core::ed25519::Signature
+ * Lookup372: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup372: sp_core::sr25519::Signature
+ * Lookup374: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup373: sp_core::ecdsa::Signature
+ * Lookup375: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup378: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup379: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup382: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup383: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup384: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup383: opal_runtime::Runtime
+ * Lookup385: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
export interface InterfaceTypes {
@@ -47,7 +47,6 @@
EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
FpRpcTransactionStatus: FpRpcTransactionStatus;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -164,6 +163,8 @@
UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
UpDataStructsNestingRule: UpDataStructsNestingRule;
UpDataStructsProperties: UpDataStructsProperties;
+ UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;
+ UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;
UpDataStructsProperty: UpDataStructsProperty;
UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';910 /** @name PolkadotPrimitivesV2PersistedValidationData (2) */11 export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;16 }1718 /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {20 readonly isPresent: boolean;21 readonly type: 'Present';22 }2324 /** @name SpTrieStorageProof (10) */25 export interface SpTrieStorageProof extends Struct {26 readonly trieNodes: BTreeSet<Bytes>;27 }2829 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */30 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {31 readonly dmqMqcHead: H256;32 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;33 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;34 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;35 }3637 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */38 export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {39 readonly maxCapacity: u32;40 readonly maxTotalSize: u32;41 readonly maxMessageSize: u32;42 readonly msgCount: u32;43 readonly totalSize: u32;44 readonly mqcHead: Option<H256>;45 }4647 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */48 export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {49 readonly maxCodeSize: u32;50 readonly maxHeadDataSize: u32;51 readonly maxUpwardQueueCount: u32;52 readonly maxUpwardQueueSize: u32;53 readonly maxUpwardMessageSize: u32;54 readonly maxUpwardMessageNumPerCandidate: u32;55 readonly hrmpMaxMessageNumPerCandidate: u32;56 readonly validationUpgradeCooldown: u32;57 readonly validationUpgradeDelay: u32;58 }5960 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (26) */61 export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {62 readonly recipient: u32;63 readonly data: Bytes;64 }6566 /** @name CumulusPalletParachainSystemCall (28) */67 export interface CumulusPalletParachainSystemCall extends Enum {68 readonly isSetValidationData: boolean;69 readonly asSetValidationData: {70 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;71 } & Struct;72 readonly isSudoSendUpwardMessage: boolean;73 readonly asSudoSendUpwardMessage: {74 readonly message: Bytes;75 } & Struct;76 readonly isAuthorizeUpgrade: boolean;77 readonly asAuthorizeUpgrade: {78 readonly codeHash: H256;79 } & Struct;80 readonly isEnactAuthorizedUpgrade: boolean;81 readonly asEnactAuthorizedUpgrade: {82 readonly code: Bytes;83 } & Struct;84 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';85 }8687 /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */88 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {89 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;90 readonly relayChainState: SpTrieStorageProof;91 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;92 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;93 }9495 /** @name PolkadotCorePrimitivesInboundDownwardMessage (31) */96 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {97 readonly sentAt: u32;98 readonly msg: Bytes;99 }100101 /** @name PolkadotCorePrimitivesInboundHrmpMessage (34) */102 export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {103 readonly sentAt: u32;104 readonly data: Bytes;105 }106107 /** @name CumulusPalletParachainSystemEvent (37) */108 export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: u32;112 readonly isValidationFunctionDiscarded: boolean;113 readonly isUpgradeAuthorized: boolean;114 readonly asUpgradeAuthorized: H256;115 readonly isDownwardMessagesReceived: boolean;116 readonly asDownwardMessagesReceived: u32;117 readonly isDownwardMessagesProcessed: boolean;118 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;119 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';120 }121122 /** @name CumulusPalletParachainSystemError (38) */123 export interface CumulusPalletParachainSystemError extends Enum {124 readonly isOverlappingUpgrades: boolean;125 readonly isProhibitedByPolkadot: boolean;126 readonly isTooBig: boolean;127 readonly isValidationDataNotAvailable: boolean;128 readonly isHostConfigurationNotAvailable: boolean;129 readonly isNotScheduled: boolean;130 readonly isNothingAuthorized: boolean;131 readonly isUnauthorized: boolean;132 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';133 }134135 /** @name PalletBalancesAccountData (41) */136 export interface PalletBalancesAccountData extends Struct {137 readonly free: u128;138 readonly reserved: u128;139 readonly miscFrozen: u128;140 readonly feeFrozen: u128;141 }142143 /** @name PalletBalancesBalanceLock (43) */144 export interface PalletBalancesBalanceLock extends Struct {145 readonly id: U8aFixed;146 readonly amount: u128;147 readonly reasons: PalletBalancesReasons;148 }149150 /** @name PalletBalancesReasons (45) */151 export interface PalletBalancesReasons extends Enum {152 readonly isFee: boolean;153 readonly isMisc: boolean;154 readonly isAll: boolean;155 readonly type: 'Fee' | 'Misc' | 'All';156 }157158 /** @name PalletBalancesReserveData (48) */159 export interface PalletBalancesReserveData extends Struct {160 readonly id: U8aFixed;161 readonly amount: u128;162 }163164 /** @name PalletBalancesReleases (50) */165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';169 }170171 /** @name PalletBalancesCall (51) */172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;174 readonly asTransfer: {175 readonly dest: MultiAddress;176 readonly value: Compact<u128>;177 } & Struct;178 readonly isSetBalance: boolean;179 readonly asSetBalance: {180 readonly who: MultiAddress;181 readonly newFree: Compact<u128>;182 readonly newReserved: Compact<u128>;183 } & Struct;184 readonly isForceTransfer: boolean;185 readonly asForceTransfer: {186 readonly source: MultiAddress;187 readonly dest: MultiAddress;188 readonly value: Compact<u128>;189 } & Struct;190 readonly isTransferKeepAlive: boolean;191 readonly asTransferKeepAlive: {192 readonly dest: MultiAddress;193 readonly value: Compact<u128>;194 } & Struct;195 readonly isTransferAll: boolean;196 readonly asTransferAll: {197 readonly dest: MultiAddress;198 readonly keepAlive: bool;199 } & Struct;200 readonly isForceUnreserve: boolean;201 readonly asForceUnreserve: {202 readonly who: MultiAddress;203 readonly amount: u128;204 } & Struct;205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }207208 /** @name PalletBalancesEvent (57) */209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;211 readonly asEndowed: {212 readonly account: AccountId32;213 readonly freeBalance: u128;214 } & Struct;215 readonly isDustLost: boolean;216 readonly asDustLost: {217 readonly account: AccountId32;218 readonly amount: u128;219 } & Struct;220 readonly isTransfer: boolean;221 readonly asTransfer: {222 readonly from: AccountId32;223 readonly to: AccountId32;224 readonly amount: u128;225 } & Struct;226 readonly isBalanceSet: boolean;227 readonly asBalanceSet: {228 readonly who: AccountId32;229 readonly free: u128;230 readonly reserved: u128;231 } & Struct;232 readonly isReserved: boolean;233 readonly asReserved: {234 readonly who: AccountId32;235 readonly amount: u128;236 } & Struct;237 readonly isUnreserved: boolean;238 readonly asUnreserved: {239 readonly who: AccountId32;240 readonly amount: u128;241 } & Struct;242 readonly isReserveRepatriated: boolean;243 readonly asReserveRepatriated: {244 readonly from: AccountId32;245 readonly to: AccountId32;246 readonly amount: u128;247 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;248 } & Struct;249 readonly isDeposit: boolean;250 readonly asDeposit: {251 readonly who: AccountId32;252 readonly amount: u128;253 } & Struct;254 readonly isWithdraw: boolean;255 readonly asWithdraw: {256 readonly who: AccountId32;257 readonly amount: u128;258 } & Struct;259 readonly isSlashed: boolean;260 readonly asSlashed: {261 readonly who: AccountId32;262 readonly amount: u128;263 } & Struct;264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }266267 /** @name FrameSupportTokensMiscBalanceStatus (58) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';272 }273274 /** @name PalletBalancesError (59) */275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;278 readonly isInsufficientBalance: boolean;279 readonly isExistentialDeposit: boolean;280 readonly isKeepAlive: boolean;281 readonly isExistingVestingSchedule: boolean;282 readonly isDeadAccount: boolean;283 readonly isTooManyReserves: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }286287 /** @name PalletTimestampCall (62) */288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;290 readonly asSet: {291 readonly now: Compact<u64>;292 } & Struct;293 readonly type: 'Set';294 }295296 /** @name PalletTransactionPaymentReleases (65) */297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';301 }302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;307 readonly negative: bool;308 readonly degree: u8;309 }310311 /** @name PalletTreasuryProposal (69) */312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;314 readonly value: u128;315 readonly beneficiary: AccountId32;316 readonly bond: u128;317 }318319 /** @name PalletTreasuryCall (72) */320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {323 readonly value: Compact<u128>;324 readonly beneficiary: MultiAddress;325 } & Struct;326 readonly isRejectProposal: boolean;327 readonly asRejectProposal: {328 readonly proposalId: Compact<u32>;329 } & Struct;330 readonly isApproveProposal: boolean;331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;333 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }336337 /** @name PalletTreasuryEvent (74) */338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;340 readonly asProposed: {341 readonly proposalIndex: u32;342 } & Struct;343 readonly isSpending: boolean;344 readonly asSpending: {345 readonly budgetRemaining: u128;346 } & Struct;347 readonly isAwarded: boolean;348 readonly asAwarded: {349 readonly proposalIndex: u32;350 readonly award: u128;351 readonly account: AccountId32;352 } & Struct;353 readonly isRejected: boolean;354 readonly asRejected: {355 readonly proposalIndex: u32;356 readonly slashed: u128;357 } & Struct;358 readonly isBurnt: boolean;359 readonly asBurnt: {360 readonly burntFunds: u128;361 } & Struct;362 readonly isRollover: boolean;363 readonly asRollover: {364 readonly rolloverBalance: u128;365 } & Struct;366 readonly isDeposit: boolean;367 readonly asDeposit: {368 readonly value: u128;369 } & Struct;370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }372373 /** @name FrameSupportPalletId (77) */374 export interface FrameSupportPalletId extends U8aFixed {}375376 /** @name PalletTreasuryError (78) */377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }383384 /** @name PalletSudoCall (79) */385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;387 readonly asSudo: {388 readonly call: Call;389 } & Struct;390 readonly isSudoUncheckedWeight: boolean;391 readonly asSudoUncheckedWeight: {392 readonly call: Call;393 readonly weight: u64;394 } & Struct;395 readonly isSetKey: boolean;396 readonly asSetKey: {397 readonly new_: MultiAddress;398 } & Struct;399 readonly isSudoAs: boolean;400 readonly asSudoAs: {401 readonly who: MultiAddress;402 readonly call: Call;403 } & Struct;404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }406407 /** @name FrameSystemCall (81) */408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;410 readonly asFillBlock: {411 readonly ratio: Perbill;412 } & Struct;413 readonly isRemark: boolean;414 readonly asRemark: {415 readonly remark: Bytes;416 } & Struct;417 readonly isSetHeapPages: boolean;418 readonly asSetHeapPages: {419 readonly pages: u64;420 } & Struct;421 readonly isSetCode: boolean;422 readonly asSetCode: {423 readonly code: Bytes;424 } & Struct;425 readonly isSetCodeWithoutChecks: boolean;426 readonly asSetCodeWithoutChecks: {427 readonly code: Bytes;428 } & Struct;429 readonly isSetStorage: boolean;430 readonly asSetStorage: {431 readonly items: Vec<ITuple<[Bytes, Bytes]>>;432 } & Struct;433 readonly isKillStorage: boolean;434 readonly asKillStorage: {435 readonly keys_: Vec<Bytes>;436 } & Struct;437 readonly isKillPrefix: boolean;438 readonly asKillPrefix: {439 readonly prefix: Bytes;440 readonly subkeys: u32;441 } & Struct;442 readonly isRemarkWithEvent: boolean;443 readonly asRemarkWithEvent: {444 readonly remark: Bytes;445 } & Struct;446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }448449 /** @name OrmlVestingModuleCall (84) */450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;453 readonly asVestedTransfer: {454 readonly dest: MultiAddress;455 readonly schedule: OrmlVestingVestingSchedule;456 } & Struct;457 readonly isUpdateVestingSchedules: boolean;458 readonly asUpdateVestingSchedules: {459 readonly who: MultiAddress;460 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;461 } & Struct;462 readonly isClaimFor: boolean;463 readonly asClaimFor: {464 readonly dest: MultiAddress;465 } & Struct;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }468469 /** @name OrmlVestingVestingSchedule (85) */470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;472 readonly period: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;475 }476477 /** @name CumulusPalletXcmpQueueCall (87) */478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {481 readonly index: u64;482 readonly weightLimit: u64;483 } & Struct;484 readonly isSuspendXcmExecution: boolean;485 readonly isResumeXcmExecution: boolean;486 readonly isUpdateSuspendThreshold: boolean;487 readonly asUpdateSuspendThreshold: {488 readonly new_: u32;489 } & Struct;490 readonly isUpdateDropThreshold: boolean;491 readonly asUpdateDropThreshold: {492 readonly new_: u32;493 } & Struct;494 readonly isUpdateResumeThreshold: boolean;495 readonly asUpdateResumeThreshold: {496 readonly new_: u32;497 } & Struct;498 readonly isUpdateThresholdWeight: boolean;499 readonly asUpdateThresholdWeight: {500 readonly new_: u64;501 } & Struct;502 readonly isUpdateWeightRestrictDecay: boolean;503 readonly asUpdateWeightRestrictDecay: {504 readonly new_: u64;505 } & Struct;506 readonly isUpdateXcmpMaxIndividualWeight: boolean;507 readonly asUpdateXcmpMaxIndividualWeight: {508 readonly new_: u64;509 } & Struct;510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';511 }512513 /** @name PalletXcmCall (88) */514 export interface PalletXcmCall extends Enum {515 readonly isSend: boolean;516 readonly asSend: {517 readonly dest: XcmVersionedMultiLocation;518 readonly message: XcmVersionedXcm;519 } & Struct;520 readonly isTeleportAssets: boolean;521 readonly asTeleportAssets: {522 readonly dest: XcmVersionedMultiLocation;523 readonly beneficiary: XcmVersionedMultiLocation;524 readonly assets: XcmVersionedMultiAssets;525 readonly feeAssetItem: u32;526 } & Struct;527 readonly isReserveTransferAssets: boolean;528 readonly asReserveTransferAssets: {529 readonly dest: XcmVersionedMultiLocation;530 readonly beneficiary: XcmVersionedMultiLocation;531 readonly assets: XcmVersionedMultiAssets;532 readonly feeAssetItem: u32;533 } & Struct;534 readonly isExecute: boolean;535 readonly asExecute: {536 readonly message: XcmVersionedXcm;537 readonly maxWeight: u64;538 } & Struct;539 readonly isForceXcmVersion: boolean;540 readonly asForceXcmVersion: {541 readonly location: XcmV1MultiLocation;542 readonly xcmVersion: u32;543 } & Struct;544 readonly isForceDefaultXcmVersion: boolean;545 readonly asForceDefaultXcmVersion: {546 readonly maybeXcmVersion: Option<u32>;547 } & Struct;548 readonly isForceSubscribeVersionNotify: boolean;549 readonly asForceSubscribeVersionNotify: {550 readonly location: XcmVersionedMultiLocation;551 } & Struct;552 readonly isForceUnsubscribeVersionNotify: boolean;553 readonly asForceUnsubscribeVersionNotify: {554 readonly location: XcmVersionedMultiLocation;555 } & Struct;556 readonly isLimitedReserveTransferAssets: boolean;557 readonly asLimitedReserveTransferAssets: {558 readonly dest: XcmVersionedMultiLocation;559 readonly beneficiary: XcmVersionedMultiLocation;560 readonly assets: XcmVersionedMultiAssets;561 readonly feeAssetItem: u32;562 readonly weightLimit: XcmV2WeightLimit;563 } & Struct;564 readonly isLimitedTeleportAssets: boolean;565 readonly asLimitedTeleportAssets: {566 readonly dest: XcmVersionedMultiLocation;567 readonly beneficiary: XcmVersionedMultiLocation;568 readonly assets: XcmVersionedMultiAssets;569 readonly feeAssetItem: u32;570 readonly weightLimit: XcmV2WeightLimit;571 } & Struct;572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';573 }574575 /** @name XcmVersionedMultiLocation (89) */576 export interface XcmVersionedMultiLocation extends Enum {577 readonly isV0: boolean;578 readonly asV0: XcmV0MultiLocation;579 readonly isV1: boolean;580 readonly asV1: XcmV1MultiLocation;581 readonly type: 'V0' | 'V1';582 }583584 /** @name XcmV0MultiLocation (90) */585 export interface XcmV0MultiLocation extends Enum {586 readonly isNull: boolean;587 readonly isX1: boolean;588 readonly asX1: XcmV0Junction;589 readonly isX2: boolean;590 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;591 readonly isX3: boolean;592 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;593 readonly isX4: boolean;594 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;595 readonly isX5: boolean;596 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;597 readonly isX6: boolean;598 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;599 readonly isX7: boolean;600 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;601 readonly isX8: boolean;602 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';604 }605606 /** @name XcmV0Junction (91) */607 export interface XcmV0Junction extends Enum {608 readonly isParent: boolean;609 readonly isParachain: boolean;610 readonly asParachain: Compact<u32>;611 readonly isAccountId32: boolean;612 readonly asAccountId32: {613 readonly network: XcmV0JunctionNetworkId;614 readonly id: U8aFixed;615 } & Struct;616 readonly isAccountIndex64: boolean;617 readonly asAccountIndex64: {618 readonly network: XcmV0JunctionNetworkId;619 readonly index: Compact<u64>;620 } & Struct;621 readonly isAccountKey20: boolean;622 readonly asAccountKey20: {623 readonly network: XcmV0JunctionNetworkId;624 readonly key: U8aFixed;625 } & Struct;626 readonly isPalletInstance: boolean;627 readonly asPalletInstance: u8;628 readonly isGeneralIndex: boolean;629 readonly asGeneralIndex: Compact<u128>;630 readonly isGeneralKey: boolean;631 readonly asGeneralKey: Bytes;632 readonly isOnlyChild: boolean;633 readonly isPlurality: boolean;634 readonly asPlurality: {635 readonly id: XcmV0JunctionBodyId;636 readonly part: XcmV0JunctionBodyPart;637 } & Struct;638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';639 }640641 /** @name XcmV0JunctionNetworkId (92) */642 export interface XcmV0JunctionNetworkId extends Enum {643 readonly isAny: boolean;644 readonly isNamed: boolean;645 readonly asNamed: Bytes;646 readonly isPolkadot: boolean;647 readonly isKusama: boolean;648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';649 }650651 /** @name XcmV0JunctionBodyId (93) */652 export interface XcmV0JunctionBodyId extends Enum {653 readonly isUnit: boolean;654 readonly isNamed: boolean;655 readonly asNamed: Bytes;656 readonly isIndex: boolean;657 readonly asIndex: Compact<u32>;658 readonly isExecutive: boolean;659 readonly isTechnical: boolean;660 readonly isLegislative: boolean;661 readonly isJudicial: boolean;662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';663 }664665 /** @name XcmV0JunctionBodyPart (94) */666 export interface XcmV0JunctionBodyPart extends Enum {667 readonly isVoice: boolean;668 readonly isMembers: boolean;669 readonly asMembers: {670 readonly count: Compact<u32>;671 } & Struct;672 readonly isFraction: boolean;673 readonly asFraction: {674 readonly nom: Compact<u32>;675 readonly denom: Compact<u32>;676 } & Struct;677 readonly isAtLeastProportion: boolean;678 readonly asAtLeastProportion: {679 readonly nom: Compact<u32>;680 readonly denom: Compact<u32>;681 } & Struct;682 readonly isMoreThanProportion: boolean;683 readonly asMoreThanProportion: {684 readonly nom: Compact<u32>;685 readonly denom: Compact<u32>;686 } & Struct;687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';688 }689690 /** @name XcmV1MultiLocation (95) */691 export interface XcmV1MultiLocation extends Struct {692 readonly parents: u8;693 readonly interior: XcmV1MultilocationJunctions;694 }695696 /** @name XcmV1MultilocationJunctions (96) */697 export interface XcmV1MultilocationJunctions extends Enum {698 readonly isHere: boolean;699 readonly isX1: boolean;700 readonly asX1: XcmV1Junction;701 readonly isX2: boolean;702 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;703 readonly isX3: boolean;704 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;705 readonly isX4: boolean;706 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;707 readonly isX5: boolean;708 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;709 readonly isX6: boolean;710 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;711 readonly isX7: boolean;712 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;713 readonly isX8: boolean;714 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';716 }717718 /** @name XcmV1Junction (97) */719 export interface XcmV1Junction extends Enum {720 readonly isParachain: boolean;721 readonly asParachain: Compact<u32>;722 readonly isAccountId32: boolean;723 readonly asAccountId32: {724 readonly network: XcmV0JunctionNetworkId;725 readonly id: U8aFixed;726 } & Struct;727 readonly isAccountIndex64: boolean;728 readonly asAccountIndex64: {729 readonly network: XcmV0JunctionNetworkId;730 readonly index: Compact<u64>;731 } & Struct;732 readonly isAccountKey20: boolean;733 readonly asAccountKey20: {734 readonly network: XcmV0JunctionNetworkId;735 readonly key: U8aFixed;736 } & Struct;737 readonly isPalletInstance: boolean;738 readonly asPalletInstance: u8;739 readonly isGeneralIndex: boolean;740 readonly asGeneralIndex: Compact<u128>;741 readonly isGeneralKey: boolean;742 readonly asGeneralKey: Bytes;743 readonly isOnlyChild: boolean;744 readonly isPlurality: boolean;745 readonly asPlurality: {746 readonly id: XcmV0JunctionBodyId;747 readonly part: XcmV0JunctionBodyPart;748 } & Struct;749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';750 }751752 /** @name XcmVersionedXcm (98) */753 export interface XcmVersionedXcm extends Enum {754 readonly isV0: boolean;755 readonly asV0: XcmV0Xcm;756 readonly isV1: boolean;757 readonly asV1: XcmV1Xcm;758 readonly isV2: boolean;759 readonly asV2: XcmV2Xcm;760 readonly type: 'V0' | 'V1' | 'V2';761 }762763 /** @name XcmV0Xcm (99) */764 export interface XcmV0Xcm extends Enum {765 readonly isWithdrawAsset: boolean;766 readonly asWithdrawAsset: {767 readonly assets: Vec<XcmV0MultiAsset>;768 readonly effects: Vec<XcmV0Order>;769 } & Struct;770 readonly isReserveAssetDeposit: boolean;771 readonly asReserveAssetDeposit: {772 readonly assets: Vec<XcmV0MultiAsset>;773 readonly effects: Vec<XcmV0Order>;774 } & Struct;775 readonly isTeleportAsset: boolean;776 readonly asTeleportAsset: {777 readonly assets: Vec<XcmV0MultiAsset>;778 readonly effects: Vec<XcmV0Order>;779 } & Struct;780 readonly isQueryResponse: boolean;781 readonly asQueryResponse: {782 readonly queryId: Compact<u64>;783 readonly response: XcmV0Response;784 } & Struct;785 readonly isTransferAsset: boolean;786 readonly asTransferAsset: {787 readonly assets: Vec<XcmV0MultiAsset>;788 readonly dest: XcmV0MultiLocation;789 } & Struct;790 readonly isTransferReserveAsset: boolean;791 readonly asTransferReserveAsset: {792 readonly assets: Vec<XcmV0MultiAsset>;793 readonly dest: XcmV0MultiLocation;794 readonly effects: Vec<XcmV0Order>;795 } & Struct;796 readonly isTransact: boolean;797 readonly asTransact: {798 readonly originType: XcmV0OriginKind;799 readonly requireWeightAtMost: u64;800 readonly call: XcmDoubleEncoded;801 } & Struct;802 readonly isHrmpNewChannelOpenRequest: boolean;803 readonly asHrmpNewChannelOpenRequest: {804 readonly sender: Compact<u32>;805 readonly maxMessageSize: Compact<u32>;806 readonly maxCapacity: Compact<u32>;807 } & Struct;808 readonly isHrmpChannelAccepted: boolean;809 readonly asHrmpChannelAccepted: {810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isHrmpChannelClosing: boolean;813 readonly asHrmpChannelClosing: {814 readonly initiator: Compact<u32>;815 readonly sender: Compact<u32>;816 readonly recipient: Compact<u32>;817 } & Struct;818 readonly isRelayedFrom: boolean;819 readonly asRelayedFrom: {820 readonly who: XcmV0MultiLocation;821 readonly message: XcmV0Xcm;822 } & Struct;823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';824 }825826 /** @name XcmV0MultiAsset (101) */827 export interface XcmV0MultiAsset extends Enum {828 readonly isNone: boolean;829 readonly isAll: boolean;830 readonly isAllFungible: boolean;831 readonly isAllNonFungible: boolean;832 readonly isAllAbstractFungible: boolean;833 readonly asAllAbstractFungible: {834 readonly id: Bytes;835 } & Struct;836 readonly isAllAbstractNonFungible: boolean;837 readonly asAllAbstractNonFungible: {838 readonly class: Bytes;839 } & Struct;840 readonly isAllConcreteFungible: boolean;841 readonly asAllConcreteFungible: {842 readonly id: XcmV0MultiLocation;843 } & Struct;844 readonly isAllConcreteNonFungible: boolean;845 readonly asAllConcreteNonFungible: {846 readonly class: XcmV0MultiLocation;847 } & Struct;848 readonly isAbstractFungible: boolean;849 readonly asAbstractFungible: {850 readonly id: Bytes;851 readonly amount: Compact<u128>;852 } & Struct;853 readonly isAbstractNonFungible: boolean;854 readonly asAbstractNonFungible: {855 readonly class: Bytes;856 readonly instance: XcmV1MultiassetAssetInstance;857 } & Struct;858 readonly isConcreteFungible: boolean;859 readonly asConcreteFungible: {860 readonly id: XcmV0MultiLocation;861 readonly amount: Compact<u128>;862 } & Struct;863 readonly isConcreteNonFungible: boolean;864 readonly asConcreteNonFungible: {865 readonly class: XcmV0MultiLocation;866 readonly instance: XcmV1MultiassetAssetInstance;867 } & Struct;868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';869 }870871 /** @name XcmV1MultiassetAssetInstance (102) */872 export interface XcmV1MultiassetAssetInstance extends Enum {873 readonly isUndefined: boolean;874 readonly isIndex: boolean;875 readonly asIndex: Compact<u128>;876 readonly isArray4: boolean;877 readonly asArray4: U8aFixed;878 readonly isArray8: boolean;879 readonly asArray8: U8aFixed;880 readonly isArray16: boolean;881 readonly asArray16: U8aFixed;882 readonly isArray32: boolean;883 readonly asArray32: U8aFixed;884 readonly isBlob: boolean;885 readonly asBlob: Bytes;886 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';887 }888889 /** @name XcmV0Order (106) */890 export interface XcmV0Order extends Enum {891 readonly isNull: boolean;892 readonly isDepositAsset: boolean;893 readonly asDepositAsset: {894 readonly assets: Vec<XcmV0MultiAsset>;895 readonly dest: XcmV0MultiLocation;896 } & Struct;897 readonly isDepositReserveAsset: boolean;898 readonly asDepositReserveAsset: {899 readonly assets: Vec<XcmV0MultiAsset>;900 readonly dest: XcmV0MultiLocation;901 readonly effects: Vec<XcmV0Order>;902 } & Struct;903 readonly isExchangeAsset: boolean;904 readonly asExchangeAsset: {905 readonly give: Vec<XcmV0MultiAsset>;906 readonly receive: Vec<XcmV0MultiAsset>;907 } & Struct;908 readonly isInitiateReserveWithdraw: boolean;909 readonly asInitiateReserveWithdraw: {910 readonly assets: Vec<XcmV0MultiAsset>;911 readonly reserve: XcmV0MultiLocation;912 readonly effects: Vec<XcmV0Order>;913 } & Struct;914 readonly isInitiateTeleport: boolean;915 readonly asInitiateTeleport: {916 readonly assets: Vec<XcmV0MultiAsset>;917 readonly dest: XcmV0MultiLocation;918 readonly effects: Vec<XcmV0Order>;919 } & Struct;920 readonly isQueryHolding: boolean;921 readonly asQueryHolding: {922 readonly queryId: Compact<u64>;923 readonly dest: XcmV0MultiLocation;924 readonly assets: Vec<XcmV0MultiAsset>;925 } & Struct;926 readonly isBuyExecution: boolean;927 readonly asBuyExecution: {928 readonly fees: XcmV0MultiAsset;929 readonly weight: u64;930 readonly debt: u64;931 readonly haltOnError: bool;932 readonly xcm: Vec<XcmV0Xcm>;933 } & Struct;934 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';935 }936937 /** @name XcmV0Response (108) */938 export interface XcmV0Response extends Enum {939 readonly isAssets: boolean;940 readonly asAssets: Vec<XcmV0MultiAsset>;941 readonly type: 'Assets';942 }943944 /** @name XcmV0OriginKind (109) */945 export interface XcmV0OriginKind extends Enum {946 readonly isNative: boolean;947 readonly isSovereignAccount: boolean;948 readonly isSuperuser: boolean;949 readonly isXcm: boolean;950 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';951 }952953 /** @name XcmDoubleEncoded (110) */954 export interface XcmDoubleEncoded extends Struct {955 readonly encoded: Bytes;956 }957958 /** @name XcmV1Xcm (111) */959 export interface XcmV1Xcm extends Enum {960 readonly isWithdrawAsset: boolean;961 readonly asWithdrawAsset: {962 readonly assets: XcmV1MultiassetMultiAssets;963 readonly effects: Vec<XcmV1Order>;964 } & Struct;965 readonly isReserveAssetDeposited: boolean;966 readonly asReserveAssetDeposited: {967 readonly assets: XcmV1MultiassetMultiAssets;968 readonly effects: Vec<XcmV1Order>;969 } & Struct;970 readonly isReceiveTeleportedAsset: boolean;971 readonly asReceiveTeleportedAsset: {972 readonly assets: XcmV1MultiassetMultiAssets;973 readonly effects: Vec<XcmV1Order>;974 } & Struct;975 readonly isQueryResponse: boolean;976 readonly asQueryResponse: {977 readonly queryId: Compact<u64>;978 readonly response: XcmV1Response;979 } & Struct;980 readonly isTransferAsset: boolean;981 readonly asTransferAsset: {982 readonly assets: XcmV1MultiassetMultiAssets;983 readonly beneficiary: XcmV1MultiLocation;984 } & Struct;985 readonly isTransferReserveAsset: boolean;986 readonly asTransferReserveAsset: {987 readonly assets: XcmV1MultiassetMultiAssets;988 readonly dest: XcmV1MultiLocation;989 readonly effects: Vec<XcmV1Order>;990 } & Struct;991 readonly isTransact: boolean;992 readonly asTransact: {993 readonly originType: XcmV0OriginKind;994 readonly requireWeightAtMost: u64;995 readonly call: XcmDoubleEncoded;996 } & Struct;997 readonly isHrmpNewChannelOpenRequest: boolean;998 readonly asHrmpNewChannelOpenRequest: {999 readonly sender: Compact<u32>;1000 readonly maxMessageSize: Compact<u32>;1001 readonly maxCapacity: Compact<u32>;1002 } & Struct;1003 readonly isHrmpChannelAccepted: boolean;1004 readonly asHrmpChannelAccepted: {1005 readonly recipient: Compact<u32>;1006 } & Struct;1007 readonly isHrmpChannelClosing: boolean;1008 readonly asHrmpChannelClosing: {1009 readonly initiator: Compact<u32>;1010 readonly sender: Compact<u32>;1011 readonly recipient: Compact<u32>;1012 } & Struct;1013 readonly isRelayedFrom: boolean;1014 readonly asRelayedFrom: {1015 readonly who: XcmV1MultilocationJunctions;1016 readonly message: XcmV1Xcm;1017 } & Struct;1018 readonly isSubscribeVersion: boolean;1019 readonly asSubscribeVersion: {1020 readonly queryId: Compact<u64>;1021 readonly maxResponseWeight: Compact<u64>;1022 } & Struct;1023 readonly isUnsubscribeVersion: boolean;1024 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1025 }10261027 /** @name XcmV1MultiassetMultiAssets (112) */1028 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10291030 /** @name XcmV1MultiAsset (114) */1031 export interface XcmV1MultiAsset extends Struct {1032 readonly id: XcmV1MultiassetAssetId;1033 readonly fun: XcmV1MultiassetFungibility;1034 }10351036 /** @name XcmV1MultiassetAssetId (115) */1037 export interface XcmV1MultiassetAssetId extends Enum {1038 readonly isConcrete: boolean;1039 readonly asConcrete: XcmV1MultiLocation;1040 readonly isAbstract: boolean;1041 readonly asAbstract: Bytes;1042 readonly type: 'Concrete' | 'Abstract';1043 }10441045 /** @name XcmV1MultiassetFungibility (116) */1046 export interface XcmV1MultiassetFungibility extends Enum {1047 readonly isFungible: boolean;1048 readonly asFungible: Compact<u128>;1049 readonly isNonFungible: boolean;1050 readonly asNonFungible: XcmV1MultiassetAssetInstance;1051 readonly type: 'Fungible' | 'NonFungible';1052 }10531054 /** @name XcmV1Order (118) */1055 export interface XcmV1Order extends Enum {1056 readonly isNoop: boolean;1057 readonly isDepositAsset: boolean;1058 readonly asDepositAsset: {1059 readonly assets: XcmV1MultiassetMultiAssetFilter;1060 readonly maxAssets: u32;1061 readonly beneficiary: XcmV1MultiLocation;1062 } & Struct;1063 readonly isDepositReserveAsset: boolean;1064 readonly asDepositReserveAsset: {1065 readonly assets: XcmV1MultiassetMultiAssetFilter;1066 readonly maxAssets: u32;1067 readonly dest: XcmV1MultiLocation;1068 readonly effects: Vec<XcmV1Order>;1069 } & Struct;1070 readonly isExchangeAsset: boolean;1071 readonly asExchangeAsset: {1072 readonly give: XcmV1MultiassetMultiAssetFilter;1073 readonly receive: XcmV1MultiassetMultiAssets;1074 } & Struct;1075 readonly isInitiateReserveWithdraw: boolean;1076 readonly asInitiateReserveWithdraw: {1077 readonly assets: XcmV1MultiassetMultiAssetFilter;1078 readonly reserve: XcmV1MultiLocation;1079 readonly effects: Vec<XcmV1Order>;1080 } & Struct;1081 readonly isInitiateTeleport: boolean;1082 readonly asInitiateTeleport: {1083 readonly assets: XcmV1MultiassetMultiAssetFilter;1084 readonly dest: XcmV1MultiLocation;1085 readonly effects: Vec<XcmV1Order>;1086 } & Struct;1087 readonly isQueryHolding: boolean;1088 readonly asQueryHolding: {1089 readonly queryId: Compact<u64>;1090 readonly dest: XcmV1MultiLocation;1091 readonly assets: XcmV1MultiassetMultiAssetFilter;1092 } & Struct;1093 readonly isBuyExecution: boolean;1094 readonly asBuyExecution: {1095 readonly fees: XcmV1MultiAsset;1096 readonly weight: u64;1097 readonly debt: u64;1098 readonly haltOnError: bool;1099 readonly instructions: Vec<XcmV1Xcm>;1100 } & Struct;1101 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1102 }11031104 /** @name XcmV1MultiassetMultiAssetFilter (119) */1105 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1106 readonly isDefinite: boolean;1107 readonly asDefinite: XcmV1MultiassetMultiAssets;1108 readonly isWild: boolean;1109 readonly asWild: XcmV1MultiassetWildMultiAsset;1110 readonly type: 'Definite' | 'Wild';1111 }11121113 /** @name XcmV1MultiassetWildMultiAsset (120) */1114 export interface XcmV1MultiassetWildMultiAsset extends Enum {1115 readonly isAll: boolean;1116 readonly isAllOf: boolean;1117 readonly asAllOf: {1118 readonly id: XcmV1MultiassetAssetId;1119 readonly fun: XcmV1MultiassetWildFungibility;1120 } & Struct;1121 readonly type: 'All' | 'AllOf';1122 }11231124 /** @name XcmV1MultiassetWildFungibility (121) */1125 export interface XcmV1MultiassetWildFungibility extends Enum {1126 readonly isFungible: boolean;1127 readonly isNonFungible: boolean;1128 readonly type: 'Fungible' | 'NonFungible';1129 }11301131 /** @name XcmV1Response (123) */1132 export interface XcmV1Response extends Enum {1133 readonly isAssets: boolean;1134 readonly asAssets: XcmV1MultiassetMultiAssets;1135 readonly isVersion: boolean;1136 readonly asVersion: u32;1137 readonly type: 'Assets' | 'Version';1138 }11391140 /** @name XcmV2Xcm (124) */1141 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11421143 /** @name XcmV2Instruction (126) */1144 export interface XcmV2Instruction extends Enum {1145 readonly isWithdrawAsset: boolean;1146 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1147 readonly isReserveAssetDeposited: boolean;1148 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1149 readonly isReceiveTeleportedAsset: boolean;1150 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1151 readonly isQueryResponse: boolean;1152 readonly asQueryResponse: {1153 readonly queryId: Compact<u64>;1154 readonly response: XcmV2Response;1155 readonly maxWeight: Compact<u64>;1156 } & Struct;1157 readonly isTransferAsset: boolean;1158 readonly asTransferAsset: {1159 readonly assets: XcmV1MultiassetMultiAssets;1160 readonly beneficiary: XcmV1MultiLocation;1161 } & Struct;1162 readonly isTransferReserveAsset: boolean;1163 readonly asTransferReserveAsset: {1164 readonly assets: XcmV1MultiassetMultiAssets;1165 readonly dest: XcmV1MultiLocation;1166 readonly xcm: XcmV2Xcm;1167 } & Struct;1168 readonly isTransact: boolean;1169 readonly asTransact: {1170 readonly originType: XcmV0OriginKind;1171 readonly requireWeightAtMost: Compact<u64>;1172 readonly call: XcmDoubleEncoded;1173 } & Struct;1174 readonly isHrmpNewChannelOpenRequest: boolean;1175 readonly asHrmpNewChannelOpenRequest: {1176 readonly sender: Compact<u32>;1177 readonly maxMessageSize: Compact<u32>;1178 readonly maxCapacity: Compact<u32>;1179 } & Struct;1180 readonly isHrmpChannelAccepted: boolean;1181 readonly asHrmpChannelAccepted: {1182 readonly recipient: Compact<u32>;1183 } & Struct;1184 readonly isHrmpChannelClosing: boolean;1185 readonly asHrmpChannelClosing: {1186 readonly initiator: Compact<u32>;1187 readonly sender: Compact<u32>;1188 readonly recipient: Compact<u32>;1189 } & Struct;1190 readonly isClearOrigin: boolean;1191 readonly isDescendOrigin: boolean;1192 readonly asDescendOrigin: XcmV1MultilocationJunctions;1193 readonly isReportError: boolean;1194 readonly asReportError: {1195 readonly queryId: Compact<u64>;1196 readonly dest: XcmV1MultiLocation;1197 readonly maxResponseWeight: Compact<u64>;1198 } & Struct;1199 readonly isDepositAsset: boolean;1200 readonly asDepositAsset: {1201 readonly assets: XcmV1MultiassetMultiAssetFilter;1202 readonly maxAssets: Compact<u32>;1203 readonly beneficiary: XcmV1MultiLocation;1204 } & Struct;1205 readonly isDepositReserveAsset: boolean;1206 readonly asDepositReserveAsset: {1207 readonly assets: XcmV1MultiassetMultiAssetFilter;1208 readonly maxAssets: Compact<u32>;1209 readonly dest: XcmV1MultiLocation;1210 readonly xcm: XcmV2Xcm;1211 } & Struct;1212 readonly isExchangeAsset: boolean;1213 readonly asExchangeAsset: {1214 readonly give: XcmV1MultiassetMultiAssetFilter;1215 readonly receive: XcmV1MultiassetMultiAssets;1216 } & Struct;1217 readonly isInitiateReserveWithdraw: boolean;1218 readonly asInitiateReserveWithdraw: {1219 readonly assets: XcmV1MultiassetMultiAssetFilter;1220 readonly reserve: XcmV1MultiLocation;1221 readonly xcm: XcmV2Xcm;1222 } & Struct;1223 readonly isInitiateTeleport: boolean;1224 readonly asInitiateTeleport: {1225 readonly assets: XcmV1MultiassetMultiAssetFilter;1226 readonly dest: XcmV1MultiLocation;1227 readonly xcm: XcmV2Xcm;1228 } & Struct;1229 readonly isQueryHolding: boolean;1230 readonly asQueryHolding: {1231 readonly queryId: Compact<u64>;1232 readonly dest: XcmV1MultiLocation;1233 readonly assets: XcmV1MultiassetMultiAssetFilter;1234 readonly maxResponseWeight: Compact<u64>;1235 } & Struct;1236 readonly isBuyExecution: boolean;1237 readonly asBuyExecution: {1238 readonly fees: XcmV1MultiAsset;1239 readonly weightLimit: XcmV2WeightLimit;1240 } & Struct;1241 readonly isRefundSurplus: boolean;1242 readonly isSetErrorHandler: boolean;1243 readonly asSetErrorHandler: XcmV2Xcm;1244 readonly isSetAppendix: boolean;1245 readonly asSetAppendix: XcmV2Xcm;1246 readonly isClearError: boolean;1247 readonly isClaimAsset: boolean;1248 readonly asClaimAsset: {1249 readonly assets: XcmV1MultiassetMultiAssets;1250 readonly ticket: XcmV1MultiLocation;1251 } & Struct;1252 readonly isTrap: boolean;1253 readonly asTrap: Compact<u64>;1254 readonly isSubscribeVersion: boolean;1255 readonly asSubscribeVersion: {1256 readonly queryId: Compact<u64>;1257 readonly maxResponseWeight: Compact<u64>;1258 } & Struct;1259 readonly isUnsubscribeVersion: boolean;1260 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';1261 }12621263 /** @name XcmV2Response (127) */1264 export interface XcmV2Response extends Enum {1265 readonly isNull: boolean;1266 readonly isAssets: boolean;1267 readonly asAssets: XcmV1MultiassetMultiAssets;1268 readonly isExecutionResult: boolean;1269 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1270 readonly isVersion: boolean;1271 readonly asVersion: u32;1272 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1273 }12741275 /** @name XcmV2TraitsError (130) */1276 export interface XcmV2TraitsError extends Enum {1277 readonly isOverflow: boolean;1278 readonly isUnimplemented: boolean;1279 readonly isUntrustedReserveLocation: boolean;1280 readonly isUntrustedTeleportLocation: boolean;1281 readonly isMultiLocationFull: boolean;1282 readonly isMultiLocationNotInvertible: boolean;1283 readonly isBadOrigin: boolean;1284 readonly isInvalidLocation: boolean;1285 readonly isAssetNotFound: boolean;1286 readonly isFailedToTransactAsset: boolean;1287 readonly isNotWithdrawable: boolean;1288 readonly isLocationCannotHold: boolean;1289 readonly isExceedsMaxMessageSize: boolean;1290 readonly isDestinationUnsupported: boolean;1291 readonly isTransport: boolean;1292 readonly isUnroutable: boolean;1293 readonly isUnknownClaim: boolean;1294 readonly isFailedToDecode: boolean;1295 readonly isMaxWeightInvalid: boolean;1296 readonly isNotHoldingFees: boolean;1297 readonly isTooExpensive: boolean;1298 readonly isTrap: boolean;1299 readonly asTrap: u64;1300 readonly isUnhandledXcmVersion: boolean;1301 readonly isWeightLimitReached: boolean;1302 readonly asWeightLimitReached: u64;1303 readonly isBarrier: boolean;1304 readonly isWeightNotComputable: boolean;1305 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';1306 }13071308 /** @name XcmV2WeightLimit (131) */1309 export interface XcmV2WeightLimit extends Enum {1310 readonly isUnlimited: boolean;1311 readonly isLimited: boolean;1312 readonly asLimited: Compact<u64>;1313 readonly type: 'Unlimited' | 'Limited';1314 }13151316 /** @name XcmVersionedMultiAssets (132) */1317 export interface XcmVersionedMultiAssets extends Enum {1318 readonly isV0: boolean;1319 readonly asV0: Vec<XcmV0MultiAsset>;1320 readonly isV1: boolean;1321 readonly asV1: XcmV1MultiassetMultiAssets;1322 readonly type: 'V0' | 'V1';1323 }13241325 /** @name CumulusPalletXcmCall (147) */1326 export type CumulusPalletXcmCall = Null;13271328 /** @name CumulusPalletDmpQueueCall (148) */1329 export interface CumulusPalletDmpQueueCall extends Enum {1330 readonly isServiceOverweight: boolean;1331 readonly asServiceOverweight: {1332 readonly index: u64;1333 readonly weightLimit: u64;1334 } & Struct;1335 readonly type: 'ServiceOverweight';1336 }13371338 /** @name PalletInflationCall (149) */1339 export interface PalletInflationCall extends Enum {1340 readonly isStartInflation: boolean;1341 readonly asStartInflation: {1342 readonly inflationStartRelayBlock: u32;1343 } & Struct;1344 readonly type: 'StartInflation';1345 }13461347 /** @name PalletUniqueCall (150) */1348 export interface PalletUniqueCall extends Enum {1349 readonly isCreateCollection: boolean;1350 readonly asCreateCollection: {1351 readonly collectionName: Vec<u16>;1352 readonly collectionDescription: Vec<u16>;1353 readonly tokenPrefix: Bytes;1354 readonly mode: UpDataStructsCollectionMode;1355 } & Struct;1356 readonly isCreateCollectionEx: boolean;1357 readonly asCreateCollectionEx: {1358 readonly data: UpDataStructsCreateCollectionData;1359 } & Struct;1360 readonly isDestroyCollection: boolean;1361 readonly asDestroyCollection: {1362 readonly collectionId: u32;1363 } & Struct;1364 readonly isAddToAllowList: boolean;1365 readonly asAddToAllowList: {1366 readonly collectionId: u32;1367 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1368 } & Struct;1369 readonly isRemoveFromAllowList: boolean;1370 readonly asRemoveFromAllowList: {1371 readonly collectionId: u32;1372 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1373 } & Struct;1374 readonly isSetPublicAccessMode: boolean;1375 readonly asSetPublicAccessMode: {1376 readonly collectionId: u32;1377 readonly mode: UpDataStructsAccessMode;1378 } & Struct;1379 readonly isSetMintPermission: boolean;1380 readonly asSetMintPermission: {1381 readonly collectionId: u32;1382 readonly mintPermission: bool;1383 } & Struct;1384 readonly isChangeCollectionOwner: boolean;1385 readonly asChangeCollectionOwner: {1386 readonly collectionId: u32;1387 readonly newOwner: AccountId32;1388 } & Struct;1389 readonly isAddCollectionAdmin: boolean;1390 readonly asAddCollectionAdmin: {1391 readonly collectionId: u32;1392 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1393 } & Struct;1394 readonly isRemoveCollectionAdmin: boolean;1395 readonly asRemoveCollectionAdmin: {1396 readonly collectionId: u32;1397 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1398 } & Struct;1399 readonly isSetCollectionSponsor: boolean;1400 readonly asSetCollectionSponsor: {1401 readonly collectionId: u32;1402 readonly newSponsor: AccountId32;1403 } & Struct;1404 readonly isConfirmSponsorship: boolean;1405 readonly asConfirmSponsorship: {1406 readonly collectionId: u32;1407 } & Struct;1408 readonly isRemoveCollectionSponsor: boolean;1409 readonly asRemoveCollectionSponsor: {1410 readonly collectionId: u32;1411 } & Struct;1412 readonly isCreateItem: boolean;1413 readonly asCreateItem: {1414 readonly collectionId: u32;1415 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1416 readonly data: UpDataStructsCreateItemData;1417 } & Struct;1418 readonly isCreateMultipleItems: boolean;1419 readonly asCreateMultipleItems: {1420 readonly collectionId: u32;1421 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1422 readonly itemsData: Vec<UpDataStructsCreateItemData>;1423 } & Struct;1424 readonly isSetCollectionProperties: boolean;1425 readonly asSetCollectionProperties: {1426 readonly collectionId: u32;1427 readonly properties: Vec<UpDataStructsProperty>;1428 } & Struct;1429 readonly isDeleteCollectionProperties: boolean;1430 readonly asDeleteCollectionProperties: {1431 readonly collectionId: u32;1432 readonly propertyKeys: Vec<Bytes>;1433 } & Struct;1434 readonly isSetTokenProperties: boolean;1435 readonly asSetTokenProperties: {1436 readonly collectionId: u32;1437 readonly tokenId: u32;1438 readonly properties: Vec<UpDataStructsProperty>;1439 } & Struct;1440 readonly isDeleteTokenProperties: boolean;1441 readonly asDeleteTokenProperties: {1442 readonly collectionId: u32;1443 readonly tokenId: u32;1444 readonly propertyKeys: Vec<Bytes>;1445 } & Struct;1446 readonly isSetPropertyPermissions: boolean;1447 readonly asSetPropertyPermissions: {1448 readonly collectionId: u32;1449 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1450 } & Struct;1451 readonly isCreateMultipleItemsEx: boolean;1452 readonly asCreateMultipleItemsEx: {1453 readonly collectionId: u32;1454 readonly data: UpDataStructsCreateItemExData;1455 } & Struct;1456 readonly isSetTransfersEnabledFlag: boolean;1457 readonly asSetTransfersEnabledFlag: {1458 readonly collectionId: u32;1459 readonly value: bool;1460 } & Struct;1461 readonly isBurnItem: boolean;1462 readonly asBurnItem: {1463 readonly collectionId: u32;1464 readonly itemId: u32;1465 readonly value: u128;1466 } & Struct;1467 readonly isBurnFrom: boolean;1468 readonly asBurnFrom: {1469 readonly collectionId: u32;1470 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1471 readonly itemId: u32;1472 readonly value: u128;1473 } & Struct;1474 readonly isTransfer: boolean;1475 readonly asTransfer: {1476 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1477 readonly collectionId: u32;1478 readonly itemId: u32;1479 readonly value: u128;1480 } & Struct;1481 readonly isApprove: boolean;1482 readonly asApprove: {1483 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1484 readonly collectionId: u32;1485 readonly itemId: u32;1486 readonly amount: u128;1487 } & Struct;1488 readonly isTransferFrom: boolean;1489 readonly asTransferFrom: {1490 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1491 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1492 readonly collectionId: u32;1493 readonly itemId: u32;1494 readonly value: u128;1495 } & Struct;1496 readonly isSetVariableMetaData: boolean;1497 readonly asSetVariableMetaData: {1498 readonly collectionId: u32;1499 readonly itemId: u32;1500 readonly data: Bytes;1501 } & Struct;1502 readonly isSetMetaUpdatePermissionFlag: boolean;1503 readonly asSetMetaUpdatePermissionFlag: {1504 readonly collectionId: u32;1505 readonly value: UpDataStructsMetaUpdatePermission;1506 } & Struct;1507 readonly isSetSchemaVersion: boolean;1508 readonly asSetSchemaVersion: {1509 readonly collectionId: u32;1510 readonly version: UpDataStructsSchemaVersion;1511 } & Struct;1512 readonly isSetOffchainSchema: boolean;1513 readonly asSetOffchainSchema: {1514 readonly collectionId: u32;1515 readonly schema: Bytes;1516 } & Struct;1517 readonly isSetConstOnChainSchema: boolean;1518 readonly asSetConstOnChainSchema: {1519 readonly collectionId: u32;1520 readonly schema: Bytes;1521 } & Struct;1522 readonly isSetVariableOnChainSchema: boolean;1523 readonly asSetVariableOnChainSchema: {1524 readonly collectionId: u32;1525 readonly schema: Bytes;1526 } & Struct;1527 readonly isSetCollectionLimits: boolean;1528 readonly asSetCollectionLimits: {1529 readonly collectionId: u32;1530 readonly newLimit: UpDataStructsCollectionLimits;1531 } & Struct;1532 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';1533 }15341535 /** @name UpDataStructsCollectionMode (156) */1536 export interface UpDataStructsCollectionMode extends Enum {1537 readonly isNft: boolean;1538 readonly isFungible: boolean;1539 readonly asFungible: u8;1540 readonly isReFungible: boolean;1541 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1542 }15431544 /** @name UpDataStructsCreateCollectionData (157) */1545 export interface UpDataStructsCreateCollectionData extends Struct {1546 readonly mode: UpDataStructsCollectionMode;1547 readonly access: Option<UpDataStructsAccessMode>;1548 readonly name: Vec<u16>;1549 readonly description: Vec<u16>;1550 readonly tokenPrefix: Bytes;1551 readonly offchainSchema: Bytes;1552 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1553 readonly pendingSponsor: Option<AccountId32>;1554 readonly limits: Option<UpDataStructsCollectionLimits>;1555 readonly variableOnChainSchema: Bytes;1556 readonly constOnChainSchema: Bytes;1557 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1558 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1559 readonly properties: Vec<UpDataStructsProperty>;1560 }15611562 /** @name UpDataStructsAccessMode (159) */1563 export interface UpDataStructsAccessMode extends Enum {1564 readonly isNormal: boolean;1565 readonly isAllowList: boolean;1566 readonly type: 'Normal' | 'AllowList';1567 }15681569 /** @name UpDataStructsSchemaVersion (162) */1570 export interface UpDataStructsSchemaVersion extends Enum {1571 readonly isImageURL: boolean;1572 readonly isUnique: boolean;1573 readonly type: 'ImageURL' | 'Unique';1574 }15751576 /** @name UpDataStructsCollectionLimits (165) */1577 export interface UpDataStructsCollectionLimits extends Struct {1578 readonly accountTokenOwnershipLimit: Option<u32>;1579 readonly sponsoredDataSize: Option<u32>;1580 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1581 readonly tokenLimit: Option<u32>;1582 readonly sponsorTransferTimeout: Option<u32>;1583 readonly sponsorApproveTimeout: Option<u32>;1584 readonly ownerCanTransfer: Option<bool>;1585 readonly ownerCanDestroy: Option<bool>;1586 readonly transfersEnabled: Option<bool>;1587 readonly nestingRule: Option<UpDataStructsNestingRule>;1588 }15891590 /** @name UpDataStructsSponsoringRateLimit (167) */1591 export interface UpDataStructsSponsoringRateLimit extends Enum {1592 readonly isSponsoringDisabled: boolean;1593 readonly isBlocks: boolean;1594 readonly asBlocks: u32;1595 readonly type: 'SponsoringDisabled' | 'Blocks';1596 }15971598 /** @name UpDataStructsNestingRule (170) */1599 export interface UpDataStructsNestingRule extends Enum {1600 readonly isDisabled: boolean;1601 readonly isOwner: boolean;1602 readonly isOwnerRestricted: boolean;1603 readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;1604 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1605 }16061607 /** @name FrameSupportStorageBoundedBTreeSet (171) */1608 export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}16091610 /** @name UpDataStructsMetaUpdatePermission (177) */1611 export interface UpDataStructsMetaUpdatePermission extends Enum {1612 readonly isItemOwner: boolean;1613 readonly isAdmin: boolean;1614 readonly isNone: boolean;1615 readonly type: 'ItemOwner' | 'Admin' | 'None';1616 }16171618 /** @name UpDataStructsPropertyKeyPermission (179) */1619 export interface UpDataStructsPropertyKeyPermission extends Struct {1620 readonly key: Bytes;1621 readonly permission: UpDataStructsPropertyPermission;1622 }16231624 /** @name UpDataStructsPropertyPermission (181) */1625 export interface UpDataStructsPropertyPermission extends Struct {1626 readonly mutable: bool;1627 readonly collectionAdmin: bool;1628 readonly tokenOwner: bool;1629 }16301631 /** @name UpDataStructsProperty (184) */1632 export interface UpDataStructsProperty extends Struct {1633 readonly key: Bytes;1634 readonly value: Bytes;1635 }16361637 /** @name PalletEvmAccountBasicCrossAccountIdRepr (186) */1638 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1639 readonly isSubstrate: boolean;1640 readonly asSubstrate: AccountId32;1641 readonly isEthereum: boolean;1642 readonly asEthereum: H160;1643 readonly type: 'Substrate' | 'Ethereum';1644 }16451646 /** @name UpDataStructsCreateItemData (188) */1647 export interface UpDataStructsCreateItemData extends Enum {1648 readonly isNft: boolean;1649 readonly asNft: UpDataStructsCreateNftData;1650 readonly isFungible: boolean;1651 readonly asFungible: UpDataStructsCreateFungibleData;1652 readonly isReFungible: boolean;1653 readonly asReFungible: UpDataStructsCreateReFungibleData;1654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1655 }16561657 /** @name UpDataStructsCreateNftData (189) */1658 export interface UpDataStructsCreateNftData extends Struct {1659 readonly constData: Bytes;1660 readonly variableData: Bytes;1661 readonly properties: Vec<UpDataStructsProperty>;1662 }16631664 /** @name UpDataStructsCreateFungibleData (191) */1665 export interface UpDataStructsCreateFungibleData extends Struct {1666 readonly value: u128;1667 }16681669 /** @name UpDataStructsCreateReFungibleData (192) */1670 export interface UpDataStructsCreateReFungibleData extends Struct {1671 readonly constData: Bytes;1672 readonly variableData: Bytes;1673 readonly pieces: u128;1674 }16751676 /** @name UpDataStructsCreateItemExData (196) */1677 export interface UpDataStructsCreateItemExData extends Enum {1678 readonly isNft: boolean;1679 readonly asNft: Vec<UpDataStructsCreateNftExData>;1680 readonly isFungible: boolean;1681 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1682 readonly isRefungibleMultipleItems: boolean;1683 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1684 readonly isRefungibleMultipleOwners: boolean;1685 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1686 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1687 }16881689 /** @name UpDataStructsCreateNftExData (198) */1690 export interface UpDataStructsCreateNftExData extends Struct {1691 readonly constData: Bytes;1692 readonly variableData: Bytes;1693 readonly properties: Vec<UpDataStructsProperty>;1694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1695 }16961697 /** @name UpDataStructsCreateRefungibleExData (205) */1698 export interface UpDataStructsCreateRefungibleExData extends Struct {1699 readonly constData: Bytes;1700 readonly variableData: Bytes;1701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1702 }17031704 /** @name PalletTemplateTransactionPaymentCall (207) */1705 export type PalletTemplateTransactionPaymentCall = Null;17061707 /** @name PalletStructureCall (208) */1708 export type PalletStructureCall = Null;17091710 /** @name PalletEvmCall (209) */1711 export interface PalletEvmCall extends Enum {1712 readonly isWithdraw: boolean;1713 readonly asWithdraw: {1714 readonly address: H160;1715 readonly value: u128;1716 } & Struct;1717 readonly isCall: boolean;1718 readonly asCall: {1719 readonly source: H160;1720 readonly target: H160;1721 readonly input: Bytes;1722 readonly value: U256;1723 readonly gasLimit: u64;1724 readonly maxFeePerGas: U256;1725 readonly maxPriorityFeePerGas: Option<U256>;1726 readonly nonce: Option<U256>;1727 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1728 } & Struct;1729 readonly isCreate: boolean;1730 readonly asCreate: {1731 readonly source: H160;1732 readonly init: Bytes;1733 readonly value: U256;1734 readonly gasLimit: u64;1735 readonly maxFeePerGas: U256;1736 readonly maxPriorityFeePerGas: Option<U256>;1737 readonly nonce: Option<U256>;1738 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1739 } & Struct;1740 readonly isCreate2: boolean;1741 readonly asCreate2: {1742 readonly source: H160;1743 readonly init: Bytes;1744 readonly salt: H256;1745 readonly value: U256;1746 readonly gasLimit: u64;1747 readonly maxFeePerGas: U256;1748 readonly maxPriorityFeePerGas: Option<U256>;1749 readonly nonce: Option<U256>;1750 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1751 } & Struct;1752 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1753 }17541755 /** @name PalletEthereumCall (215) */1756 export interface PalletEthereumCall extends Enum {1757 readonly isTransact: boolean;1758 readonly asTransact: {1759 readonly transaction: EthereumTransactionTransactionV2;1760 } & Struct;1761 readonly type: 'Transact';1762 }17631764 /** @name EthereumTransactionTransactionV2 (216) */1765 export interface EthereumTransactionTransactionV2 extends Enum {1766 readonly isLegacy: boolean;1767 readonly asLegacy: EthereumTransactionLegacyTransaction;1768 readonly isEip2930: boolean;1769 readonly asEip2930: EthereumTransactionEip2930Transaction;1770 readonly isEip1559: boolean;1771 readonly asEip1559: EthereumTransactionEip1559Transaction;1772 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1773 }17741775 /** @name EthereumTransactionLegacyTransaction (217) */1776 export interface EthereumTransactionLegacyTransaction extends Struct {1777 readonly nonce: U256;1778 readonly gasPrice: U256;1779 readonly gasLimit: U256;1780 readonly action: EthereumTransactionTransactionAction;1781 readonly value: U256;1782 readonly input: Bytes;1783 readonly signature: EthereumTransactionTransactionSignature;1784 }17851786 /** @name EthereumTransactionTransactionAction (218) */1787 export interface EthereumTransactionTransactionAction extends Enum {1788 readonly isCall: boolean;1789 readonly asCall: H160;1790 readonly isCreate: boolean;1791 readonly type: 'Call' | 'Create';1792 }17931794 /** @name EthereumTransactionTransactionSignature (219) */1795 export interface EthereumTransactionTransactionSignature extends Struct {1796 readonly v: u64;1797 readonly r: H256;1798 readonly s: H256;1799 }18001801 /** @name EthereumTransactionEip2930Transaction (221) */1802 export interface EthereumTransactionEip2930Transaction extends Struct {1803 readonly chainId: u64;1804 readonly nonce: U256;1805 readonly gasPrice: U256;1806 readonly gasLimit: U256;1807 readonly action: EthereumTransactionTransactionAction;1808 readonly value: U256;1809 readonly input: Bytes;1810 readonly accessList: Vec<EthereumTransactionAccessListItem>;1811 readonly oddYParity: bool;1812 readonly r: H256;1813 readonly s: H256;1814 }18151816 /** @name EthereumTransactionAccessListItem (223) */1817 export interface EthereumTransactionAccessListItem extends Struct {1818 readonly address: H160;1819 readonly storageKeys: Vec<H256>;1820 }18211822 /** @name EthereumTransactionEip1559Transaction (224) */1823 export interface EthereumTransactionEip1559Transaction extends Struct {1824 readonly chainId: u64;1825 readonly nonce: U256;1826 readonly maxPriorityFeePerGas: U256;1827 readonly maxFeePerGas: U256;1828 readonly gasLimit: U256;1829 readonly action: EthereumTransactionTransactionAction;1830 readonly value: U256;1831 readonly input: Bytes;1832 readonly accessList: Vec<EthereumTransactionAccessListItem>;1833 readonly oddYParity: bool;1834 readonly r: H256;1835 readonly s: H256;1836 }18371838 /** @name PalletEvmMigrationCall (225) */1839 export interface PalletEvmMigrationCall extends Enum {1840 readonly isBegin: boolean;1841 readonly asBegin: {1842 readonly address: H160;1843 } & Struct;1844 readonly isSetData: boolean;1845 readonly asSetData: {1846 readonly address: H160;1847 readonly data: Vec<ITuple<[H256, H256]>>;1848 } & Struct;1849 readonly isFinish: boolean;1850 readonly asFinish: {1851 readonly address: H160;1852 readonly code: Bytes;1853 } & Struct;1854 readonly type: 'Begin' | 'SetData' | 'Finish';1855 }18561857 /** @name PalletSudoEvent (228) */1858 export interface PalletSudoEvent extends Enum {1859 readonly isSudid: boolean;1860 readonly asSudid: {1861 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1862 } & Struct;1863 readonly isKeyChanged: boolean;1864 readonly asKeyChanged: {1865 readonly oldSudoer: Option<AccountId32>;1866 } & Struct;1867 readonly isSudoAsDone: boolean;1868 readonly asSudoAsDone: {1869 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1870 } & Struct;1871 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1872 }18731874 /** @name SpRuntimeDispatchError (230) */1875 export interface SpRuntimeDispatchError extends Enum {1876 readonly isOther: boolean;1877 readonly isCannotLookup: boolean;1878 readonly isBadOrigin: boolean;1879 readonly isModule: boolean;1880 readonly asModule: SpRuntimeModuleError;1881 readonly isConsumerRemaining: boolean;1882 readonly isNoProviders: boolean;1883 readonly isTooManyConsumers: boolean;1884 readonly isToken: boolean;1885 readonly asToken: SpRuntimeTokenError;1886 readonly isArithmetic: boolean;1887 readonly asArithmetic: SpRuntimeArithmeticError;1888 readonly isTransactional: boolean;1889 readonly asTransactional: SpRuntimeTransactionalError;1890 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1891 }18921893 /** @name SpRuntimeModuleError (231) */1894 export interface SpRuntimeModuleError extends Struct {1895 readonly index: u8;1896 readonly error: U8aFixed;1897 }18981899 /** @name SpRuntimeTokenError (232) */1900 export interface SpRuntimeTokenError extends Enum {1901 readonly isNoFunds: boolean;1902 readonly isWouldDie: boolean;1903 readonly isBelowMinimum: boolean;1904 readonly isCannotCreate: boolean;1905 readonly isUnknownAsset: boolean;1906 readonly isFrozen: boolean;1907 readonly isUnsupported: boolean;1908 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1909 }19101911 /** @name SpRuntimeArithmeticError (233) */1912 export interface SpRuntimeArithmeticError extends Enum {1913 readonly isUnderflow: boolean;1914 readonly isOverflow: boolean;1915 readonly isDivisionByZero: boolean;1916 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1917 }19181919 /** @name SpRuntimeTransactionalError (234) */1920 export interface SpRuntimeTransactionalError extends Enum {1921 readonly isLimitReached: boolean;1922 readonly isNoLayer: boolean;1923 readonly type: 'LimitReached' | 'NoLayer';1924 }19251926 /** @name PalletSudoError (235) */1927 export interface PalletSudoError extends Enum {1928 readonly isRequireSudo: boolean;1929 readonly type: 'RequireSudo';1930 }19311932 /** @name FrameSystemAccountInfo (236) */1933 export interface FrameSystemAccountInfo extends Struct {1934 readonly nonce: u32;1935 readonly consumers: u32;1936 readonly providers: u32;1937 readonly sufficients: u32;1938 readonly data: PalletBalancesAccountData;1939 }19401941 /** @name FrameSupportWeightsPerDispatchClassU64 (237) */1942 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1943 readonly normal: u64;1944 readonly operational: u64;1945 readonly mandatory: u64;1946 }19471948 /** @name SpRuntimeDigest (238) */1949 export interface SpRuntimeDigest extends Struct {1950 readonly logs: Vec<SpRuntimeDigestDigestItem>;1951 }19521953 /** @name SpRuntimeDigestDigestItem (240) */1954 export interface SpRuntimeDigestDigestItem extends Enum {1955 readonly isOther: boolean;1956 readonly asOther: Bytes;1957 readonly isConsensus: boolean;1958 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1959 readonly isSeal: boolean;1960 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1961 readonly isPreRuntime: boolean;1962 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1963 readonly isRuntimeEnvironmentUpdated: boolean;1964 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1965 }19661967 /** @name FrameSystemEventRecord (242) */1968 export interface FrameSystemEventRecord extends Struct {1969 readonly phase: FrameSystemPhase;1970 readonly event: Event;1971 readonly topics: Vec<H256>;1972 }19731974 /** @name FrameSystemEvent (244) */1975 export interface FrameSystemEvent extends Enum {1976 readonly isExtrinsicSuccess: boolean;1977 readonly asExtrinsicSuccess: {1978 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1979 } & Struct;1980 readonly isExtrinsicFailed: boolean;1981 readonly asExtrinsicFailed: {1982 readonly dispatchError: SpRuntimeDispatchError;1983 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1984 } & Struct;1985 readonly isCodeUpdated: boolean;1986 readonly isNewAccount: boolean;1987 readonly asNewAccount: {1988 readonly account: AccountId32;1989 } & Struct;1990 readonly isKilledAccount: boolean;1991 readonly asKilledAccount: {1992 readonly account: AccountId32;1993 } & Struct;1994 readonly isRemarked: boolean;1995 readonly asRemarked: {1996 readonly sender: AccountId32;1997 readonly hash_: H256;1998 } & Struct;1999 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2000 }20012002 /** @name FrameSupportWeightsDispatchInfo (245) */2003 export interface FrameSupportWeightsDispatchInfo extends Struct {2004 readonly weight: u64;2005 readonly class: FrameSupportWeightsDispatchClass;2006 readonly paysFee: FrameSupportWeightsPays;2007 }20082009 /** @name FrameSupportWeightsDispatchClass (246) */2010 export interface FrameSupportWeightsDispatchClass extends Enum {2011 readonly isNormal: boolean;2012 readonly isOperational: boolean;2013 readonly isMandatory: boolean;2014 readonly type: 'Normal' | 'Operational' | 'Mandatory';2015 }20162017 /** @name FrameSupportWeightsPays (247) */2018 export interface FrameSupportWeightsPays extends Enum {2019 readonly isYes: boolean;2020 readonly isNo: boolean;2021 readonly type: 'Yes' | 'No';2022 }20232024 /** @name OrmlVestingModuleEvent (248) */2025 export interface OrmlVestingModuleEvent extends Enum {2026 readonly isVestingScheduleAdded: boolean;2027 readonly asVestingScheduleAdded: {2028 readonly from: AccountId32;2029 readonly to: AccountId32;2030 readonly vestingSchedule: OrmlVestingVestingSchedule;2031 } & Struct;2032 readonly isClaimed: boolean;2033 readonly asClaimed: {2034 readonly who: AccountId32;2035 readonly amount: u128;2036 } & Struct;2037 readonly isVestingSchedulesUpdated: boolean;2038 readonly asVestingSchedulesUpdated: {2039 readonly who: AccountId32;2040 } & Struct;2041 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2042 }20432044 /** @name CumulusPalletXcmpQueueEvent (249) */2045 export interface CumulusPalletXcmpQueueEvent extends Enum {2046 readonly isSuccess: boolean;2047 readonly asSuccess: Option<H256>;2048 readonly isFail: boolean;2049 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;2050 readonly isBadVersion: boolean;2051 readonly asBadVersion: Option<H256>;2052 readonly isBadFormat: boolean;2053 readonly asBadFormat: Option<H256>;2054 readonly isUpwardMessageSent: boolean;2055 readonly asUpwardMessageSent: Option<H256>;2056 readonly isXcmpMessageSent: boolean;2057 readonly asXcmpMessageSent: Option<H256>;2058 readonly isOverweightEnqueued: boolean;2059 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;2060 readonly isOverweightServiced: boolean;2061 readonly asOverweightServiced: ITuple<[u64, u64]>;2062 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2063 }20642065 /** @name PalletXcmEvent (250) */2066 export interface PalletXcmEvent extends Enum {2067 readonly isAttempted: boolean;2068 readonly asAttempted: XcmV2TraitsOutcome;2069 readonly isSent: boolean;2070 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2071 readonly isUnexpectedResponse: boolean;2072 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2073 readonly isResponseReady: boolean;2074 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2075 readonly isNotified: boolean;2076 readonly asNotified: ITuple<[u64, u8, u8]>;2077 readonly isNotifyOverweight: boolean;2078 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2079 readonly isNotifyDispatchError: boolean;2080 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2081 readonly isNotifyDecodeFailed: boolean;2082 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2083 readonly isInvalidResponder: boolean;2084 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2085 readonly isInvalidResponderVersion: boolean;2086 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2087 readonly isResponseTaken: boolean;2088 readonly asResponseTaken: u64;2089 readonly isAssetsTrapped: boolean;2090 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2091 readonly isVersionChangeNotified: boolean;2092 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2093 readonly isSupportedVersionChanged: boolean;2094 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2095 readonly isNotifyTargetSendFail: boolean;2096 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2097 readonly isNotifyTargetMigrationFail: boolean;2098 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2099 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2100 }21012102 /** @name XcmV2TraitsOutcome (251) */2103 export interface XcmV2TraitsOutcome extends Enum {2104 readonly isComplete: boolean;2105 readonly asComplete: u64;2106 readonly isIncomplete: boolean;2107 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2108 readonly isError: boolean;2109 readonly asError: XcmV2TraitsError;2110 readonly type: 'Complete' | 'Incomplete' | 'Error';2111 }21122113 /** @name CumulusPalletXcmEvent (253) */2114 export interface CumulusPalletXcmEvent extends Enum {2115 readonly isInvalidFormat: boolean;2116 readonly asInvalidFormat: U8aFixed;2117 readonly isUnsupportedVersion: boolean;2118 readonly asUnsupportedVersion: U8aFixed;2119 readonly isExecutedDownward: boolean;2120 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2121 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2122 }21232124 /** @name CumulusPalletDmpQueueEvent (254) */2125 export interface CumulusPalletDmpQueueEvent extends Enum {2126 readonly isInvalidFormat: boolean;2127 readonly asInvalidFormat: U8aFixed;2128 readonly isUnsupportedVersion: boolean;2129 readonly asUnsupportedVersion: U8aFixed;2130 readonly isExecutedDownward: boolean;2131 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2132 readonly isWeightExhausted: boolean;2133 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;2134 readonly isOverweightEnqueued: boolean;2135 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2136 readonly isOverweightServiced: boolean;2137 readonly asOverweightServiced: ITuple<[u64, u64]>;2138 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2139 }21402141 /** @name PalletUniqueRawEvent (255) */2142 export interface PalletUniqueRawEvent extends Enum {2143 readonly isCollectionSponsorRemoved: boolean;2144 readonly asCollectionSponsorRemoved: u32;2145 readonly isCollectionAdminAdded: boolean;2146 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2147 readonly isCollectionOwnedChanged: boolean;2148 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2149 readonly isCollectionSponsorSet: boolean;2150 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2151 readonly isConstOnChainSchemaSet: boolean;2152 readonly asConstOnChainSchemaSet: u32;2153 readonly isSponsorshipConfirmed: boolean;2154 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2155 readonly isCollectionAdminRemoved: boolean;2156 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2157 readonly isAllowListAddressRemoved: boolean;2158 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2159 readonly isAllowListAddressAdded: boolean;2160 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2161 readonly isCollectionLimitSet: boolean;2162 readonly asCollectionLimitSet: u32;2163 readonly isMintPermissionSet: boolean;2164 readonly asMintPermissionSet: u32;2165 readonly isOffchainSchemaSet: boolean;2166 readonly asOffchainSchemaSet: u32;2167 readonly isPublicAccessModeSet: boolean;2168 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2169 readonly isSchemaVersionSet: boolean;2170 readonly asSchemaVersionSet: u32;2171 readonly isVariableOnChainSchemaSet: boolean;2172 readonly asVariableOnChainSchemaSet: u32;2173 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2174 }21752176 /** @name PalletCommonEvent (256) */2177 export interface PalletCommonEvent extends Enum {2178 readonly isCollectionCreated: boolean;2179 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2180 readonly isCollectionDestroyed: boolean;2181 readonly asCollectionDestroyed: u32;2182 readonly isItemCreated: boolean;2183 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2184 readonly isItemDestroyed: boolean;2185 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2186 readonly isTransfer: boolean;2187 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2188 readonly isApproved: boolean;2189 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2190 readonly isCollectionPropertySet: boolean;2191 readonly asCollectionPropertySet: ITuple<[u32, UpDataStructsProperty]>;2192 readonly isCollectionPropertyDeleted: boolean;2193 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;2194 readonly isTokenPropertySet: boolean;2195 readonly asTokenPropertySet: ITuple<[u32, u32, UpDataStructsProperty]>;2196 readonly isTokenPropertyDeleted: boolean;2197 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;2198 readonly isPropertyPermissionSet: boolean;2199 readonly asPropertyPermissionSet: ITuple<[u32, UpDataStructsPropertyKeyPermission]>;2200 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2201 }22022203 /** @name PalletStructureEvent (257) */2204 export interface PalletStructureEvent extends Enum {2205 readonly isExecuted: boolean;2206 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2207 readonly type: 'Executed';2208 }22092210 /** @name PalletEvmEvent (258) */2211 export interface PalletEvmEvent extends Enum {2212 readonly isLog: boolean;2213 readonly asLog: EthereumLog;2214 readonly isCreated: boolean;2215 readonly asCreated: H160;2216 readonly isCreatedFailed: boolean;2217 readonly asCreatedFailed: H160;2218 readonly isExecuted: boolean;2219 readonly asExecuted: H160;2220 readonly isExecutedFailed: boolean;2221 readonly asExecutedFailed: H160;2222 readonly isBalanceDeposit: boolean;2223 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2224 readonly isBalanceWithdraw: boolean;2225 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2226 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2227 }22282229 /** @name EthereumLog (259) */2230 export interface EthereumLog extends Struct {2231 readonly address: H160;2232 readonly topics: Vec<H256>;2233 readonly data: Bytes;2234 }22352236 /** @name PalletEthereumEvent (260) */2237 export interface PalletEthereumEvent extends Enum {2238 readonly isExecuted: boolean;2239 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2240 readonly type: 'Executed';2241 }22422243 /** @name EvmCoreErrorExitReason (261) */2244 export interface EvmCoreErrorExitReason extends Enum {2245 readonly isSucceed: boolean;2246 readonly asSucceed: EvmCoreErrorExitSucceed;2247 readonly isError: boolean;2248 readonly asError: EvmCoreErrorExitError;2249 readonly isRevert: boolean;2250 readonly asRevert: EvmCoreErrorExitRevert;2251 readonly isFatal: boolean;2252 readonly asFatal: EvmCoreErrorExitFatal;2253 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2254 }22552256 /** @name EvmCoreErrorExitSucceed (262) */2257 export interface EvmCoreErrorExitSucceed extends Enum {2258 readonly isStopped: boolean;2259 readonly isReturned: boolean;2260 readonly isSuicided: boolean;2261 readonly type: 'Stopped' | 'Returned' | 'Suicided';2262 }22632264 /** @name EvmCoreErrorExitError (263) */2265 export interface EvmCoreErrorExitError extends Enum {2266 readonly isStackUnderflow: boolean;2267 readonly isStackOverflow: boolean;2268 readonly isInvalidJump: boolean;2269 readonly isInvalidRange: boolean;2270 readonly isDesignatedInvalid: boolean;2271 readonly isCallTooDeep: boolean;2272 readonly isCreateCollision: boolean;2273 readonly isCreateContractLimit: boolean;2274 readonly isOutOfOffset: boolean;2275 readonly isOutOfGas: boolean;2276 readonly isOutOfFund: boolean;2277 readonly isPcUnderflow: boolean;2278 readonly isCreateEmpty: boolean;2279 readonly isOther: boolean;2280 readonly asOther: Text;2281 readonly isInvalidCode: boolean;2282 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2283 }22842285 /** @name EvmCoreErrorExitRevert (266) */2286 export interface EvmCoreErrorExitRevert extends Enum {2287 readonly isReverted: boolean;2288 readonly type: 'Reverted';2289 }22902291 /** @name EvmCoreErrorExitFatal (267) */2292 export interface EvmCoreErrorExitFatal extends Enum {2293 readonly isNotSupported: boolean;2294 readonly isUnhandledInterrupt: boolean;2295 readonly isCallErrorAsFatal: boolean;2296 readonly asCallErrorAsFatal: EvmCoreErrorExitError;2297 readonly isOther: boolean;2298 readonly asOther: Text;2299 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2300 }23012302 /** @name FrameSystemPhase (268) */2303 export interface FrameSystemPhase extends Enum {2304 readonly isApplyExtrinsic: boolean;2305 readonly asApplyExtrinsic: u32;2306 readonly isFinalization: boolean;2307 readonly isInitialization: boolean;2308 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2309 }23102311 /** @name FrameSystemLastRuntimeUpgradeInfo (270) */2312 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2313 readonly specVersion: Compact<u32>;2314 readonly specName: Text;2315 }23162317 /** @name FrameSystemLimitsBlockWeights (271) */2318 export interface FrameSystemLimitsBlockWeights extends Struct {2319 readonly baseBlock: u64;2320 readonly maxBlock: u64;2321 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2322 }23232324 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (272) */2325 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2326 readonly normal: FrameSystemLimitsWeightsPerClass;2327 readonly operational: FrameSystemLimitsWeightsPerClass;2328 readonly mandatory: FrameSystemLimitsWeightsPerClass;2329 }23302331 /** @name FrameSystemLimitsWeightsPerClass (273) */2332 export interface FrameSystemLimitsWeightsPerClass extends Struct {2333 readonly baseExtrinsic: u64;2334 readonly maxExtrinsic: Option<u64>;2335 readonly maxTotal: Option<u64>;2336 readonly reserved: Option<u64>;2337 }23382339 /** @name FrameSystemLimitsBlockLength (275) */2340 export interface FrameSystemLimitsBlockLength extends Struct {2341 readonly max: FrameSupportWeightsPerDispatchClassU32;2342 }23432344 /** @name FrameSupportWeightsPerDispatchClassU32 (276) */2345 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2346 readonly normal: u32;2347 readonly operational: u32;2348 readonly mandatory: u32;2349 }23502351 /** @name FrameSupportWeightsRuntimeDbWeight (277) */2352 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2353 readonly read: u64;2354 readonly write: u64;2355 }23562357 /** @name SpVersionRuntimeVersion (278) */2358 export interface SpVersionRuntimeVersion extends Struct {2359 readonly specName: Text;2360 readonly implName: Text;2361 readonly authoringVersion: u32;2362 readonly specVersion: u32;2363 readonly implVersion: u32;2364 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2365 readonly transactionVersion: u32;2366 readonly stateVersion: u8;2367 }23682369 /** @name FrameSystemError (282) */2370 export interface FrameSystemError extends Enum {2371 readonly isInvalidSpecName: boolean;2372 readonly isSpecVersionNeedsToIncrease: boolean;2373 readonly isFailedToExtractRuntimeVersion: boolean;2374 readonly isNonDefaultComposite: boolean;2375 readonly isNonZeroRefCount: boolean;2376 readonly isCallFiltered: boolean;2377 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2378 }23792380 /** @name OrmlVestingModuleError (284) */2381 export interface OrmlVestingModuleError extends Enum {2382 readonly isZeroVestingPeriod: boolean;2383 readonly isZeroVestingPeriodCount: boolean;2384 readonly isInsufficientBalanceToLock: boolean;2385 readonly isTooManyVestingSchedules: boolean;2386 readonly isAmountLow: boolean;2387 readonly isMaxVestingSchedulesExceeded: boolean;2388 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2389 }23902391 /** @name CumulusPalletXcmpQueueInboundChannelDetails (286) */2392 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2393 readonly sender: u32;2394 readonly state: CumulusPalletXcmpQueueInboundState;2395 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2396 }23972398 /** @name CumulusPalletXcmpQueueInboundState (287) */2399 export interface CumulusPalletXcmpQueueInboundState extends Enum {2400 readonly isOk: boolean;2401 readonly isSuspended: boolean;2402 readonly type: 'Ok' | 'Suspended';2403 }24042405 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (290) */2406 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2407 readonly isConcatenatedVersionedXcm: boolean;2408 readonly isConcatenatedEncodedBlob: boolean;2409 readonly isSignals: boolean;2410 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2411 }24122413 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (293) */2414 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2415 readonly recipient: u32;2416 readonly state: CumulusPalletXcmpQueueOutboundState;2417 readonly signalsExist: bool;2418 readonly firstIndex: u16;2419 readonly lastIndex: u16;2420 }24212422 /** @name CumulusPalletXcmpQueueOutboundState (294) */2423 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2424 readonly isOk: boolean;2425 readonly isSuspended: boolean;2426 readonly type: 'Ok' | 'Suspended';2427 }24282429 /** @name CumulusPalletXcmpQueueQueueConfigData (296) */2430 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2431 readonly suspendThreshold: u32;2432 readonly dropThreshold: u32;2433 readonly resumeThreshold: u32;2434 readonly thresholdWeight: u64;2435 readonly weightRestrictDecay: u64;2436 readonly xcmpMaxIndividualWeight: u64;2437 }24382439 /** @name CumulusPalletXcmpQueueError (298) */2440 export interface CumulusPalletXcmpQueueError extends Enum {2441 readonly isFailedToSend: boolean;2442 readonly isBadXcmOrigin: boolean;2443 readonly isBadXcm: boolean;2444 readonly isBadOverweightIndex: boolean;2445 readonly isWeightOverLimit: boolean;2446 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2447 }24482449 /** @name PalletXcmError (299) */2450 export interface PalletXcmError extends Enum {2451 readonly isUnreachable: boolean;2452 readonly isSendFailure: boolean;2453 readonly isFiltered: boolean;2454 readonly isUnweighableMessage: boolean;2455 readonly isDestinationNotInvertible: boolean;2456 readonly isEmpty: boolean;2457 readonly isCannotReanchor: boolean;2458 readonly isTooManyAssets: boolean;2459 readonly isInvalidOrigin: boolean;2460 readonly isBadVersion: boolean;2461 readonly isBadLocation: boolean;2462 readonly isNoSubscription: boolean;2463 readonly isAlreadySubscribed: boolean;2464 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2465 }24662467 /** @name CumulusPalletXcmError (300) */2468 export type CumulusPalletXcmError = Null;24692470 /** @name CumulusPalletDmpQueueConfigData (301) */2471 export interface CumulusPalletDmpQueueConfigData extends Struct {2472 readonly maxIndividual: u64;2473 }24742475 /** @name CumulusPalletDmpQueuePageIndexData (302) */2476 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2477 readonly beginUsed: u32;2478 readonly endUsed: u32;2479 readonly overweightCount: u64;2480 }24812482 /** @name CumulusPalletDmpQueueError (305) */2483 export interface CumulusPalletDmpQueueError extends Enum {2484 readonly isUnknown: boolean;2485 readonly isOverLimit: boolean;2486 readonly type: 'Unknown' | 'OverLimit';2487 }24882489 /** @name PalletUniqueError (309) */2490 export interface PalletUniqueError extends Enum {2491 readonly isCollectionDecimalPointLimitExceeded: boolean;2492 readonly isConfirmUnsetSponsorFail: boolean;2493 readonly isEmptyArgument: boolean;2494 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2495 }24962497 /** @name UpDataStructsCollection (310) */2498 export interface UpDataStructsCollection extends Struct {2499 readonly owner: AccountId32;2500 readonly mode: UpDataStructsCollectionMode;2501 readonly access: UpDataStructsAccessMode;2502 readonly name: Vec<u16>;2503 readonly description: Vec<u16>;2504 readonly tokenPrefix: Bytes;2505 readonly mintMode: bool;2506 readonly schemaVersion: UpDataStructsSchemaVersion;2507 readonly sponsorship: UpDataStructsSponsorshipState;2508 readonly limits: UpDataStructsCollectionLimits;2509 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2510 }25112512 /** @name UpDataStructsSponsorshipState (311) */2513 export interface UpDataStructsSponsorshipState extends Enum {2514 readonly isDisabled: boolean;2515 readonly isUnconfirmed: boolean;2516 readonly asUnconfirmed: AccountId32;2517 readonly isConfirmed: boolean;2518 readonly asConfirmed: AccountId32;2519 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2520 }25212522 /** @name UpDataStructsProperties (312) */2523 export interface UpDataStructsProperties extends Struct {2524 readonly map: BTreeMap<Bytes, Bytes>;2525 readonly consumedSpace: u32;2526 readonly spaceLimit: u32;2527 }25282529 /** @name UpDataStructsCollectionField (322) */2530 export interface UpDataStructsCollectionField extends Enum {2531 readonly isVariableOnChainSchema: boolean;2532 readonly isConstOnChainSchema: boolean;2533 readonly isOffchainSchema: boolean;2534 readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';2535 }25362537 /** @name UpDataStructsCollectionStats (325) */2538 export interface UpDataStructsCollectionStats extends Struct {2539 readonly created: u32;2540 readonly destroyed: u32;2541 readonly alive: u32;2542 }25432544 /** @name PhantomTypeUpDataStructsTokenData (326) */2545 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}25462547 /** @name UpDataStructsTokenData (327) */2548 export interface UpDataStructsTokenData extends Struct {2549 readonly constData: Bytes;2550 readonly properties: Vec<UpDataStructsProperty>;2551 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2552 }25532554 /** @name PhantomTypeUpDataStructsRpcCollection (330) */2555 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}25562557 /** @name UpDataStructsRpcCollection (331) */2558 export interface UpDataStructsRpcCollection extends Struct {2559 readonly owner: AccountId32;2560 readonly mode: UpDataStructsCollectionMode;2561 readonly access: UpDataStructsAccessMode;2562 readonly name: Vec<u16>;2563 readonly description: Vec<u16>;2564 readonly tokenPrefix: Bytes;2565 readonly mintMode: bool;2566 readonly offchainSchema: Bytes;2567 readonly schemaVersion: UpDataStructsSchemaVersion;2568 readonly sponsorship: UpDataStructsSponsorshipState;2569 readonly limits: UpDataStructsCollectionLimits;2570 readonly variableOnChainSchema: Bytes;2571 readonly constOnChainSchema: Bytes;2572 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2573 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2574 readonly properties: Vec<UpDataStructsProperty>;2575 }25762577 /** @name PalletCommonError (333) */2578 export interface PalletCommonError extends Enum {2579 readonly isCollectionNotFound: boolean;2580 readonly isMustBeTokenOwner: boolean;2581 readonly isNoPermission: boolean;2582 readonly isPublicMintingNotAllowed: boolean;2583 readonly isAddressNotInAllowlist: boolean;2584 readonly isCollectionNameLimitExceeded: boolean;2585 readonly isCollectionDescriptionLimitExceeded: boolean;2586 readonly isCollectionTokenPrefixLimitExceeded: boolean;2587 readonly isTotalCollectionsLimitExceeded: boolean;2588 readonly isTokenVariableDataLimitExceeded: boolean;2589 readonly isCollectionAdminCountExceeded: boolean;2590 readonly isCollectionLimitBoundsExceeded: boolean;2591 readonly isOwnerPermissionsCantBeReverted: boolean;2592 readonly isTransferNotAllowed: boolean;2593 readonly isAccountTokenLimitExceeded: boolean;2594 readonly isCollectionTokenLimitExceeded: boolean;2595 readonly isMetadataFlagFrozen: boolean;2596 readonly isTokenNotFound: boolean;2597 readonly isTokenValueTooLow: boolean;2598 readonly isApprovedValueTooLow: boolean;2599 readonly isCantApproveMoreThanOwned: boolean;2600 readonly isAddressIsZero: boolean;2601 readonly isUnsupportedOperation: boolean;2602 readonly isNotSufficientFounds: boolean;2603 readonly isNestingIsDisabled: boolean;2604 readonly isOnlyOwnerAllowedToNest: boolean;2605 readonly isSourceCollectionIsNotAllowedToNest: boolean;2606 readonly isCollectionFieldSizeExceeded: boolean;2607 readonly isNoSpaceForProperty: boolean;2608 readonly isPropertyLimitReached: boolean;2609 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached';2610 }26112612 /** @name PalletFungibleError (335) */2613 export interface PalletFungibleError extends Enum {2614 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2615 readonly isFungibleItemsHaveNoId: boolean;2616 readonly isFungibleItemsDontHaveData: boolean;2617 readonly isFungibleDisallowsNesting: boolean;2618 readonly isSettingPropertiesNotAllowed: boolean;2619 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2620 }26212622 /** @name PalletRefungibleItemData (336) */2623 export interface PalletRefungibleItemData extends Struct {2624 readonly constData: Bytes;2625 readonly variableData: Bytes;2626 }26272628 /** @name PalletRefungibleError (340) */2629 export interface PalletRefungibleError extends Enum {2630 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2631 readonly isWrongRefungiblePieces: boolean;2632 readonly isRefungibleDisallowsNesting: boolean;2633 readonly isSettingPropertiesNotAllowed: boolean;2634 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2635 }26362637 /** @name PalletNonfungibleItemData (341) */2638 export interface PalletNonfungibleItemData extends Struct {2639 readonly constData: Bytes;2640 readonly variableData: Bytes;2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2642 }26432644 /** @name PalletNonfungibleError (342) */2645 export interface PalletNonfungibleError extends Enum {2646 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2647 readonly isNonfungibleItemsHaveNoAmount: boolean;2648 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2649 }26502651 /** @name PalletStructureError (343) */2652 export interface PalletStructureError extends Enum {2653 readonly isOuroborosDetected: boolean;2654 readonly isDepthLimit: boolean;2655 readonly isTokenNotFound: boolean;2656 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2657 }26582659 /** @name PalletEvmError (345) */2660 export interface PalletEvmError extends Enum {2661 readonly isBalanceLow: boolean;2662 readonly isFeeOverflow: boolean;2663 readonly isPaymentOverflow: boolean;2664 readonly isWithdrawFailed: boolean;2665 readonly isGasPriceTooLow: boolean;2666 readonly isInvalidNonce: boolean;2667 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2668 }26692670 /** @name FpRpcTransactionStatus (348) */2671 export interface FpRpcTransactionStatus extends Struct {2672 readonly transactionHash: H256;2673 readonly transactionIndex: u32;2674 readonly from: H160;2675 readonly to: Option<H160>;2676 readonly contractAddress: Option<H160>;2677 readonly logs: Vec<EthereumLog>;2678 readonly logsBloom: EthbloomBloom;2679 }26802681 /** @name EthbloomBloom (351) */2682 export interface EthbloomBloom extends U8aFixed {}26832684 /** @name EthereumReceiptReceiptV3 (353) */2685 export interface EthereumReceiptReceiptV3 extends Enum {2686 readonly isLegacy: boolean;2687 readonly asLegacy: EthereumReceiptEip658ReceiptData;2688 readonly isEip2930: boolean;2689 readonly asEip2930: EthereumReceiptEip658ReceiptData;2690 readonly isEip1559: boolean;2691 readonly asEip1559: EthereumReceiptEip658ReceiptData;2692 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2693 }26942695 /** @name EthereumReceiptEip658ReceiptData (354) */2696 export interface EthereumReceiptEip658ReceiptData extends Struct {2697 readonly statusCode: u8;2698 readonly usedGas: U256;2699 readonly logsBloom: EthbloomBloom;2700 readonly logs: Vec<EthereumLog>;2701 }27022703 /** @name EthereumBlock (355) */2704 export interface EthereumBlock extends Struct {2705 readonly header: EthereumHeader;2706 readonly transactions: Vec<EthereumTransactionTransactionV2>;2707 readonly ommers: Vec<EthereumHeader>;2708 }27092710 /** @name EthereumHeader (356) */2711 export interface EthereumHeader extends Struct {2712 readonly parentHash: H256;2713 readonly ommersHash: H256;2714 readonly beneficiary: H160;2715 readonly stateRoot: H256;2716 readonly transactionsRoot: H256;2717 readonly receiptsRoot: H256;2718 readonly logsBloom: EthbloomBloom;2719 readonly difficulty: U256;2720 readonly number: U256;2721 readonly gasLimit: U256;2722 readonly gasUsed: U256;2723 readonly timestamp: u64;2724 readonly extraData: Bytes;2725 readonly mixHash: H256;2726 readonly nonce: EthereumTypesHashH64;2727 }27282729 /** @name EthereumTypesHashH64 (357) */2730 export interface EthereumTypesHashH64 extends U8aFixed {}27312732 /** @name PalletEthereumError (362) */2733 export interface PalletEthereumError extends Enum {2734 readonly isInvalidSignature: boolean;2735 readonly isPreLogExists: boolean;2736 readonly type: 'InvalidSignature' | 'PreLogExists';2737 }27382739 /** @name PalletEvmCoderSubstrateError (363) */2740 export interface PalletEvmCoderSubstrateError extends Enum {2741 readonly isOutOfGas: boolean;2742 readonly isOutOfFund: boolean;2743 readonly type: 'OutOfGas' | 'OutOfFund';2744 }27452746 /** @name PalletEvmContractHelpersSponsoringModeT (364) */2747 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2748 readonly isDisabled: boolean;2749 readonly isAllowlisted: boolean;2750 readonly isGenerous: boolean;2751 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2752 }27532754 /** @name PalletEvmContractHelpersError (366) */2755 export interface PalletEvmContractHelpersError extends Enum {2756 readonly isNoPermission: boolean;2757 readonly type: 'NoPermission';2758 }27592760 /** @name PalletEvmMigrationError (367) */2761 export interface PalletEvmMigrationError extends Enum {2762 readonly isAccountNotEmpty: boolean;2763 readonly isAccountIsNotMigrating: boolean;2764 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2765 }27662767 /** @name SpRuntimeMultiSignature (369) */2768 export interface SpRuntimeMultiSignature extends Enum {2769 readonly isEd25519: boolean;2770 readonly asEd25519: SpCoreEd25519Signature;2771 readonly isSr25519: boolean;2772 readonly asSr25519: SpCoreSr25519Signature;2773 readonly isEcdsa: boolean;2774 readonly asEcdsa: SpCoreEcdsaSignature;2775 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2776 }27772778 /** @name SpCoreEd25519Signature (370) */2779 export interface SpCoreEd25519Signature extends U8aFixed {}27802781 /** @name SpCoreSr25519Signature (372) */2782 export interface SpCoreSr25519Signature extends U8aFixed {}27832784 /** @name SpCoreEcdsaSignature (373) */2785 export interface SpCoreEcdsaSignature extends U8aFixed {}27862787 /** @name FrameSystemExtensionsCheckSpecVersion (376) */2788 export type FrameSystemExtensionsCheckSpecVersion = Null;27892790 /** @name FrameSystemExtensionsCheckGenesis (377) */2791 export type FrameSystemExtensionsCheckGenesis = Null;27922793 /** @name FrameSystemExtensionsCheckNonce (380) */2794 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}27952796 /** @name FrameSystemExtensionsCheckWeight (381) */2797 export type FrameSystemExtensionsCheckWeight = Null;27982799 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (382) */2800 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}28012802 /** @name OpalRuntimeRuntime (383) */2803 export type OpalRuntimeRuntime = Null;28042805} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';910 /** @name PolkadotPrimitivesV2PersistedValidationData (2) */11 export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;16 }1718 /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {20 readonly isPresent: boolean;21 readonly type: 'Present';22 }2324 /** @name SpTrieStorageProof (10) */25 export interface SpTrieStorageProof extends Struct {26 readonly trieNodes: BTreeSet<Bytes>;27 }2829 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */30 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {31 readonly dmqMqcHead: H256;32 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;33 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;34 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;35 }3637 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */38 export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {39 readonly maxCapacity: u32;40 readonly maxTotalSize: u32;41 readonly maxMessageSize: u32;42 readonly msgCount: u32;43 readonly totalSize: u32;44 readonly mqcHead: Option<H256>;45 }4647 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */48 export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {49 readonly maxCodeSize: u32;50 readonly maxHeadDataSize: u32;51 readonly maxUpwardQueueCount: u32;52 readonly maxUpwardQueueSize: u32;53 readonly maxUpwardMessageSize: u32;54 readonly maxUpwardMessageNumPerCandidate: u32;55 readonly hrmpMaxMessageNumPerCandidate: u32;56 readonly validationUpgradeCooldown: u32;57 readonly validationUpgradeDelay: u32;58 }5960 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (26) */61 export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {62 readonly recipient: u32;63 readonly data: Bytes;64 }6566 /** @name CumulusPalletParachainSystemCall (28) */67 export interface CumulusPalletParachainSystemCall extends Enum {68 readonly isSetValidationData: boolean;69 readonly asSetValidationData: {70 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;71 } & Struct;72 readonly isSudoSendUpwardMessage: boolean;73 readonly asSudoSendUpwardMessage: {74 readonly message: Bytes;75 } & Struct;76 readonly isAuthorizeUpgrade: boolean;77 readonly asAuthorizeUpgrade: {78 readonly codeHash: H256;79 } & Struct;80 readonly isEnactAuthorizedUpgrade: boolean;81 readonly asEnactAuthorizedUpgrade: {82 readonly code: Bytes;83 } & Struct;84 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';85 }8687 /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */88 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {89 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;90 readonly relayChainState: SpTrieStorageProof;91 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;92 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;93 }9495 /** @name PolkadotCorePrimitivesInboundDownwardMessage (31) */96 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {97 readonly sentAt: u32;98 readonly msg: Bytes;99 }100101 /** @name PolkadotCorePrimitivesInboundHrmpMessage (34) */102 export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {103 readonly sentAt: u32;104 readonly data: Bytes;105 }106107 /** @name CumulusPalletParachainSystemEvent (37) */108 export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: u32;112 readonly isValidationFunctionDiscarded: boolean;113 readonly isUpgradeAuthorized: boolean;114 readonly asUpgradeAuthorized: H256;115 readonly isDownwardMessagesReceived: boolean;116 readonly asDownwardMessagesReceived: u32;117 readonly isDownwardMessagesProcessed: boolean;118 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;119 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';120 }121122 /** @name CumulusPalletParachainSystemError (38) */123 export interface CumulusPalletParachainSystemError extends Enum {124 readonly isOverlappingUpgrades: boolean;125 readonly isProhibitedByPolkadot: boolean;126 readonly isTooBig: boolean;127 readonly isValidationDataNotAvailable: boolean;128 readonly isHostConfigurationNotAvailable: boolean;129 readonly isNotScheduled: boolean;130 readonly isNothingAuthorized: boolean;131 readonly isUnauthorized: boolean;132 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';133 }134135 /** @name PalletBalancesAccountData (41) */136 export interface PalletBalancesAccountData extends Struct {137 readonly free: u128;138 readonly reserved: u128;139 readonly miscFrozen: u128;140 readonly feeFrozen: u128;141 }142143 /** @name PalletBalancesBalanceLock (43) */144 export interface PalletBalancesBalanceLock extends Struct {145 readonly id: U8aFixed;146 readonly amount: u128;147 readonly reasons: PalletBalancesReasons;148 }149150 /** @name PalletBalancesReasons (45) */151 export interface PalletBalancesReasons extends Enum {152 readonly isFee: boolean;153 readonly isMisc: boolean;154 readonly isAll: boolean;155 readonly type: 'Fee' | 'Misc' | 'All';156 }157158 /** @name PalletBalancesReserveData (48) */159 export interface PalletBalancesReserveData extends Struct {160 readonly id: U8aFixed;161 readonly amount: u128;162 }163164 /** @name PalletBalancesReleases (50) */165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';169 }170171 /** @name PalletBalancesCall (51) */172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;174 readonly asTransfer: {175 readonly dest: MultiAddress;176 readonly value: Compact<u128>;177 } & Struct;178 readonly isSetBalance: boolean;179 readonly asSetBalance: {180 readonly who: MultiAddress;181 readonly newFree: Compact<u128>;182 readonly newReserved: Compact<u128>;183 } & Struct;184 readonly isForceTransfer: boolean;185 readonly asForceTransfer: {186 readonly source: MultiAddress;187 readonly dest: MultiAddress;188 readonly value: Compact<u128>;189 } & Struct;190 readonly isTransferKeepAlive: boolean;191 readonly asTransferKeepAlive: {192 readonly dest: MultiAddress;193 readonly value: Compact<u128>;194 } & Struct;195 readonly isTransferAll: boolean;196 readonly asTransferAll: {197 readonly dest: MultiAddress;198 readonly keepAlive: bool;199 } & Struct;200 readonly isForceUnreserve: boolean;201 readonly asForceUnreserve: {202 readonly who: MultiAddress;203 readonly amount: u128;204 } & Struct;205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }207208 /** @name PalletBalancesEvent (57) */209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;211 readonly asEndowed: {212 readonly account: AccountId32;213 readonly freeBalance: u128;214 } & Struct;215 readonly isDustLost: boolean;216 readonly asDustLost: {217 readonly account: AccountId32;218 readonly amount: u128;219 } & Struct;220 readonly isTransfer: boolean;221 readonly asTransfer: {222 readonly from: AccountId32;223 readonly to: AccountId32;224 readonly amount: u128;225 } & Struct;226 readonly isBalanceSet: boolean;227 readonly asBalanceSet: {228 readonly who: AccountId32;229 readonly free: u128;230 readonly reserved: u128;231 } & Struct;232 readonly isReserved: boolean;233 readonly asReserved: {234 readonly who: AccountId32;235 readonly amount: u128;236 } & Struct;237 readonly isUnreserved: boolean;238 readonly asUnreserved: {239 readonly who: AccountId32;240 readonly amount: u128;241 } & Struct;242 readonly isReserveRepatriated: boolean;243 readonly asReserveRepatriated: {244 readonly from: AccountId32;245 readonly to: AccountId32;246 readonly amount: u128;247 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;248 } & Struct;249 readonly isDeposit: boolean;250 readonly asDeposit: {251 readonly who: AccountId32;252 readonly amount: u128;253 } & Struct;254 readonly isWithdraw: boolean;255 readonly asWithdraw: {256 readonly who: AccountId32;257 readonly amount: u128;258 } & Struct;259 readonly isSlashed: boolean;260 readonly asSlashed: {261 readonly who: AccountId32;262 readonly amount: u128;263 } & Struct;264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }266267 /** @name FrameSupportTokensMiscBalanceStatus (58) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';272 }273274 /** @name PalletBalancesError (59) */275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;278 readonly isInsufficientBalance: boolean;279 readonly isExistentialDeposit: boolean;280 readonly isKeepAlive: boolean;281 readonly isExistingVestingSchedule: boolean;282 readonly isDeadAccount: boolean;283 readonly isTooManyReserves: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }286287 /** @name PalletTimestampCall (62) */288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;290 readonly asSet: {291 readonly now: Compact<u64>;292 } & Struct;293 readonly type: 'Set';294 }295296 /** @name PalletTransactionPaymentReleases (65) */297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';301 }302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;307 readonly negative: bool;308 readonly degree: u8;309 }310311 /** @name PalletTreasuryProposal (69) */312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;314 readonly value: u128;315 readonly beneficiary: AccountId32;316 readonly bond: u128;317 }318319 /** @name PalletTreasuryCall (72) */320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {323 readonly value: Compact<u128>;324 readonly beneficiary: MultiAddress;325 } & Struct;326 readonly isRejectProposal: boolean;327 readonly asRejectProposal: {328 readonly proposalId: Compact<u32>;329 } & Struct;330 readonly isApproveProposal: boolean;331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;333 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }336337 /** @name PalletTreasuryEvent (74) */338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;340 readonly asProposed: {341 readonly proposalIndex: u32;342 } & Struct;343 readonly isSpending: boolean;344 readonly asSpending: {345 readonly budgetRemaining: u128;346 } & Struct;347 readonly isAwarded: boolean;348 readonly asAwarded: {349 readonly proposalIndex: u32;350 readonly award: u128;351 readonly account: AccountId32;352 } & Struct;353 readonly isRejected: boolean;354 readonly asRejected: {355 readonly proposalIndex: u32;356 readonly slashed: u128;357 } & Struct;358 readonly isBurnt: boolean;359 readonly asBurnt: {360 readonly burntFunds: u128;361 } & Struct;362 readonly isRollover: boolean;363 readonly asRollover: {364 readonly rolloverBalance: u128;365 } & Struct;366 readonly isDeposit: boolean;367 readonly asDeposit: {368 readonly value: u128;369 } & Struct;370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }372373 /** @name FrameSupportPalletId (77) */374 export interface FrameSupportPalletId extends U8aFixed {}375376 /** @name PalletTreasuryError (78) */377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }383384 /** @name PalletSudoCall (79) */385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;387 readonly asSudo: {388 readonly call: Call;389 } & Struct;390 readonly isSudoUncheckedWeight: boolean;391 readonly asSudoUncheckedWeight: {392 readonly call: Call;393 readonly weight: u64;394 } & Struct;395 readonly isSetKey: boolean;396 readonly asSetKey: {397 readonly new_: MultiAddress;398 } & Struct;399 readonly isSudoAs: boolean;400 readonly asSudoAs: {401 readonly who: MultiAddress;402 readonly call: Call;403 } & Struct;404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }406407 /** @name FrameSystemCall (81) */408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;410 readonly asFillBlock: {411 readonly ratio: Perbill;412 } & Struct;413 readonly isRemark: boolean;414 readonly asRemark: {415 readonly remark: Bytes;416 } & Struct;417 readonly isSetHeapPages: boolean;418 readonly asSetHeapPages: {419 readonly pages: u64;420 } & Struct;421 readonly isSetCode: boolean;422 readonly asSetCode: {423 readonly code: Bytes;424 } & Struct;425 readonly isSetCodeWithoutChecks: boolean;426 readonly asSetCodeWithoutChecks: {427 readonly code: Bytes;428 } & Struct;429 readonly isSetStorage: boolean;430 readonly asSetStorage: {431 readonly items: Vec<ITuple<[Bytes, Bytes]>>;432 } & Struct;433 readonly isKillStorage: boolean;434 readonly asKillStorage: {435 readonly keys_: Vec<Bytes>;436 } & Struct;437 readonly isKillPrefix: boolean;438 readonly asKillPrefix: {439 readonly prefix: Bytes;440 readonly subkeys: u32;441 } & Struct;442 readonly isRemarkWithEvent: boolean;443 readonly asRemarkWithEvent: {444 readonly remark: Bytes;445 } & Struct;446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }448449 /** @name OrmlVestingModuleCall (84) */450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;453 readonly asVestedTransfer: {454 readonly dest: MultiAddress;455 readonly schedule: OrmlVestingVestingSchedule;456 } & Struct;457 readonly isUpdateVestingSchedules: boolean;458 readonly asUpdateVestingSchedules: {459 readonly who: MultiAddress;460 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;461 } & Struct;462 readonly isClaimFor: boolean;463 readonly asClaimFor: {464 readonly dest: MultiAddress;465 } & Struct;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }468469 /** @name OrmlVestingVestingSchedule (85) */470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;472 readonly period: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;475 }476477 /** @name CumulusPalletXcmpQueueCall (87) */478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {481 readonly index: u64;482 readonly weightLimit: u64;483 } & Struct;484 readonly isSuspendXcmExecution: boolean;485 readonly isResumeXcmExecution: boolean;486 readonly isUpdateSuspendThreshold: boolean;487 readonly asUpdateSuspendThreshold: {488 readonly new_: u32;489 } & Struct;490 readonly isUpdateDropThreshold: boolean;491 readonly asUpdateDropThreshold: {492 readonly new_: u32;493 } & Struct;494 readonly isUpdateResumeThreshold: boolean;495 readonly asUpdateResumeThreshold: {496 readonly new_: u32;497 } & Struct;498 readonly isUpdateThresholdWeight: boolean;499 readonly asUpdateThresholdWeight: {500 readonly new_: u64;501 } & Struct;502 readonly isUpdateWeightRestrictDecay: boolean;503 readonly asUpdateWeightRestrictDecay: {504 readonly new_: u64;505 } & Struct;506 readonly isUpdateXcmpMaxIndividualWeight: boolean;507 readonly asUpdateXcmpMaxIndividualWeight: {508 readonly new_: u64;509 } & Struct;510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';511 }512513 /** @name PalletXcmCall (88) */514 export interface PalletXcmCall extends Enum {515 readonly isSend: boolean;516 readonly asSend: {517 readonly dest: XcmVersionedMultiLocation;518 readonly message: XcmVersionedXcm;519 } & Struct;520 readonly isTeleportAssets: boolean;521 readonly asTeleportAssets: {522 readonly dest: XcmVersionedMultiLocation;523 readonly beneficiary: XcmVersionedMultiLocation;524 readonly assets: XcmVersionedMultiAssets;525 readonly feeAssetItem: u32;526 } & Struct;527 readonly isReserveTransferAssets: boolean;528 readonly asReserveTransferAssets: {529 readonly dest: XcmVersionedMultiLocation;530 readonly beneficiary: XcmVersionedMultiLocation;531 readonly assets: XcmVersionedMultiAssets;532 readonly feeAssetItem: u32;533 } & Struct;534 readonly isExecute: boolean;535 readonly asExecute: {536 readonly message: XcmVersionedXcm;537 readonly maxWeight: u64;538 } & Struct;539 readonly isForceXcmVersion: boolean;540 readonly asForceXcmVersion: {541 readonly location: XcmV1MultiLocation;542 readonly xcmVersion: u32;543 } & Struct;544 readonly isForceDefaultXcmVersion: boolean;545 readonly asForceDefaultXcmVersion: {546 readonly maybeXcmVersion: Option<u32>;547 } & Struct;548 readonly isForceSubscribeVersionNotify: boolean;549 readonly asForceSubscribeVersionNotify: {550 readonly location: XcmVersionedMultiLocation;551 } & Struct;552 readonly isForceUnsubscribeVersionNotify: boolean;553 readonly asForceUnsubscribeVersionNotify: {554 readonly location: XcmVersionedMultiLocation;555 } & Struct;556 readonly isLimitedReserveTransferAssets: boolean;557 readonly asLimitedReserveTransferAssets: {558 readonly dest: XcmVersionedMultiLocation;559 readonly beneficiary: XcmVersionedMultiLocation;560 readonly assets: XcmVersionedMultiAssets;561 readonly feeAssetItem: u32;562 readonly weightLimit: XcmV2WeightLimit;563 } & Struct;564 readonly isLimitedTeleportAssets: boolean;565 readonly asLimitedTeleportAssets: {566 readonly dest: XcmVersionedMultiLocation;567 readonly beneficiary: XcmVersionedMultiLocation;568 readonly assets: XcmVersionedMultiAssets;569 readonly feeAssetItem: u32;570 readonly weightLimit: XcmV2WeightLimit;571 } & Struct;572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';573 }574575 /** @name XcmVersionedMultiLocation (89) */576 export interface XcmVersionedMultiLocation extends Enum {577 readonly isV0: boolean;578 readonly asV0: XcmV0MultiLocation;579 readonly isV1: boolean;580 readonly asV1: XcmV1MultiLocation;581 readonly type: 'V0' | 'V1';582 }583584 /** @name XcmV0MultiLocation (90) */585 export interface XcmV0MultiLocation extends Enum {586 readonly isNull: boolean;587 readonly isX1: boolean;588 readonly asX1: XcmV0Junction;589 readonly isX2: boolean;590 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;591 readonly isX3: boolean;592 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;593 readonly isX4: boolean;594 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;595 readonly isX5: boolean;596 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;597 readonly isX6: boolean;598 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;599 readonly isX7: boolean;600 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;601 readonly isX8: boolean;602 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';604 }605606 /** @name XcmV0Junction (91) */607 export interface XcmV0Junction extends Enum {608 readonly isParent: boolean;609 readonly isParachain: boolean;610 readonly asParachain: Compact<u32>;611 readonly isAccountId32: boolean;612 readonly asAccountId32: {613 readonly network: XcmV0JunctionNetworkId;614 readonly id: U8aFixed;615 } & Struct;616 readonly isAccountIndex64: boolean;617 readonly asAccountIndex64: {618 readonly network: XcmV0JunctionNetworkId;619 readonly index: Compact<u64>;620 } & Struct;621 readonly isAccountKey20: boolean;622 readonly asAccountKey20: {623 readonly network: XcmV0JunctionNetworkId;624 readonly key: U8aFixed;625 } & Struct;626 readonly isPalletInstance: boolean;627 readonly asPalletInstance: u8;628 readonly isGeneralIndex: boolean;629 readonly asGeneralIndex: Compact<u128>;630 readonly isGeneralKey: boolean;631 readonly asGeneralKey: Bytes;632 readonly isOnlyChild: boolean;633 readonly isPlurality: boolean;634 readonly asPlurality: {635 readonly id: XcmV0JunctionBodyId;636 readonly part: XcmV0JunctionBodyPart;637 } & Struct;638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';639 }640641 /** @name XcmV0JunctionNetworkId (92) */642 export interface XcmV0JunctionNetworkId extends Enum {643 readonly isAny: boolean;644 readonly isNamed: boolean;645 readonly asNamed: Bytes;646 readonly isPolkadot: boolean;647 readonly isKusama: boolean;648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';649 }650651 /** @name XcmV0JunctionBodyId (93) */652 export interface XcmV0JunctionBodyId extends Enum {653 readonly isUnit: boolean;654 readonly isNamed: boolean;655 readonly asNamed: Bytes;656 readonly isIndex: boolean;657 readonly asIndex: Compact<u32>;658 readonly isExecutive: boolean;659 readonly isTechnical: boolean;660 readonly isLegislative: boolean;661 readonly isJudicial: boolean;662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';663 }664665 /** @name XcmV0JunctionBodyPart (94) */666 export interface XcmV0JunctionBodyPart extends Enum {667 readonly isVoice: boolean;668 readonly isMembers: boolean;669 readonly asMembers: {670 readonly count: Compact<u32>;671 } & Struct;672 readonly isFraction: boolean;673 readonly asFraction: {674 readonly nom: Compact<u32>;675 readonly denom: Compact<u32>;676 } & Struct;677 readonly isAtLeastProportion: boolean;678 readonly asAtLeastProportion: {679 readonly nom: Compact<u32>;680 readonly denom: Compact<u32>;681 } & Struct;682 readonly isMoreThanProportion: boolean;683 readonly asMoreThanProportion: {684 readonly nom: Compact<u32>;685 readonly denom: Compact<u32>;686 } & Struct;687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';688 }689690 /** @name XcmV1MultiLocation (95) */691 export interface XcmV1MultiLocation extends Struct {692 readonly parents: u8;693 readonly interior: XcmV1MultilocationJunctions;694 }695696 /** @name XcmV1MultilocationJunctions (96) */697 export interface XcmV1MultilocationJunctions extends Enum {698 readonly isHere: boolean;699 readonly isX1: boolean;700 readonly asX1: XcmV1Junction;701 readonly isX2: boolean;702 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;703 readonly isX3: boolean;704 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;705 readonly isX4: boolean;706 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;707 readonly isX5: boolean;708 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;709 readonly isX6: boolean;710 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;711 readonly isX7: boolean;712 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;713 readonly isX8: boolean;714 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';716 }717718 /** @name XcmV1Junction (97) */719 export interface XcmV1Junction extends Enum {720 readonly isParachain: boolean;721 readonly asParachain: Compact<u32>;722 readonly isAccountId32: boolean;723 readonly asAccountId32: {724 readonly network: XcmV0JunctionNetworkId;725 readonly id: U8aFixed;726 } & Struct;727 readonly isAccountIndex64: boolean;728 readonly asAccountIndex64: {729 readonly network: XcmV0JunctionNetworkId;730 readonly index: Compact<u64>;731 } & Struct;732 readonly isAccountKey20: boolean;733 readonly asAccountKey20: {734 readonly network: XcmV0JunctionNetworkId;735 readonly key: U8aFixed;736 } & Struct;737 readonly isPalletInstance: boolean;738 readonly asPalletInstance: u8;739 readonly isGeneralIndex: boolean;740 readonly asGeneralIndex: Compact<u128>;741 readonly isGeneralKey: boolean;742 readonly asGeneralKey: Bytes;743 readonly isOnlyChild: boolean;744 readonly isPlurality: boolean;745 readonly asPlurality: {746 readonly id: XcmV0JunctionBodyId;747 readonly part: XcmV0JunctionBodyPart;748 } & Struct;749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';750 }751752 /** @name XcmVersionedXcm (98) */753 export interface XcmVersionedXcm extends Enum {754 readonly isV0: boolean;755 readonly asV0: XcmV0Xcm;756 readonly isV1: boolean;757 readonly asV1: XcmV1Xcm;758 readonly isV2: boolean;759 readonly asV2: XcmV2Xcm;760 readonly type: 'V0' | 'V1' | 'V2';761 }762763 /** @name XcmV0Xcm (99) */764 export interface XcmV0Xcm extends Enum {765 readonly isWithdrawAsset: boolean;766 readonly asWithdrawAsset: {767 readonly assets: Vec<XcmV0MultiAsset>;768 readonly effects: Vec<XcmV0Order>;769 } & Struct;770 readonly isReserveAssetDeposit: boolean;771 readonly asReserveAssetDeposit: {772 readonly assets: Vec<XcmV0MultiAsset>;773 readonly effects: Vec<XcmV0Order>;774 } & Struct;775 readonly isTeleportAsset: boolean;776 readonly asTeleportAsset: {777 readonly assets: Vec<XcmV0MultiAsset>;778 readonly effects: Vec<XcmV0Order>;779 } & Struct;780 readonly isQueryResponse: boolean;781 readonly asQueryResponse: {782 readonly queryId: Compact<u64>;783 readonly response: XcmV0Response;784 } & Struct;785 readonly isTransferAsset: boolean;786 readonly asTransferAsset: {787 readonly assets: Vec<XcmV0MultiAsset>;788 readonly dest: XcmV0MultiLocation;789 } & Struct;790 readonly isTransferReserveAsset: boolean;791 readonly asTransferReserveAsset: {792 readonly assets: Vec<XcmV0MultiAsset>;793 readonly dest: XcmV0MultiLocation;794 readonly effects: Vec<XcmV0Order>;795 } & Struct;796 readonly isTransact: boolean;797 readonly asTransact: {798 readonly originType: XcmV0OriginKind;799 readonly requireWeightAtMost: u64;800 readonly call: XcmDoubleEncoded;801 } & Struct;802 readonly isHrmpNewChannelOpenRequest: boolean;803 readonly asHrmpNewChannelOpenRequest: {804 readonly sender: Compact<u32>;805 readonly maxMessageSize: Compact<u32>;806 readonly maxCapacity: Compact<u32>;807 } & Struct;808 readonly isHrmpChannelAccepted: boolean;809 readonly asHrmpChannelAccepted: {810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isHrmpChannelClosing: boolean;813 readonly asHrmpChannelClosing: {814 readonly initiator: Compact<u32>;815 readonly sender: Compact<u32>;816 readonly recipient: Compact<u32>;817 } & Struct;818 readonly isRelayedFrom: boolean;819 readonly asRelayedFrom: {820 readonly who: XcmV0MultiLocation;821 readonly message: XcmV0Xcm;822 } & Struct;823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';824 }825826 /** @name XcmV0MultiAsset (101) */827 export interface XcmV0MultiAsset extends Enum {828 readonly isNone: boolean;829 readonly isAll: boolean;830 readonly isAllFungible: boolean;831 readonly isAllNonFungible: boolean;832 readonly isAllAbstractFungible: boolean;833 readonly asAllAbstractFungible: {834 readonly id: Bytes;835 } & Struct;836 readonly isAllAbstractNonFungible: boolean;837 readonly asAllAbstractNonFungible: {838 readonly class: Bytes;839 } & Struct;840 readonly isAllConcreteFungible: boolean;841 readonly asAllConcreteFungible: {842 readonly id: XcmV0MultiLocation;843 } & Struct;844 readonly isAllConcreteNonFungible: boolean;845 readonly asAllConcreteNonFungible: {846 readonly class: XcmV0MultiLocation;847 } & Struct;848 readonly isAbstractFungible: boolean;849 readonly asAbstractFungible: {850 readonly id: Bytes;851 readonly amount: Compact<u128>;852 } & Struct;853 readonly isAbstractNonFungible: boolean;854 readonly asAbstractNonFungible: {855 readonly class: Bytes;856 readonly instance: XcmV1MultiassetAssetInstance;857 } & Struct;858 readonly isConcreteFungible: boolean;859 readonly asConcreteFungible: {860 readonly id: XcmV0MultiLocation;861 readonly amount: Compact<u128>;862 } & Struct;863 readonly isConcreteNonFungible: boolean;864 readonly asConcreteNonFungible: {865 readonly class: XcmV0MultiLocation;866 readonly instance: XcmV1MultiassetAssetInstance;867 } & Struct;868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';869 }870871 /** @name XcmV1MultiassetAssetInstance (102) */872 export interface XcmV1MultiassetAssetInstance extends Enum {873 readonly isUndefined: boolean;874 readonly isIndex: boolean;875 readonly asIndex: Compact<u128>;876 readonly isArray4: boolean;877 readonly asArray4: U8aFixed;878 readonly isArray8: boolean;879 readonly asArray8: U8aFixed;880 readonly isArray16: boolean;881 readonly asArray16: U8aFixed;882 readonly isArray32: boolean;883 readonly asArray32: U8aFixed;884 readonly isBlob: boolean;885 readonly asBlob: Bytes;886 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';887 }888889 /** @name XcmV0Order (106) */890 export interface XcmV0Order extends Enum {891 readonly isNull: boolean;892 readonly isDepositAsset: boolean;893 readonly asDepositAsset: {894 readonly assets: Vec<XcmV0MultiAsset>;895 readonly dest: XcmV0MultiLocation;896 } & Struct;897 readonly isDepositReserveAsset: boolean;898 readonly asDepositReserveAsset: {899 readonly assets: Vec<XcmV0MultiAsset>;900 readonly dest: XcmV0MultiLocation;901 readonly effects: Vec<XcmV0Order>;902 } & Struct;903 readonly isExchangeAsset: boolean;904 readonly asExchangeAsset: {905 readonly give: Vec<XcmV0MultiAsset>;906 readonly receive: Vec<XcmV0MultiAsset>;907 } & Struct;908 readonly isInitiateReserveWithdraw: boolean;909 readonly asInitiateReserveWithdraw: {910 readonly assets: Vec<XcmV0MultiAsset>;911 readonly reserve: XcmV0MultiLocation;912 readonly effects: Vec<XcmV0Order>;913 } & Struct;914 readonly isInitiateTeleport: boolean;915 readonly asInitiateTeleport: {916 readonly assets: Vec<XcmV0MultiAsset>;917 readonly dest: XcmV0MultiLocation;918 readonly effects: Vec<XcmV0Order>;919 } & Struct;920 readonly isQueryHolding: boolean;921 readonly asQueryHolding: {922 readonly queryId: Compact<u64>;923 readonly dest: XcmV0MultiLocation;924 readonly assets: Vec<XcmV0MultiAsset>;925 } & Struct;926 readonly isBuyExecution: boolean;927 readonly asBuyExecution: {928 readonly fees: XcmV0MultiAsset;929 readonly weight: u64;930 readonly debt: u64;931 readonly haltOnError: bool;932 readonly xcm: Vec<XcmV0Xcm>;933 } & Struct;934 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';935 }936937 /** @name XcmV0Response (108) */938 export interface XcmV0Response extends Enum {939 readonly isAssets: boolean;940 readonly asAssets: Vec<XcmV0MultiAsset>;941 readonly type: 'Assets';942 }943944 /** @name XcmV0OriginKind (109) */945 export interface XcmV0OriginKind extends Enum {946 readonly isNative: boolean;947 readonly isSovereignAccount: boolean;948 readonly isSuperuser: boolean;949 readonly isXcm: boolean;950 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';951 }952953 /** @name XcmDoubleEncoded (110) */954 export interface XcmDoubleEncoded extends Struct {955 readonly encoded: Bytes;956 }957958 /** @name XcmV1Xcm (111) */959 export interface XcmV1Xcm extends Enum {960 readonly isWithdrawAsset: boolean;961 readonly asWithdrawAsset: {962 readonly assets: XcmV1MultiassetMultiAssets;963 readonly effects: Vec<XcmV1Order>;964 } & Struct;965 readonly isReserveAssetDeposited: boolean;966 readonly asReserveAssetDeposited: {967 readonly assets: XcmV1MultiassetMultiAssets;968 readonly effects: Vec<XcmV1Order>;969 } & Struct;970 readonly isReceiveTeleportedAsset: boolean;971 readonly asReceiveTeleportedAsset: {972 readonly assets: XcmV1MultiassetMultiAssets;973 readonly effects: Vec<XcmV1Order>;974 } & Struct;975 readonly isQueryResponse: boolean;976 readonly asQueryResponse: {977 readonly queryId: Compact<u64>;978 readonly response: XcmV1Response;979 } & Struct;980 readonly isTransferAsset: boolean;981 readonly asTransferAsset: {982 readonly assets: XcmV1MultiassetMultiAssets;983 readonly beneficiary: XcmV1MultiLocation;984 } & Struct;985 readonly isTransferReserveAsset: boolean;986 readonly asTransferReserveAsset: {987 readonly assets: XcmV1MultiassetMultiAssets;988 readonly dest: XcmV1MultiLocation;989 readonly effects: Vec<XcmV1Order>;990 } & Struct;991 readonly isTransact: boolean;992 readonly asTransact: {993 readonly originType: XcmV0OriginKind;994 readonly requireWeightAtMost: u64;995 readonly call: XcmDoubleEncoded;996 } & Struct;997 readonly isHrmpNewChannelOpenRequest: boolean;998 readonly asHrmpNewChannelOpenRequest: {999 readonly sender: Compact<u32>;1000 readonly maxMessageSize: Compact<u32>;1001 readonly maxCapacity: Compact<u32>;1002 } & Struct;1003 readonly isHrmpChannelAccepted: boolean;1004 readonly asHrmpChannelAccepted: {1005 readonly recipient: Compact<u32>;1006 } & Struct;1007 readonly isHrmpChannelClosing: boolean;1008 readonly asHrmpChannelClosing: {1009 readonly initiator: Compact<u32>;1010 readonly sender: Compact<u32>;1011 readonly recipient: Compact<u32>;1012 } & Struct;1013 readonly isRelayedFrom: boolean;1014 readonly asRelayedFrom: {1015 readonly who: XcmV1MultilocationJunctions;1016 readonly message: XcmV1Xcm;1017 } & Struct;1018 readonly isSubscribeVersion: boolean;1019 readonly asSubscribeVersion: {1020 readonly queryId: Compact<u64>;1021 readonly maxResponseWeight: Compact<u64>;1022 } & Struct;1023 readonly isUnsubscribeVersion: boolean;1024 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1025 }10261027 /** @name XcmV1MultiassetMultiAssets (112) */1028 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10291030 /** @name XcmV1MultiAsset (114) */1031 export interface XcmV1MultiAsset extends Struct {1032 readonly id: XcmV1MultiassetAssetId;1033 readonly fun: XcmV1MultiassetFungibility;1034 }10351036 /** @name XcmV1MultiassetAssetId (115) */1037 export interface XcmV1MultiassetAssetId extends Enum {1038 readonly isConcrete: boolean;1039 readonly asConcrete: XcmV1MultiLocation;1040 readonly isAbstract: boolean;1041 readonly asAbstract: Bytes;1042 readonly type: 'Concrete' | 'Abstract';1043 }10441045 /** @name XcmV1MultiassetFungibility (116) */1046 export interface XcmV1MultiassetFungibility extends Enum {1047 readonly isFungible: boolean;1048 readonly asFungible: Compact<u128>;1049 readonly isNonFungible: boolean;1050 readonly asNonFungible: XcmV1MultiassetAssetInstance;1051 readonly type: 'Fungible' | 'NonFungible';1052 }10531054 /** @name XcmV1Order (118) */1055 export interface XcmV1Order extends Enum {1056 readonly isNoop: boolean;1057 readonly isDepositAsset: boolean;1058 readonly asDepositAsset: {1059 readonly assets: XcmV1MultiassetMultiAssetFilter;1060 readonly maxAssets: u32;1061 readonly beneficiary: XcmV1MultiLocation;1062 } & Struct;1063 readonly isDepositReserveAsset: boolean;1064 readonly asDepositReserveAsset: {1065 readonly assets: XcmV1MultiassetMultiAssetFilter;1066 readonly maxAssets: u32;1067 readonly dest: XcmV1MultiLocation;1068 readonly effects: Vec<XcmV1Order>;1069 } & Struct;1070 readonly isExchangeAsset: boolean;1071 readonly asExchangeAsset: {1072 readonly give: XcmV1MultiassetMultiAssetFilter;1073 readonly receive: XcmV1MultiassetMultiAssets;1074 } & Struct;1075 readonly isInitiateReserveWithdraw: boolean;1076 readonly asInitiateReserveWithdraw: {1077 readonly assets: XcmV1MultiassetMultiAssetFilter;1078 readonly reserve: XcmV1MultiLocation;1079 readonly effects: Vec<XcmV1Order>;1080 } & Struct;1081 readonly isInitiateTeleport: boolean;1082 readonly asInitiateTeleport: {1083 readonly assets: XcmV1MultiassetMultiAssetFilter;1084 readonly dest: XcmV1MultiLocation;1085 readonly effects: Vec<XcmV1Order>;1086 } & Struct;1087 readonly isQueryHolding: boolean;1088 readonly asQueryHolding: {1089 readonly queryId: Compact<u64>;1090 readonly dest: XcmV1MultiLocation;1091 readonly assets: XcmV1MultiassetMultiAssetFilter;1092 } & Struct;1093 readonly isBuyExecution: boolean;1094 readonly asBuyExecution: {1095 readonly fees: XcmV1MultiAsset;1096 readonly weight: u64;1097 readonly debt: u64;1098 readonly haltOnError: bool;1099 readonly instructions: Vec<XcmV1Xcm>;1100 } & Struct;1101 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1102 }11031104 /** @name XcmV1MultiassetMultiAssetFilter (119) */1105 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1106 readonly isDefinite: boolean;1107 readonly asDefinite: XcmV1MultiassetMultiAssets;1108 readonly isWild: boolean;1109 readonly asWild: XcmV1MultiassetWildMultiAsset;1110 readonly type: 'Definite' | 'Wild';1111 }11121113 /** @name XcmV1MultiassetWildMultiAsset (120) */1114 export interface XcmV1MultiassetWildMultiAsset extends Enum {1115 readonly isAll: boolean;1116 readonly isAllOf: boolean;1117 readonly asAllOf: {1118 readonly id: XcmV1MultiassetAssetId;1119 readonly fun: XcmV1MultiassetWildFungibility;1120 } & Struct;1121 readonly type: 'All' | 'AllOf';1122 }11231124 /** @name XcmV1MultiassetWildFungibility (121) */1125 export interface XcmV1MultiassetWildFungibility extends Enum {1126 readonly isFungible: boolean;1127 readonly isNonFungible: boolean;1128 readonly type: 'Fungible' | 'NonFungible';1129 }11301131 /** @name XcmV1Response (123) */1132 export interface XcmV1Response extends Enum {1133 readonly isAssets: boolean;1134 readonly asAssets: XcmV1MultiassetMultiAssets;1135 readonly isVersion: boolean;1136 readonly asVersion: u32;1137 readonly type: 'Assets' | 'Version';1138 }11391140 /** @name XcmV2Xcm (124) */1141 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11421143 /** @name XcmV2Instruction (126) */1144 export interface XcmV2Instruction extends Enum {1145 readonly isWithdrawAsset: boolean;1146 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1147 readonly isReserveAssetDeposited: boolean;1148 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1149 readonly isReceiveTeleportedAsset: boolean;1150 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1151 readonly isQueryResponse: boolean;1152 readonly asQueryResponse: {1153 readonly queryId: Compact<u64>;1154 readonly response: XcmV2Response;1155 readonly maxWeight: Compact<u64>;1156 } & Struct;1157 readonly isTransferAsset: boolean;1158 readonly asTransferAsset: {1159 readonly assets: XcmV1MultiassetMultiAssets;1160 readonly beneficiary: XcmV1MultiLocation;1161 } & Struct;1162 readonly isTransferReserveAsset: boolean;1163 readonly asTransferReserveAsset: {1164 readonly assets: XcmV1MultiassetMultiAssets;1165 readonly dest: XcmV1MultiLocation;1166 readonly xcm: XcmV2Xcm;1167 } & Struct;1168 readonly isTransact: boolean;1169 readonly asTransact: {1170 readonly originType: XcmV0OriginKind;1171 readonly requireWeightAtMost: Compact<u64>;1172 readonly call: XcmDoubleEncoded;1173 } & Struct;1174 readonly isHrmpNewChannelOpenRequest: boolean;1175 readonly asHrmpNewChannelOpenRequest: {1176 readonly sender: Compact<u32>;1177 readonly maxMessageSize: Compact<u32>;1178 readonly maxCapacity: Compact<u32>;1179 } & Struct;1180 readonly isHrmpChannelAccepted: boolean;1181 readonly asHrmpChannelAccepted: {1182 readonly recipient: Compact<u32>;1183 } & Struct;1184 readonly isHrmpChannelClosing: boolean;1185 readonly asHrmpChannelClosing: {1186 readonly initiator: Compact<u32>;1187 readonly sender: Compact<u32>;1188 readonly recipient: Compact<u32>;1189 } & Struct;1190 readonly isClearOrigin: boolean;1191 readonly isDescendOrigin: boolean;1192 readonly asDescendOrigin: XcmV1MultilocationJunctions;1193 readonly isReportError: boolean;1194 readonly asReportError: {1195 readonly queryId: Compact<u64>;1196 readonly dest: XcmV1MultiLocation;1197 readonly maxResponseWeight: Compact<u64>;1198 } & Struct;1199 readonly isDepositAsset: boolean;1200 readonly asDepositAsset: {1201 readonly assets: XcmV1MultiassetMultiAssetFilter;1202 readonly maxAssets: Compact<u32>;1203 readonly beneficiary: XcmV1MultiLocation;1204 } & Struct;1205 readonly isDepositReserveAsset: boolean;1206 readonly asDepositReserveAsset: {1207 readonly assets: XcmV1MultiassetMultiAssetFilter;1208 readonly maxAssets: Compact<u32>;1209 readonly dest: XcmV1MultiLocation;1210 readonly xcm: XcmV2Xcm;1211 } & Struct;1212 readonly isExchangeAsset: boolean;1213 readonly asExchangeAsset: {1214 readonly give: XcmV1MultiassetMultiAssetFilter;1215 readonly receive: XcmV1MultiassetMultiAssets;1216 } & Struct;1217 readonly isInitiateReserveWithdraw: boolean;1218 readonly asInitiateReserveWithdraw: {1219 readonly assets: XcmV1MultiassetMultiAssetFilter;1220 readonly reserve: XcmV1MultiLocation;1221 readonly xcm: XcmV2Xcm;1222 } & Struct;1223 readonly isInitiateTeleport: boolean;1224 readonly asInitiateTeleport: {1225 readonly assets: XcmV1MultiassetMultiAssetFilter;1226 readonly dest: XcmV1MultiLocation;1227 readonly xcm: XcmV2Xcm;1228 } & Struct;1229 readonly isQueryHolding: boolean;1230 readonly asQueryHolding: {1231 readonly queryId: Compact<u64>;1232 readonly dest: XcmV1MultiLocation;1233 readonly assets: XcmV1MultiassetMultiAssetFilter;1234 readonly maxResponseWeight: Compact<u64>;1235 } & Struct;1236 readonly isBuyExecution: boolean;1237 readonly asBuyExecution: {1238 readonly fees: XcmV1MultiAsset;1239 readonly weightLimit: XcmV2WeightLimit;1240 } & Struct;1241 readonly isRefundSurplus: boolean;1242 readonly isSetErrorHandler: boolean;1243 readonly asSetErrorHandler: XcmV2Xcm;1244 readonly isSetAppendix: boolean;1245 readonly asSetAppendix: XcmV2Xcm;1246 readonly isClearError: boolean;1247 readonly isClaimAsset: boolean;1248 readonly asClaimAsset: {1249 readonly assets: XcmV1MultiassetMultiAssets;1250 readonly ticket: XcmV1MultiLocation;1251 } & Struct;1252 readonly isTrap: boolean;1253 readonly asTrap: Compact<u64>;1254 readonly isSubscribeVersion: boolean;1255 readonly asSubscribeVersion: {1256 readonly queryId: Compact<u64>;1257 readonly maxResponseWeight: Compact<u64>;1258 } & Struct;1259 readonly isUnsubscribeVersion: boolean;1260 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';1261 }12621263 /** @name XcmV2Response (127) */1264 export interface XcmV2Response extends Enum {1265 readonly isNull: boolean;1266 readonly isAssets: boolean;1267 readonly asAssets: XcmV1MultiassetMultiAssets;1268 readonly isExecutionResult: boolean;1269 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1270 readonly isVersion: boolean;1271 readonly asVersion: u32;1272 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1273 }12741275 /** @name XcmV2TraitsError (130) */1276 export interface XcmV2TraitsError extends Enum {1277 readonly isOverflow: boolean;1278 readonly isUnimplemented: boolean;1279 readonly isUntrustedReserveLocation: boolean;1280 readonly isUntrustedTeleportLocation: boolean;1281 readonly isMultiLocationFull: boolean;1282 readonly isMultiLocationNotInvertible: boolean;1283 readonly isBadOrigin: boolean;1284 readonly isInvalidLocation: boolean;1285 readonly isAssetNotFound: boolean;1286 readonly isFailedToTransactAsset: boolean;1287 readonly isNotWithdrawable: boolean;1288 readonly isLocationCannotHold: boolean;1289 readonly isExceedsMaxMessageSize: boolean;1290 readonly isDestinationUnsupported: boolean;1291 readonly isTransport: boolean;1292 readonly isUnroutable: boolean;1293 readonly isUnknownClaim: boolean;1294 readonly isFailedToDecode: boolean;1295 readonly isMaxWeightInvalid: boolean;1296 readonly isNotHoldingFees: boolean;1297 readonly isTooExpensive: boolean;1298 readonly isTrap: boolean;1299 readonly asTrap: u64;1300 readonly isUnhandledXcmVersion: boolean;1301 readonly isWeightLimitReached: boolean;1302 readonly asWeightLimitReached: u64;1303 readonly isBarrier: boolean;1304 readonly isWeightNotComputable: boolean;1305 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';1306 }13071308 /** @name XcmV2WeightLimit (131) */1309 export interface XcmV2WeightLimit extends Enum {1310 readonly isUnlimited: boolean;1311 readonly isLimited: boolean;1312 readonly asLimited: Compact<u64>;1313 readonly type: 'Unlimited' | 'Limited';1314 }13151316 /** @name XcmVersionedMultiAssets (132) */1317 export interface XcmVersionedMultiAssets extends Enum {1318 readonly isV0: boolean;1319 readonly asV0: Vec<XcmV0MultiAsset>;1320 readonly isV1: boolean;1321 readonly asV1: XcmV1MultiassetMultiAssets;1322 readonly type: 'V0' | 'V1';1323 }13241325 /** @name CumulusPalletXcmCall (147) */1326 export type CumulusPalletXcmCall = Null;13271328 /** @name CumulusPalletDmpQueueCall (148) */1329 export interface CumulusPalletDmpQueueCall extends Enum {1330 readonly isServiceOverweight: boolean;1331 readonly asServiceOverweight: {1332 readonly index: u64;1333 readonly weightLimit: u64;1334 } & Struct;1335 readonly type: 'ServiceOverweight';1336 }13371338 /** @name PalletInflationCall (149) */1339 export interface PalletInflationCall extends Enum {1340 readonly isStartInflation: boolean;1341 readonly asStartInflation: {1342 readonly inflationStartRelayBlock: u32;1343 } & Struct;1344 readonly type: 'StartInflation';1345 }13461347 /** @name PalletUniqueCall (150) */1348 export interface PalletUniqueCall extends Enum {1349 readonly isCreateCollection: boolean;1350 readonly asCreateCollection: {1351 readonly collectionName: Vec<u16>;1352 readonly collectionDescription: Vec<u16>;1353 readonly tokenPrefix: Bytes;1354 readonly mode: UpDataStructsCollectionMode;1355 } & Struct;1356 readonly isCreateCollectionEx: boolean;1357 readonly asCreateCollectionEx: {1358 readonly data: UpDataStructsCreateCollectionData;1359 } & Struct;1360 readonly isDestroyCollection: boolean;1361 readonly asDestroyCollection: {1362 readonly collectionId: u32;1363 } & Struct;1364 readonly isAddToAllowList: boolean;1365 readonly asAddToAllowList: {1366 readonly collectionId: u32;1367 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1368 } & Struct;1369 readonly isRemoveFromAllowList: boolean;1370 readonly asRemoveFromAllowList: {1371 readonly collectionId: u32;1372 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1373 } & Struct;1374 readonly isSetPublicAccessMode: boolean;1375 readonly asSetPublicAccessMode: {1376 readonly collectionId: u32;1377 readonly mode: UpDataStructsAccessMode;1378 } & Struct;1379 readonly isSetMintPermission: boolean;1380 readonly asSetMintPermission: {1381 readonly collectionId: u32;1382 readonly mintPermission: bool;1383 } & Struct;1384 readonly isChangeCollectionOwner: boolean;1385 readonly asChangeCollectionOwner: {1386 readonly collectionId: u32;1387 readonly newOwner: AccountId32;1388 } & Struct;1389 readonly isAddCollectionAdmin: boolean;1390 readonly asAddCollectionAdmin: {1391 readonly collectionId: u32;1392 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1393 } & Struct;1394 readonly isRemoveCollectionAdmin: boolean;1395 readonly asRemoveCollectionAdmin: {1396 readonly collectionId: u32;1397 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1398 } & Struct;1399 readonly isSetCollectionSponsor: boolean;1400 readonly asSetCollectionSponsor: {1401 readonly collectionId: u32;1402 readonly newSponsor: AccountId32;1403 } & Struct;1404 readonly isConfirmSponsorship: boolean;1405 readonly asConfirmSponsorship: {1406 readonly collectionId: u32;1407 } & Struct;1408 readonly isRemoveCollectionSponsor: boolean;1409 readonly asRemoveCollectionSponsor: {1410 readonly collectionId: u32;1411 } & Struct;1412 readonly isCreateItem: boolean;1413 readonly asCreateItem: {1414 readonly collectionId: u32;1415 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1416 readonly data: UpDataStructsCreateItemData;1417 } & Struct;1418 readonly isCreateMultipleItems: boolean;1419 readonly asCreateMultipleItems: {1420 readonly collectionId: u32;1421 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1422 readonly itemsData: Vec<UpDataStructsCreateItemData>;1423 } & Struct;1424 readonly isSetCollectionProperties: boolean;1425 readonly asSetCollectionProperties: {1426 readonly collectionId: u32;1427 readonly properties: Vec<UpDataStructsProperty>;1428 } & Struct;1429 readonly isDeleteCollectionProperties: boolean;1430 readonly asDeleteCollectionProperties: {1431 readonly collectionId: u32;1432 readonly propertyKeys: Vec<Bytes>;1433 } & Struct;1434 readonly isSetTokenProperties: boolean;1435 readonly asSetTokenProperties: {1436 readonly collectionId: u32;1437 readonly tokenId: u32;1438 readonly properties: Vec<UpDataStructsProperty>;1439 } & Struct;1440 readonly isDeleteTokenProperties: boolean;1441 readonly asDeleteTokenProperties: {1442 readonly collectionId: u32;1443 readonly tokenId: u32;1444 readonly propertyKeys: Vec<Bytes>;1445 } & Struct;1446 readonly isSetPropertyPermissions: boolean;1447 readonly asSetPropertyPermissions: {1448 readonly collectionId: u32;1449 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1450 } & Struct;1451 readonly isCreateMultipleItemsEx: boolean;1452 readonly asCreateMultipleItemsEx: {1453 readonly collectionId: u32;1454 readonly data: UpDataStructsCreateItemExData;1455 } & Struct;1456 readonly isSetTransfersEnabledFlag: boolean;1457 readonly asSetTransfersEnabledFlag: {1458 readonly collectionId: u32;1459 readonly value: bool;1460 } & Struct;1461 readonly isBurnItem: boolean;1462 readonly asBurnItem: {1463 readonly collectionId: u32;1464 readonly itemId: u32;1465 readonly value: u128;1466 } & Struct;1467 readonly isBurnFrom: boolean;1468 readonly asBurnFrom: {1469 readonly collectionId: u32;1470 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1471 readonly itemId: u32;1472 readonly value: u128;1473 } & Struct;1474 readonly isTransfer: boolean;1475 readonly asTransfer: {1476 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1477 readonly collectionId: u32;1478 readonly itemId: u32;1479 readonly value: u128;1480 } & Struct;1481 readonly isApprove: boolean;1482 readonly asApprove: {1483 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1484 readonly collectionId: u32;1485 readonly itemId: u32;1486 readonly amount: u128;1487 } & Struct;1488 readonly isTransferFrom: boolean;1489 readonly asTransferFrom: {1490 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1491 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1492 readonly collectionId: u32;1493 readonly itemId: u32;1494 readonly value: u128;1495 } & Struct;1496 readonly isSetVariableMetaData: boolean;1497 readonly asSetVariableMetaData: {1498 readonly collectionId: u32;1499 readonly itemId: u32;1500 readonly data: Bytes;1501 } & Struct;1502 readonly isSetMetaUpdatePermissionFlag: boolean;1503 readonly asSetMetaUpdatePermissionFlag: {1504 readonly collectionId: u32;1505 readonly value: UpDataStructsMetaUpdatePermission;1506 } & Struct;1507 readonly isSetSchemaVersion: boolean;1508 readonly asSetSchemaVersion: {1509 readonly collectionId: u32;1510 readonly version: UpDataStructsSchemaVersion;1511 } & Struct;1512 readonly isSetOffchainSchema: boolean;1513 readonly asSetOffchainSchema: {1514 readonly collectionId: u32;1515 readonly schema: Bytes;1516 } & Struct;1517 readonly isSetConstOnChainSchema: boolean;1518 readonly asSetConstOnChainSchema: {1519 readonly collectionId: u32;1520 readonly schema: Bytes;1521 } & Struct;1522 readonly isSetCollectionLimits: boolean;1523 readonly asSetCollectionLimits: {1524 readonly collectionId: u32;1525 readonly newLimit: UpDataStructsCollectionLimits;1526 } & Struct;1527 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';1528 }15291530 /** @name UpDataStructsCollectionMode (156) */1531 export interface UpDataStructsCollectionMode extends Enum {1532 readonly isNft: boolean;1533 readonly isFungible: boolean;1534 readonly asFungible: u8;1535 readonly isReFungible: boolean;1536 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1537 }15381539 /** @name UpDataStructsCreateCollectionData (157) */1540 export interface UpDataStructsCreateCollectionData extends Struct {1541 readonly mode: UpDataStructsCollectionMode;1542 readonly access: Option<UpDataStructsAccessMode>;1543 readonly name: Vec<u16>;1544 readonly description: Vec<u16>;1545 readonly tokenPrefix: Bytes;1546 readonly offchainSchema: Bytes;1547 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1548 readonly pendingSponsor: Option<AccountId32>;1549 readonly limits: Option<UpDataStructsCollectionLimits>;1550 readonly constOnChainSchema: Bytes;1551 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1552 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1553 readonly properties: Vec<UpDataStructsProperty>;1554 }15551556 /** @name UpDataStructsAccessMode (159) */1557 export interface UpDataStructsAccessMode extends Enum {1558 readonly isNormal: boolean;1559 readonly isAllowList: boolean;1560 readonly type: 'Normal' | 'AllowList';1561 }15621563 /** @name UpDataStructsSchemaVersion (162) */1564 export interface UpDataStructsSchemaVersion extends Enum {1565 readonly isImageURL: boolean;1566 readonly isUnique: boolean;1567 readonly type: 'ImageURL' | 'Unique';1568 }15691570 /** @name UpDataStructsCollectionLimits (165) */1571 export interface UpDataStructsCollectionLimits extends Struct {1572 readonly accountTokenOwnershipLimit: Option<u32>;1573 readonly sponsoredDataSize: Option<u32>;1574 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1575 readonly tokenLimit: Option<u32>;1576 readonly sponsorTransferTimeout: Option<u32>;1577 readonly sponsorApproveTimeout: Option<u32>;1578 readonly ownerCanTransfer: Option<bool>;1579 readonly ownerCanDestroy: Option<bool>;1580 readonly transfersEnabled: Option<bool>;1581 readonly nestingRule: Option<UpDataStructsNestingRule>;1582 }15831584 /** @name UpDataStructsSponsoringRateLimit (167) */1585 export interface UpDataStructsSponsoringRateLimit extends Enum {1586 readonly isSponsoringDisabled: boolean;1587 readonly isBlocks: boolean;1588 readonly asBlocks: u32;1589 readonly type: 'SponsoringDisabled' | 'Blocks';1590 }15911592 /** @name UpDataStructsNestingRule (170) */1593 export interface UpDataStructsNestingRule extends Enum {1594 readonly isDisabled: boolean;1595 readonly isOwner: boolean;1596 readonly isOwnerRestricted: boolean;1597 readonly asOwnerRestricted: BTreeSet<u32>;1598 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1599 }16001601 /** @name UpDataStructsMetaUpdatePermission (177) */1602 export interface UpDataStructsMetaUpdatePermission extends Enum {1603 readonly isItemOwner: boolean;1604 readonly isAdmin: boolean;1605 readonly isNone: boolean;1606 readonly type: 'ItemOwner' | 'Admin' | 'None';1607 }16081609 /** @name UpDataStructsPropertyKeyPermission (179) */1610 export interface UpDataStructsPropertyKeyPermission extends Struct {1611 readonly key: Bytes;1612 readonly permission: UpDataStructsPropertyPermission;1613 }16141615 /** @name UpDataStructsPropertyPermission (181) */1616 export interface UpDataStructsPropertyPermission extends Struct {1617 readonly mutable: bool;1618 readonly collectionAdmin: bool;1619 readonly tokenOwner: bool;1620 }16211622 /** @name UpDataStructsProperty (184) */1623 export interface UpDataStructsProperty extends Struct {1624 readonly key: Bytes;1625 readonly value: Bytes;1626 }16271628 /** @name PalletEvmAccountBasicCrossAccountIdRepr (186) */1629 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1630 readonly isSubstrate: boolean;1631 readonly asSubstrate: AccountId32;1632 readonly isEthereum: boolean;1633 readonly asEthereum: H160;1634 readonly type: 'Substrate' | 'Ethereum';1635 }16361637 /** @name UpDataStructsCreateItemData (188) */1638 export interface UpDataStructsCreateItemData extends Enum {1639 readonly isNft: boolean;1640 readonly asNft: UpDataStructsCreateNftData;1641 readonly isFungible: boolean;1642 readonly asFungible: UpDataStructsCreateFungibleData;1643 readonly isReFungible: boolean;1644 readonly asReFungible: UpDataStructsCreateReFungibleData;1645 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1646 }16471648 /** @name UpDataStructsCreateNftData (189) */1649 export interface UpDataStructsCreateNftData extends Struct {1650 readonly constData: Bytes;1651 readonly variableData: Bytes;1652 readonly properties: Vec<UpDataStructsProperty>;1653 }16541655 /** @name UpDataStructsCreateFungibleData (191) */1656 export interface UpDataStructsCreateFungibleData extends Struct {1657 readonly value: u128;1658 }16591660 /** @name UpDataStructsCreateReFungibleData (192) */1661 export interface UpDataStructsCreateReFungibleData extends Struct {1662 readonly constData: Bytes;1663 readonly variableData: Bytes;1664 readonly pieces: u128;1665 }16661667 /** @name UpDataStructsCreateItemExData (196) */1668 export interface UpDataStructsCreateItemExData extends Enum {1669 readonly isNft: boolean;1670 readonly asNft: Vec<UpDataStructsCreateNftExData>;1671 readonly isFungible: boolean;1672 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1673 readonly isRefungibleMultipleItems: boolean;1674 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1675 readonly isRefungibleMultipleOwners: boolean;1676 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1677 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1678 }16791680 /** @name UpDataStructsCreateNftExData (198) */1681 export interface UpDataStructsCreateNftExData extends Struct {1682 readonly constData: Bytes;1683 readonly variableData: Bytes;1684 readonly properties: Vec<UpDataStructsProperty>;1685 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1686 }16871688 /** @name UpDataStructsCreateRefungibleExData (205) */1689 export interface UpDataStructsCreateRefungibleExData extends Struct {1690 readonly constData: Bytes;1691 readonly variableData: Bytes;1692 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1693 }16941695 /** @name PalletTemplateTransactionPaymentCall (207) */1696 export type PalletTemplateTransactionPaymentCall = Null;16971698 /** @name PalletStructureCall (208) */1699 export type PalletStructureCall = Null;17001701 /** @name PalletEvmCall (209) */1702 export interface PalletEvmCall extends Enum {1703 readonly isWithdraw: boolean;1704 readonly asWithdraw: {1705 readonly address: H160;1706 readonly value: u128;1707 } & Struct;1708 readonly isCall: boolean;1709 readonly asCall: {1710 readonly source: H160;1711 readonly target: H160;1712 readonly input: Bytes;1713 readonly value: U256;1714 readonly gasLimit: u64;1715 readonly maxFeePerGas: U256;1716 readonly maxPriorityFeePerGas: Option<U256>;1717 readonly nonce: Option<U256>;1718 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1719 } & Struct;1720 readonly isCreate: boolean;1721 readonly asCreate: {1722 readonly source: H160;1723 readonly init: Bytes;1724 readonly value: U256;1725 readonly gasLimit: u64;1726 readonly maxFeePerGas: U256;1727 readonly maxPriorityFeePerGas: Option<U256>;1728 readonly nonce: Option<U256>;1729 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1730 } & Struct;1731 readonly isCreate2: boolean;1732 readonly asCreate2: {1733 readonly source: H160;1734 readonly init: Bytes;1735 readonly salt: H256;1736 readonly value: U256;1737 readonly gasLimit: u64;1738 readonly maxFeePerGas: U256;1739 readonly maxPriorityFeePerGas: Option<U256>;1740 readonly nonce: Option<U256>;1741 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1742 } & Struct;1743 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1744 }17451746 /** @name PalletEthereumCall (215) */1747 export interface PalletEthereumCall extends Enum {1748 readonly isTransact: boolean;1749 readonly asTransact: {1750 readonly transaction: EthereumTransactionTransactionV2;1751 } & Struct;1752 readonly type: 'Transact';1753 }17541755 /** @name EthereumTransactionTransactionV2 (216) */1756 export interface EthereumTransactionTransactionV2 extends Enum {1757 readonly isLegacy: boolean;1758 readonly asLegacy: EthereumTransactionLegacyTransaction;1759 readonly isEip2930: boolean;1760 readonly asEip2930: EthereumTransactionEip2930Transaction;1761 readonly isEip1559: boolean;1762 readonly asEip1559: EthereumTransactionEip1559Transaction;1763 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1764 }17651766 /** @name EthereumTransactionLegacyTransaction (217) */1767 export interface EthereumTransactionLegacyTransaction extends Struct {1768 readonly nonce: U256;1769 readonly gasPrice: U256;1770 readonly gasLimit: U256;1771 readonly action: EthereumTransactionTransactionAction;1772 readonly value: U256;1773 readonly input: Bytes;1774 readonly signature: EthereumTransactionTransactionSignature;1775 }17761777 /** @name EthereumTransactionTransactionAction (218) */1778 export interface EthereumTransactionTransactionAction extends Enum {1779 readonly isCall: boolean;1780 readonly asCall: H160;1781 readonly isCreate: boolean;1782 readonly type: 'Call' | 'Create';1783 }17841785 /** @name EthereumTransactionTransactionSignature (219) */1786 export interface EthereumTransactionTransactionSignature extends Struct {1787 readonly v: u64;1788 readonly r: H256;1789 readonly s: H256;1790 }17911792 /** @name EthereumTransactionEip2930Transaction (221) */1793 export interface EthereumTransactionEip2930Transaction extends Struct {1794 readonly chainId: u64;1795 readonly nonce: U256;1796 readonly gasPrice: U256;1797 readonly gasLimit: U256;1798 readonly action: EthereumTransactionTransactionAction;1799 readonly value: U256;1800 readonly input: Bytes;1801 readonly accessList: Vec<EthereumTransactionAccessListItem>;1802 readonly oddYParity: bool;1803 readonly r: H256;1804 readonly s: H256;1805 }18061807 /** @name EthereumTransactionAccessListItem (223) */1808 export interface EthereumTransactionAccessListItem extends Struct {1809 readonly address: H160;1810 readonly storageKeys: Vec<H256>;1811 }18121813 /** @name EthereumTransactionEip1559Transaction (224) */1814 export interface EthereumTransactionEip1559Transaction extends Struct {1815 readonly chainId: u64;1816 readonly nonce: U256;1817 readonly maxPriorityFeePerGas: U256;1818 readonly maxFeePerGas: U256;1819 readonly gasLimit: U256;1820 readonly action: EthereumTransactionTransactionAction;1821 readonly value: U256;1822 readonly input: Bytes;1823 readonly accessList: Vec<EthereumTransactionAccessListItem>;1824 readonly oddYParity: bool;1825 readonly r: H256;1826 readonly s: H256;1827 }18281829 /** @name PalletEvmMigrationCall (225) */1830 export interface PalletEvmMigrationCall extends Enum {1831 readonly isBegin: boolean;1832 readonly asBegin: {1833 readonly address: H160;1834 } & Struct;1835 readonly isSetData: boolean;1836 readonly asSetData: {1837 readonly address: H160;1838 readonly data: Vec<ITuple<[H256, H256]>>;1839 } & Struct;1840 readonly isFinish: boolean;1841 readonly asFinish: {1842 readonly address: H160;1843 readonly code: Bytes;1844 } & Struct;1845 readonly type: 'Begin' | 'SetData' | 'Finish';1846 }18471848 /** @name PalletSudoEvent (228) */1849 export interface PalletSudoEvent extends Enum {1850 readonly isSudid: boolean;1851 readonly asSudid: {1852 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1853 } & Struct;1854 readonly isKeyChanged: boolean;1855 readonly asKeyChanged: {1856 readonly oldSudoer: Option<AccountId32>;1857 } & Struct;1858 readonly isSudoAsDone: boolean;1859 readonly asSudoAsDone: {1860 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1861 } & Struct;1862 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1863 }18641865 /** @name SpRuntimeDispatchError (230) */1866 export interface SpRuntimeDispatchError extends Enum {1867 readonly isOther: boolean;1868 readonly isCannotLookup: boolean;1869 readonly isBadOrigin: boolean;1870 readonly isModule: boolean;1871 readonly asModule: SpRuntimeModuleError;1872 readonly isConsumerRemaining: boolean;1873 readonly isNoProviders: boolean;1874 readonly isTooManyConsumers: boolean;1875 readonly isToken: boolean;1876 readonly asToken: SpRuntimeTokenError;1877 readonly isArithmetic: boolean;1878 readonly asArithmetic: SpRuntimeArithmeticError;1879 readonly isTransactional: boolean;1880 readonly asTransactional: SpRuntimeTransactionalError;1881 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1882 }18831884 /** @name SpRuntimeModuleError (231) */1885 export interface SpRuntimeModuleError extends Struct {1886 readonly index: u8;1887 readonly error: U8aFixed;1888 }18891890 /** @name SpRuntimeTokenError (232) */1891 export interface SpRuntimeTokenError extends Enum {1892 readonly isNoFunds: boolean;1893 readonly isWouldDie: boolean;1894 readonly isBelowMinimum: boolean;1895 readonly isCannotCreate: boolean;1896 readonly isUnknownAsset: boolean;1897 readonly isFrozen: boolean;1898 readonly isUnsupported: boolean;1899 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1900 }19011902 /** @name SpRuntimeArithmeticError (233) */1903 export interface SpRuntimeArithmeticError extends Enum {1904 readonly isUnderflow: boolean;1905 readonly isOverflow: boolean;1906 readonly isDivisionByZero: boolean;1907 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1908 }19091910 /** @name SpRuntimeTransactionalError (234) */1911 export interface SpRuntimeTransactionalError extends Enum {1912 readonly isLimitReached: boolean;1913 readonly isNoLayer: boolean;1914 readonly type: 'LimitReached' | 'NoLayer';1915 }19161917 /** @name PalletSudoError (235) */1918 export interface PalletSudoError extends Enum {1919 readonly isRequireSudo: boolean;1920 readonly type: 'RequireSudo';1921 }19221923 /** @name FrameSystemAccountInfo (236) */1924 export interface FrameSystemAccountInfo extends Struct {1925 readonly nonce: u32;1926 readonly consumers: u32;1927 readonly providers: u32;1928 readonly sufficients: u32;1929 readonly data: PalletBalancesAccountData;1930 }19311932 /** @name FrameSupportWeightsPerDispatchClassU64 (237) */1933 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1934 readonly normal: u64;1935 readonly operational: u64;1936 readonly mandatory: u64;1937 }19381939 /** @name SpRuntimeDigest (238) */1940 export interface SpRuntimeDigest extends Struct {1941 readonly logs: Vec<SpRuntimeDigestDigestItem>;1942 }19431944 /** @name SpRuntimeDigestDigestItem (240) */1945 export interface SpRuntimeDigestDigestItem extends Enum {1946 readonly isOther: boolean;1947 readonly asOther: Bytes;1948 readonly isConsensus: boolean;1949 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1950 readonly isSeal: boolean;1951 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1952 readonly isPreRuntime: boolean;1953 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1954 readonly isRuntimeEnvironmentUpdated: boolean;1955 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1956 }19571958 /** @name FrameSystemEventRecord (242) */1959 export interface FrameSystemEventRecord extends Struct {1960 readonly phase: FrameSystemPhase;1961 readonly event: Event;1962 readonly topics: Vec<H256>;1963 }19641965 /** @name FrameSystemEvent (244) */1966 export interface FrameSystemEvent extends Enum {1967 readonly isExtrinsicSuccess: boolean;1968 readonly asExtrinsicSuccess: {1969 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1970 } & Struct;1971 readonly isExtrinsicFailed: boolean;1972 readonly asExtrinsicFailed: {1973 readonly dispatchError: SpRuntimeDispatchError;1974 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1975 } & Struct;1976 readonly isCodeUpdated: boolean;1977 readonly isNewAccount: boolean;1978 readonly asNewAccount: {1979 readonly account: AccountId32;1980 } & Struct;1981 readonly isKilledAccount: boolean;1982 readonly asKilledAccount: {1983 readonly account: AccountId32;1984 } & Struct;1985 readonly isRemarked: boolean;1986 readonly asRemarked: {1987 readonly sender: AccountId32;1988 readonly hash_: H256;1989 } & Struct;1990 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1991 }19921993 /** @name FrameSupportWeightsDispatchInfo (245) */1994 export interface FrameSupportWeightsDispatchInfo extends Struct {1995 readonly weight: u64;1996 readonly class: FrameSupportWeightsDispatchClass;1997 readonly paysFee: FrameSupportWeightsPays;1998 }19992000 /** @name FrameSupportWeightsDispatchClass (246) */2001 export interface FrameSupportWeightsDispatchClass extends Enum {2002 readonly isNormal: boolean;2003 readonly isOperational: boolean;2004 readonly isMandatory: boolean;2005 readonly type: 'Normal' | 'Operational' | 'Mandatory';2006 }20072008 /** @name FrameSupportWeightsPays (247) */2009 export interface FrameSupportWeightsPays extends Enum {2010 readonly isYes: boolean;2011 readonly isNo: boolean;2012 readonly type: 'Yes' | 'No';2013 }20142015 /** @name OrmlVestingModuleEvent (248) */2016 export interface OrmlVestingModuleEvent extends Enum {2017 readonly isVestingScheduleAdded: boolean;2018 readonly asVestingScheduleAdded: {2019 readonly from: AccountId32;2020 readonly to: AccountId32;2021 readonly vestingSchedule: OrmlVestingVestingSchedule;2022 } & Struct;2023 readonly isClaimed: boolean;2024 readonly asClaimed: {2025 readonly who: AccountId32;2026 readonly amount: u128;2027 } & Struct;2028 readonly isVestingSchedulesUpdated: boolean;2029 readonly asVestingSchedulesUpdated: {2030 readonly who: AccountId32;2031 } & Struct;2032 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2033 }20342035 /** @name CumulusPalletXcmpQueueEvent (249) */2036 export interface CumulusPalletXcmpQueueEvent extends Enum {2037 readonly isSuccess: boolean;2038 readonly asSuccess: Option<H256>;2039 readonly isFail: boolean;2040 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;2041 readonly isBadVersion: boolean;2042 readonly asBadVersion: Option<H256>;2043 readonly isBadFormat: boolean;2044 readonly asBadFormat: Option<H256>;2045 readonly isUpwardMessageSent: boolean;2046 readonly asUpwardMessageSent: Option<H256>;2047 readonly isXcmpMessageSent: boolean;2048 readonly asXcmpMessageSent: Option<H256>;2049 readonly isOverweightEnqueued: boolean;2050 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;2051 readonly isOverweightServiced: boolean;2052 readonly asOverweightServiced: ITuple<[u64, u64]>;2053 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2054 }20552056 /** @name PalletXcmEvent (250) */2057 export interface PalletXcmEvent extends Enum {2058 readonly isAttempted: boolean;2059 readonly asAttempted: XcmV2TraitsOutcome;2060 readonly isSent: boolean;2061 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2062 readonly isUnexpectedResponse: boolean;2063 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2064 readonly isResponseReady: boolean;2065 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2066 readonly isNotified: boolean;2067 readonly asNotified: ITuple<[u64, u8, u8]>;2068 readonly isNotifyOverweight: boolean;2069 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2070 readonly isNotifyDispatchError: boolean;2071 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2072 readonly isNotifyDecodeFailed: boolean;2073 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2074 readonly isInvalidResponder: boolean;2075 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2076 readonly isInvalidResponderVersion: boolean;2077 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2078 readonly isResponseTaken: boolean;2079 readonly asResponseTaken: u64;2080 readonly isAssetsTrapped: boolean;2081 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2082 readonly isVersionChangeNotified: boolean;2083 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2084 readonly isSupportedVersionChanged: boolean;2085 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2086 readonly isNotifyTargetSendFail: boolean;2087 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2088 readonly isNotifyTargetMigrationFail: boolean;2089 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2090 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2091 }20922093 /** @name XcmV2TraitsOutcome (251) */2094 export interface XcmV2TraitsOutcome extends Enum {2095 readonly isComplete: boolean;2096 readonly asComplete: u64;2097 readonly isIncomplete: boolean;2098 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2099 readonly isError: boolean;2100 readonly asError: XcmV2TraitsError;2101 readonly type: 'Complete' | 'Incomplete' | 'Error';2102 }21032104 /** @name CumulusPalletXcmEvent (253) */2105 export interface CumulusPalletXcmEvent extends Enum {2106 readonly isInvalidFormat: boolean;2107 readonly asInvalidFormat: U8aFixed;2108 readonly isUnsupportedVersion: boolean;2109 readonly asUnsupportedVersion: U8aFixed;2110 readonly isExecutedDownward: boolean;2111 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2112 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2113 }21142115 /** @name CumulusPalletDmpQueueEvent (254) */2116 export interface CumulusPalletDmpQueueEvent extends Enum {2117 readonly isInvalidFormat: boolean;2118 readonly asInvalidFormat: U8aFixed;2119 readonly isUnsupportedVersion: boolean;2120 readonly asUnsupportedVersion: U8aFixed;2121 readonly isExecutedDownward: boolean;2122 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2123 readonly isWeightExhausted: boolean;2124 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;2125 readonly isOverweightEnqueued: boolean;2126 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2127 readonly isOverweightServiced: boolean;2128 readonly asOverweightServiced: ITuple<[u64, u64]>;2129 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2130 }21312132 /** @name PalletUniqueRawEvent (255) */2133 export interface PalletUniqueRawEvent extends Enum {2134 readonly isCollectionSponsorRemoved: boolean;2135 readonly asCollectionSponsorRemoved: u32;2136 readonly isCollectionAdminAdded: boolean;2137 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2138 readonly isCollectionOwnedChanged: boolean;2139 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2140 readonly isCollectionSponsorSet: boolean;2141 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2142 readonly isConstOnChainSchemaSet: boolean;2143 readonly asConstOnChainSchemaSet: u32;2144 readonly isSponsorshipConfirmed: boolean;2145 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2146 readonly isCollectionAdminRemoved: boolean;2147 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2148 readonly isAllowListAddressRemoved: boolean;2149 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2150 readonly isAllowListAddressAdded: boolean;2151 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2152 readonly isCollectionLimitSet: boolean;2153 readonly asCollectionLimitSet: u32;2154 readonly isMintPermissionSet: boolean;2155 readonly asMintPermissionSet: u32;2156 readonly isOffchainSchemaSet: boolean;2157 readonly asOffchainSchemaSet: u32;2158 readonly isPublicAccessModeSet: boolean;2159 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2160 readonly isSchemaVersionSet: boolean;2161 readonly asSchemaVersionSet: u32;2162 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';2163 }21642165 /** @name PalletCommonEvent (256) */2166 export interface PalletCommonEvent extends Enum {2167 readonly isCollectionCreated: boolean;2168 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2169 readonly isCollectionDestroyed: boolean;2170 readonly asCollectionDestroyed: u32;2171 readonly isItemCreated: boolean;2172 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2173 readonly isItemDestroyed: boolean;2174 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2175 readonly isTransfer: boolean;2176 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2177 readonly isApproved: boolean;2178 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2179 readonly isCollectionPropertySet: boolean;2180 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;2181 readonly isCollectionPropertyDeleted: boolean;2182 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;2183 readonly isTokenPropertySet: boolean;2184 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;2185 readonly isTokenPropertyDeleted: boolean;2186 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;2187 readonly isPropertyPermissionSet: boolean;2188 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;2189 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2190 }21912192 /** @name PalletStructureEvent (257) */2193 export interface PalletStructureEvent extends Enum {2194 readonly isExecuted: boolean;2195 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2196 readonly type: 'Executed';2197 }21982199 /** @name PalletEvmEvent (258) */2200 export interface PalletEvmEvent extends Enum {2201 readonly isLog: boolean;2202 readonly asLog: EthereumLog;2203 readonly isCreated: boolean;2204 readonly asCreated: H160;2205 readonly isCreatedFailed: boolean;2206 readonly asCreatedFailed: H160;2207 readonly isExecuted: boolean;2208 readonly asExecuted: H160;2209 readonly isExecutedFailed: boolean;2210 readonly asExecutedFailed: H160;2211 readonly isBalanceDeposit: boolean;2212 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2213 readonly isBalanceWithdraw: boolean;2214 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2215 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2216 }22172218 /** @name EthereumLog (259) */2219 export interface EthereumLog extends Struct {2220 readonly address: H160;2221 readonly topics: Vec<H256>;2222 readonly data: Bytes;2223 }22242225 /** @name PalletEthereumEvent (260) */2226 export interface PalletEthereumEvent extends Enum {2227 readonly isExecuted: boolean;2228 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2229 readonly type: 'Executed';2230 }22312232 /** @name EvmCoreErrorExitReason (261) */2233 export interface EvmCoreErrorExitReason extends Enum {2234 readonly isSucceed: boolean;2235 readonly asSucceed: EvmCoreErrorExitSucceed;2236 readonly isError: boolean;2237 readonly asError: EvmCoreErrorExitError;2238 readonly isRevert: boolean;2239 readonly asRevert: EvmCoreErrorExitRevert;2240 readonly isFatal: boolean;2241 readonly asFatal: EvmCoreErrorExitFatal;2242 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2243 }22442245 /** @name EvmCoreErrorExitSucceed (262) */2246 export interface EvmCoreErrorExitSucceed extends Enum {2247 readonly isStopped: boolean;2248 readonly isReturned: boolean;2249 readonly isSuicided: boolean;2250 readonly type: 'Stopped' | 'Returned' | 'Suicided';2251 }22522253 /** @name EvmCoreErrorExitError (263) */2254 export interface EvmCoreErrorExitError extends Enum {2255 readonly isStackUnderflow: boolean;2256 readonly isStackOverflow: boolean;2257 readonly isInvalidJump: boolean;2258 readonly isInvalidRange: boolean;2259 readonly isDesignatedInvalid: boolean;2260 readonly isCallTooDeep: boolean;2261 readonly isCreateCollision: boolean;2262 readonly isCreateContractLimit: boolean;2263 readonly isOutOfOffset: boolean;2264 readonly isOutOfGas: boolean;2265 readonly isOutOfFund: boolean;2266 readonly isPcUnderflow: boolean;2267 readonly isCreateEmpty: boolean;2268 readonly isOther: boolean;2269 readonly asOther: Text;2270 readonly isInvalidCode: boolean;2271 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2272 }22732274 /** @name EvmCoreErrorExitRevert (266) */2275 export interface EvmCoreErrorExitRevert extends Enum {2276 readonly isReverted: boolean;2277 readonly type: 'Reverted';2278 }22792280 /** @name EvmCoreErrorExitFatal (267) */2281 export interface EvmCoreErrorExitFatal extends Enum {2282 readonly isNotSupported: boolean;2283 readonly isUnhandledInterrupt: boolean;2284 readonly isCallErrorAsFatal: boolean;2285 readonly asCallErrorAsFatal: EvmCoreErrorExitError;2286 readonly isOther: boolean;2287 readonly asOther: Text;2288 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2289 }22902291 /** @name FrameSystemPhase (268) */2292 export interface FrameSystemPhase extends Enum {2293 readonly isApplyExtrinsic: boolean;2294 readonly asApplyExtrinsic: u32;2295 readonly isFinalization: boolean;2296 readonly isInitialization: boolean;2297 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2298 }22992300 /** @name FrameSystemLastRuntimeUpgradeInfo (270) */2301 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2302 readonly specVersion: Compact<u32>;2303 readonly specName: Text;2304 }23052306 /** @name FrameSystemLimitsBlockWeights (271) */2307 export interface FrameSystemLimitsBlockWeights extends Struct {2308 readonly baseBlock: u64;2309 readonly maxBlock: u64;2310 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2311 }23122313 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (272) */2314 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2315 readonly normal: FrameSystemLimitsWeightsPerClass;2316 readonly operational: FrameSystemLimitsWeightsPerClass;2317 readonly mandatory: FrameSystemLimitsWeightsPerClass;2318 }23192320 /** @name FrameSystemLimitsWeightsPerClass (273) */2321 export interface FrameSystemLimitsWeightsPerClass extends Struct {2322 readonly baseExtrinsic: u64;2323 readonly maxExtrinsic: Option<u64>;2324 readonly maxTotal: Option<u64>;2325 readonly reserved: Option<u64>;2326 }23272328 /** @name FrameSystemLimitsBlockLength (275) */2329 export interface FrameSystemLimitsBlockLength extends Struct {2330 readonly max: FrameSupportWeightsPerDispatchClassU32;2331 }23322333 /** @name FrameSupportWeightsPerDispatchClassU32 (276) */2334 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2335 readonly normal: u32;2336 readonly operational: u32;2337 readonly mandatory: u32;2338 }23392340 /** @name FrameSupportWeightsRuntimeDbWeight (277) */2341 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2342 readonly read: u64;2343 readonly write: u64;2344 }23452346 /** @name SpVersionRuntimeVersion (278) */2347 export interface SpVersionRuntimeVersion extends Struct {2348 readonly specName: Text;2349 readonly implName: Text;2350 readonly authoringVersion: u32;2351 readonly specVersion: u32;2352 readonly implVersion: u32;2353 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2354 readonly transactionVersion: u32;2355 readonly stateVersion: u8;2356 }23572358 /** @name FrameSystemError (282) */2359 export interface FrameSystemError extends Enum {2360 readonly isInvalidSpecName: boolean;2361 readonly isSpecVersionNeedsToIncrease: boolean;2362 readonly isFailedToExtractRuntimeVersion: boolean;2363 readonly isNonDefaultComposite: boolean;2364 readonly isNonZeroRefCount: boolean;2365 readonly isCallFiltered: boolean;2366 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2367 }23682369 /** @name OrmlVestingModuleError (284) */2370 export interface OrmlVestingModuleError extends Enum {2371 readonly isZeroVestingPeriod: boolean;2372 readonly isZeroVestingPeriodCount: boolean;2373 readonly isInsufficientBalanceToLock: boolean;2374 readonly isTooManyVestingSchedules: boolean;2375 readonly isAmountLow: boolean;2376 readonly isMaxVestingSchedulesExceeded: boolean;2377 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2378 }23792380 /** @name CumulusPalletXcmpQueueInboundChannelDetails (286) */2381 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2382 readonly sender: u32;2383 readonly state: CumulusPalletXcmpQueueInboundState;2384 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2385 }23862387 /** @name CumulusPalletXcmpQueueInboundState (287) */2388 export interface CumulusPalletXcmpQueueInboundState extends Enum {2389 readonly isOk: boolean;2390 readonly isSuspended: boolean;2391 readonly type: 'Ok' | 'Suspended';2392 }23932394 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (290) */2395 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2396 readonly isConcatenatedVersionedXcm: boolean;2397 readonly isConcatenatedEncodedBlob: boolean;2398 readonly isSignals: boolean;2399 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2400 }24012402 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (293) */2403 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2404 readonly recipient: u32;2405 readonly state: CumulusPalletXcmpQueueOutboundState;2406 readonly signalsExist: bool;2407 readonly firstIndex: u16;2408 readonly lastIndex: u16;2409 }24102411 /** @name CumulusPalletXcmpQueueOutboundState (294) */2412 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2413 readonly isOk: boolean;2414 readonly isSuspended: boolean;2415 readonly type: 'Ok' | 'Suspended';2416 }24172418 /** @name CumulusPalletXcmpQueueQueueConfigData (296) */2419 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2420 readonly suspendThreshold: u32;2421 readonly dropThreshold: u32;2422 readonly resumeThreshold: u32;2423 readonly thresholdWeight: u64;2424 readonly weightRestrictDecay: u64;2425 readonly xcmpMaxIndividualWeight: u64;2426 }24272428 /** @name CumulusPalletXcmpQueueError (298) */2429 export interface CumulusPalletXcmpQueueError extends Enum {2430 readonly isFailedToSend: boolean;2431 readonly isBadXcmOrigin: boolean;2432 readonly isBadXcm: boolean;2433 readonly isBadOverweightIndex: boolean;2434 readonly isWeightOverLimit: boolean;2435 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2436 }24372438 /** @name PalletXcmError (299) */2439 export interface PalletXcmError extends Enum {2440 readonly isUnreachable: boolean;2441 readonly isSendFailure: boolean;2442 readonly isFiltered: boolean;2443 readonly isUnweighableMessage: boolean;2444 readonly isDestinationNotInvertible: boolean;2445 readonly isEmpty: boolean;2446 readonly isCannotReanchor: boolean;2447 readonly isTooManyAssets: boolean;2448 readonly isInvalidOrigin: boolean;2449 readonly isBadVersion: boolean;2450 readonly isBadLocation: boolean;2451 readonly isNoSubscription: boolean;2452 readonly isAlreadySubscribed: boolean;2453 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2454 }24552456 /** @name CumulusPalletXcmError (300) */2457 export type CumulusPalletXcmError = Null;24582459 /** @name CumulusPalletDmpQueueConfigData (301) */2460 export interface CumulusPalletDmpQueueConfigData extends Struct {2461 readonly maxIndividual: u64;2462 }24632464 /** @name CumulusPalletDmpQueuePageIndexData (302) */2465 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2466 readonly beginUsed: u32;2467 readonly endUsed: u32;2468 readonly overweightCount: u64;2469 }24702471 /** @name CumulusPalletDmpQueueError (305) */2472 export interface CumulusPalletDmpQueueError extends Enum {2473 readonly isUnknown: boolean;2474 readonly isOverLimit: boolean;2475 readonly type: 'Unknown' | 'OverLimit';2476 }24772478 /** @name PalletUniqueError (309) */2479 export interface PalletUniqueError extends Enum {2480 readonly isCollectionDecimalPointLimitExceeded: boolean;2481 readonly isConfirmUnsetSponsorFail: boolean;2482 readonly isEmptyArgument: boolean;2483 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2484 }24852486 /** @name UpDataStructsCollection (310) */2487 export interface UpDataStructsCollection extends Struct {2488 readonly owner: AccountId32;2489 readonly mode: UpDataStructsCollectionMode;2490 readonly access: UpDataStructsAccessMode;2491 readonly name: Vec<u16>;2492 readonly description: Vec<u16>;2493 readonly tokenPrefix: Bytes;2494 readonly mintMode: bool;2495 readonly schemaVersion: UpDataStructsSchemaVersion;2496 readonly sponsorship: UpDataStructsSponsorshipState;2497 readonly limits: UpDataStructsCollectionLimits;2498 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2499 }25002501 /** @name UpDataStructsSponsorshipState (311) */2502 export interface UpDataStructsSponsorshipState extends Enum {2503 readonly isDisabled: boolean;2504 readonly isUnconfirmed: boolean;2505 readonly asUnconfirmed: AccountId32;2506 readonly isConfirmed: boolean;2507 readonly asConfirmed: AccountId32;2508 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2509 }25102511 /** @name UpDataStructsProperties (312) */2512 export interface UpDataStructsProperties extends Struct {2513 readonly map: UpDataStructsPropertiesMapBoundedVec;2514 readonly consumedSpace: u32;2515 readonly spaceLimit: u32;2516 }25172518 /** @name UpDataStructsPropertiesMapBoundedVec (313) */2519 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}25202521 /** @name UpDataStructsPropertiesMapPropertyPermission (318) */2522 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}25232524 /** @name UpDataStructsCollectionField (324) */2525 export interface UpDataStructsCollectionField extends Enum {2526 readonly isConstOnChainSchema: boolean;2527 readonly isOffchainSchema: boolean;2528 readonly type: 'ConstOnChainSchema' | 'OffchainSchema';2529 }25302531 /** @name UpDataStructsCollectionStats (327) */2532 export interface UpDataStructsCollectionStats extends Struct {2533 readonly created: u32;2534 readonly destroyed: u32;2535 readonly alive: u32;2536 }25372538 /** @name PhantomTypeUpDataStructsTokenData (328) */2539 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}25402541 /** @name UpDataStructsTokenData (329) */2542 export interface UpDataStructsTokenData extends Struct {2543 readonly constData: Bytes;2544 readonly properties: Vec<UpDataStructsProperty>;2545 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2546 }25472548 /** @name PhantomTypeUpDataStructsRpcCollection (332) */2549 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}25502551 /** @name UpDataStructsRpcCollection (333) */2552 export interface UpDataStructsRpcCollection extends Struct {2553 readonly owner: AccountId32;2554 readonly mode: UpDataStructsCollectionMode;2555 readonly access: UpDataStructsAccessMode;2556 readonly name: Vec<u16>;2557 readonly description: Vec<u16>;2558 readonly tokenPrefix: Bytes;2559 readonly mintMode: bool;2560 readonly offchainSchema: Bytes;2561 readonly schemaVersion: UpDataStructsSchemaVersion;2562 readonly sponsorship: UpDataStructsSponsorshipState;2563 readonly limits: UpDataStructsCollectionLimits;2564 readonly constOnChainSchema: Bytes;2565 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2566 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2567 readonly properties: Vec<UpDataStructsProperty>;2568 }25692570 /** @name PalletCommonError (335) */2571 export interface PalletCommonError extends Enum {2572 readonly isCollectionNotFound: boolean;2573 readonly isMustBeTokenOwner: boolean;2574 readonly isNoPermission: boolean;2575 readonly isPublicMintingNotAllowed: boolean;2576 readonly isAddressNotInAllowlist: boolean;2577 readonly isCollectionNameLimitExceeded: boolean;2578 readonly isCollectionDescriptionLimitExceeded: boolean;2579 readonly isCollectionTokenPrefixLimitExceeded: boolean;2580 readonly isTotalCollectionsLimitExceeded: boolean;2581 readonly isTokenVariableDataLimitExceeded: boolean;2582 readonly isCollectionAdminCountExceeded: boolean;2583 readonly isCollectionLimitBoundsExceeded: boolean;2584 readonly isOwnerPermissionsCantBeReverted: boolean;2585 readonly isTransferNotAllowed: boolean;2586 readonly isAccountTokenLimitExceeded: boolean;2587 readonly isCollectionTokenLimitExceeded: boolean;2588 readonly isMetadataFlagFrozen: boolean;2589 readonly isTokenNotFound: boolean;2590 readonly isTokenValueTooLow: boolean;2591 readonly isApprovedValueTooLow: boolean;2592 readonly isCantApproveMoreThanOwned: boolean;2593 readonly isAddressIsZero: boolean;2594 readonly isUnsupportedOperation: boolean;2595 readonly isNotSufficientFounds: boolean;2596 readonly isNestingIsDisabled: boolean;2597 readonly isOnlyOwnerAllowedToNest: boolean;2598 readonly isSourceCollectionIsNotAllowedToNest: boolean;2599 readonly isCollectionFieldSizeExceeded: boolean;2600 readonly isNoSpaceForProperty: boolean;2601 readonly isPropertyLimitReached: boolean;2602 readonly isUnableToReadUnboundedKeys: boolean;2603 readonly isInvalidCharacterInPropertyKey: boolean;2604 readonly isEmptyPropertyKey: boolean;2605 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'UnableToReadUnboundedKeys' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';2606 }26072608 /** @name PalletFungibleError (337) */2609 export interface PalletFungibleError extends Enum {2610 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2611 readonly isFungibleItemsHaveNoId: boolean;2612 readonly isFungibleItemsDontHaveData: boolean;2613 readonly isFungibleDisallowsNesting: boolean;2614 readonly isSettingPropertiesNotAllowed: boolean;2615 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2616 }26172618 /** @name PalletRefungibleItemData (338) */2619 export interface PalletRefungibleItemData extends Struct {2620 readonly constData: Bytes;2621 readonly variableData: Bytes;2622 }26232624 /** @name PalletRefungibleError (342) */2625 export interface PalletRefungibleError extends Enum {2626 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2627 readonly isWrongRefungiblePieces: boolean;2628 readonly isRefungibleDisallowsNesting: boolean;2629 readonly isSettingPropertiesNotAllowed: boolean;2630 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2631 }26322633 /** @name PalletNonfungibleItemData (343) */2634 export interface PalletNonfungibleItemData extends Struct {2635 readonly constData: Bytes;2636 readonly variableData: Bytes;2637 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2638 }26392640 /** @name PalletNonfungibleError (344) */2641 export interface PalletNonfungibleError extends Enum {2642 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2643 readonly isNonfungibleItemsHaveNoAmount: boolean;2644 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2645 }26462647 /** @name PalletStructureError (345) */2648 export interface PalletStructureError extends Enum {2649 readonly isOuroborosDetected: boolean;2650 readonly isDepthLimit: boolean;2651 readonly isTokenNotFound: boolean;2652 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2653 }26542655 /** @name PalletEvmError (348) */2656 export interface PalletEvmError extends Enum {2657 readonly isBalanceLow: boolean;2658 readonly isFeeOverflow: boolean;2659 readonly isPaymentOverflow: boolean;2660 readonly isWithdrawFailed: boolean;2661 readonly isGasPriceTooLow: boolean;2662 readonly isInvalidNonce: boolean;2663 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2664 }26652666 /** @name FpRpcTransactionStatus (351) */2667 export interface FpRpcTransactionStatus extends Struct {2668 readonly transactionHash: H256;2669 readonly transactionIndex: u32;2670 readonly from: H160;2671 readonly to: Option<H160>;2672 readonly contractAddress: Option<H160>;2673 readonly logs: Vec<EthereumLog>;2674 readonly logsBloom: EthbloomBloom;2675 }26762677 /** @name EthbloomBloom (353) */2678 export interface EthbloomBloom extends U8aFixed {}26792680 /** @name EthereumReceiptReceiptV3 (355) */2681 export interface EthereumReceiptReceiptV3 extends Enum {2682 readonly isLegacy: boolean;2683 readonly asLegacy: EthereumReceiptEip658ReceiptData;2684 readonly isEip2930: boolean;2685 readonly asEip2930: EthereumReceiptEip658ReceiptData;2686 readonly isEip1559: boolean;2687 readonly asEip1559: EthereumReceiptEip658ReceiptData;2688 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2689 }26902691 /** @name EthereumReceiptEip658ReceiptData (356) */2692 export interface EthereumReceiptEip658ReceiptData extends Struct {2693 readonly statusCode: u8;2694 readonly usedGas: U256;2695 readonly logsBloom: EthbloomBloom;2696 readonly logs: Vec<EthereumLog>;2697 }26982699 /** @name EthereumBlock (357) */2700 export interface EthereumBlock extends Struct {2701 readonly header: EthereumHeader;2702 readonly transactions: Vec<EthereumTransactionTransactionV2>;2703 readonly ommers: Vec<EthereumHeader>;2704 }27052706 /** @name EthereumHeader (358) */2707 export interface EthereumHeader extends Struct {2708 readonly parentHash: H256;2709 readonly ommersHash: H256;2710 readonly beneficiary: H160;2711 readonly stateRoot: H256;2712 readonly transactionsRoot: H256;2713 readonly receiptsRoot: H256;2714 readonly logsBloom: EthbloomBloom;2715 readonly difficulty: U256;2716 readonly number: U256;2717 readonly gasLimit: U256;2718 readonly gasUsed: U256;2719 readonly timestamp: u64;2720 readonly extraData: Bytes;2721 readonly mixHash: H256;2722 readonly nonce: EthereumTypesHashH64;2723 }27242725 /** @name EthereumTypesHashH64 (359) */2726 export interface EthereumTypesHashH64 extends U8aFixed {}27272728 /** @name PalletEthereumError (364) */2729 export interface PalletEthereumError extends Enum {2730 readonly isInvalidSignature: boolean;2731 readonly isPreLogExists: boolean;2732 readonly type: 'InvalidSignature' | 'PreLogExists';2733 }27342735 /** @name PalletEvmCoderSubstrateError (365) */2736 export interface PalletEvmCoderSubstrateError extends Enum {2737 readonly isOutOfGas: boolean;2738 readonly isOutOfFund: boolean;2739 readonly type: 'OutOfGas' | 'OutOfFund';2740 }27412742 /** @name PalletEvmContractHelpersSponsoringModeT (366) */2743 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2744 readonly isDisabled: boolean;2745 readonly isAllowlisted: boolean;2746 readonly isGenerous: boolean;2747 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2748 }27492750 /** @name PalletEvmContractHelpersError (368) */2751 export interface PalletEvmContractHelpersError extends Enum {2752 readonly isNoPermission: boolean;2753 readonly type: 'NoPermission';2754 }27552756 /** @name PalletEvmMigrationError (369) */2757 export interface PalletEvmMigrationError extends Enum {2758 readonly isAccountNotEmpty: boolean;2759 readonly isAccountIsNotMigrating: boolean;2760 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2761 }27622763 /** @name SpRuntimeMultiSignature (371) */2764 export interface SpRuntimeMultiSignature extends Enum {2765 readonly isEd25519: boolean;2766 readonly asEd25519: SpCoreEd25519Signature;2767 readonly isSr25519: boolean;2768 readonly asSr25519: SpCoreSr25519Signature;2769 readonly isEcdsa: boolean;2770 readonly asEcdsa: SpCoreEcdsaSignature;2771 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2772 }27732774 /** @name SpCoreEd25519Signature (372) */2775 export interface SpCoreEd25519Signature extends U8aFixed {}27762777 /** @name SpCoreSr25519Signature (374) */2778 export interface SpCoreSr25519Signature extends U8aFixed {}27792780 /** @name SpCoreEcdsaSignature (375) */2781 export interface SpCoreEcdsaSignature extends U8aFixed {}27822783 /** @name FrameSystemExtensionsCheckSpecVersion (378) */2784 export type FrameSystemExtensionsCheckSpecVersion = Null;27852786 /** @name FrameSystemExtensionsCheckGenesis (379) */2787 export type FrameSystemExtensionsCheckGenesis = Null;27882789 /** @name FrameSystemExtensionsCheckNonce (382) */2790 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}27912792 /** @name FrameSystemExtensionsCheckWeight (383) */2793 export type FrameSystemExtensionsCheckWeight = Null;27942795 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (384) */2796 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}27972798 /** @name OpalRuntimeRuntime (385) */2799 export type OpalRuntimeRuntime = Null;28002801} // declare moduletests/src/interfaces/unique/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -446,9 +446,6 @@
/** @name FrameSupportPalletId */
export interface FrameSupportPalletId extends U8aFixed {}
-/** @name FrameSupportStorageBoundedBTreeSet */
-export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}
-
/** @name FrameSupportTokensMiscBalanceStatus */
export interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
@@ -896,7 +893,10 @@
readonly isCollectionFieldSizeExceeded: boolean;
readonly isNoSpaceForProperty: boolean;
readonly isPropertyLimitReached: boolean;
- readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached';
+ readonly isUnableToReadUnboundedKeys: boolean;
+ readonly isInvalidCharacterInPropertyKey: boolean;
+ readonly isEmptyPropertyKey: boolean;
+ readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'UnableToReadUnboundedKeys' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';
}
/** @name PalletCommonEvent */
@@ -914,15 +914,15 @@
readonly isApproved: boolean;
readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
readonly isCollectionPropertySet: boolean;
- readonly asCollectionPropertySet: ITuple<[u32, UpDataStructsProperty]>;
+ readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;
readonly isCollectionPropertyDeleted: boolean;
readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;
readonly isTokenPropertySet: boolean;
- readonly asTokenPropertySet: ITuple<[u32, u32, UpDataStructsProperty]>;
+ readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;
readonly isTokenPropertyDeleted: boolean;
readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;
readonly isPropertyPermissionSet: boolean;
- readonly asPropertyPermissionSet: ITuple<[u32, UpDataStructsPropertyKeyPermission]>;
+ readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
}
@@ -1459,17 +1459,12 @@
readonly collectionId: u32;
readonly schema: Bytes;
} & Struct;
- readonly isSetVariableOnChainSchema: boolean;
- readonly asSetVariableOnChainSchema: {
- readonly collectionId: u32;
- readonly schema: Bytes;
- } & Struct;
readonly isSetCollectionLimits: boolean;
readonly asSetCollectionLimits: {
readonly collectionId: u32;
readonly newLimit: UpDataStructsCollectionLimits;
} & Struct;
- readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';
+ readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';
}
/** @name PalletUniqueError */
@@ -1510,9 +1505,7 @@
readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;
readonly isSchemaVersionSet: boolean;
readonly asSchemaVersionSet: u32;
- readonly isVariableOnChainSchemaSet: boolean;
- readonly asVariableOnChainSchemaSet: u32;
- readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';
+ readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';
}
/** @name PalletXcmCall */
@@ -1633,10 +1626,10 @@
}
/** @name PhantomTypeUpDataStructsRpcCollection */
-export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}
+export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup333> {}
/** @name PhantomTypeUpDataStructsTokenData */
-export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}
+export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup329> {}
/** @name PolkadotCorePrimitivesInboundDownwardMessage */
export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -1833,10 +1826,9 @@
/** @name UpDataStructsCollectionField */
export interface UpDataStructsCollectionField extends Enum {
- readonly isVariableOnChainSchema: boolean;
readonly isConstOnChainSchema: boolean;
readonly isOffchainSchema: boolean;
- readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';
+ readonly type: 'ConstOnChainSchema' | 'OffchainSchema';
}
/** @name UpDataStructsCollectionLimits */
@@ -1880,7 +1872,6 @@
readonly schemaVersion: Option<UpDataStructsSchemaVersion>;
readonly pendingSponsor: Option<AccountId32>;
readonly limits: Option<UpDataStructsCollectionLimits>;
- readonly variableOnChainSchema: Bytes;
readonly constOnChainSchema: Bytes;
readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;
readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
@@ -1958,17 +1949,23 @@
readonly isDisabled: boolean;
readonly isOwner: boolean;
readonly isOwnerRestricted: boolean;
- readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;
+ readonly asOwnerRestricted: BTreeSet<u32>;
readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';
}
/** @name UpDataStructsProperties */
export interface UpDataStructsProperties extends Struct {
- readonly map: BTreeMap<Bytes, Bytes>;
+ readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
+/** @name UpDataStructsPropertiesMapBoundedVec */
+export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
+
+/** @name UpDataStructsPropertiesMapPropertyPermission */
+export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
+
/** @name UpDataStructsProperty */
export interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
@@ -2001,7 +1998,6 @@
readonly schemaVersion: UpDataStructsSchemaVersion;
readonly sponsorship: UpDataStructsSponsorshipState;
readonly limits: UpDataStructsCollectionLimits;
- readonly variableOnChainSchema: Bytes;
readonly constOnChainSchema: Bytes;
readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
tests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -1050,6 +1050,21 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
+"@eslint/eslintrc@^1.2.3":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.3.tgz#fcaa2bcef39e13d6e9e7f6271f4cc7cae1174886"
+ integrity sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==
+ dependencies:
+ ajv "^6.12.4"
+ debug "^4.3.2"
+ espree "^9.3.2"
+ globals "^13.9.0"
+ ignore "^5.2.0"
+ import-fresh "^3.2.1"
+ js-yaml "^4.1.0"
+ minimatch "^3.1.2"
+ strip-json-comments "^3.1.1"
+
"@ethereumjs/common@^2.5.0", "@ethereumjs/common@^2.6.3":
version "2.6.4"
resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.4.tgz#1b3cdd3aa4ee3b0ca366756fc35e4a03022a01cc"
@@ -1272,28 +1287,28 @@
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
-"@jest/console@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.0.2.tgz#d11e8b43ae431ae9b3112656848417ae4008fcad"
- integrity sha512-tiRpnMeeyQuuzgL5UNSeiqMwF8UOWPbAE5rzcu/1zyq4oPG2Ox6xm4YCOruwbp10F8odWc+XwVxTyGzMSLMqxA==
+"@jest/console@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.0.tgz#db78222c3d3b0c1db82f1b9de51094c2aaff2176"
+ integrity sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
chalk "^4.0.0"
- jest-message-util "^28.0.2"
- jest-util "^28.0.2"
+ jest-message-util "^28.1.0"
+ jest-util "^28.1.0"
slash "^3.0.0"
-"@jest/core@^28.0.3":
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.0.3.tgz#2b8223914ef6ae16ff740e65235ef8ef49c46d52"
- integrity sha512-cCQW06vEZ+5r50SB06pOnSWsOBs7F+lswPYnKKfBz1ncLlj1sMqmvjgam8q40KhlZ8Ut4eNAL2Hvfx4BKIO2FA==
+"@jest/core@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.0.tgz#784a1e6ce5358b46fcbdcfbbd93b1b713ed4ea80"
+ integrity sha512-/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g==
dependencies:
- "@jest/console" "^28.0.2"
- "@jest/reporters" "^28.0.3"
- "@jest/test-result" "^28.0.2"
- "@jest/transform" "^28.0.3"
- "@jest/types" "^28.0.2"
+ "@jest/console" "^28.1.0"
+ "@jest/reporters" "^28.1.0"
+ "@jest/test-result" "^28.1.0"
+ "@jest/transform" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
@@ -1301,80 +1316,80 @@
exit "^0.1.2"
graceful-fs "^4.2.9"
jest-changed-files "^28.0.2"
- jest-config "^28.0.3"
- jest-haste-map "^28.0.2"
- jest-message-util "^28.0.2"
+ jest-config "^28.1.0"
+ jest-haste-map "^28.1.0"
+ jest-message-util "^28.1.0"
jest-regex-util "^28.0.2"
- jest-resolve "^28.0.3"
- jest-resolve-dependencies "^28.0.3"
- jest-runner "^28.0.3"
- jest-runtime "^28.0.3"
- jest-snapshot "^28.0.3"
- jest-util "^28.0.2"
- jest-validate "^28.0.2"
- jest-watcher "^28.0.2"
+ jest-resolve "^28.1.0"
+ jest-resolve-dependencies "^28.1.0"
+ jest-runner "^28.1.0"
+ jest-runtime "^28.1.0"
+ jest-snapshot "^28.1.0"
+ jest-util "^28.1.0"
+ jest-validate "^28.1.0"
+ jest-watcher "^28.1.0"
micromatch "^4.0.4"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
rimraf "^3.0.0"
slash "^3.0.0"
strip-ansi "^6.0.0"
-"@jest/environment@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.0.2.tgz#a865949d876b2d364b979bbc0a46338ffd23de26"
- integrity sha512-IvI7dEfqVEffDYlw9FQfVBt6kXt/OI38V7QUIur0ulOQgzpKYJDVvLzj4B1TVmHWTGW5tcnJdlZ3hqzV6/I9Qg==
+"@jest/environment@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.0.tgz#dedf7d59ec341b9292fcf459fd0ed819eb2e228a"
+ integrity sha512-S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA==
dependencies:
- "@jest/fake-timers" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/fake-timers" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
- jest-mock "^28.0.2"
+ jest-mock "^28.1.0"
-"@jest/expect-utils@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.0.2.tgz#0a055868d225261eac82a12013e2e0735238774d"
- integrity sha512-YryfH2zN5c7M8eLtn9oTBRj1sfD+X4cHNXJnTejqCveOS33wADEZUxJ7de5++lRvByNpRpfAnc8zTK7yrUJqgA==
+"@jest/expect-utils@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.0.tgz#a5cde811195515a9809b96748ae8bcc331a3538a"
+ integrity sha512-5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw==
dependencies:
jest-get-type "^28.0.2"
-"@jest/expect@^28.0.3":
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.0.3.tgz#80e0233bee62586e1112f904d28b904dd1143ef2"
- integrity sha512-VEzZr85bqNomgayQkR7hWG5HnbZYWYWagQriZsixhLmOzU6PCpMP61aeVhkCoRrg7ri5f7JDpeTPzDAajIwFHw==
+"@jest/expect@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.0.tgz#2e5a31db692597070932366a1602b5157f0f217c"
+ integrity sha512-be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA==
dependencies:
- expect "^28.0.2"
- jest-snapshot "^28.0.3"
+ expect "^28.1.0"
+ jest-snapshot "^28.1.0"
-"@jest/fake-timers@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.0.2.tgz#d36e62bc58f39d65ea6adac1ff7749e63aff05f3"
- integrity sha512-R75yUv+WeybPa4ZVhX9C+8XN0TKjUoceUX+/QEaDVQGxZZOK50eD74cs7iMDTtpodh00d8iLlc9197vgF6oZjA==
+"@jest/fake-timers@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.0.tgz#ea77878aabd5c5d50e1fc53e76d3226101e33064"
+ integrity sha512-Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@sinonjs/fake-timers" "^9.1.1"
"@types/node" "*"
- jest-message-util "^28.0.2"
- jest-mock "^28.0.2"
- jest-util "^28.0.2"
+ jest-message-util "^28.1.0"
+ jest-mock "^28.1.0"
+ jest-util "^28.1.0"
-"@jest/globals@^28.0.3":
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.0.3.tgz#70f68a06c863d1c9d14aea151c69b9690e3efeb4"
- integrity sha512-q/zXYI6CKtTSIt1WuTHBYizJhH7K8h+xG5PE3C0oawLlPIvUMDYmpj0JX0XsJwPRLCsz/fYXHZVG46AaEhSPmw==
+"@jest/globals@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.0.tgz#a4427d2eb11763002ff58e24de56b84ba79eb793"
+ integrity sha512-3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw==
dependencies:
- "@jest/environment" "^28.0.2"
- "@jest/expect" "^28.0.3"
- "@jest/types" "^28.0.2"
+ "@jest/environment" "^28.1.0"
+ "@jest/expect" "^28.1.0"
+ "@jest/types" "^28.1.0"
-"@jest/reporters@^28.0.3":
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.0.3.tgz#9996189e5552e37fcdffe0f41c07754f5d2ea854"
- integrity sha512-xrbIc7J/xwo+D7AY3enAR9ZWYCmJ8XIkstTukTGpKDph0gLl/TJje9jl3dssvE4KJzYqMKiSrnE5Nt68I4fTEg==
+"@jest/reporters@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.0.tgz#5183a28b9b593b6000fa9b89b031c7216b58a9a0"
+ integrity sha512-qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA==
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "^28.0.2"
- "@jest/test-result" "^28.0.2"
- "@jest/transform" "^28.0.3"
- "@jest/types" "^28.0.2"
+ "@jest/console" "^28.1.0"
+ "@jest/test-result" "^28.1.0"
+ "@jest/transform" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@jridgewell/trace-mapping" "^0.3.7"
"@types/node" "*"
chalk "^4.0.0"
@@ -1387,10 +1402,11 @@
istanbul-lib-report "^3.0.0"
istanbul-lib-source-maps "^4.0.0"
istanbul-reports "^3.1.3"
- jest-util "^28.0.2"
- jest-worker "^28.0.2"
+ jest-util "^28.1.0"
+ jest-worker "^28.1.0"
slash "^3.0.0"
string-length "^4.0.1"
+ strip-ansi "^6.0.0"
terminal-link "^2.0.0"
v8-to-istanbul "^9.0.0"
@@ -1410,51 +1426,51 @@
callsites "^3.0.0"
graceful-fs "^4.2.9"
-"@jest/test-result@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.0.2.tgz#bc8e15a95347e3c2149572ae06a5a6fed939c522"
- integrity sha512-4EUqgjq9VzyUiVTvZfI9IRJD6t3NYBNP4f+Eq8Zr93+hkJ0RrGU4OBTw8tfNzidKX+bmuYzn8FxqpxOPIGGCMA==
+"@jest/test-result@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.0.tgz#fd149dee123510dd2fcadbbf5f0020f98ad7f12c"
+ integrity sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==
dependencies:
- "@jest/console" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/console" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
-"@jest/test-sequencer@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.0.2.tgz#7669b7d8ff2aa7a8221b11bb37cce552de81b1bb"
- integrity sha512-zhnZ8ydkZQTPL7YucB86eOlD79zPy5EGSUKiR2Iv93RVEDU6OEP33kwDBg70ywOcxeJGDRhyo09q7TafNCBiIg==
+"@jest/test-sequencer@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.0.tgz#ce7294bbe986415b9a30e218c7e705e6ebf2cdf2"
+ integrity sha512-tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ==
dependencies:
- "@jest/test-result" "^28.0.2"
+ "@jest/test-result" "^28.1.0"
graceful-fs "^4.2.9"
- jest-haste-map "^28.0.2"
+ jest-haste-map "^28.1.0"
slash "^3.0.0"
-"@jest/transform@^28.0.3":
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.0.3.tgz#591fb5ebc1d84db5c5f21e1225c7406c35f5eb1e"
- integrity sha512-+Y0ikI7SwoW/YbK8t9oKwC70h4X2Gd0OVuz5tctRvSV/EDQU00AAkoqevXgPSSFimUmp/sp7Yl8s/1bExDqOIg==
+"@jest/transform@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.0.tgz#224a3c9ba4cc98e2ff996c0a89a2d59db15c74ce"
+ integrity sha512-omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA==
dependencies:
"@babel/core" "^7.11.6"
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@jridgewell/trace-mapping" "^0.3.7"
babel-plugin-istanbul "^6.1.1"
chalk "^4.0.0"
convert-source-map "^1.4.0"
fast-json-stable-stringify "^2.0.0"
graceful-fs "^4.2.9"
- jest-haste-map "^28.0.2"
+ jest-haste-map "^28.1.0"
jest-regex-util "^28.0.2"
- jest-util "^28.0.2"
+ jest-util "^28.1.0"
micromatch "^4.0.4"
pirates "^4.0.4"
slash "^3.0.0"
write-file-atomic "^4.0.1"
-"@jest/types@^28.0.2":
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.0.2.tgz#70b9538c1863fb060b2f438ca008b5563d00c5b4"
- integrity sha512-hi3jUdm9iht7I2yrV5C4s3ucCJHUP8Eh3W6rQ1s4n/Qw9rQgsda4eqCt+r3BKRi7klVmZfQlMx1nGlzNMP2d8A==
+"@jest/types@^28.1.0":
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.0.tgz#508327a89976cbf9bd3e1cc74641a29fd7dfd519"
+ integrity sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==
dependencies:
"@jest/schemas" "^28.0.2"
"@types/istanbul-lib-coverage" "^2.0.0"
@@ -1631,87 +1647,87 @@
dependencies:
"@octokit/openapi-types" "^11.2.0"
-"@polkadot/api-augment@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-8.3.1.tgz#24345d65851eb9c5d5bac4d4e90d6f3cbe5668bd"
- integrity sha512-NuGUr3tBB7GNhnQjAIr/HYmW3NHeAw8cqlfUUrhxioPeRfVT6in7y5pDFu1/z7VIqF4KTHfGmnpOuNyebt4Anw==
+"@polkadot/api-augment@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-8.3.3-12.tgz#3787c2a259cc6ae596acfa265f2b543abe7bd5e0"
+ integrity sha512-c/rfky4OqG2yU2qDIrYNoYMPNBJA9MejUHsssHTjqVOxMGTdOu6QgfvDQ9IKROo45aV96N8dpTsIH8MNJL1c2A==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/api-base" "8.3.1"
- "@polkadot/rpc-augment" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-augment" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/api-base" "8.3.3-12"
+ "@polkadot/rpc-augment" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-augment" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/api-base@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-8.3.1.tgz#202594336cd3906ab5546c6150e304705706fb5b"
- integrity sha512-B0D82xYB/423ypWbSd1ndYabvcXYyp7UjNU02Ap39xe9LgJkeRbYP3oliCW4P2s9VsF6yWMTrbP2eizvao+haQ==
+"@polkadot/api-base@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-8.3.3-12.tgz#2193f44e478d727d5ca4b8f79bc81864096db126"
+ integrity sha512-/xeT/A8Q6tgQXRENUiECMc7hlJF5n0d5u3ZRCKAur8RxFiG8t5EPG+O7O7dRYKa/u3MU8lSH/pSrqYQp27lxZQ==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/rpc-core" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/rpc-core" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
rxjs "^7.5.5"
-"@polkadot/api-contract@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-8.3.1.tgz#8c39e5d567c85c3a31ec2717c1fac8355efb0601"
- integrity sha512-ghPZKyzTb5S3xlcjYFazfivp4SGimSZnU/k8oYLKLEH6L8WIfCiKZl9PrQkK7qPR/F+J146hJpTzwW6aszNmQw==
+"@polkadot/api-contract@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-8.3.3-12.tgz#4fe67520c872579077a72931fe17c90037a9e218"
+ integrity sha512-CFT6FiZY4YzgA839jce5pTbPLXDMndbeiG6Gwjd0ffrkcleEMAzvRybS4M5jyKvdUDJ7CwL5BJSisL8VwjN2Cw==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/api" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/types-create" "8.3.1"
- "@polkadot/util" "^9.1.1"
- "@polkadot/util-crypto" "^9.1.1"
+ "@polkadot/api" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/types-create" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
+ "@polkadot/util-crypto" "^9.1.2-7"
rxjs "^7.5.5"
-"@polkadot/api-derive@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-8.3.1.tgz#59f0d6bb28a3184eea3927e816e2e0e2e9885100"
- integrity sha512-oOUqb0Tusp7I1G7QBb+EQJMP6xtE9WFlZ16vvh4irb/aLLrpdYwM1bQpoGh9WQjEHhVpCLo/5SQIkxBlmPoOwg==
+"@polkadot/api-derive@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-8.3.3-12.tgz#1d855a5fe78b5d1d8d6b0d81629a20318a881ea9"
+ integrity sha512-Off/P2FU1aM2x+amchgX1bo/HQNJLrSPuY/7r93J3MXxW2eEHp3kbuedZObeVMDEZGt9lcI6EEL6meVoYW1bew==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/api" "8.3.1"
- "@polkadot/api-augment" "8.3.1"
- "@polkadot/api-base" "8.3.1"
- "@polkadot/rpc-core" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/util" "^9.1.1"
- "@polkadot/util-crypto" "^9.1.1"
+ "@polkadot/api" "8.3.3-12"
+ "@polkadot/api-augment" "8.3.3-12"
+ "@polkadot/api-base" "8.3.3-12"
+ "@polkadot/rpc-core" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
+ "@polkadot/util-crypto" "^9.1.2-7"
rxjs "^7.5.5"
-"@polkadot/api@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-8.3.1.tgz#02a59d0d827d7b88b7fa928d608e165c70d604b1"
- integrity sha512-hgLjql4/4vi8U56xNbMNPjBVjzNmLNJ6QCc+E+Gcy5pXe1pCl7XOSNkDofReLK79yyDiciFDbyftVO8iforwew==
+"@polkadot/api@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-8.3.3-12.tgz#25cb0d4006182e68d7815e2cfde503699d326dad"
+ integrity sha512-xkfrDcqt2Ci/BweY4PcVndG1O1BDS1VYM1XEl/+iydvu5il0NlaDzewln2WtZ37ZhLeZ/Iyj2BWu8laRdDdWpQ==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/api-augment" "8.3.1"
- "@polkadot/api-base" "8.3.1"
- "@polkadot/api-derive" "8.3.1"
- "@polkadot/keyring" "^9.1.1"
- "@polkadot/rpc-augment" "8.3.1"
- "@polkadot/rpc-core" "8.3.1"
- "@polkadot/rpc-provider" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-augment" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/types-create" "8.3.1"
- "@polkadot/types-known" "8.3.1"
- "@polkadot/util" "^9.1.1"
- "@polkadot/util-crypto" "^9.1.1"
+ "@polkadot/api-augment" "8.3.3-12"
+ "@polkadot/api-base" "8.3.3-12"
+ "@polkadot/api-derive" "8.3.3-12"
+ "@polkadot/keyring" "^9.1.2-7"
+ "@polkadot/rpc-augment" "8.3.3-12"
+ "@polkadot/rpc-core" "8.3.3-12"
+ "@polkadot/rpc-provider" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-augment" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/types-create" "8.3.3-12"
+ "@polkadot/types-known" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
+ "@polkadot/util-crypto" "^9.1.2-7"
eventemitter3 "^4.0.7"
rxjs "^7.5.5"
-"@polkadot/dev@0.66.17":
- version "0.66.17"
- resolved "https://registry.yarnpkg.com/@polkadot/dev/-/dev-0.66.17.tgz#16a5d4fad8cb24a11d8c08faaba8d339e85a5795"
- integrity sha512-1I+cSDo2AD+OIJX0F2gidch2a8A53g3lYIOG2dcskJRGjrXswMs31ZXvihp8UE8INrNJ5Oh4z2U7D+tv5KKJQg==
+"@polkadot/dev@0.66.21":
+ version "0.66.21"
+ resolved "https://registry.yarnpkg.com/@polkadot/dev/-/dev-0.66.21.tgz#edd25ca385aacc208951380ab440218337f1fb36"
+ integrity sha512-GLAZFr/w3L+2e4s3aaj0VEbiBk98Jc69e6NFwTSdm9tk+dDNGDtV79ipT6PJRpb9SoWV66MhAURTcT3siITuPQ==
dependencies:
"@babel/cli" "^7.17.10"
"@babel/core" "^7.17.10"
@@ -1735,16 +1751,16 @@
"@rollup/plugin-json" "^4.1.0"
"@rollup/plugin-node-resolve" "^13.3.0"
"@rushstack/eslint-patch" "^1.1.3"
- "@typescript-eslint/eslint-plugin" "5.22.0"
- "@typescript-eslint/parser" "5.22.0"
+ "@typescript-eslint/eslint-plugin" "5.23.0"
+ "@typescript-eslint/parser" "5.23.0"
"@vue/component-compiler-utils" "^3.3.0"
- babel-jest "^28.0.3"
+ babel-jest "^28.1.0"
babel-plugin-module-extension-resolver "^1.0.0-rc.2"
babel-plugin-module-resolver "^4.1.0"
babel-plugin-styled-components "^2.0.7"
browserslist "^4.20.3"
coveralls "^3.1.1"
- eslint "^8.14.0"
+ eslint "^8.15.0"
eslint-config-standard "^17.0.0"
eslint-import-resolver-node "^0.3.6"
eslint-plugin-header "^3.1.1"
@@ -1757,82 +1773,82 @@
eslint-plugin-simple-import-sort "^7.0.0"
eslint-plugin-sort-destructure-keys "^1.4.0"
fs-extra "^10.1.0"
- gh-pages "^3.2.3"
+ gh-pages "^4.0.0"
gh-release "^6.0.4"
glob "^8.0.1"
glob2base "^0.0.12"
- jest "^28.0.3"
- jest-cli "^28.0.3"
- jest-config "^28.0.3"
- jest-environment-jsdom "^28.0.2"
- jest-haste-map "^28.0.2"
- jest-resolve "^28.0.3"
+ jest "^28.1.0"
+ jest-cli "^28.1.0"
+ jest-config "^28.1.0"
+ jest-environment-jsdom "^28.1.0"
+ jest-haste-map "^28.1.0"
+ jest-resolve "^28.1.0"
madge "^5.0.1"
minimatch "^5.0.1"
mkdirp "^1.0.4"
prettier "^2.6.2"
rimraf "^3.0.2"
- rollup "^2.71.1"
+ rollup "^2.72.1"
rollup-plugin-cleanup "^3.2.1"
typescript "^4.6.4"
- yargs "^17.4.1"
+ yargs "^17.5.0"
-"@polkadot/keyring@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-9.1.1.tgz#d4bf244d6dd23d06fed9334e79c0d46a8fdb5988"
- integrity sha512-qjnO1795v7wDvU2hW0H+z7bMPNV3xcVnIjozt3/+Y5Lphu3Tohh3WNgf9uNKIUTwbWxTF4wWsiUM1ajY4CRuMA==
+"@polkadot/keyring@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-9.1.2-11.tgz#f34579082ebd97a57b7f475d402c7828a2819bd1"
+ integrity sha512-qqLm2J1qHK7kNnNqjD3OZStdWwGidoOjxViHbhHoD5WEtMfnsgfVlbcJZRnTebkFr+r1pz9xb1gzURRDh/jZOQ==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/util" "9.1.1"
- "@polkadot/util-crypto" "9.1.1"
+ "@polkadot/util" "9.1.2-11"
+ "@polkadot/util-crypto" "9.1.2-11"
-"@polkadot/networks@9.1.1", "@polkadot/networks@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-9.1.1.tgz#3b99dcedd1ed626f6efecc642e1dcebca64978e3"
- integrity sha512-L/jk8vDr4shzGEVOqOimmXySLpbrN8+qlk+BR3A6rFa4N+XjtcGvnnt+so+rXwJOu7U4/ir6qPU2Iq63XbQTMA==
+"@polkadot/networks@9.1.2-11", "@polkadot/networks@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-9.1.2-11.tgz#b8a28a186e59d03dc0924215fb137b4e30e2fc1d"
+ integrity sha512-qWGw+eHGLWc2HW7DS4b6f1VFTMOBqdFdo02Y/yiprxd5CcbCILYwbTVAnq2qPAyfSTQ3uA4ptw1rmqyPF2HrzA==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/util" "9.1.1"
- "@substrate/ss58-registry" "^1.17.0"
+ "@polkadot/util" "9.1.2-11"
+ "@substrate/ss58-registry" "^1.18.0"
-"@polkadot/rpc-augment@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-8.3.1.tgz#54e8399de7af81df63b3632ceac3bb7260e9842b"
- integrity sha512-drPw1E+ATNch/atX3+iciwXeDe71EHAU9f/LSsFJ3w2vqf39bOuj3R7Os4/W2N3Anlvv1AFrmeAP3hK2nAlezA==
+"@polkadot/rpc-augment@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-8.3.3-12.tgz#e7e568e9f427512b94a38fb64e4cf096ba4a9b23"
+ integrity sha512-ia0gda6VV8R4mZLU08Av3XcIauTeSJExGMYl7QBNP9CSQJ9fQsTz/8AC3fBmfuLq2QHFW9Qrl2w9Zca6E6Y/eg==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/rpc-core" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/rpc-core" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/rpc-core@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-8.3.1.tgz#b69eb0b228fbdeebeeb7380a4750ce6bf8932c6c"
- integrity sha512-iFdA4zPmPKhXx3+g3ONbLQ838opZKiD993baxJgOiiJKgGeCV2xtI2RwGImRKVeRwWvLR2jfAT5vzclUnXOZLA==
+"@polkadot/rpc-core@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-8.3.3-12.tgz#d8eb8bea16c91aba2e739945a5c8ad65d21c26b0"
+ integrity sha512-TCwV7C/jiZSsn+cVF02JwuT8LI/6IQnJLX3l/7htZRJjKT4CTYOghxgHKWzDUhszAvNpWq0Q2xB8EGeqiIfweg==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/rpc-augment" "8.3.1"
- "@polkadot/rpc-provider" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/rpc-augment" "8.3.3-12"
+ "@polkadot/rpc-provider" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
rxjs "^7.5.5"
-"@polkadot/rpc-provider@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-8.3.1.tgz#7d104f44f2da9336c89ebfc6e13ef1dc385ffe08"
- integrity sha512-+Sg5JW4tXoSO09Cob9bqrfIcVp/D/tMbiyuTg5i/gG7jxZgSXbMu0irQHTteA0YvJSi0JkO1C/uQyljowT/9Ew==
+"@polkadot/rpc-provider@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-8.3.3-12.tgz#6b656904cb68dd21264f03b04a1143e9f0269e40"
+ integrity sha512-R+ZF1jUMQrJC+YU7IrUuLA3gGZhOu4soe7/2QTelkAOZLYKrbAQZ2yH6Ju+XLc/uRSwMVb2Sly/3j3xIkhhPag==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/keyring" "^9.1.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-support" "8.3.1"
- "@polkadot/util" "^9.1.1"
- "@polkadot/util-crypto" "^9.1.1"
- "@polkadot/x-fetch" "^9.1.1"
- "@polkadot/x-global" "^9.1.1"
- "@polkadot/x-ws" "^9.1.1"
- "@substrate/connect" "0.7.2"
+ "@polkadot/keyring" "^9.1.2-7"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-support" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
+ "@polkadot/util-crypto" "^9.1.2-7"
+ "@polkadot/x-fetch" "^9.1.2-7"
+ "@polkadot/x-global" "^9.1.2-7"
+ "@polkadot/x-ws" "^9.1.2-7"
+ "@substrate/connect" "0.7.4"
eventemitter3 "^4.0.7"
mock-socket "^9.1.3"
nock "^13.2.4"
@@ -1844,200 +1860,228 @@
dependencies:
"@types/chrome" "^0.0.171"
-"@polkadot/typegen@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-8.3.1.tgz#e3977af7a295204e7bee4d1cf65dc0650e5ef474"
- integrity sha512-eXOuKB/ZMgh1Tq9DM/Dipy4YULzWf6j1oIIE0CvSjEQ17XsYrfCMg4ME7pprVZbVVKYg8oOYxbwpB6wl9BDdVg==
+"@polkadot/typegen@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-8.3.3-12.tgz#8c58a23cdbfa1f55a5a77103ab3954c82be79d7c"
+ integrity sha512-+Ki5N25p9Paju9mm3494uD4/mm2W1EmhOShSGyvBeuJbWOkDoqvK3Wf9YwoepfURuoJknvpA8jZPs4q0HSkmuA==
dependencies:
"@babel/core" "^7.17.10"
"@babel/register" "^7.17.7"
"@babel/runtime" "^7.17.9"
- "@polkadot/api" "8.3.1"
- "@polkadot/api-augment" "8.3.1"
- "@polkadot/rpc-augment" "8.3.1"
- "@polkadot/rpc-provider" "8.3.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-augment" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/types-create" "8.3.1"
- "@polkadot/types-support" "8.3.1"
- "@polkadot/util" "^9.1.1"
- "@polkadot/x-ws" "^9.1.1"
+ "@polkadot/api" "8.3.3-12"
+ "@polkadot/api-augment" "8.3.3-12"
+ "@polkadot/rpc-augment" "8.3.3-12"
+ "@polkadot/rpc-provider" "8.3.3-12"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-augment" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/types-create" "8.3.3-12"
+ "@polkadot/types-support" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
+ "@polkadot/x-ws" "^9.1.2-7"
handlebars "^4.7.7"
websocket "^1.0.34"
- yargs "^17.4.1"
+ yargs "^17.5.0"
-"@polkadot/types-augment@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-8.3.1.tgz#0e07f32911fcae400a8bbe688035b1171c595db6"
- integrity sha512-eNvtpilnTg/hjdBiohZvkq2c+tGtf5r8nit2VOE3um0Ba80iXt0RItvNzWqShYNhGmD30gK7lDydz/HKa7uhow==
+"@polkadot/types-augment@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-8.3.3-12.tgz#ccad4b286ae8208205faed57522e65ee6b5fc989"
+ integrity sha512-hTdh5TKkBCiQIl6Os/jq/nU87iCqtoY7LjLeMdBg3klX813VGCoT4P3r9x6l5AQNvn0yCUbe+UeTPC2pGNo27g==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/types-codec@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-8.3.1.tgz#cdb9f43685369687dd3bbb4fe42404937aa8e5c1"
- integrity sha512-xixDDTnqaxavrD2v3xZmZ6l/su3WwKAPYXyILxuwRBBipkmTlBSjxjVnuVoRYP5F63AjHfMN/ZRqLs0ibZ+pRg==
+"@polkadot/types-codec@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-8.3.3-12.tgz#a82475432ed13191d4cde5ee83d46d9b4aa08e70"
+ integrity sha512-a4KUxJEwk6h4X9VRe7iJdHEPTgEY8TqLsHcg3K98yfqJur16URvvKxhePyGPRTaQGaCE2R9lRUv4S3w+j9/gQA==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/types-create@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-8.3.1.tgz#aef428d7af0546bac36d41454823934eabd41380"
- integrity sha512-GyuqlBThPCoxztC2UMN4wGvbh9csTq+rerFrkVKoo1iVoGpghnwmnYw1QLHTYK8iEl6Ke5TfiyxpX8sq9PaYVQ==
+"@polkadot/types-create@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-8.3.3-12.tgz#3fa8bc379a60f29eafbeab19e49f294d16ac078a"
+ integrity sha512-iDcecaPTzFL0JFLD2uJ5QsTEnQOZILZJmGrfsMyiLlUXvaldG6nMdB4ZdQa7Dwuny47kndHygdjOo4mcD/w13A==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/types-known@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-8.3.1.tgz#39432b0d58eca212aed9d985f452a5e93cca86dd"
- integrity sha512-qoNXPMTiuMJ1Ov5fxS85SWB3y9cwac8jQtfDq0TzAoOK6aAVSJbdOS9b4/Vgu0pLNpEhxeYZPtSyvKtS/RTEOQ==
+"@polkadot/types-known@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-8.3.3-12.tgz#4cd214bf5b3bcf71689519c7ce23c60ae1aa7f02"
+ integrity sha512-l9pVCaQ8Ct5NhK3uxsSaD2nvKrws7P6Eh53KY/Y5sdoHf6rrvPqjEq8Q5WboSU9da0IPM3SP4k3rUj0Wc/Sy1A==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/networks" "^9.1.1"
- "@polkadot/types" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/types-create" "8.3.1"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/networks" "^9.1.2-7"
+ "@polkadot/types" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/types-create" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/types-support@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-8.3.1.tgz#51e6c250f4b18586dc0f5ba96df912db96349566"
- integrity sha512-P8V28mH6VK8p5Cw+OT7ks62EWUa8f//P4mR03PC5XBgcd4pqbvo5BawPVYwARuENnmm46KLhlrcwy0QTHNCukQ==
+"@polkadot/types-support@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-8.3.3-12.tgz#0039f5410f1212b9f8f410555eeb793c0e1020a4"
+ integrity sha512-T6LnwtTH+Y/SJMD1atsVFPHYsg7GF77MdH8/ZCfyTYAC+7k72ikLOHMVIe1qgpXtMBhT3zw6q0RwwpriSE0rmw==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/util" "^9.1.1"
+ "@polkadot/util" "^9.1.2-7"
-"@polkadot/types@8.3.1":
- version "8.3.1"
- resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-8.3.1.tgz#3234d8ead45a59b608fe946d813563a17987fba5"
- integrity sha512-cpokZ4Ei/zduuojErwsei5LKRumkVb4GB4cvHWXEYorNai3MblRYW5huwMb/7+sPOiGHhPysFnHO9BZkrGTHAw==
+"@polkadot/types@8.3.3-12":
+ version "8.3.3-12"
+ resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-8.3.3-12.tgz#bf49949120558a17143141fe8d24ccf344e21b9f"
+ integrity sha512-FAAitHXwb6fBxhaJWrjjIJ3DhMvyllOjNOiaDUsfoofpLML9/sumTAhcu++xqqZQF6Z3GL4pyG7tjZ78QN8xSQ==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/keyring" "^9.1.1"
- "@polkadot/types-augment" "8.3.1"
- "@polkadot/types-codec" "8.3.1"
- "@polkadot/types-create" "8.3.1"
- "@polkadot/util" "^9.1.1"
- "@polkadot/util-crypto" "^9.1.1"
+ "@polkadot/keyring" "^9.1.2-7"
+ "@polkadot/types-augment" "8.3.3-12"
+ "@polkadot/types-codec" "8.3.3-12"
+ "@polkadot/types-create" "8.3.3-12"
+ "@polkadot/util" "^9.1.2-7"
+ "@polkadot/util-crypto" "^9.1.2-7"
rxjs "^7.5.5"
-"@polkadot/util-crypto@9.1.1", "@polkadot/util-crypto@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-9.1.1.tgz#3826f8377beabee3efd6ff8a54c4899e6ee4819c"
- integrity sha512-FiQ4u8q1QZNdE2MUMb3JupbSMei9Ww6Czo/QYPguy73Tp6OH3G9OX8abBgTUwS/gX/CFcbHajhb3oi95v0IgVg==
+"@polkadot/util-crypto@9.1.2-11", "@polkadot/util-crypto@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-9.1.2-11.tgz#b065f75df20147ea99457dc76168bdf17f01c3f1"
+ integrity sha512-fYyW2B/jvMy96FoAWNC57dUgRHyFe46UiFRRxy8dn+yrib9PgihjumJgzpJe4T5TFaJdh3EwvnUCjGFL9odZtg==
dependencies:
"@babel/runtime" "^7.17.9"
"@noble/hashes" "1.0.0"
"@noble/secp256k1" "1.5.5"
- "@polkadot/networks" "9.1.1"
- "@polkadot/util" "9.1.1"
- "@polkadot/wasm-crypto" "^6.0.1"
- "@polkadot/x-bigint" "9.1.1"
- "@polkadot/x-randomvalues" "9.1.1"
+ "@polkadot/networks" "9.1.2-11"
+ "@polkadot/util" "9.1.2-11"
+ "@polkadot/wasm-crypto" "^6.0.2-15"
+ "@polkadot/x-bigint" "9.1.2-11"
+ "@polkadot/x-randomvalues" "9.1.2-11"
"@scure/base" "1.0.0"
ed2curve "^0.3.0"
tweetnacl "^1.0.3"
-"@polkadot/util@9.1.1", "@polkadot/util@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-9.1.1.tgz#7b6eda0130fd578f7fa14821ed9b82e1e48efcdb"
- integrity sha512-eJzyrM0+b+DLo1hD+y4Al1DOEdF0UEUVnWqWZNIx2fuKsgG72gFosJM0EOjbVoxq8B1Hx3KOCNc0fl3Mpc9oYQ==
+"@polkadot/util@9.1.2-11", "@polkadot/util@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-9.1.2-11.tgz#e0960a208c7f61524750405c7126c507dd90d7c7"
+ integrity sha512-3+9NJrb/P4Xc6bwsLHjwcs3lzf2RXu+cpKRyxD09T3AXilp8zb/0/Q7Uxk/nFmVabqrWatk6kvsLwF/+OzWQDg==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-bigint" "9.1.1"
- "@polkadot/x-global" "9.1.1"
- "@polkadot/x-textdecoder" "9.1.1"
- "@polkadot/x-textencoder" "9.1.1"
+ "@polkadot/x-bigint" "9.1.2-11"
+ "@polkadot/x-global" "9.1.2-11"
+ "@polkadot/x-textdecoder" "9.1.2-11"
+ "@polkadot/x-textencoder" "9.1.2-11"
"@types/bn.js" "^5.1.0"
bn.js "^5.2.0"
ip-regex "^4.3.0"
-"@polkadot/wasm-crypto-asmjs@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.0.1.tgz#64a5ac84d3e7e23a57429fb8932e51161644d536"
- integrity sha512-cSGsHBLfPW2nHztgZd+gisCoScA02jbAzwjop/b8xumQ2kq7yAed/K9G1lOQiofEKRetIJeqBzJyk0etopRORw==
+"@polkadot/wasm-bridge@6.0.2-15":
+ version "6.0.2-15"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.0.2-15.tgz#8e3c12bb608257f4dac591c8c58e758314f024bb"
+ integrity sha512-p1SUJCkmIj1JsKsR6oh0qHCMUsza6wTgtS4S53v3AMfwGxrzQKT2GCE7TumxMLJLOnWCv/PseQchNMnkAjLeQQ==
dependencies:
"@babel/runtime" "^7.17.9"
-"@polkadot/wasm-crypto-wasm@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.0.1.tgz#d77033f184f46891411453d798a0d5f2e1129e88"
- integrity sha512-0r/QgOjIyw4U0mLk6Tm97Di92uxcSPjTo7dK6tdXo1PwYouhzO5IJnL/jNgma8dm5hQoBhk7rcErmkh8c1kLFQ==
+"@polkadot/wasm-crypto-asmjs@6.0.2-15":
+ version "6.0.2-15"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.0.2-15.tgz#60c9490d332a127fbb3125c37b194c61f3c3f6ac"
+ integrity sha512-YZdcb9lifCCjXiQi8sbVYTPV24QOttB30R9xH9cjGu26rMLuaeRWxLQzZtXbU/PZWx4nAkXdLQBFBVfqJOi83A==
dependencies:
"@babel/runtime" "^7.17.9"
-"@polkadot/wasm-crypto@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.0.1.tgz#47e79133446f7c3e1afd35be844ce0e793b56bee"
- integrity sha512-nW5DDrciHGbZbj0Xh7w0Bnh5exSJUw96Zux7RuGfXuoXXHZBcf0QiB4E2dcVh3d/NkF7PkB99FlkdQxQp4M0Rg==
+"@polkadot/wasm-crypto-init@6.0.2-15":
+ version "6.0.2-15"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.0.2-15.tgz#07d16ea63a6e9b783056b7387f93d9effc769dc4"
+ integrity sha512-o0YjSMFKvfRiUq72uak8AufOVi8sLvfYWXvy4VC9/SDxgUxOYOxeFCrUGGFNTGrZh8F19bQIqdVyJgbkvbcX/w==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/wasm-crypto-asmjs" "^6.0.1"
- "@polkadot/wasm-crypto-wasm" "^6.0.1"
+ "@polkadot/wasm-bridge" "6.0.2-15"
+ "@polkadot/wasm-crypto-asmjs" "6.0.2-15"
+ "@polkadot/wasm-crypto-wasm" "6.0.2-15"
+
+"@polkadot/wasm-crypto-wasm@6.0.2-15":
+ version "6.0.2-15"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.0.2-15.tgz#c606ca34f4cb1767d0c6c1bf80a7b386f5009f1d"
+ integrity sha512-VSRqQ9RP+wtO1VLoR/eluTaXYgbE8W+1iAdJdilhu6qdKJJDO9vB9FV+P39qCsfqwfLciAzfSUNzj19adFid0g==
+ dependencies:
+ "@babel/runtime" "^7.17.9"
+ "@polkadot/wasm-util" "6.0.2-15"
+
+"@polkadot/wasm-crypto@^6.0.2-15":
+ version "6.0.2-15"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.0.2-15.tgz#af310adfe16cef0831d4221cde20b8b5b941c580"
+ integrity sha512-ShOLs+M5jwpLPlJh8lycgXNalBikXte/iIEEPVhrxiR+P26LlQwynASy87xk3cS6/2aA+/0GOxmIaqNz2tX4Rw==
+ dependencies:
+ "@babel/runtime" "^7.17.9"
+ "@polkadot/wasm-bridge" "6.0.2-15"
+ "@polkadot/wasm-crypto-asmjs" "6.0.2-15"
+ "@polkadot/wasm-crypto-init" "6.0.2-15"
+ "@polkadot/wasm-crypto-wasm" "6.0.2-15"
+ "@polkadot/wasm-util" "6.0.2-15"
-"@polkadot/x-bigint@9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-9.1.1.tgz#d435a23013f2a7d3e107c8705241ea7fbdf0f3c5"
- integrity sha512-1At5Gut4Wzep59vKTATCMWwm6EG0h+vq/qftou5kvt8u0QI2+YGJ5LAXzHk3n0/OOn8cvuAzS2kYQ4duE7YA+g==
+"@polkadot/wasm-util@6.0.2-15":
+ version "6.0.2-15"
+ resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.0.2-15.tgz#ae952c58fba43903b41f631c153c5c5df050b336"
+ integrity sha512-kYWS/BTVmQ6Ez9HMYu6Dk3SEGycy/14X2EBBKa1tBpTJTN6hyZr5m9OCs8vopkZNSMNQE4E8hgMzyzIF4U2QXw==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-global" "9.1.1"
-"@polkadot/x-fetch@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-9.1.1.tgz#84cb1464dd0d956603a39c7c86d35c17d26e461a"
- integrity sha512-hoV/73i8znFCTOaDElGPQAF0AcOV9C7QAq7oJkkfaTqLaRbn2rKg7ZiwLzbFo/8YYGq3QTRcO4gzd5UD2NXZ0Q==
+"@polkadot/x-bigint@9.1.2-11":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-9.1.2-11.tgz#538f682a3894d72cf9df253d5f9426f6a214b53a"
+ integrity sha512-t/3D88gYERTehgbQr4nyT2RxQQc74HtHn+zskG4bXV1iyithisxUUUAThfoDa5EeBIIMBcxIytkKchGh6dYiyQ==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-global" "9.1.1"
+ "@polkadot/x-global" "9.1.2-11"
+
+"@polkadot/x-fetch@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-9.1.2-11.tgz#959dda8b8b962f73451de0997b7e14ebab453b9f"
+ integrity sha512-VGsOB1JdT+fDIps6RUOlQazr/KTG5nnvgv1KEmtKMGpY3/GsoxX2rDMSRFQW4W4lH9Mk+CX9ZXux15KtbeDMJQ==
+ dependencies:
+ "@babel/runtime" "^7.17.9"
+ "@polkadot/x-global" "9.1.2-11"
"@types/node-fetch" "^2.6.1"
node-fetch "^2.6.7"
-"@polkadot/x-global@9.1.1", "@polkadot/x-global@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-9.1.1.tgz#6f3baf150b4e489312068b84a3fc9a77efb1c8d2"
- integrity sha512-2aP6edHMPE14mQUFA8ipiB74PKoS6/wFWjTSbGqVOkGN0B7/kvX0/bW2fb6jPcfQlutPeqGN6dZnraoqzTzv6w==
+"@polkadot/x-global@9.1.2-11", "@polkadot/x-global@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-9.1.2-11.tgz#777ab4e88352918acb2d1c2c8f64f913eb23bd27"
+ integrity sha512-6fNq5CqCUSADLVjXJi3ZdSKqW3x5K1iZXgdVZjhLq0dIl9c3n3YaxWPNme+UkLqa8i+QAPb5pYWS6ZEDiU0Sxw==
dependencies:
"@babel/runtime" "^7.17.9"
-"@polkadot/x-randomvalues@9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-9.1.1.tgz#1220a1d0e9bdfaf6515763a29e6ae523f7de4c4e"
- integrity sha512-so99yggz5QoCHaVLxekIPK7Ia8Aynv0pPmTroGpWUrR1Gjj5l1dU7lN3sfyA7MBij4uGYiI3sSma5KmlRYawiQ==
+"@polkadot/x-randomvalues@9.1.2-11":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-9.1.2-11.tgz#a305940b8e309316ea06836249f1b0a59316fc4b"
+ integrity sha512-+c1UFfGUWg6q9AICodXrv2FEI0nQvILzdsWs1RU2hZ/EDKU6mH6stwK1/Hnu9UkE9M9MFzfXnuOjlMpHOOFGxw==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-global" "9.1.1"
+ "@polkadot/x-global" "9.1.2-11"
-"@polkadot/x-textdecoder@9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-9.1.1.tgz#080aedf20e1d317da0bf350cba59793e37bca4a1"
- integrity sha512-0eQPesYOfpdetHMIzTUiXcMOPzjX2hzgdSC9Q64iGWoRKwly1clUQ9SPlwEmkRF7ulPcq1pZv2kgHdKNj+lL8g==
+"@polkadot/x-textdecoder@9.1.2-11":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-9.1.2-11.tgz#1a617b1e5af4a8249ce8361790bda259e79dada0"
+ integrity sha512-I1DbWyiG7o3OOYAjFrQnhXFXZVLH0VjqciiWlhNeUZpYUb9OZ+DD/h6IKOGnRCFu6JH/3hi2fp69FJ4GknlF9g==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-global" "9.1.1"
+ "@polkadot/x-global" "9.1.2-11"
-"@polkadot/x-textencoder@9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-9.1.1.tgz#d735f4fc8384b7748d83f6b8ea814f5c0a9f13ee"
- integrity sha512-DyemF56si5xgXLS+l9yl3YivC2cLFlGSUarKyrP+MRVAqVKlLc9h3KXDxwnVxNeLVTg2gxSLpxo6pGqLydtFaQ==
+"@polkadot/x-textencoder@9.1.2-11":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-9.1.2-11.tgz#e73faca9175895c3f2ebd42dc06c266182f1f232"
+ integrity sha512-tUvyQAwJVSuKqMf7D+kifICgnbuepO2WmFGAfy8cA5s4MKKO/gPx3DQl/XesxVHo3oVJUsXkdauHSXph9ZytLA==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-global" "9.1.1"
+ "@polkadot/x-global" "9.1.2-11"
-"@polkadot/x-ws@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-9.1.1.tgz#5a0deef84bc22fa5b1f629acfbccb2cdb09ecdb7"
- integrity sha512-jojrlEbeabRRCj0449IDg7BTOOntinMDZJJkABnPG3WnTtHa82TZQmrrdE51PIolGwFW6qDamh9IQcfI/Ir7Yw==
+"@polkadot/x-ws@^9.1.2-7":
+ version "9.1.2-11"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-9.1.2-11.tgz#cfe2aa755fdbbb7a62bfa093203fcab3deeab9f3"
+ integrity sha512-gT2VT5NUoU3RAxhrU0tC/6Jgd5xvi7Fglj5NKABhfB3Df5UpBcGpIWHQVXfunx4dc6rAq3DB+r90WTMmazEYBQ==
dependencies:
"@babel/runtime" "^7.17.9"
- "@polkadot/x-global" "9.1.1"
+ "@polkadot/x-global" "9.1.2-11"
"@types/websocket" "^1.0.5"
websocket "^1.0.34"
@@ -2137,10 +2181,10 @@
resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.0.tgz#d452beda84b3ebfcf0e88592a4695e729a91e858"
integrity sha512-nFVuKdp71hMd/MGlllAOh+a2hAqt8m6J2G0aSsS/RcALZexxF9jodbFc62ni8RDtJboeOfXAHhenYOANvJKPIg==
-"@substrate/connect@0.7.2":
- version "0.7.2"
- resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.2.tgz#a2440a7a85a75acbc839745b301d5b8b81cbac5d"
- integrity sha512-8GWdrN7qbClYLa9LmETJnywT5fknEQeMw+QKvkUMvsHKegHD0Zkhi0K484mKxRN9RGwcPsKHPj1gMk8xlZuJ9g==
+"@substrate/connect@0.7.4":
+ version "0.7.4"
+ resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.4.tgz#2b43bf83416cc2bd20e3a025fb432c71a98120ce"
+ integrity sha512-sq5c2Z9073zyF7QOU/DLaIWI0LuECEpCovRpN8MXBieCeHnqGS2xZrPzsvvIP3LNrb/iPb5uMCyFZ4DaQa+0Bw==
dependencies:
"@substrate/connect-extension-protocol" "^1.0.0"
"@substrate/smoldot-light" "0.6.15"
@@ -2155,10 +2199,10 @@
pako "^2.0.4"
websocket "^1.0.32"
-"@substrate/ss58-registry@^1.17.0":
- version "1.17.0"
- resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.17.0.tgz#a6a50dbef67da0114aff7cdae7c6eec685c5983b"
- integrity sha512-YdQOxCtEZLnYZFg/zSzfROYtvIs5+iLD7p/VHoll7AVEhrPAmxgF5ggMDB2Dass7dfwABVx7heATbPFNg95Q8w==
+"@substrate/ss58-registry@^1.18.0":
+ version "1.18.0"
+ resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.18.0.tgz#0744480e880ae8e557327557a2a7fc95577292ec"
+ integrity sha512-nAA1qsorxgdDnx5ie/FL90nM2riTNn72wIq8jtWsR8trsk1uTIHJgQQjEgviFCtMg4Ws9bEjo8DkWBgVGdPFmw==
"@szmarczak/http-timer@^1.1.2":
version "1.1.2"
@@ -2414,7 +2458,22 @@
dependencies:
"@types/yargs-parser" "*"
-"@typescript-eslint/eslint-plugin@5.22.0", "@typescript-eslint/eslint-plugin@^5.22.0":
+"@typescript-eslint/eslint-plugin@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.23.0.tgz#bc4cbcf91fbbcc2e47e534774781b82ae25cc3d8"
+ integrity sha512-hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==
+ dependencies:
+ "@typescript-eslint/scope-manager" "5.23.0"
+ "@typescript-eslint/type-utils" "5.23.0"
+ "@typescript-eslint/utils" "5.23.0"
+ debug "^4.3.2"
+ functional-red-black-tree "^1.0.1"
+ ignore "^5.1.8"
+ regexpp "^3.2.0"
+ semver "^7.3.5"
+ tsutils "^3.21.0"
+
+"@typescript-eslint/eslint-plugin@^5.22.0":
version "5.22.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.22.0.tgz#7b52a0de2e664044f28b36419210aea4ab619e2a"
integrity sha512-YCiy5PUzpAeOPGQ7VSGDEY2NeYUV1B0swde2e0HzokRsHBYjSdF6DZ51OuRZxVPHx0032lXGLvOMls91D8FXlg==
@@ -2429,7 +2488,17 @@
semver "^7.3.5"
tsutils "^3.21.0"
-"@typescript-eslint/parser@5.22.0", "@typescript-eslint/parser@^5.22.0":
+"@typescript-eslint/parser@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.23.0.tgz#443778e1afc9a8ff180f91b5e260ac3bec5e2de1"
+ integrity sha512-V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==
+ dependencies:
+ "@typescript-eslint/scope-manager" "5.23.0"
+ "@typescript-eslint/types" "5.23.0"
+ "@typescript-eslint/typescript-estree" "5.23.0"
+ debug "^4.3.2"
+
+"@typescript-eslint/parser@^5.22.0":
version "5.22.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.22.0.tgz#7bedf8784ef0d5d60567c5ba4ce162460e70c178"
integrity sha512-piwC4krUpRDqPaPbFaycN70KCP87+PC5WZmrWs+DlVOxxmF+zI6b6hETv7Quy4s9wbkV16ikMeZgXsvzwI3icQ==
@@ -2447,6 +2516,14 @@
"@typescript-eslint/types" "5.22.0"
"@typescript-eslint/visitor-keys" "5.22.0"
+"@typescript-eslint/scope-manager@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.23.0.tgz#4305e61c2c8e3cfa3787d30f54e79430cc17ce1b"
+ integrity sha512-EhjaFELQHCRb5wTwlGsNMvzK9b8Oco4aYNleeDlNuL6qXWDF47ch4EhVNPh8Rdhf9tmqbN4sWDk/8g+Z/J8JVw==
+ dependencies:
+ "@typescript-eslint/types" "5.23.0"
+ "@typescript-eslint/visitor-keys" "5.23.0"
+
"@typescript-eslint/type-utils@5.22.0":
version "5.22.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.22.0.tgz#0c0e93b34210e334fbe1bcb7250c470f4a537c19"
@@ -2456,6 +2533,15 @@
debug "^4.3.2"
tsutils "^3.21.0"
+"@typescript-eslint/type-utils@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.23.0.tgz#f852252f2fc27620d5bb279d8fed2a13d2e3685e"
+ integrity sha512-iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==
+ dependencies:
+ "@typescript-eslint/utils" "5.23.0"
+ debug "^4.3.2"
+ tsutils "^3.21.0"
+
"@typescript-eslint/types@4.33.0":
version "4.33.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72"
@@ -2466,6 +2552,11 @@
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.22.0.tgz#50a4266e457a5d4c4b87ac31903b28b06b2c3ed0"
integrity sha512-T7owcXW4l0v7NTijmjGWwWf/1JqdlWiBzPqzAWhobxft0SiEvMJB56QXmeCQjrPuM8zEfGUKyPQr/L8+cFUBLw==
+"@typescript-eslint/types@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.23.0.tgz#8733de0f58ae0ed318dbdd8f09868cdbf9f9ad09"
+ integrity sha512-NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==
+
"@typescript-eslint/typescript-estree@5.22.0":
version "5.22.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.22.0.tgz#e2116fd644c3e2fda7f4395158cddd38c0c6df97"
@@ -2479,6 +2570,19 @@
semver "^7.3.5"
tsutils "^3.21.0"
+"@typescript-eslint/typescript-estree@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.23.0.tgz#dca5f10a0a85226db0796e8ad86addc9aee52065"
+ integrity sha512-xE9e0lrHhI647SlGMl+m+3E3CKPF1wzvvOEWnuE3CCjjT7UiRnDGJxmAcVKJIlFgK6DY9RB98eLr1OPigPEOGg==
+ dependencies:
+ "@typescript-eslint/types" "5.23.0"
+ "@typescript-eslint/visitor-keys" "5.23.0"
+ debug "^4.3.2"
+ globby "^11.0.4"
+ is-glob "^4.0.3"
+ semver "^7.3.5"
+ tsutils "^3.21.0"
+
"@typescript-eslint/typescript-estree@^4.33.0":
version "4.33.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609"
@@ -2504,6 +2608,18 @@
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
+"@typescript-eslint/utils@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.23.0.tgz#4691c3d1b414da2c53d8943310df36ab1c50648a"
+ integrity sha512-dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==
+ dependencies:
+ "@types/json-schema" "^7.0.9"
+ "@typescript-eslint/scope-manager" "5.23.0"
+ "@typescript-eslint/types" "5.23.0"
+ "@typescript-eslint/typescript-estree" "5.23.0"
+ eslint-scope "^5.1.1"
+ eslint-utils "^3.0.0"
+
"@typescript-eslint/visitor-keys@4.33.0":
version "4.33.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd"
@@ -2520,6 +2636,14 @@
"@typescript-eslint/types" "5.22.0"
eslint-visitor-keys "^3.0.0"
+"@typescript-eslint/visitor-keys@5.23.0":
+ version "5.23.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.23.0.tgz#057c60a7ca64667a39f991473059377a8067c87b"
+ integrity sha512-Vd4mFNchU62sJB8pX19ZSPog05B0Y0CE2UxAZPT5k4iqhRYjPnqyY3woMxCd0++t9OTqkgjST+1ydLBi7e2Fvg==
+ dependencies:
+ "@typescript-eslint/types" "5.23.0"
+ eslint-visitor-keys "^3.0.0"
+
"@ungap/promise-all-settled@1.1.2":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
@@ -2562,7 +2686,7 @@
acorn "^7.1.1"
acorn-walk "^7.1.1"
-acorn-jsx@^5.3.1:
+acorn-jsx@^5.3.1, acorn-jsx@^5.3.2:
version "5.3.2"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
@@ -2582,7 +2706,7 @@
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.0:
+acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.0, acorn@^8.7.1:
version "8.7.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
@@ -2823,12 +2947,12 @@
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
-babel-jest@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.0.3.tgz#843dc170da5b9671d4054ada9fdcd28f85f92a6e"
- integrity sha512-S0ADyYdcrt5fp9YldRYWCUHdk1BKt9AkvBkLWBoNAEV9NoWZPIj5+MYhPcGgTS65mfv3a+Ymf2UqgWoAVd41cA==
+babel-jest@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.0.tgz#95a67f8e2e7c0042e7b3ad3951b8af41a533b5ea"
+ integrity sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w==
dependencies:
- "@jest/transform" "^28.0.3"
+ "@jest/transform" "^28.1.0"
"@types/babel__core" "^7.1.14"
babel-plugin-istanbul "^6.1.1"
babel-preset-jest "^28.0.2"
@@ -4463,6 +4587,47 @@
text-table "^0.2.0"
v8-compile-cache "^2.0.3"
+eslint@^8.15.0:
+ version "8.15.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.15.0.tgz#fea1d55a7062da48d82600d2e0974c55612a11e9"
+ integrity sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==
+ dependencies:
+ "@eslint/eslintrc" "^1.2.3"
+ "@humanwhocodes/config-array" "^0.9.2"
+ ajv "^6.10.0"
+ chalk "^4.0.0"
+ cross-spawn "^7.0.2"
+ debug "^4.3.2"
+ doctrine "^3.0.0"
+ escape-string-regexp "^4.0.0"
+ eslint-scope "^7.1.1"
+ eslint-utils "^3.0.0"
+ eslint-visitor-keys "^3.3.0"
+ espree "^9.3.2"
+ esquery "^1.4.0"
+ esutils "^2.0.2"
+ fast-deep-equal "^3.1.3"
+ file-entry-cache "^6.0.1"
+ functional-red-black-tree "^1.0.1"
+ glob-parent "^6.0.1"
+ globals "^13.6.0"
+ ignore "^5.2.0"
+ import-fresh "^3.0.0"
+ imurmurhash "^0.1.4"
+ is-glob "^4.0.0"
+ js-yaml "^4.1.0"
+ json-stable-stringify-without-jsonify "^1.0.1"
+ levn "^0.4.1"
+ lodash.merge "^4.6.2"
+ minimatch "^3.1.2"
+ natural-compare "^1.4.0"
+ optionator "^0.9.1"
+ regexpp "^3.2.0"
+ strip-ansi "^6.0.1"
+ strip-json-comments "^3.1.0"
+ text-table "^0.2.0"
+ v8-compile-cache "^2.0.3"
+
espree@^9.3.1:
version "9.3.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
@@ -4472,6 +4637,15 @@
acorn-jsx "^5.3.1"
eslint-visitor-keys "^3.3.0"
+espree@^9.3.2:
+ version "9.3.2"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596"
+ integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==
+ dependencies:
+ acorn "^8.7.1"
+ acorn-jsx "^5.3.2"
+ eslint-visitor-keys "^3.3.0"
+
esprima@^4.0.0, esprima@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
@@ -4640,16 +4814,16 @@
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
-expect@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/expect/-/expect-28.0.2.tgz#86f0d6fa971bc533faf68d4d103d00f343d6a4b3"
- integrity sha512-X0qIuI/zKv98k34tM+uGeOgAC73lhs4vROF9MkPk94C1zujtwv4Cla8SxhWn0G1OwvG9gLLL7RjFBkwGVaZ83w==
+expect@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.0.tgz#10e8da64c0850eb8c39a480199f14537f46e8360"
+ integrity sha512-qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw==
dependencies:
- "@jest/expect-utils" "^28.0.2"
+ "@jest/expect-utils" "^28.1.0"
jest-get-type "^28.0.2"
- jest-matcher-utils "^28.0.2"
- jest-message-util "^28.0.2"
- jest-util "^28.0.2"
+ jest-matcher-utils "^28.1.0"
+ jest-message-util "^28.1.0"
+ jest-util "^28.1.0"
express@^4.14.0:
version "4.18.1"
@@ -5130,10 +5304,10 @@
dependencies:
assert-plus "^1.0.0"
-gh-pages@^3.2.3:
- version "3.2.3"
- resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-3.2.3.tgz#897e5f15e111f42af57d21d430b83e5cdf29472c"
- integrity sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==
+gh-pages@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-4.0.0.tgz#bd7447bab7eef008f677ac8cc4f6049ab978f4a6"
+ integrity sha512-p8S0T3aGJc68MtwOcZusul5qPSNZCalap3NWbhRUZYu1YOdp+EjZ+4kPmRM8h3NNRdqw00yuevRjlkuSzCn7iQ==
dependencies:
async "^2.6.1"
commander "^2.18.0"
@@ -6034,86 +6208,86 @@
execa "^5.0.0"
throat "^6.0.1"
-jest-circus@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.0.3.tgz#45f77090b4b9fe5c1b84f72816868c9d4c0f57b1"
- integrity sha512-HJ3rUCm3A3faSy7KVH5MFCncqJLtrjEFkTPn9UIcs4Kq77+TXqHsOaI+/k73aHe6DJQigLUXq9rCYj3MYFlbIw==
+jest-circus@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.0.tgz#e229f590911bd54d60efaf076f7acd9360296dae"
+ integrity sha512-rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ==
dependencies:
- "@jest/environment" "^28.0.2"
- "@jest/expect" "^28.0.3"
- "@jest/test-result" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/environment" "^28.1.0"
+ "@jest/expect" "^28.1.0"
+ "@jest/test-result" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
chalk "^4.0.0"
co "^4.6.0"
dedent "^0.7.0"
is-generator-fn "^2.0.0"
- jest-each "^28.0.2"
- jest-matcher-utils "^28.0.2"
- jest-message-util "^28.0.2"
- jest-runtime "^28.0.3"
- jest-snapshot "^28.0.3"
- jest-util "^28.0.2"
- pretty-format "^28.0.2"
+ jest-each "^28.1.0"
+ jest-matcher-utils "^28.1.0"
+ jest-message-util "^28.1.0"
+ jest-runtime "^28.1.0"
+ jest-snapshot "^28.1.0"
+ jest-util "^28.1.0"
+ pretty-format "^28.1.0"
slash "^3.0.0"
stack-utils "^2.0.3"
throat "^6.0.1"
-jest-cli@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.0.3.tgz#4a4e55078ec772e0ea2583dd4c4b38fb306dc556"
- integrity sha512-NCPTEONCnhYGo1qzPP4OOcGF04YasM5GZSwQLI1HtEluxa3ct4U65IbZs6DSRt8XN1Rq0jhXwv02m5lHB28Uyg==
+jest-cli@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.0.tgz#cd1d8adb9630102d5ba04a22895f63decdd7ac1f"
+ integrity sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ==
dependencies:
- "@jest/core" "^28.0.3"
- "@jest/test-result" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/core" "^28.1.0"
+ "@jest/test-result" "^28.1.0"
+ "@jest/types" "^28.1.0"
chalk "^4.0.0"
exit "^0.1.2"
graceful-fs "^4.2.9"
import-local "^3.0.2"
- jest-config "^28.0.3"
- jest-util "^28.0.2"
- jest-validate "^28.0.2"
+ jest-config "^28.1.0"
+ jest-util "^28.1.0"
+ jest-validate "^28.1.0"
prompts "^2.0.1"
yargs "^17.3.1"
-jest-config@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.0.3.tgz#9c0556d60d692153a6bc8652974182c22db9244f"
- integrity sha512-3gWOEHwGpNhyYOk9vnUMv94x15QcdjACm7A3lERaluwnyD6d1WZWe9RFCShgIXVOHzRfG1hWxsI2U0gKKSGgDQ==
+jest-config@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.0.tgz#fca22ca0760e746fe1ce1f9406f6b307ab818501"
+ integrity sha512-aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA==
dependencies:
"@babel/core" "^7.11.6"
- "@jest/test-sequencer" "^28.0.2"
- "@jest/types" "^28.0.2"
- babel-jest "^28.0.3"
+ "@jest/test-sequencer" "^28.1.0"
+ "@jest/types" "^28.1.0"
+ babel-jest "^28.1.0"
chalk "^4.0.0"
ci-info "^3.2.0"
deepmerge "^4.2.2"
glob "^7.1.3"
graceful-fs "^4.2.9"
- jest-circus "^28.0.3"
- jest-environment-node "^28.0.2"
+ jest-circus "^28.1.0"
+ jest-environment-node "^28.1.0"
jest-get-type "^28.0.2"
jest-regex-util "^28.0.2"
- jest-resolve "^28.0.3"
- jest-runner "^28.0.3"
- jest-util "^28.0.2"
- jest-validate "^28.0.2"
+ jest-resolve "^28.1.0"
+ jest-runner "^28.1.0"
+ jest-util "^28.1.0"
+ jest-validate "^28.1.0"
micromatch "^4.0.4"
parse-json "^5.2.0"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
slash "^3.0.0"
strip-json-comments "^3.1.1"
-jest-diff@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.0.2.tgz#a543c90082560cd6cb14c5f28c39e6d4618ad7a6"
- integrity sha512-33Rnf821Y54OAloav0PGNWHlbtEorXpjwchnToyyWbec10X74FOW7hGfvrXLGz7xOe2dz0uo9JVFAHHj/2B5pg==
+jest-diff@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.0.tgz#77686fef899ec1873dbfbf9330e37dd429703269"
+ integrity sha512-8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA==
dependencies:
chalk "^4.0.0"
diff-sequences "^28.0.2"
jest-get-type "^28.0.2"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
jest-docblock@^28.0.2:
version "28.0.2"
@@ -6122,106 +6296,106 @@
dependencies:
detect-newline "^3.0.0"
-jest-each@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.0.2.tgz#fcf6843e9afe5a3f2d0b1c02aab1f41889d92f1d"
- integrity sha512-/W5Wc0b+ipR36kDaLngdVEJ/5UYPOITK7rW0djTlCCQdMuWpCFJweMW4TzAoJ6GiRrljPL8FwiyOSoSHKrda2w==
+jest-each@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.0.tgz#54ae66d6a0a5b1913e9a87588d26c2687c39458b"
+ integrity sha512-a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
chalk "^4.0.0"
jest-get-type "^28.0.2"
- jest-util "^28.0.2"
- pretty-format "^28.0.2"
+ jest-util "^28.1.0"
+ pretty-format "^28.1.0"
-jest-environment-jsdom@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-28.0.2.tgz#b923f861f4cd896d2ba1971255060e1f413e9a04"
- integrity sha512-rQhgV9reB6Id7VPa5jEkKx80Ppa/I6C7vKTMnceBS+d/rt+aTfbxbK/P4HRLMLE8KKsETszPpzYtGgsa8xMg7g==
+jest-environment-jsdom@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-28.1.0.tgz#1042cffd0343615c5fac2d2c8da20d1d43b73ef8"
+ integrity sha512-8n6P4xiDjNVqTWv6W6vJPuQdLx+ZiA3dbYg7YJ+DPzR+9B61K6pMVJrSs2IxfGRG4J7pyAUA5shQ9G0KEun78w==
dependencies:
- "@jest/environment" "^28.0.2"
- "@jest/fake-timers" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/environment" "^28.1.0"
+ "@jest/fake-timers" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/jsdom" "^16.2.4"
"@types/node" "*"
- jest-mock "^28.0.2"
- jest-util "^28.0.2"
+ jest-mock "^28.1.0"
+ jest-util "^28.1.0"
jsdom "^19.0.0"
-jest-environment-node@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.0.2.tgz#bd58e192b8f36a37e52c52fac812bd24b360c0b9"
- integrity sha512-o9u5UHZ+NCuIoa44KEF0Behhsz/p1wMm0WumsZfWR1k4IVoWSt3aN0BavSC5dd26VxSGQvkrCnJxxOzhhUEG3Q==
+jest-environment-node@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.0.tgz#6ed2150aa31babba0c488c5b4f4d813a585c68e6"
+ integrity sha512-gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ==
dependencies:
- "@jest/environment" "^28.0.2"
- "@jest/fake-timers" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/environment" "^28.1.0"
+ "@jest/fake-timers" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
- jest-mock "^28.0.2"
- jest-util "^28.0.2"
+ jest-mock "^28.1.0"
+ jest-util "^28.1.0"
jest-get-type@^28.0.2:
version "28.0.2"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203"
integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==
-jest-haste-map@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.0.2.tgz#0c768f43680013cfd2a4471a3ec76c47bfb9e7c6"
- integrity sha512-EokdL7l5uk4TqWGawwrIt8w3tZNcbeiRxmKGEURf42pl+/rWJy3sCJlon5HBhJXZTW978jk6600BLQOI7i25Ig==
+jest-haste-map@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.0.tgz#6c1ee2daf1c20a3e03dbd8e5b35c4d73d2349cf0"
+ integrity sha512-xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@types/graceful-fs" "^4.1.3"
"@types/node" "*"
anymatch "^3.0.3"
fb-watchman "^2.0.0"
graceful-fs "^4.2.9"
jest-regex-util "^28.0.2"
- jest-util "^28.0.2"
- jest-worker "^28.0.2"
+ jest-util "^28.1.0"
+ jest-worker "^28.1.0"
micromatch "^4.0.4"
walker "^1.0.7"
optionalDependencies:
fsevents "^2.3.2"
-jest-leak-detector@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.0.2.tgz#cbde3d22d09bd690ececdc2ed01c608435328456"
- integrity sha512-UGaSPYtxKXl/YKacq6juRAKmMp1z2os8NaU8PSC+xvNikmu3wF6QFrXrihMM4hXeMr9HuNotBrQZHmzDY8KIBQ==
+jest-leak-detector@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.0.tgz#b65167776a8787443214d6f3f54935a4c73c8a45"
+ integrity sha512-uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA==
dependencies:
jest-get-type "^28.0.2"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
-jest-matcher-utils@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.0.2.tgz#eb461af204b6d0f05281e9228094f0ab7e9e8537"
- integrity sha512-SxtTiI2qLJHFtOz/bySStCnwCvISAuxQ/grS+74dfTy5AuJw3Sgj9TVUvskcnImTfpzLoMCDJseRaeRrVYbAOA==
+jest-matcher-utils@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.0.tgz#2ae398806668eeabd293c61712227cb94b250ccf"
+ integrity sha512-onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ==
dependencies:
chalk "^4.0.0"
- jest-diff "^28.0.2"
+ jest-diff "^28.1.0"
jest-get-type "^28.0.2"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
-jest-message-util@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.0.2.tgz#f3cf36be72be4c4c4058cb34bd6673996d26dee3"
- integrity sha512-knK7XyojvwYh1XiF2wmVdskgM/uN11KsjcEWWHfnMZNEdwXCrqB4sCBO94F4cfiAwCS8WFV6CDixDwPlMh/wdA==
+jest-message-util@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.0.tgz#7e8f0b9049e948e7b94c2a52731166774ba7d0af"
+ integrity sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
graceful-fs "^4.2.9"
micromatch "^4.0.4"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-mock@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.0.2.tgz#059b500b34c1dd76474ebcdeccc249fe4dd0249f"
- integrity sha512-vfnJ4zXRB0i24jOTGtQJyl26JKsgBKtqRlCnsrORZbG06FToSSn33h2x/bmE8XxqxkLWdZBRo+/65l8Vi3nD+g==
+jest-mock@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.0.tgz#ccc7cc12a9b330b3182db0c651edc90d163ff73e"
+ integrity sha512-H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
jest-pnp-resolver@^1.2.2:
@@ -6234,168 +6408,168 @@
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead"
integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==
-jest-resolve-dependencies@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.0.3.tgz#76d8f59f7e76ba36d76a1677eeaaed24560da7e0"
- integrity sha512-lCgHMm0/5p0qHemrOzm7kI6JDei28xJwIf7XOEcv1HeAVHnsON8B8jO/woqlU+/GcOXb58ymieYqhk3zjGWnvQ==
+jest-resolve-dependencies@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.0.tgz#167becb8bee6e20b5ef4a3a728ec67aef6b0b79b"
+ integrity sha512-Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g==
dependencies:
jest-regex-util "^28.0.2"
- jest-snapshot "^28.0.3"
+ jest-snapshot "^28.1.0"
-jest-resolve@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.0.3.tgz#63f8e6b53e40f265b3ca9116195221dd43e3d16d"
- integrity sha512-lfgjd9JhEjpjIN3HLUfdysdK+A7ePQoYmd7WL9DUEWqdnngb1rF56eee6iDXJxl/3eSolpP43VD7VrhjL3NsoQ==
+jest-resolve@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.0.tgz#b1f32748a6cee7d1779c7ef639c0a87078de3d35"
+ integrity sha512-vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw==
dependencies:
chalk "^4.0.0"
graceful-fs "^4.2.9"
- jest-haste-map "^28.0.2"
+ jest-haste-map "^28.1.0"
jest-pnp-resolver "^1.2.2"
- jest-util "^28.0.2"
- jest-validate "^28.0.2"
+ jest-util "^28.1.0"
+ jest-validate "^28.1.0"
resolve "^1.20.0"
resolve.exports "^1.1.0"
slash "^3.0.0"
-jest-runner@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.0.3.tgz#a8a409c685ad3081a44b149b2eb04bc4d47faaf9"
- integrity sha512-4OsHMjBLtYUWCENucAQ4Za0jGfEbOFi/Fusv6dzUuaweqx8apb4+5p2LR2yvgF4StFulmxyC238tGLftfu+zBA==
+jest-runner@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.0.tgz#aefe2a1e618a69baa0b24a50edc54fdd7e728eaa"
+ integrity sha512-FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w==
dependencies:
- "@jest/console" "^28.0.2"
- "@jest/environment" "^28.0.2"
- "@jest/test-result" "^28.0.2"
- "@jest/transform" "^28.0.3"
- "@jest/types" "^28.0.2"
+ "@jest/console" "^28.1.0"
+ "@jest/environment" "^28.1.0"
+ "@jest/test-result" "^28.1.0"
+ "@jest/transform" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
chalk "^4.0.0"
emittery "^0.10.2"
graceful-fs "^4.2.9"
jest-docblock "^28.0.2"
- jest-environment-node "^28.0.2"
- jest-haste-map "^28.0.2"
- jest-leak-detector "^28.0.2"
- jest-message-util "^28.0.2"
- jest-resolve "^28.0.3"
- jest-runtime "^28.0.3"
- jest-util "^28.0.2"
- jest-watcher "^28.0.2"
- jest-worker "^28.0.2"
+ jest-environment-node "^28.1.0"
+ jest-haste-map "^28.1.0"
+ jest-leak-detector "^28.1.0"
+ jest-message-util "^28.1.0"
+ jest-resolve "^28.1.0"
+ jest-runtime "^28.1.0"
+ jest-util "^28.1.0"
+ jest-watcher "^28.1.0"
+ jest-worker "^28.1.0"
source-map-support "0.5.13"
throat "^6.0.1"
-jest-runtime@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.0.3.tgz#02346a34de0ac61d23bdb0e8c035ad973d7bb087"
- integrity sha512-7FtPUmvbZEHLOdjsF6dyHg5Pe4E0DU+f3Vvv8BPzVR7mQA6nFR4clQYLAPyJGnsUvN8WRWn+b5a5SVwnj1WaGg==
+jest-runtime@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.0.tgz#4847dcb2a4eb4b0f9eaf41306897e51fb1665631"
+ integrity sha512-wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg==
dependencies:
- "@jest/environment" "^28.0.2"
- "@jest/fake-timers" "^28.0.2"
- "@jest/globals" "^28.0.3"
+ "@jest/environment" "^28.1.0"
+ "@jest/fake-timers" "^28.1.0"
+ "@jest/globals" "^28.1.0"
"@jest/source-map" "^28.0.2"
- "@jest/test-result" "^28.0.2"
- "@jest/transform" "^28.0.3"
- "@jest/types" "^28.0.2"
+ "@jest/test-result" "^28.1.0"
+ "@jest/transform" "^28.1.0"
+ "@jest/types" "^28.1.0"
chalk "^4.0.0"
cjs-module-lexer "^1.0.0"
collect-v8-coverage "^1.0.0"
execa "^5.0.0"
glob "^7.1.3"
graceful-fs "^4.2.9"
- jest-haste-map "^28.0.2"
- jest-message-util "^28.0.2"
- jest-mock "^28.0.2"
+ jest-haste-map "^28.1.0"
+ jest-message-util "^28.1.0"
+ jest-mock "^28.1.0"
jest-regex-util "^28.0.2"
- jest-resolve "^28.0.3"
- jest-snapshot "^28.0.3"
- jest-util "^28.0.2"
+ jest-resolve "^28.1.0"
+ jest-snapshot "^28.1.0"
+ jest-util "^28.1.0"
slash "^3.0.0"
strip-bom "^4.0.0"
-jest-snapshot@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.0.3.tgz#9a768d0c617d070e87c1bd37240f22b344616154"
- integrity sha512-nVzAAIlAbrMuvVUrS1YxmAeo1TfSsDDU+K5wv/Ow56MBp+L+Y71ksAbwRp3kGCgZAz4oOXcAMPAwtT9Yh1hlQQ==
+jest-snapshot@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.0.tgz#4b74fa8816707dd10fe9d551c2c258e5a67b53b6"
+ integrity sha512-ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw==
dependencies:
"@babel/core" "^7.11.6"
"@babel/generator" "^7.7.2"
"@babel/plugin-syntax-typescript" "^7.7.2"
"@babel/traverse" "^7.7.2"
"@babel/types" "^7.3.3"
- "@jest/expect-utils" "^28.0.2"
- "@jest/transform" "^28.0.3"
- "@jest/types" "^28.0.2"
+ "@jest/expect-utils" "^28.1.0"
+ "@jest/transform" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/babel__traverse" "^7.0.6"
"@types/prettier" "^2.1.5"
babel-preset-current-node-syntax "^1.0.0"
chalk "^4.0.0"
- expect "^28.0.2"
+ expect "^28.1.0"
graceful-fs "^4.2.9"
- jest-diff "^28.0.2"
+ jest-diff "^28.1.0"
jest-get-type "^28.0.2"
- jest-haste-map "^28.0.2"
- jest-matcher-utils "^28.0.2"
- jest-message-util "^28.0.2"
- jest-util "^28.0.2"
+ jest-haste-map "^28.1.0"
+ jest-matcher-utils "^28.1.0"
+ jest-message-util "^28.1.0"
+ jest-util "^28.1.0"
natural-compare "^1.4.0"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
semver "^7.3.5"
-jest-util@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.0.2.tgz#8e22cdd6e0549e0a393055f0e2da7eacc334b143"
- integrity sha512-EVdpIRCC8lzqhp9A0u0aAKlsFIzufK6xKxNK7awsnebTdOP4hpyQW5o6Ox2qPl8gbeUKYF+POLyItaND53kpGA==
+jest-util@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.0.tgz#d54eb83ad77e1dd441408738c5a5043642823be5"
+ integrity sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
chalk "^4.0.0"
ci-info "^3.2.0"
graceful-fs "^4.2.9"
picomatch "^2.2.3"
-jest-validate@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.0.2.tgz#58bb7e826c054a8bb3b54c05f73758d96cf6dbef"
- integrity sha512-nr0UOvCTtxP0YPdsk01Gk7e7c0xIiEe2nncAe3pj0wBfUvAykTVrMrdeASlAJnlEQCBuwN/GF4hKoCzbkGNCNw==
+jest-validate@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.0.tgz#8a6821f48432aba9f830c26e28226ad77b9a0e18"
+ integrity sha512-Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ==
dependencies:
- "@jest/types" "^28.0.2"
+ "@jest/types" "^28.1.0"
camelcase "^6.2.0"
chalk "^4.0.0"
jest-get-type "^28.0.2"
leven "^3.1.0"
- pretty-format "^28.0.2"
+ pretty-format "^28.1.0"
-jest-watcher@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.0.2.tgz#649fa24df531d4071be5784b6274d494d788c88b"
- integrity sha512-uIVJLpQ/5VTGQWBiBatHsi7jrCqHjHl0e0dFHMWzwuIfUbdW/muk0DtSr0fteY2T7QTFylv+7a5Rm8sBKrE12Q==
+jest-watcher@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.0.tgz#aaa7b4164a4e77eeb5f7d7b25ede5e7b4e9c9aaf"
+ integrity sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==
dependencies:
- "@jest/test-result" "^28.0.2"
- "@jest/types" "^28.0.2"
+ "@jest/test-result" "^28.1.0"
+ "@jest/types" "^28.1.0"
"@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
emittery "^0.10.2"
- jest-util "^28.0.2"
+ jest-util "^28.1.0"
string-length "^4.0.1"
-jest-worker@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.0.2.tgz#75f7e5126541289ba02e9c1a67e46349ddb8141d"
- integrity sha512-pijNxfjxT0tGAx+8+OzZ+eayVPCwy/rsZFhebmC0F4YnXu1EHPEPxg7utL3m5uX3EaFH1/jwDxGa1EbjJCST2g==
+jest-worker@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.0.tgz#ced54757a035e87591e1208253a6e3aac1a855e5"
+ integrity sha512-ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A==
dependencies:
"@types/node" "*"
merge-stream "^2.0.0"
supports-color "^8.0.0"
-jest@^28.0.3:
- version "28.0.3"
- resolved "https://registry.yarnpkg.com/jest/-/jest-28.0.3.tgz#92a7d6ee097b61de4ba2db7f3ab723e81a99b32d"
- integrity sha512-uS+T5J3w5xyzd1KSJCGKhCo8WTJXbNl86f5SW11wgssbandJOVLRKKUxmhdFfmKxhPeksl1hHZ0HaA8VBzp7xA==
+jest@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.0.tgz#f420e41c8f2395b9a30445a97189ebb57593d831"
+ integrity sha512-TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg==
dependencies:
- "@jest/core" "^28.0.3"
+ "@jest/core" "^28.1.0"
import-local "^3.0.2"
- jest-cli "^28.0.3"
+ jest-cli "^28.1.0"
js-cleanup@^1.2.0:
version "1.2.0"
@@ -7726,10 +7900,10 @@
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"
integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==
-pretty-format@^28.0.2:
- version "28.0.2"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.0.2.tgz#6a24d71cbb61a5e5794ba7513fe22101675481bc"
- integrity sha512-UmGZ1IERwS3yY35LDMTaBUYI1w4udZDdJGGT/DqQeKG9ZLDn7/K2Jf/JtYSRiHCCKMHvUA+zsEGSmHdpaVp1yw==
+pretty-format@^28.1.0:
+ version "28.1.0"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.0.tgz#8f5836c6a0dfdb834730577ec18029052191af55"
+ integrity sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==
dependencies:
"@jest/schemas" "^28.0.2"
ansi-regex "^5.0.1"
@@ -8202,10 +8376,10 @@
dependencies:
estree-walker "^0.6.1"
-rollup@^2.71.1:
- version "2.72.0"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.72.0.tgz#f94280b003bcf9f2f1f2594059a9db5abced371e"
- integrity sha512-KqtR2YcO35/KKijg4nx4STO3569aqCUeGRkKWnJ6r+AvBBrVY9L4pmf4NHVrQr4mTOq6msbohflxr2kpihhaOA==
+rollup@^2.72.1:
+ version "2.72.1"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.72.1.tgz#861c94790537b10008f0ca0fbc60e631aabdd045"
+ integrity sha512-NTc5UGy/NWFGpSqF1lFY8z9Adri6uhyMLI6LvPAXdBKoPRFhIIiBUpt+Qg2awixqO3xvzSijjhnb4+QEZwJmxA==
optionalDependencies:
fsevents "~2.3.2"
@@ -9765,7 +9939,7 @@
y18n "^5.0.5"
yargs-parser "^20.2.2"
-yargs@^17.0.0, yargs@^17.3.1, yargs@^17.4.1:
+yargs@^17.0.0, yargs@^17.3.1:
version "17.4.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284"
integrity sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g==
@@ -9778,6 +9952,19 @@
y18n "^5.0.5"
yargs-parser "^21.0.0"
+yargs@^17.5.0:
+ version "17.5.0"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.0.tgz#2706c5431f8c119002a2b106fc9f58b9bb9097a3"
+ integrity sha512-3sLxVhbAB5OC8qvVRebCLWuouhwh/rswsiDYx3WGxajUk/l4G20SKfrKKFeNIHboUFt2JFgv2yfn+5cgOr/t5A==
+ dependencies:
+ cliui "^7.0.2"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.3"
+ y18n "^5.0.5"
+ yargs-parser "^21.0.0"
+
yn@3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"