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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup2: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>9 **/10 PolkadotPrimitivesV2PersistedValidationData: {11 parentHead: 'Bytes',12 relayParentNumber: 'u32',13 relayParentStorageRoot: 'H256',14 maxPovSize: 'u32'15 },16 /**17 * Lookup9: polkadot_primitives::v2::UpgradeRestriction18 **/19 PolkadotPrimitivesV2UpgradeRestriction: {20 _enum: ['Present']21 },22 /**23 * Lookup10: sp_trie::storage_proof::StorageProof24 **/25 SpTrieStorageProof: {26 trieNodes: 'BTreeSet<Bytes>'27 },28 /**29 * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot30 **/31 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {32 dmqMqcHead: 'H256',33 relayDispatchQueueSize: '(u32,u32)',34 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',35 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'36 },37 /**38 * Lookup18: polkadot_primitives::v2::AbridgedHrmpChannel39 **/40 PolkadotPrimitivesV2AbridgedHrmpChannel: {41 maxCapacity: 'u32',42 maxTotalSize: 'u32',43 maxMessageSize: 'u32',44 msgCount: 'u32',45 totalSize: 'u32',46 mqcHead: 'Option<H256>'47 },48 /**49 * Lookup20: polkadot_primitives::v2::AbridgedHostConfiguration50 **/51 PolkadotPrimitivesV2AbridgedHostConfiguration: {52 maxCodeSize: 'u32',53 maxHeadDataSize: 'u32',54 maxUpwardQueueCount: 'u32',55 maxUpwardQueueSize: 'u32',56 maxUpwardMessageSize: 'u32',57 maxUpwardMessageNumPerCandidate: 'u32',58 hrmpMaxMessageNumPerCandidate: 'u32',59 validationUpgradeCooldown: 'u32',60 validationUpgradeDelay: 'u32'61 },62 /**63 * Lookup26: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>64 **/65 PolkadotCorePrimitivesOutboundHrmpMessage: {66 recipient: 'u32',67 data: 'Bytes'68 },69 /**70 * Lookup28: cumulus_pallet_parachain_system::pallet::Call<T>71 **/72 CumulusPalletParachainSystemCall: {73 _enum: {74 set_validation_data: {75 data: 'CumulusPrimitivesParachainInherentParachainInherentData',76 },77 sudo_send_upward_message: {78 message: 'Bytes',79 },80 authorize_upgrade: {81 codeHash: 'H256',82 },83 enact_authorized_upgrade: {84 code: 'Bytes'85 }86 }87 },88 /**89 * Lookup29: cumulus_primitives_parachain_inherent::ParachainInherentData90 **/91 CumulusPrimitivesParachainInherentParachainInherentData: {92 validationData: 'PolkadotPrimitivesV2PersistedValidationData',93 relayChainState: 'SpTrieStorageProof',94 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',95 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'96 },97 /**98 * Lookup31: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>99 **/100 PolkadotCorePrimitivesInboundDownwardMessage: {101 sentAt: 'u32',102 msg: 'Bytes'103 },104 /**105 * Lookup34: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>106 **/107 PolkadotCorePrimitivesInboundHrmpMessage: {108 sentAt: 'u32',109 data: 'Bytes'110 },111 /**112 * Lookup37: cumulus_pallet_parachain_system::pallet::Event<T>113 **/114 CumulusPalletParachainSystemEvent: {115 _enum: {116 ValidationFunctionStored: 'Null',117 ValidationFunctionApplied: 'u32',118 ValidationFunctionDiscarded: 'Null',119 UpgradeAuthorized: 'H256',120 DownwardMessagesReceived: 'u32',121 DownwardMessagesProcessed: '(u64,H256)'122 }123 },124 /**125 * Lookup38: cumulus_pallet_parachain_system::pallet::Error<T>126 **/127 CumulusPalletParachainSystemError: {128 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']129 },130 /**131 * Lookup41: pallet_balances::AccountData<Balance>132 **/133 PalletBalancesAccountData: {134 free: 'u128',135 reserved: 'u128',136 miscFrozen: 'u128',137 feeFrozen: 'u128'138 },139 /**140 * Lookup43: pallet_balances::BalanceLock<Balance>141 **/142 PalletBalancesBalanceLock: {143 id: '[u8;8]',144 amount: 'u128',145 reasons: 'PalletBalancesReasons'146 },147 /**148 * Lookup45: pallet_balances::Reasons149 **/150 PalletBalancesReasons: {151 _enum: ['Fee', 'Misc', 'All']152 },153 /**154 * Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>155 **/156 PalletBalancesReserveData: {157 id: '[u8;8]',158 amount: 'u128'159 },160 /**161 * Lookup50: pallet_balances::Releases162 **/163 PalletBalancesReleases: {164 _enum: ['V1_0_0', 'V2_0_0']165 },166 /**167 * Lookup51: pallet_balances::pallet::Call<T, I>168 **/169 PalletBalancesCall: {170 _enum: {171 transfer: {172 dest: 'MultiAddress',173 value: 'Compact<u128>',174 },175 set_balance: {176 who: 'MultiAddress',177 newFree: 'Compact<u128>',178 newReserved: 'Compact<u128>',179 },180 force_transfer: {181 source: 'MultiAddress',182 dest: 'MultiAddress',183 value: 'Compact<u128>',184 },185 transfer_keep_alive: {186 dest: 'MultiAddress',187 value: 'Compact<u128>',188 },189 transfer_all: {190 dest: 'MultiAddress',191 keepAlive: 'bool',192 },193 force_unreserve: {194 who: 'MultiAddress',195 amount: 'u128'196 }197 }198 },199 /**200 * Lookup57: pallet_balances::pallet::Event<T, I>201 **/202 PalletBalancesEvent: {203 _enum: {204 Endowed: {205 account: 'AccountId32',206 freeBalance: 'u128',207 },208 DustLost: {209 account: 'AccountId32',210 amount: 'u128',211 },212 Transfer: {213 from: 'AccountId32',214 to: 'AccountId32',215 amount: 'u128',216 },217 BalanceSet: {218 who: 'AccountId32',219 free: 'u128',220 reserved: 'u128',221 },222 Reserved: {223 who: 'AccountId32',224 amount: 'u128',225 },226 Unreserved: {227 who: 'AccountId32',228 amount: 'u128',229 },230 ReserveRepatriated: {231 from: 'AccountId32',232 to: 'AccountId32',233 amount: 'u128',234 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',235 },236 Deposit: {237 who: 'AccountId32',238 amount: 'u128',239 },240 Withdraw: {241 who: 'AccountId32',242 amount: 'u128',243 },244 Slashed: {245 who: 'AccountId32',246 amount: 'u128'247 }248 }249 },250 /**251 * Lookup58: frame_support::traits::tokens::misc::BalanceStatus252 **/253 FrameSupportTokensMiscBalanceStatus: {254 _enum: ['Free', 'Reserved']255 },256 /**257 * Lookup59: pallet_balances::pallet::Error<T, I>258 **/259 PalletBalancesError: {260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']261 },262 /**263 * Lookup62: pallet_timestamp::pallet::Call<T>264 **/265 PalletTimestampCall: {266 _enum: {267 set: {268 now: 'Compact<u64>'269 }270 }271 },272 /**273 * Lookup65: pallet_transaction_payment::Releases274 **/275 PalletTransactionPaymentReleases: {276 _enum: ['V1Ancient', 'V2']277 },278 /**279 * Lookup67: frame_support::weights::WeightToFeeCoefficient<Balance>280 **/281 FrameSupportWeightsWeightToFeeCoefficient: {282 coeffInteger: 'u128',283 coeffFrac: 'Perbill',284 negative: 'bool',285 degree: 'u8'286 },287 /**288 * Lookup69: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>289 **/290 PalletTreasuryProposal: {291 proposer: 'AccountId32',292 value: 'u128',293 beneficiary: 'AccountId32',294 bond: 'u128'295 },296 /**297 * Lookup72: pallet_treasury::pallet::Call<T, I>298 **/299 PalletTreasuryCall: {300 _enum: {301 propose_spend: {302 value: 'Compact<u128>',303 beneficiary: 'MultiAddress',304 },305 reject_proposal: {306 proposalId: 'Compact<u32>',307 },308 approve_proposal: {309 proposalId: 'Compact<u32>'310 }311 }312 },313 /**314 * Lookup74: pallet_treasury::pallet::Event<T, I>315 **/316 PalletTreasuryEvent: {317 _enum: {318 Proposed: {319 proposalIndex: 'u32',320 },321 Spending: {322 budgetRemaining: 'u128',323 },324 Awarded: {325 proposalIndex: 'u32',326 award: 'u128',327 account: 'AccountId32',328 },329 Rejected: {330 proposalIndex: 'u32',331 slashed: 'u128',332 },333 Burnt: {334 burntFunds: 'u128',335 },336 Rollover: {337 rolloverBalance: 'u128',338 },339 Deposit: {340 value: 'u128'341 }342 }343 },344 /**345 * Lookup77: frame_support::PalletId346 **/347 FrameSupportPalletId: '[u8;8]',348 /**349 * Lookup78: pallet_treasury::pallet::Error<T, I>350 **/351 PalletTreasuryError: {352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']353 },354 /**355 * Lookup79: pallet_sudo::pallet::Call<T>356 **/357 PalletSudoCall: {358 _enum: {359 sudo: {360 call: 'Call',361 },362 sudo_unchecked_weight: {363 call: 'Call',364 weight: 'u64',365 },366 set_key: {367 _alias: {368 new_: 'new',369 },370 new_: 'MultiAddress',371 },372 sudo_as: {373 who: 'MultiAddress',374 call: 'Call'375 }376 }377 },378 /**379 * Lookup81: frame_system::pallet::Call<T>380 **/381 FrameSystemCall: {382 _enum: {383 fill_block: {384 ratio: 'Perbill',385 },386 remark: {387 remark: 'Bytes',388 },389 set_heap_pages: {390 pages: 'u64',391 },392 set_code: {393 code: 'Bytes',394 },395 set_code_without_checks: {396 code: 'Bytes',397 },398 set_storage: {399 items: 'Vec<(Bytes,Bytes)>',400 },401 kill_storage: {402 _alias: {403 keys_: 'keys',404 },405 keys_: 'Vec<Bytes>',406 },407 kill_prefix: {408 prefix: 'Bytes',409 subkeys: 'u32',410 },411 remark_with_event: {412 remark: 'Bytes'413 }414 }415 },416 /**417 * Lookup84: orml_vesting::module::Call<T>418 **/419 OrmlVestingModuleCall: {420 _enum: {421 claim: 'Null',422 vested_transfer: {423 dest: 'MultiAddress',424 schedule: 'OrmlVestingVestingSchedule',425 },426 update_vesting_schedules: {427 who: 'MultiAddress',428 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',429 },430 claim_for: {431 dest: 'MultiAddress'432 }433 }434 },435 /**436 * Lookup85: orml_vesting::VestingSchedule<BlockNumber, Balance>437 **/438 OrmlVestingVestingSchedule: {439 start: 'u32',440 period: 'u32',441 periodCount: 'u32',442 perPeriod: 'Compact<u128>'443 },444 /**445 * Lookup87: cumulus_pallet_xcmp_queue::pallet::Call<T>446 **/447 CumulusPalletXcmpQueueCall: {448 _enum: {449 service_overweight: {450 index: 'u64',451 weightLimit: 'u64',452 },453 suspend_xcm_execution: 'Null',454 resume_xcm_execution: 'Null',455 update_suspend_threshold: {456 _alias: {457 new_: 'new',458 },459 new_: 'u32',460 },461 update_drop_threshold: {462 _alias: {463 new_: 'new',464 },465 new_: 'u32',466 },467 update_resume_threshold: {468 _alias: {469 new_: 'new',470 },471 new_: 'u32',472 },473 update_threshold_weight: {474 _alias: {475 new_: 'new',476 },477 new_: 'u64',478 },479 update_weight_restrict_decay: {480 _alias: {481 new_: 'new',482 },483 new_: 'u64',484 },485 update_xcmp_max_individual_weight: {486 _alias: {487 new_: 'new',488 },489 new_: 'u64'490 }491 }492 },493 /**494 * Lookup88: pallet_xcm::pallet::Call<T>495 **/496 PalletXcmCall: {497 _enum: {498 send: {499 dest: 'XcmVersionedMultiLocation',500 message: 'XcmVersionedXcm',501 },502 teleport_assets: {503 dest: 'XcmVersionedMultiLocation',504 beneficiary: 'XcmVersionedMultiLocation',505 assets: 'XcmVersionedMultiAssets',506 feeAssetItem: 'u32',507 },508 reserve_transfer_assets: {509 dest: 'XcmVersionedMultiLocation',510 beneficiary: 'XcmVersionedMultiLocation',511 assets: 'XcmVersionedMultiAssets',512 feeAssetItem: 'u32',513 },514 execute: {515 message: 'XcmVersionedXcm',516 maxWeight: 'u64',517 },518 force_xcm_version: {519 location: 'XcmV1MultiLocation',520 xcmVersion: 'u32',521 },522 force_default_xcm_version: {523 maybeXcmVersion: 'Option<u32>',524 },525 force_subscribe_version_notify: {526 location: 'XcmVersionedMultiLocation',527 },528 force_unsubscribe_version_notify: {529 location: 'XcmVersionedMultiLocation',530 },531 limited_reserve_transfer_assets: {532 dest: 'XcmVersionedMultiLocation',533 beneficiary: 'XcmVersionedMultiLocation',534 assets: 'XcmVersionedMultiAssets',535 feeAssetItem: 'u32',536 weightLimit: 'XcmV2WeightLimit',537 },538 limited_teleport_assets: {539 dest: 'XcmVersionedMultiLocation',540 beneficiary: 'XcmVersionedMultiLocation',541 assets: 'XcmVersionedMultiAssets',542 feeAssetItem: 'u32',543 weightLimit: 'XcmV2WeightLimit'544 }545 }546 },547 /**548 * Lookup89: xcm::VersionedMultiLocation549 **/550 XcmVersionedMultiLocation: {551 _enum: {552 V0: 'XcmV0MultiLocation',553 V1: 'XcmV1MultiLocation'554 }555 },556 /**557 * Lookup90: xcm::v0::multi_location::MultiLocation558 **/559 XcmV0MultiLocation: {560 _enum: {561 Null: 'Null',562 X1: 'XcmV0Junction',563 X2: '(XcmV0Junction,XcmV0Junction)',564 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',565 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',566 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',567 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',568 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'570 }571 },572 /**573 * Lookup91: xcm::v0::junction::Junction574 **/575 XcmV0Junction: {576 _enum: {577 Parent: 'Null',578 Parachain: 'Compact<u32>',579 AccountId32: {580 network: 'XcmV0JunctionNetworkId',581 id: '[u8;32]',582 },583 AccountIndex64: {584 network: 'XcmV0JunctionNetworkId',585 index: 'Compact<u64>',586 },587 AccountKey20: {588 network: 'XcmV0JunctionNetworkId',589 key: '[u8;20]',590 },591 PalletInstance: 'u8',592 GeneralIndex: 'Compact<u128>',593 GeneralKey: 'Bytes',594 OnlyChild: 'Null',595 Plurality: {596 id: 'XcmV0JunctionBodyId',597 part: 'XcmV0JunctionBodyPart'598 }599 }600 },601 /**602 * Lookup92: xcm::v0::junction::NetworkId603 **/604 XcmV0JunctionNetworkId: {605 _enum: {606 Any: 'Null',607 Named: 'Bytes',608 Polkadot: 'Null',609 Kusama: 'Null'610 }611 },612 /**613 * Lookup93: xcm::v0::junction::BodyId614 **/615 XcmV0JunctionBodyId: {616 _enum: {617 Unit: 'Null',618 Named: 'Bytes',619 Index: 'Compact<u32>',620 Executive: 'Null',621 Technical: 'Null',622 Legislative: 'Null',623 Judicial: 'Null'624 }625 },626 /**627 * Lookup94: xcm::v0::junction::BodyPart628 **/629 XcmV0JunctionBodyPart: {630 _enum: {631 Voice: 'Null',632 Members: {633 count: 'Compact<u32>',634 },635 Fraction: {636 nom: 'Compact<u32>',637 denom: 'Compact<u32>',638 },639 AtLeastProportion: {640 nom: 'Compact<u32>',641 denom: 'Compact<u32>',642 },643 MoreThanProportion: {644 nom: 'Compact<u32>',645 denom: 'Compact<u32>'646 }647 }648 },649 /**650 * Lookup95: xcm::v1::multilocation::MultiLocation651 **/652 XcmV1MultiLocation: {653 parents: 'u8',654 interior: 'XcmV1MultilocationJunctions'655 },656 /**657 * Lookup96: xcm::v1::multilocation::Junctions658 **/659 XcmV1MultilocationJunctions: {660 _enum: {661 Here: 'Null',662 X1: 'XcmV1Junction',663 X2: '(XcmV1Junction,XcmV1Junction)',664 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',665 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',666 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',667 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',668 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'670 }671 },672 /**673 * Lookup97: xcm::v1::junction::Junction674 **/675 XcmV1Junction: {676 _enum: {677 Parachain: 'Compact<u32>',678 AccountId32: {679 network: 'XcmV0JunctionNetworkId',680 id: '[u8;32]',681 },682 AccountIndex64: {683 network: 'XcmV0JunctionNetworkId',684 index: 'Compact<u64>',685 },686 AccountKey20: {687 network: 'XcmV0JunctionNetworkId',688 key: '[u8;20]',689 },690 PalletInstance: 'u8',691 GeneralIndex: 'Compact<u128>',692 GeneralKey: 'Bytes',693 OnlyChild: 'Null',694 Plurality: {695 id: 'XcmV0JunctionBodyId',696 part: 'XcmV0JunctionBodyPart'697 }698 }699 },700 /**701 * Lookup98: xcm::VersionedXcm<Call>702 **/703 XcmVersionedXcm: {704 _enum: {705 V0: 'XcmV0Xcm',706 V1: 'XcmV1Xcm',707 V2: 'XcmV2Xcm'708 }709 },710 /**711 * Lookup99: xcm::v0::Xcm<Call>712 **/713 XcmV0Xcm: {714 _enum: {715 WithdrawAsset: {716 assets: 'Vec<XcmV0MultiAsset>',717 effects: 'Vec<XcmV0Order>',718 },719 ReserveAssetDeposit: {720 assets: 'Vec<XcmV0MultiAsset>',721 effects: 'Vec<XcmV0Order>',722 },723 TeleportAsset: {724 assets: 'Vec<XcmV0MultiAsset>',725 effects: 'Vec<XcmV0Order>',726 },727 QueryResponse: {728 queryId: 'Compact<u64>',729 response: 'XcmV0Response',730 },731 TransferAsset: {732 assets: 'Vec<XcmV0MultiAsset>',733 dest: 'XcmV0MultiLocation',734 },735 TransferReserveAsset: {736 assets: 'Vec<XcmV0MultiAsset>',737 dest: 'XcmV0MultiLocation',738 effects: 'Vec<XcmV0Order>',739 },740 Transact: {741 originType: 'XcmV0OriginKind',742 requireWeightAtMost: 'u64',743 call: 'XcmDoubleEncoded',744 },745 HrmpNewChannelOpenRequest: {746 sender: 'Compact<u32>',747 maxMessageSize: 'Compact<u32>',748 maxCapacity: 'Compact<u32>',749 },750 HrmpChannelAccepted: {751 recipient: 'Compact<u32>',752 },753 HrmpChannelClosing: {754 initiator: 'Compact<u32>',755 sender: 'Compact<u32>',756 recipient: 'Compact<u32>',757 },758 RelayedFrom: {759 who: 'XcmV0MultiLocation',760 message: 'XcmV0Xcm'761 }762 }763 },764 /**765 * Lookup101: xcm::v0::multi_asset::MultiAsset766 **/767 XcmV0MultiAsset: {768 _enum: {769 None: 'Null',770 All: 'Null',771 AllFungible: 'Null',772 AllNonFungible: 'Null',773 AllAbstractFungible: {774 id: 'Bytes',775 },776 AllAbstractNonFungible: {777 class: 'Bytes',778 },779 AllConcreteFungible: {780 id: 'XcmV0MultiLocation',781 },782 AllConcreteNonFungible: {783 class: 'XcmV0MultiLocation',784 },785 AbstractFungible: {786 id: 'Bytes',787 amount: 'Compact<u128>',788 },789 AbstractNonFungible: {790 class: 'Bytes',791 instance: 'XcmV1MultiassetAssetInstance',792 },793 ConcreteFungible: {794 id: 'XcmV0MultiLocation',795 amount: 'Compact<u128>',796 },797 ConcreteNonFungible: {798 class: 'XcmV0MultiLocation',799 instance: 'XcmV1MultiassetAssetInstance'800 }801 }802 },803 /**804 * Lookup102: xcm::v1::multiasset::AssetInstance805 **/806 XcmV1MultiassetAssetInstance: {807 _enum: {808 Undefined: 'Null',809 Index: 'Compact<u128>',810 Array4: '[u8;4]',811 Array8: '[u8;8]',812 Array16: '[u8;16]',813 Array32: '[u8;32]',814 Blob: 'Bytes'815 }816 },817 /**818 * Lookup106: xcm::v0::order::Order<Call>819 **/820 XcmV0Order: {821 _enum: {822 Null: 'Null',823 DepositAsset: {824 assets: 'Vec<XcmV0MultiAsset>',825 dest: 'XcmV0MultiLocation',826 },827 DepositReserveAsset: {828 assets: 'Vec<XcmV0MultiAsset>',829 dest: 'XcmV0MultiLocation',830 effects: 'Vec<XcmV0Order>',831 },832 ExchangeAsset: {833 give: 'Vec<XcmV0MultiAsset>',834 receive: 'Vec<XcmV0MultiAsset>',835 },836 InitiateReserveWithdraw: {837 assets: 'Vec<XcmV0MultiAsset>',838 reserve: 'XcmV0MultiLocation',839 effects: 'Vec<XcmV0Order>',840 },841 InitiateTeleport: {842 assets: 'Vec<XcmV0MultiAsset>',843 dest: 'XcmV0MultiLocation',844 effects: 'Vec<XcmV0Order>',845 },846 QueryHolding: {847 queryId: 'Compact<u64>',848 dest: 'XcmV0MultiLocation',849 assets: 'Vec<XcmV0MultiAsset>',850 },851 BuyExecution: {852 fees: 'XcmV0MultiAsset',853 weight: 'u64',854 debt: 'u64',855 haltOnError: 'bool',856 xcm: 'Vec<XcmV0Xcm>'857 }858 }859 },860 /**861 * Lookup108: xcm::v0::Response862 **/863 XcmV0Response: {864 _enum: {865 Assets: 'Vec<XcmV0MultiAsset>'866 }867 },868 /**869 * Lookup109: xcm::v0::OriginKind870 **/871 XcmV0OriginKind: {872 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']873 },874 /**875 * Lookup110: xcm::double_encoded::DoubleEncoded<T>876 **/877 XcmDoubleEncoded: {878 encoded: 'Bytes'879 },880 /**881 * Lookup111: xcm::v1::Xcm<Call>882 **/883 XcmV1Xcm: {884 _enum: {885 WithdrawAsset: {886 assets: 'XcmV1MultiassetMultiAssets',887 effects: 'Vec<XcmV1Order>',888 },889 ReserveAssetDeposited: {890 assets: 'XcmV1MultiassetMultiAssets',891 effects: 'Vec<XcmV1Order>',892 },893 ReceiveTeleportedAsset: {894 assets: 'XcmV1MultiassetMultiAssets',895 effects: 'Vec<XcmV1Order>',896 },897 QueryResponse: {898 queryId: 'Compact<u64>',899 response: 'XcmV1Response',900 },901 TransferAsset: {902 assets: 'XcmV1MultiassetMultiAssets',903 beneficiary: 'XcmV1MultiLocation',904 },905 TransferReserveAsset: {906 assets: 'XcmV1MultiassetMultiAssets',907 dest: 'XcmV1MultiLocation',908 effects: 'Vec<XcmV1Order>',909 },910 Transact: {911 originType: 'XcmV0OriginKind',912 requireWeightAtMost: 'u64',913 call: 'XcmDoubleEncoded',914 },915 HrmpNewChannelOpenRequest: {916 sender: 'Compact<u32>',917 maxMessageSize: 'Compact<u32>',918 maxCapacity: 'Compact<u32>',919 },920 HrmpChannelAccepted: {921 recipient: 'Compact<u32>',922 },923 HrmpChannelClosing: {924 initiator: 'Compact<u32>',925 sender: 'Compact<u32>',926 recipient: 'Compact<u32>',927 },928 RelayedFrom: {929 who: 'XcmV1MultilocationJunctions',930 message: 'XcmV1Xcm',931 },932 SubscribeVersion: {933 queryId: 'Compact<u64>',934 maxResponseWeight: 'Compact<u64>',935 },936 UnsubscribeVersion: 'Null'937 }938 },939 /**940 * Lookup112: xcm::v1::multiasset::MultiAssets941 **/942 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',943 /**944 * Lookup114: xcm::v1::multiasset::MultiAsset945 **/946 XcmV1MultiAsset: {947 id: 'XcmV1MultiassetAssetId',948 fun: 'XcmV1MultiassetFungibility'949 },950 /**951 * Lookup115: xcm::v1::multiasset::AssetId952 **/953 XcmV1MultiassetAssetId: {954 _enum: {955 Concrete: 'XcmV1MultiLocation',956 Abstract: 'Bytes'957 }958 },959 /**960 * Lookup116: xcm::v1::multiasset::Fungibility961 **/962 XcmV1MultiassetFungibility: {963 _enum: {964 Fungible: 'Compact<u128>',965 NonFungible: 'XcmV1MultiassetAssetInstance'966 }967 },968 /**969 * Lookup118: xcm::v1::order::Order<Call>970 **/971 XcmV1Order: {972 _enum: {973 Noop: 'Null',974 DepositAsset: {975 assets: 'XcmV1MultiassetMultiAssetFilter',976 maxAssets: 'u32',977 beneficiary: 'XcmV1MultiLocation',978 },979 DepositReserveAsset: {980 assets: 'XcmV1MultiassetMultiAssetFilter',981 maxAssets: 'u32',982 dest: 'XcmV1MultiLocation',983 effects: 'Vec<XcmV1Order>',984 },985 ExchangeAsset: {986 give: 'XcmV1MultiassetMultiAssetFilter',987 receive: 'XcmV1MultiassetMultiAssets',988 },989 InitiateReserveWithdraw: {990 assets: 'XcmV1MultiassetMultiAssetFilter',991 reserve: 'XcmV1MultiLocation',992 effects: 'Vec<XcmV1Order>',993 },994 InitiateTeleport: {995 assets: 'XcmV1MultiassetMultiAssetFilter',996 dest: 'XcmV1MultiLocation',997 effects: 'Vec<XcmV1Order>',998 },999 QueryHolding: {1000 queryId: 'Compact<u64>',1001 dest: 'XcmV1MultiLocation',1002 assets: 'XcmV1MultiassetMultiAssetFilter',1003 },1004 BuyExecution: {1005 fees: 'XcmV1MultiAsset',1006 weight: 'u64',1007 debt: 'u64',1008 haltOnError: 'bool',1009 instructions: 'Vec<XcmV1Xcm>'1010 }1011 }1012 },1013 /**1014 * Lookup119: xcm::v1::multiasset::MultiAssetFilter1015 **/1016 XcmV1MultiassetMultiAssetFilter: {1017 _enum: {1018 Definite: 'XcmV1MultiassetMultiAssets',1019 Wild: 'XcmV1MultiassetWildMultiAsset'1020 }1021 },1022 /**1023 * Lookup120: xcm::v1::multiasset::WildMultiAsset1024 **/1025 XcmV1MultiassetWildMultiAsset: {1026 _enum: {1027 All: 'Null',1028 AllOf: {1029 id: 'XcmV1MultiassetAssetId',1030 fun: 'XcmV1MultiassetWildFungibility'1031 }1032 }1033 },1034 /**1035 * Lookup121: xcm::v1::multiasset::WildFungibility1036 **/1037 XcmV1MultiassetWildFungibility: {1038 _enum: ['Fungible', 'NonFungible']1039 },1040 /**1041 * Lookup123: xcm::v1::Response1042 **/1043 XcmV1Response: {1044 _enum: {1045 Assets: 'XcmV1MultiassetMultiAssets',1046 Version: 'u32'1047 }1048 },1049 /**1050 * Lookup124: xcm::v2::Xcm<Call>1051 **/1052 XcmV2Xcm: 'Vec<XcmV2Instruction>',1053 /**1054 * Lookup126: xcm::v2::Instruction<Call>1055 **/1056 XcmV2Instruction: {1057 _enum: {1058 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1059 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',1060 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',1061 QueryResponse: {1062 queryId: 'Compact<u64>',1063 response: 'XcmV2Response',1064 maxWeight: 'Compact<u64>',1065 },1066 TransferAsset: {1067 assets: 'XcmV1MultiassetMultiAssets',1068 beneficiary: 'XcmV1MultiLocation',1069 },1070 TransferReserveAsset: {1071 assets: 'XcmV1MultiassetMultiAssets',1072 dest: 'XcmV1MultiLocation',1073 xcm: 'XcmV2Xcm',1074 },1075 Transact: {1076 originType: 'XcmV0OriginKind',1077 requireWeightAtMost: 'Compact<u64>',1078 call: 'XcmDoubleEncoded',1079 },1080 HrmpNewChannelOpenRequest: {1081 sender: 'Compact<u32>',1082 maxMessageSize: 'Compact<u32>',1083 maxCapacity: 'Compact<u32>',1084 },1085 HrmpChannelAccepted: {1086 recipient: 'Compact<u32>',1087 },1088 HrmpChannelClosing: {1089 initiator: 'Compact<u32>',1090 sender: 'Compact<u32>',1091 recipient: 'Compact<u32>',1092 },1093 ClearOrigin: 'Null',1094 DescendOrigin: 'XcmV1MultilocationJunctions',1095 ReportError: {1096 queryId: 'Compact<u64>',1097 dest: 'XcmV1MultiLocation',1098 maxResponseWeight: 'Compact<u64>',1099 },1100 DepositAsset: {1101 assets: 'XcmV1MultiassetMultiAssetFilter',1102 maxAssets: 'Compact<u32>',1103 beneficiary: 'XcmV1MultiLocation',1104 },1105 DepositReserveAsset: {1106 assets: 'XcmV1MultiassetMultiAssetFilter',1107 maxAssets: 'Compact<u32>',1108 dest: 'XcmV1MultiLocation',1109 xcm: 'XcmV2Xcm',1110 },1111 ExchangeAsset: {1112 give: 'XcmV1MultiassetMultiAssetFilter',1113 receive: 'XcmV1MultiassetMultiAssets',1114 },1115 InitiateReserveWithdraw: {1116 assets: 'XcmV1MultiassetMultiAssetFilter',1117 reserve: 'XcmV1MultiLocation',1118 xcm: 'XcmV2Xcm',1119 },1120 InitiateTeleport: {1121 assets: 'XcmV1MultiassetMultiAssetFilter',1122 dest: 'XcmV1MultiLocation',1123 xcm: 'XcmV2Xcm',1124 },1125 QueryHolding: {1126 queryId: 'Compact<u64>',1127 dest: 'XcmV1MultiLocation',1128 assets: 'XcmV1MultiassetMultiAssetFilter',1129 maxResponseWeight: 'Compact<u64>',1130 },1131 BuyExecution: {1132 fees: 'XcmV1MultiAsset',1133 weightLimit: 'XcmV2WeightLimit',1134 },1135 RefundSurplus: 'Null',1136 SetErrorHandler: 'XcmV2Xcm',1137 SetAppendix: 'XcmV2Xcm',1138 ClearError: 'Null',1139 ClaimAsset: {1140 assets: 'XcmV1MultiassetMultiAssets',1141 ticket: 'XcmV1MultiLocation',1142 },1143 Trap: 'Compact<u64>',1144 SubscribeVersion: {1145 queryId: 'Compact<u64>',1146 maxResponseWeight: 'Compact<u64>',1147 },1148 UnsubscribeVersion: 'Null'1149 }1150 },1151 /**1152 * Lookup127: xcm::v2::Response1153 **/1154 XcmV2Response: {1155 _enum: {1156 Null: 'Null',1157 Assets: 'XcmV1MultiassetMultiAssets',1158 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',1159 Version: 'u32'1160 }1161 },1162 /**1163 * Lookup130: xcm::v2::traits::Error1164 **/1165 XcmV2TraitsError: {1166 _enum: {1167 Overflow: 'Null',1168 Unimplemented: 'Null',1169 UntrustedReserveLocation: 'Null',1170 UntrustedTeleportLocation: 'Null',1171 MultiLocationFull: 'Null',1172 MultiLocationNotInvertible: 'Null',1173 BadOrigin: 'Null',1174 InvalidLocation: 'Null',1175 AssetNotFound: 'Null',1176 FailedToTransactAsset: 'Null',1177 NotWithdrawable: 'Null',1178 LocationCannotHold: 'Null',1179 ExceedsMaxMessageSize: 'Null',1180 DestinationUnsupported: 'Null',1181 Transport: 'Null',1182 Unroutable: 'Null',1183 UnknownClaim: 'Null',1184 FailedToDecode: 'Null',1185 MaxWeightInvalid: 'Null',1186 NotHoldingFees: 'Null',1187 TooExpensive: 'Null',1188 Trap: 'u64',1189 UnhandledXcmVersion: 'Null',1190 WeightLimitReached: 'u64',1191 Barrier: 'Null',1192 WeightNotComputable: 'Null'1193 }1194 },1195 /**1196 * Lookup131: xcm::v2::WeightLimit1197 **/1198 XcmV2WeightLimit: {1199 _enum: {1200 Unlimited: 'Null',1201 Limited: 'Compact<u64>'1202 }1203 },1204 /**1205 * Lookup132: xcm::VersionedMultiAssets1206 **/1207 XcmVersionedMultiAssets: {1208 _enum: {1209 V0: 'Vec<XcmV0MultiAsset>',1210 V1: 'XcmV1MultiassetMultiAssets'1211 }1212 },1213 /**1214 * Lookup147: cumulus_pallet_xcm::pallet::Call<T>1215 **/1216 CumulusPalletXcmCall: 'Null',1217 /**1218 * Lookup148: cumulus_pallet_dmp_queue::pallet::Call<T>1219 **/1220 CumulusPalletDmpQueueCall: {1221 _enum: {1222 service_overweight: {1223 index: 'u64',1224 weightLimit: 'u64'1225 }1226 }1227 },1228 /**1229 * Lookup149: pallet_inflation::pallet::Call<T>1230 **/1231 PalletInflationCall: {1232 _enum: {1233 start_inflation: {1234 inflationStartRelayBlock: 'u32'1235 }1236 }1237 },1238 /**1239 * Lookup150: pallet_unique::Call<T>1240 **/1241 PalletUniqueCall: {1242 _enum: {1243 create_collection: {1244 collectionName: 'Vec<u16>',1245 collectionDescription: 'Vec<u16>',1246 tokenPrefix: 'Bytes',1247 mode: 'UpDataStructsCollectionMode',1248 },1249 create_collection_ex: {1250 data: 'UpDataStructsCreateCollectionData',1251 },1252 destroy_collection: {1253 collectionId: 'u32',1254 },1255 add_to_allow_list: {1256 collectionId: 'u32',1257 address: 'PalletEvmAccountBasicCrossAccountIdRepr',1258 },1259 remove_from_allow_list: {1260 collectionId: 'u32',1261 address: 'PalletEvmAccountBasicCrossAccountIdRepr',1262 },1263 set_public_access_mode: {1264 collectionId: 'u32',1265 mode: 'UpDataStructsAccessMode',1266 },1267 set_mint_permission: {1268 collectionId: 'u32',1269 mintPermission: 'bool',1270 },1271 change_collection_owner: {1272 collectionId: 'u32',1273 newOwner: 'AccountId32',1274 },1275 add_collection_admin: {1276 collectionId: 'u32',1277 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',1278 },1279 remove_collection_admin: {1280 collectionId: 'u32',1281 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',1282 },1283 set_collection_sponsor: {1284 collectionId: 'u32',1285 newSponsor: 'AccountId32',1286 },1287 confirm_sponsorship: {1288 collectionId: 'u32',1289 },1290 remove_collection_sponsor: {1291 collectionId: 'u32',1292 },1293 create_item: {1294 collectionId: 'u32',1295 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',1296 data: 'UpDataStructsCreateItemData',1297 },1298 create_multiple_items: {1299 collectionId: 'u32',1300 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',1301 itemsData: 'Vec<UpDataStructsCreateItemData>',1302 },1303 set_collection_properties: {1304 collectionId: 'u32',1305 properties: 'Vec<UpDataStructsProperty>',1306 },1307 delete_collection_properties: {1308 collectionId: 'u32',1309 propertyKeys: 'Vec<Bytes>',1310 },1311 set_token_properties: {1312 collectionId: 'u32',1313 tokenId: 'u32',1314 properties: 'Vec<UpDataStructsProperty>',1315 },1316 delete_token_properties: {1317 collectionId: 'u32',1318 tokenId: 'u32',1319 propertyKeys: 'Vec<Bytes>',1320 },1321 set_property_permissions: {1322 collectionId: 'u32',1323 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',1324 },1325 create_multiple_items_ex: {1326 collectionId: 'u32',1327 data: 'UpDataStructsCreateItemExData',1328 },1329 set_transfers_enabled_flag: {1330 collectionId: 'u32',1331 value: 'bool',1332 },1333 burn_item: {1334 collectionId: 'u32',1335 itemId: 'u32',1336 value: 'u128',1337 },1338 burn_from: {1339 collectionId: 'u32',1340 from: 'PalletEvmAccountBasicCrossAccountIdRepr',1341 itemId: 'u32',1342 value: 'u128',1343 },1344 transfer: {1345 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',1346 collectionId: 'u32',1347 itemId: 'u32',1348 value: 'u128',1349 },1350 approve: {1351 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',1352 collectionId: 'u32',1353 itemId: 'u32',1354 amount: 'u128',1355 },1356 transfer_from: {1357 from: 'PalletEvmAccountBasicCrossAccountIdRepr',1358 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',1359 collectionId: 'u32',1360 itemId: 'u32',1361 value: 'u128',1362 },1363 set_variable_meta_data: {1364 collectionId: 'u32',1365 itemId: 'u32',1366 data: 'Bytes',1367 },1368 set_meta_update_permission_flag: {1369 collectionId: 'u32',1370 value: 'UpDataStructsMetaUpdatePermission',1371 },1372 set_schema_version: {1373 collectionId: 'u32',1374 version: 'UpDataStructsSchemaVersion',1375 },1376 set_offchain_schema: {1377 collectionId: 'u32',1378 schema: 'Bytes',1379 },1380 set_const_on_chain_schema: {1381 collectionId: 'u32',1382 schema: 'Bytes',1383 },1384 set_variable_on_chain_schema: {1385 collectionId: 'u32',1386 schema: 'Bytes',1387 },1388 set_collection_limits: {1389 collectionId: 'u32',1390 newLimit: 'UpDataStructsCollectionLimits'1391 }1392 }1393 },1394 /**1395 * Lookup156: up_data_structs::CollectionMode1396 **/1397 UpDataStructsCollectionMode: {1398 _enum: {1399 NFT: 'Null',1400 Fungible: 'u8',1401 ReFungible: 'Null'1402 }1403 },1404 /**1405 * Lookup157: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1406 **/1407 UpDataStructsCreateCollectionData: {1408 mode: 'UpDataStructsCollectionMode',1409 access: 'Option<UpDataStructsAccessMode>',1410 name: 'Vec<u16>',1411 description: 'Vec<u16>',1412 tokenPrefix: 'Bytes',1413 offchainSchema: 'Bytes',1414 schemaVersion: 'Option<UpDataStructsSchemaVersion>',1415 pendingSponsor: 'Option<AccountId32>',1416 limits: 'Option<UpDataStructsCollectionLimits>',1417 variableOnChainSchema: 'Bytes',1418 constOnChainSchema: 'Bytes',1419 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>',1420 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',1421 properties: 'Vec<UpDataStructsProperty>'1422 },1423 /**1424 * Lookup159: up_data_structs::AccessMode1425 **/1426 UpDataStructsAccessMode: {1427 _enum: ['Normal', 'AllowList']1428 },1429 /**1430 * Lookup162: up_data_structs::SchemaVersion1431 **/1432 UpDataStructsSchemaVersion: {1433 _enum: ['ImageURL', 'Unique']1434 },1435 /**1436 * Lookup165: up_data_structs::CollectionLimits1437 **/1438 UpDataStructsCollectionLimits: {1439 accountTokenOwnershipLimit: 'Option<u32>',1440 sponsoredDataSize: 'Option<u32>',1441 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1442 tokenLimit: 'Option<u32>',1443 sponsorTransferTimeout: 'Option<u32>',1444 sponsorApproveTimeout: 'Option<u32>',1445 ownerCanTransfer: 'Option<bool>',1446 ownerCanDestroy: 'Option<bool>',1447 transfersEnabled: 'Option<bool>',1448 nestingRule: 'Option<UpDataStructsNestingRule>'1449 },1450 /**1451 * Lookup167: up_data_structs::SponsoringRateLimit1452 **/1453 UpDataStructsSponsoringRateLimit: {1454 _enum: {1455 SponsoringDisabled: 'Null',1456 Blocks: 'u32'1457 }1458 },1459 /**1460 * Lookup170: up_data_structs::NestingRule1461 **/1462 UpDataStructsNestingRule: {1463 _enum: {1464 Disabled: 'Null',1465 Owner: 'Null',1466 OwnerRestricted: 'FrameSupportStorageBoundedBTreeSet'1467 }1468 },1469 /**1470 * Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>1471 **/1472 FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',1473 /**1474 * Lookup177: up_data_structs::MetaUpdatePermission1475 **/1476 UpDataStructsMetaUpdatePermission: {1477 _enum: ['ItemOwner', 'Admin', 'None']1478 },1479 /**1480 * Lookup179: up_data_structs::PropertyKeyPermission1481 **/1482 UpDataStructsPropertyKeyPermission: {1483 key: 'Bytes',1484 permission: 'UpDataStructsPropertyPermission'1485 },1486 /**1487 * Lookup181: up_data_structs::PropertyPermission1488 **/1489 UpDataStructsPropertyPermission: {1490 mutable: 'bool',1491 collectionAdmin: 'bool',1492 tokenOwner: 'bool'1493 },1494 /**1495 * Lookup184: up_data_structs::Property1496 **/1497 UpDataStructsProperty: {1498 key: 'Bytes',1499 value: 'Bytes'1500 },1501 /**1502 * Lookup186: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1503 **/1504 PalletEvmAccountBasicCrossAccountIdRepr: {1505 _enum: {1506 Substrate: 'AccountId32',1507 Ethereum: 'H160'1508 }1509 },1510 /**1511 * Lookup188: up_data_structs::CreateItemData1512 **/1513 UpDataStructsCreateItemData: {1514 _enum: {1515 NFT: 'UpDataStructsCreateNftData',1516 Fungible: 'UpDataStructsCreateFungibleData',1517 ReFungible: 'UpDataStructsCreateReFungibleData'1518 }1519 },1520 /**1521 * Lookup189: up_data_structs::CreateNftData1522 **/1523 UpDataStructsCreateNftData: {1524 constData: 'Bytes',1525 variableData: 'Bytes',1526 properties: 'Vec<UpDataStructsProperty>'1527 },1528 /**1529 * Lookup191: up_data_structs::CreateFungibleData1530 **/1531 UpDataStructsCreateFungibleData: {1532 value: 'u128'1533 },1534 /**1535 * Lookup192: up_data_structs::CreateReFungibleData1536 **/1537 UpDataStructsCreateReFungibleData: {1538 constData: 'Bytes',1539 variableData: 'Bytes',1540 pieces: 'u128'1541 },1542 /**1543 * Lookup196: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1544 **/1545 UpDataStructsCreateItemExData: {1546 _enum: {1547 NFT: 'Vec<UpDataStructsCreateNftExData>',1548 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',1549 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExData>',1550 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExData'1551 }1552 },1553 /**1554 * Lookup198: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1555 **/1556 UpDataStructsCreateNftExData: {1557 constData: 'Bytes',1558 variableData: 'Bytes',1559 properties: 'Vec<UpDataStructsProperty>',1560 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'1561 },1562 /**1563 * Lookup205: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1564 **/1565 UpDataStructsCreateRefungibleExData: {1566 constData: 'Bytes',1567 variableData: 'Bytes',1568 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'1569 },1570 /**1571 * Lookup207: pallet_template_transaction_payment::Call<T>1572 **/1573 PalletTemplateTransactionPaymentCall: 'Null',1574 /**1575 * Lookup208: pallet_structure::pallet::Call<T>1576 **/1577 PalletStructureCall: 'Null',1578 /**1579 * Lookup209: pallet_evm::pallet::Call<T>1580 **/1581 PalletEvmCall: {1582 _enum: {1583 withdraw: {1584 address: 'H160',1585 value: 'u128',1586 },1587 call: {1588 source: 'H160',1589 target: 'H160',1590 input: 'Bytes',1591 value: 'U256',1592 gasLimit: 'u64',1593 maxFeePerGas: 'U256',1594 maxPriorityFeePerGas: 'Option<U256>',1595 nonce: 'Option<U256>',1596 accessList: 'Vec<(H160,Vec<H256>)>',1597 },1598 create: {1599 source: 'H160',1600 init: 'Bytes',1601 value: 'U256',1602 gasLimit: 'u64',1603 maxFeePerGas: 'U256',1604 maxPriorityFeePerGas: 'Option<U256>',1605 nonce: 'Option<U256>',1606 accessList: 'Vec<(H160,Vec<H256>)>',1607 },1608 create2: {1609 source: 'H160',1610 init: 'Bytes',1611 salt: 'H256',1612 value: 'U256',1613 gasLimit: 'u64',1614 maxFeePerGas: 'U256',1615 maxPriorityFeePerGas: 'Option<U256>',1616 nonce: 'Option<U256>',1617 accessList: 'Vec<(H160,Vec<H256>)>'1618 }1619 }1620 },1621 /**1622 * Lookup215: pallet_ethereum::pallet::Call<T>1623 **/1624 PalletEthereumCall: {1625 _enum: {1626 transact: {1627 transaction: 'EthereumTransactionTransactionV2'1628 }1629 }1630 },1631 /**1632 * Lookup216: ethereum::transaction::TransactionV21633 **/1634 EthereumTransactionTransactionV2: {1635 _enum: {1636 Legacy: 'EthereumTransactionLegacyTransaction',1637 EIP2930: 'EthereumTransactionEip2930Transaction',1638 EIP1559: 'EthereumTransactionEip1559Transaction'1639 }1640 },1641 /**1642 * Lookup217: ethereum::transaction::LegacyTransaction1643 **/1644 EthereumTransactionLegacyTransaction: {1645 nonce: 'U256',1646 gasPrice: 'U256',1647 gasLimit: 'U256',1648 action: 'EthereumTransactionTransactionAction',1649 value: 'U256',1650 input: 'Bytes',1651 signature: 'EthereumTransactionTransactionSignature'1652 },1653 /**1654 * Lookup218: ethereum::transaction::TransactionAction1655 **/1656 EthereumTransactionTransactionAction: {1657 _enum: {1658 Call: 'H160',1659 Create: 'Null'1660 }1661 },1662 /**1663 * Lookup219: ethereum::transaction::TransactionSignature1664 **/1665 EthereumTransactionTransactionSignature: {1666 v: 'u64',1667 r: 'H256',1668 s: 'H256'1669 },1670 /**1671 * Lookup221: ethereum::transaction::EIP2930Transaction1672 **/1673 EthereumTransactionEip2930Transaction: {1674 chainId: 'u64',1675 nonce: 'U256',1676 gasPrice: 'U256',1677 gasLimit: 'U256',1678 action: 'EthereumTransactionTransactionAction',1679 value: 'U256',1680 input: 'Bytes',1681 accessList: 'Vec<EthereumTransactionAccessListItem>',1682 oddYParity: 'bool',1683 r: 'H256',1684 s: 'H256'1685 },1686 /**1687 * Lookup223: ethereum::transaction::AccessListItem1688 **/1689 EthereumTransactionAccessListItem: {1690 address: 'H160',1691 storageKeys: 'Vec<H256>'1692 },1693 /**1694 * Lookup224: ethereum::transaction::EIP1559Transaction1695 **/1696 EthereumTransactionEip1559Transaction: {1697 chainId: 'u64',1698 nonce: 'U256',1699 maxPriorityFeePerGas: 'U256',1700 maxFeePerGas: 'U256',1701 gasLimit: 'U256',1702 action: 'EthereumTransactionTransactionAction',1703 value: 'U256',1704 input: 'Bytes',1705 accessList: 'Vec<EthereumTransactionAccessListItem>',1706 oddYParity: 'bool',1707 r: 'H256',1708 s: 'H256'1709 },1710 /**1711 * Lookup225: pallet_evm_migration::pallet::Call<T>1712 **/1713 PalletEvmMigrationCall: {1714 _enum: {1715 begin: {1716 address: 'H160',1717 },1718 set_data: {1719 address: 'H160',1720 data: 'Vec<(H256,H256)>',1721 },1722 finish: {1723 address: 'H160',1724 code: 'Bytes'1725 }1726 }1727 },1728 /**1729 * Lookup228: pallet_sudo::pallet::Event<T>1730 **/1731 PalletSudoEvent: {1732 _enum: {1733 Sudid: {1734 sudoResult: 'Result<Null, SpRuntimeDispatchError>',1735 },1736 KeyChanged: {1737 oldSudoer: 'Option<AccountId32>',1738 },1739 SudoAsDone: {1740 sudoResult: 'Result<Null, SpRuntimeDispatchError>'1741 }1742 }1743 },1744 /**1745 * Lookup230: sp_runtime::DispatchError1746 **/1747 SpRuntimeDispatchError: {1748 _enum: {1749 Other: 'Null',1750 CannotLookup: 'Null',1751 BadOrigin: 'Null',1752 Module: 'SpRuntimeModuleError',1753 ConsumerRemaining: 'Null',1754 NoProviders: 'Null',1755 TooManyConsumers: 'Null',1756 Token: 'SpRuntimeTokenError',1757 Arithmetic: 'SpRuntimeArithmeticError',1758 Transactional: 'SpRuntimeTransactionalError'1759 }1760 },1761 /**1762 * Lookup231: sp_runtime::ModuleError1763 **/1764 SpRuntimeModuleError: {1765 index: 'u8',1766 error: '[u8;4]'1767 },1768 /**1769 * Lookup232: sp_runtime::TokenError1770 **/1771 SpRuntimeTokenError: {1772 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1773 },1774 /**1775 * Lookup233: sp_runtime::ArithmeticError1776 **/1777 SpRuntimeArithmeticError: {1778 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1779 },1780 /**1781 * Lookup234: sp_runtime::TransactionalError1782 **/1783 SpRuntimeTransactionalError: {1784 _enum: ['LimitReached', 'NoLayer']1785 },1786 /**1787 * Lookup235: pallet_sudo::pallet::Error<T>1788 **/1789 PalletSudoError: {1790 _enum: ['RequireSudo']1791 },1792 /**1793 * Lookup236: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1794 **/1795 FrameSystemAccountInfo: {1796 nonce: 'u32',1797 consumers: 'u32',1798 providers: 'u32',1799 sufficients: 'u32',1800 data: 'PalletBalancesAccountData'1801 },1802 /**1803 * Lookup237: frame_support::weights::PerDispatchClass<T>1804 **/1805 FrameSupportWeightsPerDispatchClassU64: {1806 normal: 'u64',1807 operational: 'u64',1808 mandatory: 'u64'1809 },1810 /**1811 * Lookup238: sp_runtime::generic::digest::Digest1812 **/1813 SpRuntimeDigest: {1814 logs: 'Vec<SpRuntimeDigestDigestItem>'1815 },1816 /**1817 * Lookup240: sp_runtime::generic::digest::DigestItem1818 **/1819 SpRuntimeDigestDigestItem: {1820 _enum: {1821 Other: 'Bytes',1822 __Unused1: 'Null',1823 __Unused2: 'Null',1824 __Unused3: 'Null',1825 Consensus: '([u8;4],Bytes)',1826 Seal: '([u8;4],Bytes)',1827 PreRuntime: '([u8;4],Bytes)',1828 __Unused7: 'Null',1829 RuntimeEnvironmentUpdated: 'Null'1830 }1831 },1832 /**1833 * Lookup242: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>1834 **/1835 FrameSystemEventRecord: {1836 phase: 'FrameSystemPhase',1837 event: 'Event',1838 topics: 'Vec<H256>'1839 },1840 /**1841 * Lookup244: frame_system::pallet::Event<T>1842 **/1843 FrameSystemEvent: {1844 _enum: {1845 ExtrinsicSuccess: {1846 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1847 },1848 ExtrinsicFailed: {1849 dispatchError: 'SpRuntimeDispatchError',1850 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1851 },1852 CodeUpdated: 'Null',1853 NewAccount: {1854 account: 'AccountId32',1855 },1856 KilledAccount: {1857 account: 'AccountId32',1858 },1859 Remarked: {1860 _alias: {1861 hash_: 'hash',1862 },1863 sender: 'AccountId32',1864 hash_: 'H256'1865 }1866 }1867 },1868 /**1869 * Lookup245: frame_support::weights::DispatchInfo1870 **/1871 FrameSupportWeightsDispatchInfo: {1872 weight: 'u64',1873 class: 'FrameSupportWeightsDispatchClass',1874 paysFee: 'FrameSupportWeightsPays'1875 },1876 /**1877 * Lookup246: frame_support::weights::DispatchClass1878 **/1879 FrameSupportWeightsDispatchClass: {1880 _enum: ['Normal', 'Operational', 'Mandatory']1881 },1882 /**1883 * Lookup247: frame_support::weights::Pays1884 **/1885 FrameSupportWeightsPays: {1886 _enum: ['Yes', 'No']1887 },1888 /**1889 * Lookup248: orml_vesting::module::Event<T>1890 **/1891 OrmlVestingModuleEvent: {1892 _enum: {1893 VestingScheduleAdded: {1894 from: 'AccountId32',1895 to: 'AccountId32',1896 vestingSchedule: 'OrmlVestingVestingSchedule',1897 },1898 Claimed: {1899 who: 'AccountId32',1900 amount: 'u128',1901 },1902 VestingSchedulesUpdated: {1903 who: 'AccountId32'1904 }1905 }1906 },1907 /**1908 * Lookup249: cumulus_pallet_xcmp_queue::pallet::Event<T>1909 **/1910 CumulusPalletXcmpQueueEvent: {1911 _enum: {1912 Success: 'Option<H256>',1913 Fail: '(Option<H256>,XcmV2TraitsError)',1914 BadVersion: 'Option<H256>',1915 BadFormat: 'Option<H256>',1916 UpwardMessageSent: 'Option<H256>',1917 XcmpMessageSent: 'Option<H256>',1918 OverweightEnqueued: '(u32,u32,u64,u64)',1919 OverweightServiced: '(u64,u64)'1920 }1921 },1922 /**1923 * Lookup250: pallet_xcm::pallet::Event<T>1924 **/1925 PalletXcmEvent: {1926 _enum: {1927 Attempted: 'XcmV2TraitsOutcome',1928 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',1929 UnexpectedResponse: '(XcmV1MultiLocation,u64)',1930 ResponseReady: '(u64,XcmV2Response)',1931 Notified: '(u64,u8,u8)',1932 NotifyOverweight: '(u64,u8,u8,u64,u64)',1933 NotifyDispatchError: '(u64,u8,u8)',1934 NotifyDecodeFailed: '(u64,u8,u8)',1935 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',1936 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',1937 ResponseTaken: 'u64',1938 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',1939 VersionChangeNotified: '(XcmV1MultiLocation,u32)',1940 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',1941 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',1942 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1943 }1944 },1945 /**1946 * Lookup251: xcm::v2::traits::Outcome1947 **/1948 XcmV2TraitsOutcome: {1949 _enum: {1950 Complete: 'u64',1951 Incomplete: '(u64,XcmV2TraitsError)',1952 Error: 'XcmV2TraitsError'1953 }1954 },1955 /**1956 * Lookup253: cumulus_pallet_xcm::pallet::Event<T>1957 **/1958 CumulusPalletXcmEvent: {1959 _enum: {1960 InvalidFormat: '[u8;8]',1961 UnsupportedVersion: '[u8;8]',1962 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1963 }1964 },1965 /**1966 * Lookup254: cumulus_pallet_dmp_queue::pallet::Event<T>1967 **/1968 CumulusPalletDmpQueueEvent: {1969 _enum: {1970 InvalidFormat: '[u8;32]',1971 UnsupportedVersion: '[u8;32]',1972 ExecutedDownward: '([u8;32],XcmV2TraitsOutcome)',1973 WeightExhausted: '([u8;32],u64,u64)',1974 OverweightEnqueued: '([u8;32],u64,u64)',1975 OverweightServiced: '(u64,u64)'1976 }1977 },1978 /**1979 * Lookup255: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1980 **/1981 PalletUniqueRawEvent: {1982 _enum: {1983 CollectionSponsorRemoved: 'u32',1984 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1985 CollectionOwnedChanged: '(u32,AccountId32)',1986 CollectionSponsorSet: '(u32,AccountId32)',1987 ConstOnChainSchemaSet: 'u32',1988 SponsorshipConfirmed: '(u32,AccountId32)',1989 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1990 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1991 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1992 CollectionLimitSet: 'u32',1993 MintPermissionSet: 'u32',1994 OffchainSchemaSet: 'u32',1995 PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',1996 SchemaVersionSet: 'u32',1997 VariableOnChainSchemaSet: 'u32'1998 }1999 },2000 /**2001 * Lookup256: pallet_common::pallet::Event<T>2002 **/2003 PalletCommonEvent: {2004 _enum: {2005 CollectionCreated: '(u32,u8,AccountId32)',2006 CollectionDestroyed: 'u32',2007 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2008 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2009 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2010 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2011 CollectionPropertySet: '(u32,UpDataStructsProperty)',2012 CollectionPropertyDeleted: '(u32,Bytes)',2013 TokenPropertySet: '(u32,u32,UpDataStructsProperty)',2014 TokenPropertyDeleted: '(u32,u32,Bytes)',2015 PropertyPermissionSet: '(u32,UpDataStructsPropertyKeyPermission)'2016 }2017 },2018 /**2019 * Lookup257: pallet_structure::pallet::Event<T>2020 **/2021 PalletStructureEvent: {2022 _enum: {2023 Executed: 'Result<Null, SpRuntimeDispatchError>'2024 }2025 },2026 /**2027 * Lookup258: pallet_evm::pallet::Event<T>2028 **/2029 PalletEvmEvent: {2030 _enum: {2031 Log: 'EthereumLog',2032 Created: 'H160',2033 CreatedFailed: 'H160',2034 Executed: 'H160',2035 ExecutedFailed: 'H160',2036 BalanceDeposit: '(AccountId32,H160,U256)',2037 BalanceWithdraw: '(AccountId32,H160,U256)'2038 }2039 },2040 /**2041 * Lookup259: ethereum::log::Log2042 **/2043 EthereumLog: {2044 address: 'H160',2045 topics: 'Vec<H256>',2046 data: 'Bytes'2047 },2048 /**2049 * Lookup260: pallet_ethereum::pallet::Event2050 **/2051 PalletEthereumEvent: {2052 _enum: {2053 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2054 }2055 },2056 /**2057 * Lookup261: evm_core::error::ExitReason2058 **/2059 EvmCoreErrorExitReason: {2060 _enum: {2061 Succeed: 'EvmCoreErrorExitSucceed',2062 Error: 'EvmCoreErrorExitError',2063 Revert: 'EvmCoreErrorExitRevert',2064 Fatal: 'EvmCoreErrorExitFatal'2065 }2066 },2067 /**2068 * Lookup262: evm_core::error::ExitSucceed2069 **/2070 EvmCoreErrorExitSucceed: {2071 _enum: ['Stopped', 'Returned', 'Suicided']2072 },2073 /**2074 * Lookup263: evm_core::error::ExitError2075 **/2076 EvmCoreErrorExitError: {2077 _enum: {2078 StackUnderflow: 'Null',2079 StackOverflow: 'Null',2080 InvalidJump: 'Null',2081 InvalidRange: 'Null',2082 DesignatedInvalid: 'Null',2083 CallTooDeep: 'Null',2084 CreateCollision: 'Null',2085 CreateContractLimit: 'Null',2086 OutOfOffset: 'Null',2087 OutOfGas: 'Null',2088 OutOfFund: 'Null',2089 PCUnderflow: 'Null',2090 CreateEmpty: 'Null',2091 Other: 'Text',2092 InvalidCode: 'Null'2093 }2094 },2095 /**2096 * Lookup266: evm_core::error::ExitRevert2097 **/2098 EvmCoreErrorExitRevert: {2099 _enum: ['Reverted']2100 },2101 /**2102 * Lookup267: evm_core::error::ExitFatal2103 **/2104 EvmCoreErrorExitFatal: {2105 _enum: {2106 NotSupported: 'Null',2107 UnhandledInterrupt: 'Null',2108 CallErrorAsFatal: 'EvmCoreErrorExitError',2109 Other: 'Text'2110 }2111 },2112 /**2113 * Lookup268: frame_system::Phase2114 **/2115 FrameSystemPhase: {2116 _enum: {2117 ApplyExtrinsic: 'u32',2118 Finalization: 'Null',2119 Initialization: 'Null'2120 }2121 },2122 /**2123 * Lookup270: frame_system::LastRuntimeUpgradeInfo2124 **/2125 FrameSystemLastRuntimeUpgradeInfo: {2126 specVersion: 'Compact<u32>',2127 specName: 'Text'2128 },2129 /**2130 * Lookup271: frame_system::limits::BlockWeights2131 **/2132 FrameSystemLimitsBlockWeights: {2133 baseBlock: 'u64',2134 maxBlock: 'u64',2135 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2136 },2137 /**2138 * Lookup272: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2139 **/2140 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2141 normal: 'FrameSystemLimitsWeightsPerClass',2142 operational: 'FrameSystemLimitsWeightsPerClass',2143 mandatory: 'FrameSystemLimitsWeightsPerClass'2144 },2145 /**2146 * Lookup273: frame_system::limits::WeightsPerClass2147 **/2148 FrameSystemLimitsWeightsPerClass: {2149 baseExtrinsic: 'u64',2150 maxExtrinsic: 'Option<u64>',2151 maxTotal: 'Option<u64>',2152 reserved: 'Option<u64>'2153 },2154 /**2155 * Lookup275: frame_system::limits::BlockLength2156 **/2157 FrameSystemLimitsBlockLength: {2158 max: 'FrameSupportWeightsPerDispatchClassU32'2159 },2160 /**2161 * Lookup276: frame_support::weights::PerDispatchClass<T>2162 **/2163 FrameSupportWeightsPerDispatchClassU32: {2164 normal: 'u32',2165 operational: 'u32',2166 mandatory: 'u32'2167 },2168 /**2169 * Lookup277: frame_support::weights::RuntimeDbWeight2170 **/2171 FrameSupportWeightsRuntimeDbWeight: {2172 read: 'u64',2173 write: 'u64'2174 },2175 /**2176 * Lookup278: sp_version::RuntimeVersion2177 **/2178 SpVersionRuntimeVersion: {2179 specName: 'Text',2180 implName: 'Text',2181 authoringVersion: 'u32',2182 specVersion: 'u32',2183 implVersion: 'u32',2184 apis: 'Vec<([u8;8],u32)>',2185 transactionVersion: 'u32',2186 stateVersion: 'u8'2187 },2188 /**2189 * Lookup282: frame_system::pallet::Error<T>2190 **/2191 FrameSystemError: {2192 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2193 },2194 /**2195 * Lookup284: orml_vesting::module::Error<T>2196 **/2197 OrmlVestingModuleError: {2198 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2199 },2200 /**2201 * Lookup286: cumulus_pallet_xcmp_queue::InboundChannelDetails2202 **/2203 CumulusPalletXcmpQueueInboundChannelDetails: {2204 sender: 'u32',2205 state: 'CumulusPalletXcmpQueueInboundState',2206 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2207 },2208 /**2209 * Lookup287: cumulus_pallet_xcmp_queue::InboundState2210 **/2211 CumulusPalletXcmpQueueInboundState: {2212 _enum: ['Ok', 'Suspended']2213 },2214 /**2215 * Lookup290: polkadot_parachain::primitives::XcmpMessageFormat2216 **/2217 PolkadotParachainPrimitivesXcmpMessageFormat: {2218 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2219 },2220 /**2221 * Lookup293: cumulus_pallet_xcmp_queue::OutboundChannelDetails2222 **/2223 CumulusPalletXcmpQueueOutboundChannelDetails: {2224 recipient: 'u32',2225 state: 'CumulusPalletXcmpQueueOutboundState',2226 signalsExist: 'bool',2227 firstIndex: 'u16',2228 lastIndex: 'u16'2229 },2230 /**2231 * Lookup294: cumulus_pallet_xcmp_queue::OutboundState2232 **/2233 CumulusPalletXcmpQueueOutboundState: {2234 _enum: ['Ok', 'Suspended']2235 },2236 /**2237 * Lookup296: cumulus_pallet_xcmp_queue::QueueConfigData2238 **/2239 CumulusPalletXcmpQueueQueueConfigData: {2240 suspendThreshold: 'u32',2241 dropThreshold: 'u32',2242 resumeThreshold: 'u32',2243 thresholdWeight: 'u64',2244 weightRestrictDecay: 'u64',2245 xcmpMaxIndividualWeight: 'u64'2246 },2247 /**2248 * Lookup298: cumulus_pallet_xcmp_queue::pallet::Error<T>2249 **/2250 CumulusPalletXcmpQueueError: {2251 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2252 },2253 /**2254 * Lookup299: pallet_xcm::pallet::Error<T>2255 **/2256 PalletXcmError: {2257 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2258 },2259 /**2260 * Lookup300: cumulus_pallet_xcm::pallet::Error<T>2261 **/2262 CumulusPalletXcmError: 'Null',2263 /**2264 * Lookup301: cumulus_pallet_dmp_queue::ConfigData2265 **/2266 CumulusPalletDmpQueueConfigData: {2267 maxIndividual: 'u64'2268 },2269 /**2270 * Lookup302: cumulus_pallet_dmp_queue::PageIndexData2271 **/2272 CumulusPalletDmpQueuePageIndexData: {2273 beginUsed: 'u32',2274 endUsed: 'u32',2275 overweightCount: 'u64'2276 },2277 /**2278 * Lookup305: cumulus_pallet_dmp_queue::pallet::Error<T>2279 **/2280 CumulusPalletDmpQueueError: {2281 _enum: ['Unknown', 'OverLimit']2282 },2283 /**2284 * Lookup309: pallet_unique::Error<T>2285 **/2286 PalletUniqueError: {2287 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2288 },2289 /**2290 * Lookup310: up_data_structs::Collection<sp_core::crypto::AccountId32>2291 **/2292 UpDataStructsCollection: {2293 owner: 'AccountId32',2294 mode: 'UpDataStructsCollectionMode',2295 access: 'UpDataStructsAccessMode',2296 name: 'Vec<u16>',2297 description: 'Vec<u16>',2298 tokenPrefix: 'Bytes',2299 mintMode: 'bool',2300 schemaVersion: 'UpDataStructsSchemaVersion',2301 sponsorship: 'UpDataStructsSponsorshipState',2302 limits: 'UpDataStructsCollectionLimits',2303 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2304 },2305 /**2306 * Lookup311: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2307 **/2308 UpDataStructsSponsorshipState: {2309 _enum: {2310 Disabled: 'Null',2311 Unconfirmed: 'AccountId32',2312 Confirmed: 'AccountId32'2313 }2314 },2315 /**2316 * Lookup312: up_data_structs::Properties2317 **/2318 UpDataStructsProperties: {2319 map: 'BTreeMap<Bytes, Bytes>',2320 consumedSpace: 'u32',2321 spaceLimit: 'u32'2322 },2323 /**2324 * Lookup322: up_data_structs::CollectionField2325 **/2326 UpDataStructsCollectionField: {2327 _enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']2328 },2329 /**2330 * Lookup325: up_data_structs::CollectionStats2331 **/2332 UpDataStructsCollectionStats: {2333 created: 'u32',2334 destroyed: 'u32',2335 alive: 'u32'2336 },2337 /**2338 * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>2339 **/2340 PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',2341 /**2342 * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2343 **/2344 UpDataStructsTokenData: {2345 constData: 'Bytes',2346 properties: 'Vec<UpDataStructsProperty>',2347 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'2348 },2349 /**2350 * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>2351 **/2352 PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',2353 /**2354 * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2355 **/2356 UpDataStructsRpcCollection: {2357 owner: 'AccountId32',2358 mode: 'UpDataStructsCollectionMode',2359 access: 'UpDataStructsAccessMode',2360 name: 'Vec<u16>',2361 description: 'Vec<u16>',2362 tokenPrefix: 'Bytes',2363 mintMode: 'bool',2364 offchainSchema: 'Bytes',2365 schemaVersion: 'UpDataStructsSchemaVersion',2366 sponsorship: 'UpDataStructsSponsorshipState',2367 limits: 'UpDataStructsCollectionLimits',2368 variableOnChainSchema: 'Bytes',2369 constOnChainSchema: 'Bytes',2370 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission',2371 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2372 properties: 'Vec<UpDataStructsProperty>'2373 },2374 /**2375 * Lookup333: pallet_common::pallet::Error<T>2376 **/2377 PalletCommonError: {2378 _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']2379 },2380 /**2381 * Lookup335: pallet_fungible::pallet::Error<T>2382 **/2383 PalletFungibleError: {2384 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2385 },2386 /**2387 * Lookup336: pallet_refungible::ItemData2388 **/2389 PalletRefungibleItemData: {2390 constData: 'Bytes',2391 variableData: 'Bytes'2392 },2393 /**2394 * Lookup340: pallet_refungible::pallet::Error<T>2395 **/2396 PalletRefungibleError: {2397 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2398 },2399 /**2400 * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2401 **/2402 PalletNonfungibleItemData: {2403 constData: 'Bytes',2404 variableData: 'Bytes',2405 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2406 },2407 /**2408 * Lookup342: pallet_nonfungible::pallet::Error<T>2409 **/2410 PalletNonfungibleError: {2411 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2412 },2413 /**2414 * Lookup343: pallet_structure::pallet::Error<T>2415 **/2416 PalletStructureError: {2417 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']2418 },2419 /**2420 * Lookup345: pallet_evm::pallet::Error<T>2421 **/2422 PalletEvmError: {2423 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2424 },2425 /**2426 * Lookup348: fp_rpc::TransactionStatus2427 **/2428 FpRpcTransactionStatus: {2429 transactionHash: 'H256',2430 transactionIndex: 'u32',2431 from: 'H160',2432 to: 'Option<H160>',2433 contractAddress: 'Option<H160>',2434 logs: 'Vec<EthereumLog>',2435 logsBloom: 'EthbloomBloom'2436 },2437 /**2438 * Lookup351: ethbloom::Bloom2439 **/2440 EthbloomBloom: '[u8;256]',2441 /**2442 * Lookup353: ethereum::receipt::ReceiptV32443 **/2444 EthereumReceiptReceiptV3: {2445 _enum: {2446 Legacy: 'EthereumReceiptEip658ReceiptData',2447 EIP2930: 'EthereumReceiptEip658ReceiptData',2448 EIP1559: 'EthereumReceiptEip658ReceiptData'2449 }2450 },2451 /**2452 * Lookup354: ethereum::receipt::EIP658ReceiptData2453 **/2454 EthereumReceiptEip658ReceiptData: {2455 statusCode: 'u8',2456 usedGas: 'U256',2457 logsBloom: 'EthbloomBloom',2458 logs: 'Vec<EthereumLog>'2459 },2460 /**2461 * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>2462 **/2463 EthereumBlock: {2464 header: 'EthereumHeader',2465 transactions: 'Vec<EthereumTransactionTransactionV2>',2466 ommers: 'Vec<EthereumHeader>'2467 },2468 /**2469 * Lookup356: ethereum::header::Header2470 **/2471 EthereumHeader: {2472 parentHash: 'H256',2473 ommersHash: 'H256',2474 beneficiary: 'H160',2475 stateRoot: 'H256',2476 transactionsRoot: 'H256',2477 receiptsRoot: 'H256',2478 logsBloom: 'EthbloomBloom',2479 difficulty: 'U256',2480 number: 'U256',2481 gasLimit: 'U256',2482 gasUsed: 'U256',2483 timestamp: 'u64',2484 extraData: 'Bytes',2485 mixHash: 'H256',2486 nonce: 'EthereumTypesHashH64'2487 },2488 /**2489 * Lookup357: ethereum_types::hash::H642490 **/2491 EthereumTypesHashH64: '[u8;8]',2492 /**2493 * Lookup362: pallet_ethereum::pallet::Error<T>2494 **/2495 PalletEthereumError: {2496 _enum: ['InvalidSignature', 'PreLogExists']2497 },2498 /**2499 * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>2500 **/2501 PalletEvmCoderSubstrateError: {2502 _enum: ['OutOfGas', 'OutOfFund']2503 },2504 /**2505 * Lookup364: pallet_evm_contract_helpers::SponsoringModeT2506 **/2507 PalletEvmContractHelpersSponsoringModeT: {2508 _enum: ['Disabled', 'Allowlisted', 'Generous']2509 },2510 /**2511 * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>2512 **/2513 PalletEvmContractHelpersError: {2514 _enum: ['NoPermission']2515 },2516 /**2517 * Lookup367: pallet_evm_migration::pallet::Error<T>2518 **/2519 PalletEvmMigrationError: {2520 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2521 },2522 /**2523 * Lookup369: sp_runtime::MultiSignature2524 **/2525 SpRuntimeMultiSignature: {2526 _enum: {2527 Ed25519: 'SpCoreEd25519Signature',2528 Sr25519: 'SpCoreSr25519Signature',2529 Ecdsa: 'SpCoreEcdsaSignature'2530 }2531 },2532 /**2533 * Lookup370: sp_core::ed25519::Signature2534 **/2535 SpCoreEd25519Signature: '[u8;64]',2536 /**2537 * Lookup372: sp_core::sr25519::Signature2538 **/2539 SpCoreSr25519Signature: '[u8;64]',2540 /**2541 * Lookup373: sp_core::ecdsa::Signature2542 **/2543 SpCoreEcdsaSignature: '[u8;65]',2544 /**2545 * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2546 **/2547 FrameSystemExtensionsCheckSpecVersion: 'Null',2548 /**2549 * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>2550 **/2551 FrameSystemExtensionsCheckGenesis: 'Null',2552 /**2553 * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>2554 **/2555 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2556 /**2557 * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>2558 **/2559 FrameSystemExtensionsCheckWeight: 'Null',2560 /**2561 * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>2562 **/2563 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2564 /**2565 * Lookup383: opal_runtime::Runtime2566 **/2567 OpalRuntimeRuntime: 'Null'2568};1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup2: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>9 **/10 PolkadotPrimitivesV2PersistedValidationData: {11 parentHead: 'Bytes',12 relayParentNumber: 'u32',13 relayParentStorageRoot: 'H256',14 maxPovSize: 'u32'15 },16 /**17 * Lookup9: polkadot_primitives::v2::UpgradeRestriction18 **/19 PolkadotPrimitivesV2UpgradeRestriction: {20 _enum: ['Present']21 },22 /**23 * Lookup10: sp_trie::storage_proof::StorageProof24 **/25 SpTrieStorageProof: {26 trieNodes: 'BTreeSet<Bytes>'27 },28 /**29 * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot30 **/31 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {32 dmqMqcHead: 'H256',33 relayDispatchQueueSize: '(u32,u32)',34 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',35 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'36 },37 /**38 * Lookup18: polkadot_primitives::v2::AbridgedHrmpChannel39 **/40 PolkadotPrimitivesV2AbridgedHrmpChannel: {41 maxCapacity: 'u32',42 maxTotalSize: 'u32',43 maxMessageSize: 'u32',44 msgCount: 'u32',45 totalSize: 'u32',46 mqcHead: 'Option<H256>'47 },48 /**49 * Lookup20: polkadot_primitives::v2::AbridgedHostConfiguration50 **/51 PolkadotPrimitivesV2AbridgedHostConfiguration: {52 maxCodeSize: 'u32',53 maxHeadDataSize: 'u32',54 maxUpwardQueueCount: 'u32',55 maxUpwardQueueSize: 'u32',56 maxUpwardMessageSize: 'u32',57 maxUpwardMessageNumPerCandidate: 'u32',58 hrmpMaxMessageNumPerCandidate: 'u32',59 validationUpgradeCooldown: 'u32',60 validationUpgradeDelay: 'u32'61 },62 /**63 * Lookup26: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>64 **/65 PolkadotCorePrimitivesOutboundHrmpMessage: {66 recipient: 'u32',67 data: 'Bytes'68 },69 /**70 * Lookup28: cumulus_pallet_parachain_system::pallet::Call<T>71 **/72 CumulusPalletParachainSystemCall: {73 _enum: {74 set_validation_data: {75 data: 'CumulusPrimitivesParachainInherentParachainInherentData',76 },77 sudo_send_upward_message: {78 message: 'Bytes',79 },80 authorize_upgrade: {81 codeHash: 'H256',82 },83 enact_authorized_upgrade: {84 code: 'Bytes'85 }86 }87 },88 /**89 * Lookup29: cumulus_primitives_parachain_inherent::ParachainInherentData90 **/91 CumulusPrimitivesParachainInherentParachainInherentData: {92 validationData: 'PolkadotPrimitivesV2PersistedValidationData',93 relayChainState: 'SpTrieStorageProof',94 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',95 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'96 },97 /**98 * Lookup31: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>99 **/100 PolkadotCorePrimitivesInboundDownwardMessage: {101 sentAt: 'u32',102 msg: 'Bytes'103 },104 /**105 * Lookup34: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>106 **/107 PolkadotCorePrimitivesInboundHrmpMessage: {108 sentAt: 'u32',109 data: 'Bytes'110 },111 /**112 * Lookup37: cumulus_pallet_parachain_system::pallet::Event<T>113 **/114 CumulusPalletParachainSystemEvent: {115 _enum: {116 ValidationFunctionStored: 'Null',117 ValidationFunctionApplied: 'u32',118 ValidationFunctionDiscarded: 'Null',119 UpgradeAuthorized: 'H256',120 DownwardMessagesReceived: 'u32',121 DownwardMessagesProcessed: '(u64,H256)'122 }123 },124 /**125 * Lookup38: cumulus_pallet_parachain_system::pallet::Error<T>126 **/127 CumulusPalletParachainSystemError: {128 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']129 },130 /**131 * Lookup41: pallet_balances::AccountData<Balance>132 **/133 PalletBalancesAccountData: {134 free: 'u128',135 reserved: 'u128',136 miscFrozen: 'u128',137 feeFrozen: 'u128'138 },139 /**140 * Lookup43: pallet_balances::BalanceLock<Balance>141 **/142 PalletBalancesBalanceLock: {143 id: '[u8;8]',144 amount: 'u128',145 reasons: 'PalletBalancesReasons'146 },147 /**148 * Lookup45: pallet_balances::Reasons149 **/150 PalletBalancesReasons: {151 _enum: ['Fee', 'Misc', 'All']152 },153 /**154 * Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>155 **/156 PalletBalancesReserveData: {157 id: '[u8;8]',158 amount: 'u128'159 },160 /**161 * Lookup50: pallet_balances::Releases162 **/163 PalletBalancesReleases: {164 _enum: ['V1_0_0', 'V2_0_0']165 },166 /**167 * Lookup51: pallet_balances::pallet::Call<T, I>168 **/169 PalletBalancesCall: {170 _enum: {171 transfer: {172 dest: 'MultiAddress',173 value: 'Compact<u128>',174 },175 set_balance: {176 who: 'MultiAddress',177 newFree: 'Compact<u128>',178 newReserved: 'Compact<u128>',179 },180 force_transfer: {181 source: 'MultiAddress',182 dest: 'MultiAddress',183 value: 'Compact<u128>',184 },185 transfer_keep_alive: {186 dest: 'MultiAddress',187 value: 'Compact<u128>',188 },189 transfer_all: {190 dest: 'MultiAddress',191 keepAlive: 'bool',192 },193 force_unreserve: {194 who: 'MultiAddress',195 amount: 'u128'196 }197 }198 },199 /**200 * Lookup57: pallet_balances::pallet::Event<T, I>201 **/202 PalletBalancesEvent: {203 _enum: {204 Endowed: {205 account: 'AccountId32',206 freeBalance: 'u128',207 },208 DustLost: {209 account: 'AccountId32',210 amount: 'u128',211 },212 Transfer: {213 from: 'AccountId32',214 to: 'AccountId32',215 amount: 'u128',216 },217 BalanceSet: {218 who: 'AccountId32',219 free: 'u128',220 reserved: 'u128',221 },222 Reserved: {223 who: 'AccountId32',224 amount: 'u128',225 },226 Unreserved: {227 who: 'AccountId32',228 amount: 'u128',229 },230 ReserveRepatriated: {231 from: 'AccountId32',232 to: 'AccountId32',233 amount: 'u128',234 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',235 },236 Deposit: {237 who: 'AccountId32',238 amount: 'u128',239 },240 Withdraw: {241 who: 'AccountId32',242 amount: 'u128',243 },244 Slashed: {245 who: 'AccountId32',246 amount: 'u128'247 }248 }249 },250 /**251 * Lookup58: frame_support::traits::tokens::misc::BalanceStatus252 **/253 FrameSupportTokensMiscBalanceStatus: {254 _enum: ['Free', 'Reserved']255 },256 /**257 * Lookup59: pallet_balances::pallet::Error<T, I>258 **/259 PalletBalancesError: {260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']261 },262 /**263 * Lookup62: pallet_timestamp::pallet::Call<T>264 **/265 PalletTimestampCall: {266 _enum: {267 set: {268 now: 'Compact<u64>'269 }270 }271 },272 /**273 * Lookup65: pallet_transaction_payment::Releases274 **/275 PalletTransactionPaymentReleases: {276 _enum: ['V1Ancient', 'V2']277 },278 /**279 * Lookup67: frame_support::weights::WeightToFeeCoefficient<Balance>280 **/281 FrameSupportWeightsWeightToFeeCoefficient: {282 coeffInteger: 'u128',283 coeffFrac: 'Perbill',284 negative: 'bool',285 degree: 'u8'286 },287 /**288 * Lookup69: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>289 **/290 PalletTreasuryProposal: {291 proposer: 'AccountId32',292 value: 'u128',293 beneficiary: 'AccountId32',294 bond: 'u128'295 },296 /**297 * Lookup72: pallet_treasury::pallet::Call<T, I>298 **/299 PalletTreasuryCall: {300 _enum: {301 propose_spend: {302 value: 'Compact<u128>',303 beneficiary: 'MultiAddress',304 },305 reject_proposal: {306 proposalId: 'Compact<u32>',307 },308 approve_proposal: {309 proposalId: 'Compact<u32>'310 }311 }312 },313 /**314 * Lookup74: pallet_treasury::pallet::Event<T, I>315 **/316 PalletTreasuryEvent: {317 _enum: {318 Proposed: {319 proposalIndex: 'u32',320 },321 Spending: {322 budgetRemaining: 'u128',323 },324 Awarded: {325 proposalIndex: 'u32',326 award: 'u128',327 account: 'AccountId32',328 },329 Rejected: {330 proposalIndex: 'u32',331 slashed: 'u128',332 },333 Burnt: {334 burntFunds: 'u128',335 },336 Rollover: {337 rolloverBalance: 'u128',338 },339 Deposit: {340 value: 'u128'341 }342 }343 },344 /**345 * Lookup77: frame_support::PalletId346 **/347 FrameSupportPalletId: '[u8;8]',348 /**349 * Lookup78: pallet_treasury::pallet::Error<T, I>350 **/351 PalletTreasuryError: {352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']353 },354 /**355 * Lookup79: pallet_sudo::pallet::Call<T>356 **/357 PalletSudoCall: {358 _enum: {359 sudo: {360 call: 'Call',361 },362 sudo_unchecked_weight: {363 call: 'Call',364 weight: 'u64',365 },366 set_key: {367 _alias: {368 new_: 'new',369 },370 new_: 'MultiAddress',371 },372 sudo_as: {373 who: 'MultiAddress',374 call: 'Call'375 }376 }377 },378 /**379 * Lookup81: frame_system::pallet::Call<T>380 **/381 FrameSystemCall: {382 _enum: {383 fill_block: {384 ratio: 'Perbill',385 },386 remark: {387 remark: 'Bytes',388 },389 set_heap_pages: {390 pages: 'u64',391 },392 set_code: {393 code: 'Bytes',394 },395 set_code_without_checks: {396 code: 'Bytes',397 },398 set_storage: {399 items: 'Vec<(Bytes,Bytes)>',400 },401 kill_storage: {402 _alias: {403 keys_: 'keys',404 },405 keys_: 'Vec<Bytes>',406 },407 kill_prefix: {408 prefix: 'Bytes',409 subkeys: 'u32',410 },411 remark_with_event: {412 remark: 'Bytes'413 }414 }415 },416 /**417 * Lookup84: orml_vesting::module::Call<T>418 **/419 OrmlVestingModuleCall: {420 _enum: {421 claim: 'Null',422 vested_transfer: {423 dest: 'MultiAddress',424 schedule: 'OrmlVestingVestingSchedule',425 },426 update_vesting_schedules: {427 who: 'MultiAddress',428 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',429 },430 claim_for: {431 dest: 'MultiAddress'432 }433 }434 },435 /**436 * Lookup85: orml_vesting::VestingSchedule<BlockNumber, Balance>437 **/438 OrmlVestingVestingSchedule: {439 start: 'u32',440 period: 'u32',441 periodCount: 'u32',442 perPeriod: 'Compact<u128>'443 },444 /**445 * Lookup87: cumulus_pallet_xcmp_queue::pallet::Call<T>446 **/447 CumulusPalletXcmpQueueCall: {448 _enum: {449 service_overweight: {450 index: 'u64',451 weightLimit: 'u64',452 },453 suspend_xcm_execution: 'Null',454 resume_xcm_execution: 'Null',455 update_suspend_threshold: {456 _alias: {457 new_: 'new',458 },459 new_: 'u32',460 },461 update_drop_threshold: {462 _alias: {463 new_: 'new',464 },465 new_: 'u32',466 },467 update_resume_threshold: {468 _alias: {469 new_: 'new',470 },471 new_: 'u32',472 },473 update_threshold_weight: {474 _alias: {475 new_: 'new',476 },477 new_: 'u64',478 },479 update_weight_restrict_decay: {480 _alias: {481 new_: 'new',482 },483 new_: 'u64',484 },485 update_xcmp_max_individual_weight: {486 _alias: {487 new_: 'new',488 },489 new_: 'u64'490 }491 }492 },493 /**494 * Lookup88: pallet_xcm::pallet::Call<T>495 **/496 PalletXcmCall: {497 _enum: {498 send: {499 dest: 'XcmVersionedMultiLocation',500 message: 'XcmVersionedXcm',501 },502 teleport_assets: {503 dest: 'XcmVersionedMultiLocation',504 beneficiary: 'XcmVersionedMultiLocation',505 assets: 'XcmVersionedMultiAssets',506 feeAssetItem: 'u32',507 },508 reserve_transfer_assets: {509 dest: 'XcmVersionedMultiLocation',510 beneficiary: 'XcmVersionedMultiLocation',511 assets: 'XcmVersionedMultiAssets',512 feeAssetItem: 'u32',513 },514 execute: {515 message: 'XcmVersionedXcm',516 maxWeight: 'u64',517 },518 force_xcm_version: {519 location: 'XcmV1MultiLocation',520 xcmVersion: 'u32',521 },522 force_default_xcm_version: {523 maybeXcmVersion: 'Option<u32>',524 },525 force_subscribe_version_notify: {526 location: 'XcmVersionedMultiLocation',527 },528 force_unsubscribe_version_notify: {529 location: 'XcmVersionedMultiLocation',530 },531 limited_reserve_transfer_assets: {532 dest: 'XcmVersionedMultiLocation',533 beneficiary: 'XcmVersionedMultiLocation',534 assets: 'XcmVersionedMultiAssets',535 feeAssetItem: 'u32',536 weightLimit: 'XcmV2WeightLimit',537 },538 limited_teleport_assets: {539 dest: 'XcmVersionedMultiLocation',540 beneficiary: 'XcmVersionedMultiLocation',541 assets: 'XcmVersionedMultiAssets',542 feeAssetItem: 'u32',543 weightLimit: 'XcmV2WeightLimit'544 }545 }546 },547 /**548 * Lookup89: xcm::VersionedMultiLocation549 **/550 XcmVersionedMultiLocation: {551 _enum: {552 V0: 'XcmV0MultiLocation',553 V1: 'XcmV1MultiLocation'554 }555 },556 /**557 * Lookup90: xcm::v0::multi_location::MultiLocation558 **/559 XcmV0MultiLocation: {560 _enum: {561 Null: 'Null',562 X1: 'XcmV0Junction',563 X2: '(XcmV0Junction,XcmV0Junction)',564 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',565 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',566 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',567 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',568 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'570 }571 },572 /**573 * Lookup91: xcm::v0::junction::Junction574 **/575 XcmV0Junction: {576 _enum: {577 Parent: 'Null',578 Parachain: 'Compact<u32>',579 AccountId32: {580 network: 'XcmV0JunctionNetworkId',581 id: '[u8;32]',582 },583 AccountIndex64: {584 network: 'XcmV0JunctionNetworkId',585 index: 'Compact<u64>',586 },587 AccountKey20: {588 network: 'XcmV0JunctionNetworkId',589 key: '[u8;20]',590 },591 PalletInstance: 'u8',592 GeneralIndex: 'Compact<u128>',593 GeneralKey: 'Bytes',594 OnlyChild: 'Null',595 Plurality: {596 id: 'XcmV0JunctionBodyId',597 part: 'XcmV0JunctionBodyPart'598 }599 }600 },601 /**602 * Lookup92: xcm::v0::junction::NetworkId603 **/604 XcmV0JunctionNetworkId: {605 _enum: {606 Any: 'Null',607 Named: 'Bytes',608 Polkadot: 'Null',609 Kusama: 'Null'610 }611 },612 /**613 * Lookup93: xcm::v0::junction::BodyId614 **/615 XcmV0JunctionBodyId: {616 _enum: {617 Unit: 'Null',618 Named: 'Bytes',619 Index: 'Compact<u32>',620 Executive: 'Null',621 Technical: 'Null',622 Legislative: 'Null',623 Judicial: 'Null'624 }625 },626 /**627 * Lookup94: xcm::v0::junction::BodyPart628 **/629 XcmV0JunctionBodyPart: {630 _enum: {631 Voice: 'Null',632 Members: {633 count: 'Compact<u32>',634 },635 Fraction: {636 nom: 'Compact<u32>',637 denom: 'Compact<u32>',638 },639 AtLeastProportion: {640 nom: 'Compact<u32>',641 denom: 'Compact<u32>',642 },643 MoreThanProportion: {644 nom: 'Compact<u32>',645 denom: 'Compact<u32>'646 }647 }648 },649 /**650 * Lookup95: xcm::v1::multilocation::MultiLocation651 **/652 XcmV1MultiLocation: {653 parents: 'u8',654 interior: 'XcmV1MultilocationJunctions'655 },656 /**657 * Lookup96: xcm::v1::multilocation::Junctions658 **/659 XcmV1MultilocationJunctions: {660 _enum: {661 Here: 'Null',662 X1: 'XcmV1Junction',663 X2: '(XcmV1Junction,XcmV1Junction)',664 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',665 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',666 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',667 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',668 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'670 }671 },672 /**673 * Lookup97: xcm::v1::junction::Junction674 **/675 XcmV1Junction: {676 _enum: {677 Parachain: 'Compact<u32>',678 AccountId32: {679 network: 'XcmV0JunctionNetworkId',680 id: '[u8;32]',681 },682 AccountIndex64: {683 network: 'XcmV0JunctionNetworkId',684 index: 'Compact<u64>',685 },686 AccountKey20: {687 network: 'XcmV0JunctionNetworkId',688 key: '[u8;20]',689 },690 PalletInstance: 'u8',691 GeneralIndex: 'Compact<u128>',692 GeneralKey: 'Bytes',693 OnlyChild: 'Null',694 Plurality: {695 id: 'XcmV0JunctionBodyId',696 part: 'XcmV0JunctionBodyPart'697 }698 }699 },700 /**701 * Lookup98: xcm::VersionedXcm<Call>702 **/703 XcmVersionedXcm: {704 _enum: {705 V0: 'XcmV0Xcm',706 V1: 'XcmV1Xcm',707 V2: 'XcmV2Xcm'708 }709 },710 /**711 * Lookup99: xcm::v0::Xcm<Call>712 **/713 XcmV0Xcm: {714 _enum: {715 WithdrawAsset: {716 assets: 'Vec<XcmV0MultiAsset>',717 effects: 'Vec<XcmV0Order>',718 },719 ReserveAssetDeposit: {720 assets: 'Vec<XcmV0MultiAsset>',721 effects: 'Vec<XcmV0Order>',722 },723 TeleportAsset: {724 assets: 'Vec<XcmV0MultiAsset>',725 effects: 'Vec<XcmV0Order>',726 },727 QueryResponse: {728 queryId: 'Compact<u64>',729 response: 'XcmV0Response',730 },731 TransferAsset: {732 assets: 'Vec<XcmV0MultiAsset>',733 dest: 'XcmV0MultiLocation',734 },735 TransferReserveAsset: {736 assets: 'Vec<XcmV0MultiAsset>',737 dest: 'XcmV0MultiLocation',738 effects: 'Vec<XcmV0Order>',739 },740 Transact: {741 originType: 'XcmV0OriginKind',742 requireWeightAtMost: 'u64',743 call: 'XcmDoubleEncoded',744 },745 HrmpNewChannelOpenRequest: {746 sender: 'Compact<u32>',747 maxMessageSize: 'Compact<u32>',748 maxCapacity: 'Compact<u32>',749 },750 HrmpChannelAccepted: {751 recipient: 'Compact<u32>',752 },753 HrmpChannelClosing: {754 initiator: 'Compact<u32>',755 sender: 'Compact<u32>',756 recipient: 'Compact<u32>',757 },758 RelayedFrom: {759 who: 'XcmV0MultiLocation',760 message: 'XcmV0Xcm'761 }762 }763 },764 /**765 * Lookup101: xcm::v0::multi_asset::MultiAsset766 **/767 XcmV0MultiAsset: {768 _enum: {769 None: 'Null',770 All: 'Null',771 AllFungible: 'Null',772 AllNonFungible: 'Null',773 AllAbstractFungible: {774 id: 'Bytes',775 },776 AllAbstractNonFungible: {777 class: 'Bytes',778 },779 AllConcreteFungible: {780 id: 'XcmV0MultiLocation',781 },782 AllConcreteNonFungible: {783 class: 'XcmV0MultiLocation',784 },785 AbstractFungible: {786 id: 'Bytes',787 amount: 'Compact<u128>',788 },789 AbstractNonFungible: {790 class: 'Bytes',791 instance: 'XcmV1MultiassetAssetInstance',792 },793 ConcreteFungible: {794 id: 'XcmV0MultiLocation',795 amount: 'Compact<u128>',796 },797 ConcreteNonFungible: {798 class: 'XcmV0MultiLocation',799 instance: 'XcmV1MultiassetAssetInstance'800 }801 }802 },803 /**804 * Lookup102: xcm::v1::multiasset::AssetInstance805 **/806 XcmV1MultiassetAssetInstance: {807 _enum: {808 Undefined: 'Null',809 Index: 'Compact<u128>',810 Array4: '[u8;4]',811 Array8: '[u8;8]',812 Array16: '[u8;16]',813 Array32: '[u8;32]',814 Blob: 'Bytes'815 }816 },817 /**818 * Lookup106: xcm::v0::order::Order<Call>819 **/820 XcmV0Order: {821 _enum: {822 Null: 'Null',823 DepositAsset: {824 assets: 'Vec<XcmV0MultiAsset>',825 dest: 'XcmV0MultiLocation',826 },827 DepositReserveAsset: {828 assets: 'Vec<XcmV0MultiAsset>',829 dest: 'XcmV0MultiLocation',830 effects: 'Vec<XcmV0Order>',831 },832 ExchangeAsset: {833 give: 'Vec<XcmV0MultiAsset>',834 receive: 'Vec<XcmV0MultiAsset>',835 },836 InitiateReserveWithdraw: {837 assets: 'Vec<XcmV0MultiAsset>',838 reserve: 'XcmV0MultiLocation',839 effects: 'Vec<XcmV0Order>',840 },841 InitiateTeleport: {842 assets: 'Vec<XcmV0MultiAsset>',843 dest: 'XcmV0MultiLocation',844 effects: 'Vec<XcmV0Order>',845 },846 QueryHolding: {847 queryId: 'Compact<u64>',848 dest: 'XcmV0MultiLocation',849 assets: 'Vec<XcmV0MultiAsset>',850 },851 BuyExecution: {852 fees: 'XcmV0MultiAsset',853 weight: 'u64',854 debt: 'u64',855 haltOnError: 'bool',856 xcm: 'Vec<XcmV0Xcm>'857 }858 }859 },860 /**861 * Lookup108: xcm::v0::Response862 **/863 XcmV0Response: {864 _enum: {865 Assets: 'Vec<XcmV0MultiAsset>'866 }867 },868 /**869 * Lookup109: xcm::v0::OriginKind870 **/871 XcmV0OriginKind: {872 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']873 },874 /**875 * Lookup110: xcm::double_encoded::DoubleEncoded<T>876 **/877 XcmDoubleEncoded: {878 encoded: 'Bytes'879 },880 /**881 * Lookup111: xcm::v1::Xcm<Call>882 **/883 XcmV1Xcm: {884 _enum: {885 WithdrawAsset: {886 assets: 'XcmV1MultiassetMultiAssets',887 effects: 'Vec<XcmV1Order>',888 },889 ReserveAssetDeposited: {890 assets: 'XcmV1MultiassetMultiAssets',891 effects: 'Vec<XcmV1Order>',892 },893 ReceiveTeleportedAsset: {894 assets: 'XcmV1MultiassetMultiAssets',895 effects: 'Vec<XcmV1Order>',896 },897 QueryResponse: {898 queryId: 'Compact<u64>',899 response: 'XcmV1Response',900 },901 TransferAsset: {902 assets: 'XcmV1MultiassetMultiAssets',903 beneficiary: 'XcmV1MultiLocation',904 },905 TransferReserveAsset: {906 assets: 'XcmV1MultiassetMultiAssets',907 dest: 'XcmV1MultiLocation',908 effects: 'Vec<XcmV1Order>',909 },910 Transact: {911 originType: 'XcmV0OriginKind',912 requireWeightAtMost: 'u64',913 call: 'XcmDoubleEncoded',914 },915 HrmpNewChannelOpenRequest: {916 sender: 'Compact<u32>',917 maxMessageSize: 'Compact<u32>',918 maxCapacity: 'Compact<u32>',919 },920 HrmpChannelAccepted: {921 recipient: 'Compact<u32>',922 },923 HrmpChannelClosing: {924 initiator: 'Compact<u32>',925 sender: 'Compact<u32>',926 recipient: 'Compact<u32>',927 },928 RelayedFrom: {929 who: 'XcmV1MultilocationJunctions',930 message: 'XcmV1Xcm',931 },932 SubscribeVersion: {933 queryId: 'Compact<u64>',934 maxResponseWeight: 'Compact<u64>',935 },936 UnsubscribeVersion: 'Null'937 }938 },939 /**940 * Lookup112: xcm::v1::multiasset::MultiAssets941 **/942 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',943 /**944 * Lookup114: xcm::v1::multiasset::MultiAsset945 **/946 XcmV1MultiAsset: {947 id: 'XcmV1MultiassetAssetId',948 fun: 'XcmV1MultiassetFungibility'949 },950 /**951 * Lookup115: xcm::v1::multiasset::AssetId952 **/953 XcmV1MultiassetAssetId: {954 _enum: {955 Concrete: 'XcmV1MultiLocation',956 Abstract: 'Bytes'957 }958 },959 /**960 * Lookup116: xcm::v1::multiasset::Fungibility961 **/962 XcmV1MultiassetFungibility: {963 _enum: {964 Fungible: 'Compact<u128>',965 NonFungible: 'XcmV1MultiassetAssetInstance'966 }967 },968 /**969 * Lookup118: xcm::v1::order::Order<Call>970 **/971 XcmV1Order: {972 _enum: {973 Noop: 'Null',974 DepositAsset: {975 assets: 'XcmV1MultiassetMultiAssetFilter',976 maxAssets: 'u32',977 beneficiary: 'XcmV1MultiLocation',978 },979 DepositReserveAsset: {980 assets: 'XcmV1MultiassetMultiAssetFilter',981 maxAssets: 'u32',982 dest: 'XcmV1MultiLocation',983 effects: 'Vec<XcmV1Order>',984 },985 ExchangeAsset: {986 give: 'XcmV1MultiassetMultiAssetFilter',987 receive: 'XcmV1MultiassetMultiAssets',988 },989 InitiateReserveWithdraw: {990 assets: 'XcmV1MultiassetMultiAssetFilter',991 reserve: 'XcmV1MultiLocation',992 effects: 'Vec<XcmV1Order>',993 },994 InitiateTeleport: {995 assets: 'XcmV1MultiassetMultiAssetFilter',996 dest: 'XcmV1MultiLocation',997 effects: 'Vec<XcmV1Order>',998 },999 QueryHolding: {1000 queryId: 'Compact<u64>',1001 dest: 'XcmV1MultiLocation',1002 assets: 'XcmV1MultiassetMultiAssetFilter',1003 },1004 BuyExecution: {1005 fees: 'XcmV1MultiAsset',1006 weight: 'u64',1007 debt: 'u64',1008 haltOnError: 'bool',1009 instructions: 'Vec<XcmV1Xcm>'1010 }1011 }1012 },1013 /**1014 * Lookup119: xcm::v1::multiasset::MultiAssetFilter1015 **/1016 XcmV1MultiassetMultiAssetFilter: {1017 _enum: {1018 Definite: 'XcmV1MultiassetMultiAssets',1019 Wild: 'XcmV1MultiassetWildMultiAsset'1020 }1021 },1022 /**1023 * Lookup120: xcm::v1::multiasset::WildMultiAsset1024 **/1025 XcmV1MultiassetWildMultiAsset: {1026 _enum: {1027 All: 'Null',1028 AllOf: {1029 id: 'XcmV1MultiassetAssetId',1030 fun: 'XcmV1MultiassetWildFungibility'1031 }1032 }1033 },1034 /**1035 * Lookup121: xcm::v1::multiasset::WildFungibility1036 **/1037 XcmV1MultiassetWildFungibility: {1038 _enum: ['Fungible', 'NonFungible']1039 },1040 /**1041 * Lookup123: xcm::v1::Response1042 **/1043 XcmV1Response: {1044 _enum: {1045 Assets: 'XcmV1MultiassetMultiAssets',1046 Version: 'u32'1047 }1048 },1049 /**1050 * Lookup124: xcm::v2::Xcm<Call>1051 **/1052 XcmV2Xcm: 'Vec<XcmV2Instruction>',1053 /**1054 * Lookup126: xcm::v2::Instruction<Call>1055 **/1056 XcmV2Instruction: {1057 _enum: {1058 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1059 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',1060 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',1061 QueryResponse: {1062 queryId: 'Compact<u64>',1063 response: 'XcmV2Response',1064 maxWeight: 'Compact<u64>',1065 },1066 TransferAsset: {1067 assets: 'XcmV1MultiassetMultiAssets',1068 beneficiary: 'XcmV1MultiLocation',1069 },1070 TransferReserveAsset: {1071 assets: 'XcmV1MultiassetMultiAssets',1072 dest: 'XcmV1MultiLocation',1073 xcm: 'XcmV2Xcm',1074 },1075 Transact: {1076 originType: 'XcmV0OriginKind',1077 requireWeightAtMost: 'Compact<u64>',1078 call: 'XcmDoubleEncoded',1079 },1080 HrmpNewChannelOpenRequest: {1081 sender: 'Compact<u32>',1082 maxMessageSize: 'Compact<u32>',1083 maxCapacity: 'Compact<u32>',1084 },1085 HrmpChannelAccepted: {1086 recipient: 'Compact<u32>',1087 },1088 HrmpChannelClosing: {1089 initiator: 'Compact<u32>',1090 sender: 'Compact<u32>',1091 recipient: 'Compact<u32>',1092 },1093 ClearOrigin: 'Null',1094 DescendOrigin: 'XcmV1MultilocationJunctions',1095 ReportError: {1096 queryId: 'Compact<u64>',1097 dest: 'XcmV1MultiLocation',1098 maxResponseWeight: 'Compact<u64>',1099 },1100 DepositAsset: {1101 assets: 'XcmV1MultiassetMultiAssetFilter',1102 maxAssets: 'Compact<u32>',1103 beneficiary: 'XcmV1MultiLocation',1104 },1105 DepositReserveAsset: {1106 assets: 'XcmV1MultiassetMultiAssetFilter',1107 maxAssets: 'Compact<u32>',1108 dest: 'XcmV1MultiLocation',1109 xcm: 'XcmV2Xcm',1110 },1111 ExchangeAsset: {1112 give: 'XcmV1MultiassetMultiAssetFilter',1113 receive: 'XcmV1MultiassetMultiAssets',1114 },1115 InitiateReserveWithdraw: {1116 assets: 'XcmV1MultiassetMultiAssetFilter',1117 reserve: 'XcmV1MultiLocation',1118 xcm: 'XcmV2Xcm',1119 },1120 InitiateTeleport: {1121 assets: 'XcmV1MultiassetMultiAssetFilter',1122 dest: 'XcmV1MultiLocation',1123 xcm: 'XcmV2Xcm',1124 },1125 QueryHolding: {1126 queryId: 'Compact<u64>',1127 dest: 'XcmV1MultiLocation',1128 assets: 'XcmV1MultiassetMultiAssetFilter',1129 maxResponseWeight: 'Compact<u64>',1130 },1131 BuyExecution: {1132 fees: 'XcmV1MultiAsset',1133 weightLimit: 'XcmV2WeightLimit',1134 },1135 RefundSurplus: 'Null',1136 SetErrorHandler: 'XcmV2Xcm',1137 SetAppendix: 'XcmV2Xcm',1138 ClearError: 'Null',1139 ClaimAsset: {1140 assets: 'XcmV1MultiassetMultiAssets',1141 ticket: 'XcmV1MultiLocation',1142 },1143 Trap: 'Compact<u64>',1144 SubscribeVersion: {1145 queryId: 'Compact<u64>',1146 maxResponseWeight: 'Compact<u64>',1147 },1148 UnsubscribeVersion: 'Null'1149 }1150 },1151 /**1152 * Lookup127: xcm::v2::Response1153 **/1154 XcmV2Response: {1155 _enum: {1156 Null: 'Null',1157 Assets: 'XcmV1MultiassetMultiAssets',1158 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',1159 Version: 'u32'1160 }1161 },1162 /**1163 * Lookup130: xcm::v2::traits::Error1164 **/1165 XcmV2TraitsError: {1166 _enum: {1167 Overflow: 'Null',1168 Unimplemented: 'Null',1169 UntrustedReserveLocation: 'Null',1170 UntrustedTeleportLocation: 'Null',1171 MultiLocationFull: 'Null',1172 MultiLocationNotInvertible: 'Null',1173 BadOrigin: 'Null',1174 InvalidLocation: 'Null',1175 AssetNotFound: 'Null',1176 FailedToTransactAsset: 'Null',1177 NotWithdrawable: 'Null',1178 LocationCannotHold: 'Null',1179 ExceedsMaxMessageSize: 'Null',1180 DestinationUnsupported: 'Null',1181 Transport: 'Null',1182 Unroutable: 'Null',1183 UnknownClaim: 'Null',1184 FailedToDecode: 'Null',1185 MaxWeightInvalid: 'Null',1186 NotHoldingFees: 'Null',1187 TooExpensive: 'Null',1188 Trap: 'u64',1189 UnhandledXcmVersion: 'Null',1190 WeightLimitReached: 'u64',1191 Barrier: 'Null',1192 WeightNotComputable: 'Null'1193 }1194 },1195 /**1196 * Lookup131: xcm::v2::WeightLimit1197 **/1198 XcmV2WeightLimit: {1199 _enum: {1200 Unlimited: 'Null',1201 Limited: 'Compact<u64>'1202 }1203 },1204 /**1205 * Lookup132: xcm::VersionedMultiAssets1206 **/1207 XcmVersionedMultiAssets: {1208 _enum: {1209 V0: 'Vec<XcmV0MultiAsset>',1210 V1: 'XcmV1MultiassetMultiAssets'1211 }1212 },1213 /**1214 * Lookup147: cumulus_pallet_xcm::pallet::Call<T>1215 **/1216 CumulusPalletXcmCall: 'Null',1217 /**1218 * Lookup148: cumulus_pallet_dmp_queue::pallet::Call<T>1219 **/1220 CumulusPalletDmpQueueCall: {1221 _enum: {1222 service_overweight: {1223 index: 'u64',1224 weightLimit: 'u64'1225 }1226 }1227 },1228 /**1229 * Lookup149: pallet_inflation::pallet::Call<T>1230 **/1231 PalletInflationCall: {1232 _enum: {1233 start_inflation: {1234 inflationStartRelayBlock: 'u32'1235 }1236 }1237 },1238 /**1239 * Lookup150: pallet_unique::Call<T>1240 **/1241 PalletUniqueCall: {1242 _enum: {1243 create_collection: {1244 collectionName: 'Vec<u16>',1245 collectionDescription: 'Vec<u16>',1246 tokenPrefix: 'Bytes',1247 mode: 'UpDataStructsCollectionMode',1248 },1249 create_collection_ex: {1250 data: 'UpDataStructsCreateCollectionData',1251 },1252 destroy_collection: {1253 collectionId: 'u32',1254 },1255 add_to_allow_list: {1256 collectionId: 'u32',1257 address: 'PalletEvmAccountBasicCrossAccountIdRepr',1258 },1259 remove_from_allow_list: {1260 collectionId: 'u32',1261 address: 'PalletEvmAccountBasicCrossAccountIdRepr',1262 },1263 set_public_access_mode: {1264 collectionId: 'u32',1265 mode: 'UpDataStructsAccessMode',1266 },1267 set_mint_permission: {1268 collectionId: 'u32',1269 mintPermission: 'bool',1270 },1271 change_collection_owner: {1272 collectionId: 'u32',1273 newOwner: 'AccountId32',1274 },1275 add_collection_admin: {1276 collectionId: 'u32',1277 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',1278 },1279 remove_collection_admin: {1280 collectionId: 'u32',1281 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',1282 },1283 set_collection_sponsor: {1284 collectionId: 'u32',1285 newSponsor: 'AccountId32',1286 },1287 confirm_sponsorship: {1288 collectionId: 'u32',1289 },1290 remove_collection_sponsor: {1291 collectionId: 'u32',1292 },1293 create_item: {1294 collectionId: 'u32',1295 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',1296 data: 'UpDataStructsCreateItemData',1297 },1298 create_multiple_items: {1299 collectionId: 'u32',1300 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',1301 itemsData: 'Vec<UpDataStructsCreateItemData>',1302 },1303 set_collection_properties: {1304 collectionId: 'u32',1305 properties: 'Vec<UpDataStructsProperty>',1306 },1307 delete_collection_properties: {1308 collectionId: 'u32',1309 propertyKeys: 'Vec<Bytes>',1310 },1311 set_token_properties: {1312 collectionId: 'u32',1313 tokenId: 'u32',1314 properties: 'Vec<UpDataStructsProperty>',1315 },1316 delete_token_properties: {1317 collectionId: 'u32',1318 tokenId: 'u32',1319 propertyKeys: 'Vec<Bytes>',1320 },1321 set_property_permissions: {1322 collectionId: 'u32',1323 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',1324 },1325 create_multiple_items_ex: {1326 collectionId: 'u32',1327 data: 'UpDataStructsCreateItemExData',1328 },1329 set_transfers_enabled_flag: {1330 collectionId: 'u32',1331 value: 'bool',1332 },1333 burn_item: {1334 collectionId: 'u32',1335 itemId: 'u32',1336 value: 'u128',1337 },1338 burn_from: {1339 collectionId: 'u32',1340 from: 'PalletEvmAccountBasicCrossAccountIdRepr',1341 itemId: 'u32',1342 value: 'u128',1343 },1344 transfer: {1345 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',1346 collectionId: 'u32',1347 itemId: 'u32',1348 value: 'u128',1349 },1350 approve: {1351 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',1352 collectionId: 'u32',1353 itemId: 'u32',1354 amount: 'u128',1355 },1356 transfer_from: {1357 from: 'PalletEvmAccountBasicCrossAccountIdRepr',1358 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',1359 collectionId: 'u32',1360 itemId: 'u32',1361 value: 'u128',1362 },1363 set_variable_meta_data: {1364 collectionId: 'u32',1365 itemId: 'u32',1366 data: 'Bytes',1367 },1368 set_meta_update_permission_flag: {1369 collectionId: 'u32',1370 value: 'UpDataStructsMetaUpdatePermission',1371 },1372 set_schema_version: {1373 collectionId: 'u32',1374 version: 'UpDataStructsSchemaVersion',1375 },1376 set_offchain_schema: {1377 collectionId: 'u32',1378 schema: 'Bytes',1379 },1380 set_const_on_chain_schema: {1381 collectionId: 'u32',1382 schema: 'Bytes',1383 },1384 set_collection_limits: {1385 collectionId: 'u32',1386 newLimit: 'UpDataStructsCollectionLimits'1387 }1388 }1389 },1390 /**1391 * Lookup156: up_data_structs::CollectionMode1392 **/1393 UpDataStructsCollectionMode: {1394 _enum: {1395 NFT: 'Null',1396 Fungible: 'u8',1397 ReFungible: 'Null'1398 }1399 },1400 /**1401 * Lookup157: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1402 **/1403 UpDataStructsCreateCollectionData: {1404 mode: 'UpDataStructsCollectionMode',1405 access: 'Option<UpDataStructsAccessMode>',1406 name: 'Vec<u16>',1407 description: 'Vec<u16>',1408 tokenPrefix: 'Bytes',1409 offchainSchema: 'Bytes',1410 schemaVersion: 'Option<UpDataStructsSchemaVersion>',1411 pendingSponsor: 'Option<AccountId32>',1412 limits: 'Option<UpDataStructsCollectionLimits>',1413 constOnChainSchema: 'Bytes',1414 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>',1415 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',1416 properties: 'Vec<UpDataStructsProperty>'1417 },1418 /**1419 * Lookup159: up_data_structs::AccessMode1420 **/1421 UpDataStructsAccessMode: {1422 _enum: ['Normal', 'AllowList']1423 },1424 /**1425 * Lookup162: up_data_structs::SchemaVersion1426 **/1427 UpDataStructsSchemaVersion: {1428 _enum: ['ImageURL', 'Unique']1429 },1430 /**1431 * Lookup165: up_data_structs::CollectionLimits1432 **/1433 UpDataStructsCollectionLimits: {1434 accountTokenOwnershipLimit: 'Option<u32>',1435 sponsoredDataSize: 'Option<u32>',1436 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1437 tokenLimit: 'Option<u32>',1438 sponsorTransferTimeout: 'Option<u32>',1439 sponsorApproveTimeout: 'Option<u32>',1440 ownerCanTransfer: 'Option<bool>',1441 ownerCanDestroy: 'Option<bool>',1442 transfersEnabled: 'Option<bool>',1443 nestingRule: 'Option<UpDataStructsNestingRule>'1444 },1445 /**1446 * Lookup167: up_data_structs::SponsoringRateLimit1447 **/1448 UpDataStructsSponsoringRateLimit: {1449 _enum: {1450 SponsoringDisabled: 'Null',1451 Blocks: 'u32'1452 }1453 },1454 /**1455 * Lookup170: up_data_structs::NestingRule1456 **/1457 UpDataStructsNestingRule: {1458 _enum: {1459 Disabled: 'Null',1460 Owner: 'Null',1461 OwnerRestricted: 'BTreeSet<u32>'1462 }1463 },1464 /**1465 * Lookup177: up_data_structs::MetaUpdatePermission1466 **/1467 UpDataStructsMetaUpdatePermission: {1468 _enum: ['ItemOwner', 'Admin', 'None']1469 },1470 /**1471 * Lookup179: up_data_structs::PropertyKeyPermission1472 **/1473 UpDataStructsPropertyKeyPermission: {1474 key: 'Bytes',1475 permission: 'UpDataStructsPropertyPermission'1476 },1477 /**1478 * Lookup181: up_data_structs::PropertyPermission1479 **/1480 UpDataStructsPropertyPermission: {1481 mutable: 'bool',1482 collectionAdmin: 'bool',1483 tokenOwner: 'bool'1484 },1485 /**1486 * Lookup184: up_data_structs::Property1487 **/1488 UpDataStructsProperty: {1489 key: 'Bytes',1490 value: 'Bytes'1491 },1492 /**1493 * Lookup186: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1494 **/1495 PalletEvmAccountBasicCrossAccountIdRepr: {1496 _enum: {1497 Substrate: 'AccountId32',1498 Ethereum: 'H160'1499 }1500 },1501 /**1502 * Lookup188: up_data_structs::CreateItemData1503 **/1504 UpDataStructsCreateItemData: {1505 _enum: {1506 NFT: 'UpDataStructsCreateNftData',1507 Fungible: 'UpDataStructsCreateFungibleData',1508 ReFungible: 'UpDataStructsCreateReFungibleData'1509 }1510 },1511 /**1512 * Lookup189: up_data_structs::CreateNftData1513 **/1514 UpDataStructsCreateNftData: {1515 constData: 'Bytes',1516 variableData: 'Bytes',1517 properties: 'Vec<UpDataStructsProperty>'1518 },1519 /**1520 * Lookup191: up_data_structs::CreateFungibleData1521 **/1522 UpDataStructsCreateFungibleData: {1523 value: 'u128'1524 },1525 /**1526 * Lookup192: up_data_structs::CreateReFungibleData1527 **/1528 UpDataStructsCreateReFungibleData: {1529 constData: 'Bytes',1530 variableData: 'Bytes',1531 pieces: 'u128'1532 },1533 /**1534 * Lookup196: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1535 **/1536 UpDataStructsCreateItemExData: {1537 _enum: {1538 NFT: 'Vec<UpDataStructsCreateNftExData>',1539 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',1540 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExData>',1541 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExData'1542 }1543 },1544 /**1545 * Lookup198: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1546 **/1547 UpDataStructsCreateNftExData: {1548 constData: 'Bytes',1549 variableData: 'Bytes',1550 properties: 'Vec<UpDataStructsProperty>',1551 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'1552 },1553 /**1554 * Lookup205: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1555 **/1556 UpDataStructsCreateRefungibleExData: {1557 constData: 'Bytes',1558 variableData: 'Bytes',1559 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'1560 },1561 /**1562 * Lookup207: pallet_template_transaction_payment::Call<T>1563 **/1564 PalletTemplateTransactionPaymentCall: 'Null',1565 /**1566 * Lookup208: pallet_structure::pallet::Call<T>1567 **/1568 PalletStructureCall: 'Null',1569 /**1570 * Lookup209: pallet_evm::pallet::Call<T>1571 **/1572 PalletEvmCall: {1573 _enum: {1574 withdraw: {1575 address: 'H160',1576 value: 'u128',1577 },1578 call: {1579 source: 'H160',1580 target: 'H160',1581 input: 'Bytes',1582 value: 'U256',1583 gasLimit: 'u64',1584 maxFeePerGas: 'U256',1585 maxPriorityFeePerGas: 'Option<U256>',1586 nonce: 'Option<U256>',1587 accessList: 'Vec<(H160,Vec<H256>)>',1588 },1589 create: {1590 source: 'H160',1591 init: 'Bytes',1592 value: 'U256',1593 gasLimit: 'u64',1594 maxFeePerGas: 'U256',1595 maxPriorityFeePerGas: 'Option<U256>',1596 nonce: 'Option<U256>',1597 accessList: 'Vec<(H160,Vec<H256>)>',1598 },1599 create2: {1600 source: 'H160',1601 init: 'Bytes',1602 salt: 'H256',1603 value: 'U256',1604 gasLimit: 'u64',1605 maxFeePerGas: 'U256',1606 maxPriorityFeePerGas: 'Option<U256>',1607 nonce: 'Option<U256>',1608 accessList: 'Vec<(H160,Vec<H256>)>'1609 }1610 }1611 },1612 /**1613 * Lookup215: pallet_ethereum::pallet::Call<T>1614 **/1615 PalletEthereumCall: {1616 _enum: {1617 transact: {1618 transaction: 'EthereumTransactionTransactionV2'1619 }1620 }1621 },1622 /**1623 * Lookup216: ethereum::transaction::TransactionV21624 **/1625 EthereumTransactionTransactionV2: {1626 _enum: {1627 Legacy: 'EthereumTransactionLegacyTransaction',1628 EIP2930: 'EthereumTransactionEip2930Transaction',1629 EIP1559: 'EthereumTransactionEip1559Transaction'1630 }1631 },1632 /**1633 * Lookup217: ethereum::transaction::LegacyTransaction1634 **/1635 EthereumTransactionLegacyTransaction: {1636 nonce: 'U256',1637 gasPrice: 'U256',1638 gasLimit: 'U256',1639 action: 'EthereumTransactionTransactionAction',1640 value: 'U256',1641 input: 'Bytes',1642 signature: 'EthereumTransactionTransactionSignature'1643 },1644 /**1645 * Lookup218: ethereum::transaction::TransactionAction1646 **/1647 EthereumTransactionTransactionAction: {1648 _enum: {1649 Call: 'H160',1650 Create: 'Null'1651 }1652 },1653 /**1654 * Lookup219: ethereum::transaction::TransactionSignature1655 **/1656 EthereumTransactionTransactionSignature: {1657 v: 'u64',1658 r: 'H256',1659 s: 'H256'1660 },1661 /**1662 * Lookup221: ethereum::transaction::EIP2930Transaction1663 **/1664 EthereumTransactionEip2930Transaction: {1665 chainId: 'u64',1666 nonce: 'U256',1667 gasPrice: 'U256',1668 gasLimit: 'U256',1669 action: 'EthereumTransactionTransactionAction',1670 value: 'U256',1671 input: 'Bytes',1672 accessList: 'Vec<EthereumTransactionAccessListItem>',1673 oddYParity: 'bool',1674 r: 'H256',1675 s: 'H256'1676 },1677 /**1678 * Lookup223: ethereum::transaction::AccessListItem1679 **/1680 EthereumTransactionAccessListItem: {1681 address: 'H160',1682 storageKeys: 'Vec<H256>'1683 },1684 /**1685 * Lookup224: ethereum::transaction::EIP1559Transaction1686 **/1687 EthereumTransactionEip1559Transaction: {1688 chainId: 'u64',1689 nonce: 'U256',1690 maxPriorityFeePerGas: 'U256',1691 maxFeePerGas: 'U256',1692 gasLimit: 'U256',1693 action: 'EthereumTransactionTransactionAction',1694 value: 'U256',1695 input: 'Bytes',1696 accessList: 'Vec<EthereumTransactionAccessListItem>',1697 oddYParity: 'bool',1698 r: 'H256',1699 s: 'H256'1700 },1701 /**1702 * Lookup225: pallet_evm_migration::pallet::Call<T>1703 **/1704 PalletEvmMigrationCall: {1705 _enum: {1706 begin: {1707 address: 'H160',1708 },1709 set_data: {1710 address: 'H160',1711 data: 'Vec<(H256,H256)>',1712 },1713 finish: {1714 address: 'H160',1715 code: 'Bytes'1716 }1717 }1718 },1719 /**1720 * Lookup228: pallet_sudo::pallet::Event<T>1721 **/1722 PalletSudoEvent: {1723 _enum: {1724 Sudid: {1725 sudoResult: 'Result<Null, SpRuntimeDispatchError>',1726 },1727 KeyChanged: {1728 oldSudoer: 'Option<AccountId32>',1729 },1730 SudoAsDone: {1731 sudoResult: 'Result<Null, SpRuntimeDispatchError>'1732 }1733 }1734 },1735 /**1736 * Lookup230: sp_runtime::DispatchError1737 **/1738 SpRuntimeDispatchError: {1739 _enum: {1740 Other: 'Null',1741 CannotLookup: 'Null',1742 BadOrigin: 'Null',1743 Module: 'SpRuntimeModuleError',1744 ConsumerRemaining: 'Null',1745 NoProviders: 'Null',1746 TooManyConsumers: 'Null',1747 Token: 'SpRuntimeTokenError',1748 Arithmetic: 'SpRuntimeArithmeticError',1749 Transactional: 'SpRuntimeTransactionalError'1750 }1751 },1752 /**1753 * Lookup231: sp_runtime::ModuleError1754 **/1755 SpRuntimeModuleError: {1756 index: 'u8',1757 error: '[u8;4]'1758 },1759 /**1760 * Lookup232: sp_runtime::TokenError1761 **/1762 SpRuntimeTokenError: {1763 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1764 },1765 /**1766 * Lookup233: sp_runtime::ArithmeticError1767 **/1768 SpRuntimeArithmeticError: {1769 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1770 },1771 /**1772 * Lookup234: sp_runtime::TransactionalError1773 **/1774 SpRuntimeTransactionalError: {1775 _enum: ['LimitReached', 'NoLayer']1776 },1777 /**1778 * Lookup235: pallet_sudo::pallet::Error<T>1779 **/1780 PalletSudoError: {1781 _enum: ['RequireSudo']1782 },1783 /**1784 * Lookup236: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1785 **/1786 FrameSystemAccountInfo: {1787 nonce: 'u32',1788 consumers: 'u32',1789 providers: 'u32',1790 sufficients: 'u32',1791 data: 'PalletBalancesAccountData'1792 },1793 /**1794 * Lookup237: frame_support::weights::PerDispatchClass<T>1795 **/1796 FrameSupportWeightsPerDispatchClassU64: {1797 normal: 'u64',1798 operational: 'u64',1799 mandatory: 'u64'1800 },1801 /**1802 * Lookup238: sp_runtime::generic::digest::Digest1803 **/1804 SpRuntimeDigest: {1805 logs: 'Vec<SpRuntimeDigestDigestItem>'1806 },1807 /**1808 * Lookup240: sp_runtime::generic::digest::DigestItem1809 **/1810 SpRuntimeDigestDigestItem: {1811 _enum: {1812 Other: 'Bytes',1813 __Unused1: 'Null',1814 __Unused2: 'Null',1815 __Unused3: 'Null',1816 Consensus: '([u8;4],Bytes)',1817 Seal: '([u8;4],Bytes)',1818 PreRuntime: '([u8;4],Bytes)',1819 __Unused7: 'Null',1820 RuntimeEnvironmentUpdated: 'Null'1821 }1822 },1823 /**1824 * Lookup242: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>1825 **/1826 FrameSystemEventRecord: {1827 phase: 'FrameSystemPhase',1828 event: 'Event',1829 topics: 'Vec<H256>'1830 },1831 /**1832 * Lookup244: frame_system::pallet::Event<T>1833 **/1834 FrameSystemEvent: {1835 _enum: {1836 ExtrinsicSuccess: {1837 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1838 },1839 ExtrinsicFailed: {1840 dispatchError: 'SpRuntimeDispatchError',1841 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1842 },1843 CodeUpdated: 'Null',1844 NewAccount: {1845 account: 'AccountId32',1846 },1847 KilledAccount: {1848 account: 'AccountId32',1849 },1850 Remarked: {1851 _alias: {1852 hash_: 'hash',1853 },1854 sender: 'AccountId32',1855 hash_: 'H256'1856 }1857 }1858 },1859 /**1860 * Lookup245: frame_support::weights::DispatchInfo1861 **/1862 FrameSupportWeightsDispatchInfo: {1863 weight: 'u64',1864 class: 'FrameSupportWeightsDispatchClass',1865 paysFee: 'FrameSupportWeightsPays'1866 },1867 /**1868 * Lookup246: frame_support::weights::DispatchClass1869 **/1870 FrameSupportWeightsDispatchClass: {1871 _enum: ['Normal', 'Operational', 'Mandatory']1872 },1873 /**1874 * Lookup247: frame_support::weights::Pays1875 **/1876 FrameSupportWeightsPays: {1877 _enum: ['Yes', 'No']1878 },1879 /**1880 * Lookup248: orml_vesting::module::Event<T>1881 **/1882 OrmlVestingModuleEvent: {1883 _enum: {1884 VestingScheduleAdded: {1885 from: 'AccountId32',1886 to: 'AccountId32',1887 vestingSchedule: 'OrmlVestingVestingSchedule',1888 },1889 Claimed: {1890 who: 'AccountId32',1891 amount: 'u128',1892 },1893 VestingSchedulesUpdated: {1894 who: 'AccountId32'1895 }1896 }1897 },1898 /**1899 * Lookup249: cumulus_pallet_xcmp_queue::pallet::Event<T>1900 **/1901 CumulusPalletXcmpQueueEvent: {1902 _enum: {1903 Success: 'Option<H256>',1904 Fail: '(Option<H256>,XcmV2TraitsError)',1905 BadVersion: 'Option<H256>',1906 BadFormat: 'Option<H256>',1907 UpwardMessageSent: 'Option<H256>',1908 XcmpMessageSent: 'Option<H256>',1909 OverweightEnqueued: '(u32,u32,u64,u64)',1910 OverweightServiced: '(u64,u64)'1911 }1912 },1913 /**1914 * Lookup250: pallet_xcm::pallet::Event<T>1915 **/1916 PalletXcmEvent: {1917 _enum: {1918 Attempted: 'XcmV2TraitsOutcome',1919 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',1920 UnexpectedResponse: '(XcmV1MultiLocation,u64)',1921 ResponseReady: '(u64,XcmV2Response)',1922 Notified: '(u64,u8,u8)',1923 NotifyOverweight: '(u64,u8,u8,u64,u64)',1924 NotifyDispatchError: '(u64,u8,u8)',1925 NotifyDecodeFailed: '(u64,u8,u8)',1926 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',1927 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',1928 ResponseTaken: 'u64',1929 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',1930 VersionChangeNotified: '(XcmV1MultiLocation,u32)',1931 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',1932 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',1933 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1934 }1935 },1936 /**1937 * Lookup251: xcm::v2::traits::Outcome1938 **/1939 XcmV2TraitsOutcome: {1940 _enum: {1941 Complete: 'u64',1942 Incomplete: '(u64,XcmV2TraitsError)',1943 Error: 'XcmV2TraitsError'1944 }1945 },1946 /**1947 * Lookup253: cumulus_pallet_xcm::pallet::Event<T>1948 **/1949 CumulusPalletXcmEvent: {1950 _enum: {1951 InvalidFormat: '[u8;8]',1952 UnsupportedVersion: '[u8;8]',1953 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1954 }1955 },1956 /**1957 * Lookup254: cumulus_pallet_dmp_queue::pallet::Event<T>1958 **/1959 CumulusPalletDmpQueueEvent: {1960 _enum: {1961 InvalidFormat: '[u8;32]',1962 UnsupportedVersion: '[u8;32]',1963 ExecutedDownward: '([u8;32],XcmV2TraitsOutcome)',1964 WeightExhausted: '([u8;32],u64,u64)',1965 OverweightEnqueued: '([u8;32],u64,u64)',1966 OverweightServiced: '(u64,u64)'1967 }1968 },1969 /**1970 * Lookup255: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1971 **/1972 PalletUniqueRawEvent: {1973 _enum: {1974 CollectionSponsorRemoved: 'u32',1975 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1976 CollectionOwnedChanged: '(u32,AccountId32)',1977 CollectionSponsorSet: '(u32,AccountId32)',1978 ConstOnChainSchemaSet: 'u32',1979 SponsorshipConfirmed: '(u32,AccountId32)',1980 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1981 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1982 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1983 CollectionLimitSet: 'u32',1984 MintPermissionSet: 'u32',1985 OffchainSchemaSet: 'u32',1986 PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',1987 SchemaVersionSet: 'u32'1988 }1989 },1990 /**1991 * Lookup256: pallet_common::pallet::Event<T>1992 **/1993 PalletCommonEvent: {1994 _enum: {1995 CollectionCreated: '(u32,u8,AccountId32)',1996 CollectionDestroyed: 'u32',1997 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1998 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1999 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2000 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',2001 CollectionPropertySet: '(u32,Bytes)',2002 CollectionPropertyDeleted: '(u32,Bytes)',2003 TokenPropertySet: '(u32,u32,Bytes)',2004 TokenPropertyDeleted: '(u32,u32,Bytes)',2005 PropertyPermissionSet: '(u32,Bytes)'2006 }2007 },2008 /**2009 * Lookup257: pallet_structure::pallet::Event<T>2010 **/2011 PalletStructureEvent: {2012 _enum: {2013 Executed: 'Result<Null, SpRuntimeDispatchError>'2014 }2015 },2016 /**2017 * Lookup258: pallet_evm::pallet::Event<T>2018 **/2019 PalletEvmEvent: {2020 _enum: {2021 Log: 'EthereumLog',2022 Created: 'H160',2023 CreatedFailed: 'H160',2024 Executed: 'H160',2025 ExecutedFailed: 'H160',2026 BalanceDeposit: '(AccountId32,H160,U256)',2027 BalanceWithdraw: '(AccountId32,H160,U256)'2028 }2029 },2030 /**2031 * Lookup259: ethereum::log::Log2032 **/2033 EthereumLog: {2034 address: 'H160',2035 topics: 'Vec<H256>',2036 data: 'Bytes'2037 },2038 /**2039 * Lookup260: pallet_ethereum::pallet::Event2040 **/2041 PalletEthereumEvent: {2042 _enum: {2043 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2044 }2045 },2046 /**2047 * Lookup261: evm_core::error::ExitReason2048 **/2049 EvmCoreErrorExitReason: {2050 _enum: {2051 Succeed: 'EvmCoreErrorExitSucceed',2052 Error: 'EvmCoreErrorExitError',2053 Revert: 'EvmCoreErrorExitRevert',2054 Fatal: 'EvmCoreErrorExitFatal'2055 }2056 },2057 /**2058 * Lookup262: evm_core::error::ExitSucceed2059 **/2060 EvmCoreErrorExitSucceed: {2061 _enum: ['Stopped', 'Returned', 'Suicided']2062 },2063 /**2064 * Lookup263: evm_core::error::ExitError2065 **/2066 EvmCoreErrorExitError: {2067 _enum: {2068 StackUnderflow: 'Null',2069 StackOverflow: 'Null',2070 InvalidJump: 'Null',2071 InvalidRange: 'Null',2072 DesignatedInvalid: 'Null',2073 CallTooDeep: 'Null',2074 CreateCollision: 'Null',2075 CreateContractLimit: 'Null',2076 OutOfOffset: 'Null',2077 OutOfGas: 'Null',2078 OutOfFund: 'Null',2079 PCUnderflow: 'Null',2080 CreateEmpty: 'Null',2081 Other: 'Text',2082 InvalidCode: 'Null'2083 }2084 },2085 /**2086 * Lookup266: evm_core::error::ExitRevert2087 **/2088 EvmCoreErrorExitRevert: {2089 _enum: ['Reverted']2090 },2091 /**2092 * Lookup267: evm_core::error::ExitFatal2093 **/2094 EvmCoreErrorExitFatal: {2095 _enum: {2096 NotSupported: 'Null',2097 UnhandledInterrupt: 'Null',2098 CallErrorAsFatal: 'EvmCoreErrorExitError',2099 Other: 'Text'2100 }2101 },2102 /**2103 * Lookup268: frame_system::Phase2104 **/2105 FrameSystemPhase: {2106 _enum: {2107 ApplyExtrinsic: 'u32',2108 Finalization: 'Null',2109 Initialization: 'Null'2110 }2111 },2112 /**2113 * Lookup270: frame_system::LastRuntimeUpgradeInfo2114 **/2115 FrameSystemLastRuntimeUpgradeInfo: {2116 specVersion: 'Compact<u32>',2117 specName: 'Text'2118 },2119 /**2120 * Lookup271: frame_system::limits::BlockWeights2121 **/2122 FrameSystemLimitsBlockWeights: {2123 baseBlock: 'u64',2124 maxBlock: 'u64',2125 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2126 },2127 /**2128 * Lookup272: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2129 **/2130 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2131 normal: 'FrameSystemLimitsWeightsPerClass',2132 operational: 'FrameSystemLimitsWeightsPerClass',2133 mandatory: 'FrameSystemLimitsWeightsPerClass'2134 },2135 /**2136 * Lookup273: frame_system::limits::WeightsPerClass2137 **/2138 FrameSystemLimitsWeightsPerClass: {2139 baseExtrinsic: 'u64',2140 maxExtrinsic: 'Option<u64>',2141 maxTotal: 'Option<u64>',2142 reserved: 'Option<u64>'2143 },2144 /**2145 * Lookup275: frame_system::limits::BlockLength2146 **/2147 FrameSystemLimitsBlockLength: {2148 max: 'FrameSupportWeightsPerDispatchClassU32'2149 },2150 /**2151 * Lookup276: frame_support::weights::PerDispatchClass<T>2152 **/2153 FrameSupportWeightsPerDispatchClassU32: {2154 normal: 'u32',2155 operational: 'u32',2156 mandatory: 'u32'2157 },2158 /**2159 * Lookup277: frame_support::weights::RuntimeDbWeight2160 **/2161 FrameSupportWeightsRuntimeDbWeight: {2162 read: 'u64',2163 write: 'u64'2164 },2165 /**2166 * Lookup278: sp_version::RuntimeVersion2167 **/2168 SpVersionRuntimeVersion: {2169 specName: 'Text',2170 implName: 'Text',2171 authoringVersion: 'u32',2172 specVersion: 'u32',2173 implVersion: 'u32',2174 apis: 'Vec<([u8;8],u32)>',2175 transactionVersion: 'u32',2176 stateVersion: 'u8'2177 },2178 /**2179 * Lookup282: frame_system::pallet::Error<T>2180 **/2181 FrameSystemError: {2182 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2183 },2184 /**2185 * Lookup284: orml_vesting::module::Error<T>2186 **/2187 OrmlVestingModuleError: {2188 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2189 },2190 /**2191 * Lookup286: cumulus_pallet_xcmp_queue::InboundChannelDetails2192 **/2193 CumulusPalletXcmpQueueInboundChannelDetails: {2194 sender: 'u32',2195 state: 'CumulusPalletXcmpQueueInboundState',2196 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2197 },2198 /**2199 * Lookup287: cumulus_pallet_xcmp_queue::InboundState2200 **/2201 CumulusPalletXcmpQueueInboundState: {2202 _enum: ['Ok', 'Suspended']2203 },2204 /**2205 * Lookup290: polkadot_parachain::primitives::XcmpMessageFormat2206 **/2207 PolkadotParachainPrimitivesXcmpMessageFormat: {2208 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2209 },2210 /**2211 * Lookup293: cumulus_pallet_xcmp_queue::OutboundChannelDetails2212 **/2213 CumulusPalletXcmpQueueOutboundChannelDetails: {2214 recipient: 'u32',2215 state: 'CumulusPalletXcmpQueueOutboundState',2216 signalsExist: 'bool',2217 firstIndex: 'u16',2218 lastIndex: 'u16'2219 },2220 /**2221 * Lookup294: cumulus_pallet_xcmp_queue::OutboundState2222 **/2223 CumulusPalletXcmpQueueOutboundState: {2224 _enum: ['Ok', 'Suspended']2225 },2226 /**2227 * Lookup296: cumulus_pallet_xcmp_queue::QueueConfigData2228 **/2229 CumulusPalletXcmpQueueQueueConfigData: {2230 suspendThreshold: 'u32',2231 dropThreshold: 'u32',2232 resumeThreshold: 'u32',2233 thresholdWeight: 'u64',2234 weightRestrictDecay: 'u64',2235 xcmpMaxIndividualWeight: 'u64'2236 },2237 /**2238 * Lookup298: cumulus_pallet_xcmp_queue::pallet::Error<T>2239 **/2240 CumulusPalletXcmpQueueError: {2241 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2242 },2243 /**2244 * Lookup299: pallet_xcm::pallet::Error<T>2245 **/2246 PalletXcmError: {2247 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2248 },2249 /**2250 * Lookup300: cumulus_pallet_xcm::pallet::Error<T>2251 **/2252 CumulusPalletXcmError: 'Null',2253 /**2254 * Lookup301: cumulus_pallet_dmp_queue::ConfigData2255 **/2256 CumulusPalletDmpQueueConfigData: {2257 maxIndividual: 'u64'2258 },2259 /**2260 * Lookup302: cumulus_pallet_dmp_queue::PageIndexData2261 **/2262 CumulusPalletDmpQueuePageIndexData: {2263 beginUsed: 'u32',2264 endUsed: 'u32',2265 overweightCount: 'u64'2266 },2267 /**2268 * Lookup305: cumulus_pallet_dmp_queue::pallet::Error<T>2269 **/2270 CumulusPalletDmpQueueError: {2271 _enum: ['Unknown', 'OverLimit']2272 },2273 /**2274 * Lookup309: pallet_unique::Error<T>2275 **/2276 PalletUniqueError: {2277 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2278 },2279 /**2280 * Lookup310: up_data_structs::Collection<sp_core::crypto::AccountId32>2281 **/2282 UpDataStructsCollection: {2283 owner: 'AccountId32',2284 mode: 'UpDataStructsCollectionMode',2285 access: 'UpDataStructsAccessMode',2286 name: 'Vec<u16>',2287 description: 'Vec<u16>',2288 tokenPrefix: 'Bytes',2289 mintMode: 'bool',2290 schemaVersion: 'UpDataStructsSchemaVersion',2291 sponsorship: 'UpDataStructsSponsorshipState',2292 limits: 'UpDataStructsCollectionLimits',2293 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2294 },2295 /**2296 * Lookup311: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2297 **/2298 UpDataStructsSponsorshipState: {2299 _enum: {2300 Disabled: 'Null',2301 Unconfirmed: 'AccountId32',2302 Confirmed: 'AccountId32'2303 }2304 },2305 /**2306 * Lookup312: up_data_structs::Properties2307 **/2308 UpDataStructsProperties: {2309 map: 'UpDataStructsPropertiesMapBoundedVec',2310 consumedSpace: 'u32',2311 spaceLimit: 'u32'2312 },2313 /**2314 * Lookup313: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>2315 **/2316 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',2317 /**2318 * Lookup318: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>2319 **/2320 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',2321 /**2322 * Lookup324: up_data_structs::CollectionField2323 **/2324 UpDataStructsCollectionField: {2325 _enum: ['ConstOnChainSchema', 'OffchainSchema']2326 },2327 /**2328 * Lookup327: up_data_structs::CollectionStats2329 **/2330 UpDataStructsCollectionStats: {2331 created: 'u32',2332 destroyed: 'u32',2333 alive: 'u32'2334 },2335 /**2336 * Lookup328: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>2337 **/2338 PhantomTypeUpDataStructsTokenData: '[Lookup329;0]',2339 /**2340 * Lookup329: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2341 **/2342 UpDataStructsTokenData: {2343 constData: 'Bytes',2344 properties: 'Vec<UpDataStructsProperty>',2345 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'2346 },2347 /**2348 * Lookup332: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>2349 **/2350 PhantomTypeUpDataStructsRpcCollection: '[Lookup333;0]',2351 /**2352 * Lookup333: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2353 **/2354 UpDataStructsRpcCollection: {2355 owner: 'AccountId32',2356 mode: 'UpDataStructsCollectionMode',2357 access: 'UpDataStructsAccessMode',2358 name: 'Vec<u16>',2359 description: 'Vec<u16>',2360 tokenPrefix: 'Bytes',2361 mintMode: 'bool',2362 offchainSchema: 'Bytes',2363 schemaVersion: 'UpDataStructsSchemaVersion',2364 sponsorship: 'UpDataStructsSponsorshipState',2365 limits: 'UpDataStructsCollectionLimits',2366 constOnChainSchema: 'Bytes',2367 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission',2368 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2369 properties: 'Vec<UpDataStructsProperty>'2370 },2371 /**2372 * Lookup335: pallet_common::pallet::Error<T>2373 **/2374 PalletCommonError: {2375 _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']2376 },2377 /**2378 * Lookup337: pallet_fungible::pallet::Error<T>2379 **/2380 PalletFungibleError: {2381 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2382 },2383 /**2384 * Lookup338: pallet_refungible::ItemData2385 **/2386 PalletRefungibleItemData: {2387 constData: 'Bytes',2388 variableData: 'Bytes'2389 },2390 /**2391 * Lookup342: pallet_refungible::pallet::Error<T>2392 **/2393 PalletRefungibleError: {2394 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2395 },2396 /**2397 * Lookup343: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2398 **/2399 PalletNonfungibleItemData: {2400 constData: 'Bytes',2401 variableData: 'Bytes',2402 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2403 },2404 /**2405 * Lookup344: pallet_nonfungible::pallet::Error<T>2406 **/2407 PalletNonfungibleError: {2408 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2409 },2410 /**2411 * Lookup345: pallet_structure::pallet::Error<T>2412 **/2413 PalletStructureError: {2414 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']2415 },2416 /**2417 * Lookup348: pallet_evm::pallet::Error<T>2418 **/2419 PalletEvmError: {2420 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2421 },2422 /**2423 * Lookup351: fp_rpc::TransactionStatus2424 **/2425 FpRpcTransactionStatus: {2426 transactionHash: 'H256',2427 transactionIndex: 'u32',2428 from: 'H160',2429 to: 'Option<H160>',2430 contractAddress: 'Option<H160>',2431 logs: 'Vec<EthereumLog>',2432 logsBloom: 'EthbloomBloom'2433 },2434 /**2435 * Lookup353: ethbloom::Bloom2436 **/2437 EthbloomBloom: '[u8;256]',2438 /**2439 * Lookup355: ethereum::receipt::ReceiptV32440 **/2441 EthereumReceiptReceiptV3: {2442 _enum: {2443 Legacy: 'EthereumReceiptEip658ReceiptData',2444 EIP2930: 'EthereumReceiptEip658ReceiptData',2445 EIP1559: 'EthereumReceiptEip658ReceiptData'2446 }2447 },2448 /**2449 * Lookup356: ethereum::receipt::EIP658ReceiptData2450 **/2451 EthereumReceiptEip658ReceiptData: {2452 statusCode: 'u8',2453 usedGas: 'U256',2454 logsBloom: 'EthbloomBloom',2455 logs: 'Vec<EthereumLog>'2456 },2457 /**2458 * Lookup357: ethereum::block::Block<ethereum::transaction::TransactionV2>2459 **/2460 EthereumBlock: {2461 header: 'EthereumHeader',2462 transactions: 'Vec<EthereumTransactionTransactionV2>',2463 ommers: 'Vec<EthereumHeader>'2464 },2465 /**2466 * Lookup358: ethereum::header::Header2467 **/2468 EthereumHeader: {2469 parentHash: 'H256',2470 ommersHash: 'H256',2471 beneficiary: 'H160',2472 stateRoot: 'H256',2473 transactionsRoot: 'H256',2474 receiptsRoot: 'H256',2475 logsBloom: 'EthbloomBloom',2476 difficulty: 'U256',2477 number: 'U256',2478 gasLimit: 'U256',2479 gasUsed: 'U256',2480 timestamp: 'u64',2481 extraData: 'Bytes',2482 mixHash: 'H256',2483 nonce: 'EthereumTypesHashH64'2484 },2485 /**2486 * Lookup359: ethereum_types::hash::H642487 **/2488 EthereumTypesHashH64: '[u8;8]',2489 /**2490 * Lookup364: pallet_ethereum::pallet::Error<T>2491 **/2492 PalletEthereumError: {2493 _enum: ['InvalidSignature', 'PreLogExists']2494 },2495 /**2496 * Lookup365: pallet_evm_coder_substrate::pallet::Error<T>2497 **/2498 PalletEvmCoderSubstrateError: {2499 _enum: ['OutOfGas', 'OutOfFund']2500 },2501 /**2502 * Lookup366: pallet_evm_contract_helpers::SponsoringModeT2503 **/2504 PalletEvmContractHelpersSponsoringModeT: {2505 _enum: ['Disabled', 'Allowlisted', 'Generous']2506 },2507 /**2508 * Lookup368: pallet_evm_contract_helpers::pallet::Error<T>2509 **/2510 PalletEvmContractHelpersError: {2511 _enum: ['NoPermission']2512 },2513 /**2514 * Lookup369: pallet_evm_migration::pallet::Error<T>2515 **/2516 PalletEvmMigrationError: {2517 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2518 },2519 /**2520 * Lookup371: sp_runtime::MultiSignature2521 **/2522 SpRuntimeMultiSignature: {2523 _enum: {2524 Ed25519: 'SpCoreEd25519Signature',2525 Sr25519: 'SpCoreSr25519Signature',2526 Ecdsa: 'SpCoreEcdsaSignature'2527 }2528 },2529 /**2530 * Lookup372: sp_core::ed25519::Signature2531 **/2532 SpCoreEd25519Signature: '[u8;64]',2533 /**2534 * Lookup374: sp_core::sr25519::Signature2535 **/2536 SpCoreSr25519Signature: '[u8;64]',2537 /**2538 * Lookup375: sp_core::ecdsa::Signature2539 **/2540 SpCoreEcdsaSignature: '[u8;65]',2541 /**2542 * Lookup378: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2543 **/2544 FrameSystemExtensionsCheckSpecVersion: 'Null',2545 /**2546 * Lookup379: frame_system::extensions::check_genesis::CheckGenesis<T>2547 **/2548 FrameSystemExtensionsCheckGenesis: 'Null',2549 /**2550 * Lookup382: frame_system::extensions::check_nonce::CheckNonce<T>2551 **/2552 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2553 /**2554 * Lookup383: frame_system::extensions::check_weight::CheckWeight<T>2555 **/2556 FrameSystemExtensionsCheckWeight: 'Null',2557 /**2558 * Lookup384: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>2559 **/2560 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2561 /**2562 * Lookup385: opal_runtime::Runtime2563 **/2564 OpalRuntimeRuntime: 'Null'2565};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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1519,17 +1519,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 UpDataStructsCollectionMode (156) */
@@ -1552,7 +1547,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>;
@@ -1600,13 +1594,10 @@
readonly isDisabled: boolean;
readonly isOwner: boolean;
readonly isOwnerRestricted: boolean;
- readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;
+ readonly asOwnerRestricted: BTreeSet<u32>;
readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';
}
- /** @name FrameSupportStorageBoundedBTreeSet (171) */
- export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}
-
/** @name UpDataStructsMetaUpdatePermission (177) */
export interface UpDataStructsMetaUpdatePermission extends Enum {
readonly isItemOwner: boolean;
@@ -2168,9 +2159,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 PalletCommonEvent (256) */
@@ -2188,15 +2177,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';
}
@@ -2521,40 +2510,45 @@
/** @name UpDataStructsProperties (312) */
export interface UpDataStructsProperties extends Struct {
- readonly map: BTreeMap<Bytes, Bytes>;
+ readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsCollectionField (322) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (313) */
+ export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
+
+ /** @name UpDataStructsPropertiesMapPropertyPermission (318) */
+ export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
+
+ /** @name UpDataStructsCollectionField (324) */
export interface UpDataStructsCollectionField extends Enum {
- readonly isVariableOnChainSchema: boolean;
readonly isConstOnChainSchema: boolean;
readonly isOffchainSchema: boolean;
- readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';
+ readonly type: 'ConstOnChainSchema' | 'OffchainSchema';
}
- /** @name UpDataStructsCollectionStats (325) */
+ /** @name UpDataStructsCollectionStats (327) */
export interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name PhantomTypeUpDataStructsTokenData (326) */
+ /** @name PhantomTypeUpDataStructsTokenData (328) */
export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}
- /** @name UpDataStructsTokenData (327) */
+ /** @name UpDataStructsTokenData (329) */
export interface UpDataStructsTokenData extends Struct {
readonly constData: Bytes;
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
}
- /** @name PhantomTypeUpDataStructsRpcCollection (330) */
+ /** @name PhantomTypeUpDataStructsRpcCollection (332) */
export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}
- /** @name UpDataStructsRpcCollection (331) */
+ /** @name UpDataStructsRpcCollection (333) */
export interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2567,14 +2561,13 @@
readonly schemaVersion: UpDataStructsSchemaVersion;
readonly sponsorship: UpDataStructsSponsorshipState;
readonly limits: UpDataStructsCollectionLimits;
- readonly variableOnChainSchema: Bytes;
readonly constOnChainSchema: Bytes;
readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletCommonError (333) */
+ /** @name PalletCommonError (335) */
export interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -2606,10 +2599,13 @@
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 PalletFungibleError (335) */
+ /** @name PalletFungibleError (337) */
export interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -2619,13 +2615,13 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (336) */
+ /** @name PalletRefungibleItemData (338) */
export interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
}
- /** @name PalletRefungibleError (340) */
+ /** @name PalletRefungibleError (342) */
export interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -2634,21 +2630,21 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (341) */
+ /** @name PalletNonfungibleItemData (343) */
export interface PalletNonfungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name PalletNonfungibleError (342) */
+ /** @name PalletNonfungibleError (344) */
export interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
}
- /** @name PalletStructureError (343) */
+ /** @name PalletStructureError (345) */
export interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -2656,7 +2652,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
}
- /** @name PalletEvmError (345) */
+ /** @name PalletEvmError (348) */
export interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -2667,7 +2663,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (348) */
+ /** @name FpRpcTransactionStatus (351) */
export interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -2678,10 +2674,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (351) */
+ /** @name EthbloomBloom (353) */
export interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (353) */
+ /** @name EthereumReceiptReceiptV3 (355) */
export interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2692,7 +2688,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (354) */
+ /** @name EthereumReceiptEip658ReceiptData (356) */
export interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -2700,14 +2696,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (355) */
+ /** @name EthereumBlock (357) */
export interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (356) */
+ /** @name EthereumHeader (358) */
export interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -2726,24 +2722,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (357) */
+ /** @name EthereumTypesHashH64 (359) */
export interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (362) */
+ /** @name PalletEthereumError (364) */
export interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (363) */
+ /** @name PalletEvmCoderSubstrateError (365) */
export interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (364) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (366) */
export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -2751,20 +2747,20 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (366) */
+ /** @name PalletEvmContractHelpersError (368) */
export interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly type: 'NoPermission';
}
- /** @name PalletEvmMigrationError (367) */
+ /** @name PalletEvmMigrationError (369) */
export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (369) */
+ /** @name SpRuntimeMultiSignature (371) */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -2775,31 +2771,31 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (370) */
+ /** @name SpCoreEd25519Signature (372) */
export interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (372) */
+ /** @name SpCoreSr25519Signature (374) */
export interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (373) */
+ /** @name SpCoreEcdsaSignature (375) */
export interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (376) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (378) */
export type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (377) */
+ /** @name FrameSystemExtensionsCheckGenesis (379) */
export type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (380) */
+ /** @name FrameSystemExtensionsCheckNonce (382) */
export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (381) */
+ /** @name FrameSystemExtensionsCheckWeight (383) */
export type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (382) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (384) */
export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (383) */
+ /** @name OpalRuntimeRuntime (385) */
export type OpalRuntimeRuntime = Null;
} // declare module
tests/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"